Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(635)

Unified Diff: dart/compiler/javatests/com/google/dart/compiler/MockArtifactProvider.java

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dart/compiler/javatests/com/google/dart/compiler/MockArtifactProvider.java
diff --git a/dart/compiler/javatests/com/google/dart/compiler/MockArtifactProvider.java b/dart/compiler/javatests/com/google/dart/compiler/MockArtifactProvider.java
deleted file mode 100644
index bb2d534bd7619ef33511c17e21fe41f6b4eac5f0..0000000000000000000000000000000000000000
--- a/dart/compiler/javatests/com/google/dart/compiler/MockArtifactProvider.java
+++ /dev/null
@@ -1,91 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-package com.google.dart.compiler;
-
-import java.io.Reader;
-import java.io.StringReader;
-import java.io.StringWriter;
-import java.io.Writer;
-import java.net.URI;
-import java.util.Map;
-import java.util.concurrent.ConcurrentHashMap;
-
-/**
- * Testing implementation of {@link DartArtifactProvider}.
- */
-public class MockArtifactProvider extends DartArtifactProvider {
-
- private static class Artifact {
- StringWriter writer = new StringWriter();
- long lastModified;
- }
-
- private final Map<String, Artifact> artifacts = new ConcurrentHashMap<String, Artifact>();
-
- public MockArtifactProvider() {
- }
-
- @Override
- public Reader getArtifactReader(Source source, String part, String ext) {
- Artifact artifact = artifacts.get(keyFor(source, part, ext));
- if (artifact == null) {
- return null;
- }
- return new StringReader(artifact.writer.toString());
- }
-
- @Override
- public URI getArtifactUri(Source source, String part, String ext) {
- return URI.create("file:" + keyFor(source, part, ext));
- }
-
- @Override
- public Writer getArtifactWriter(Source source, String part, String ext) {
- Artifact artifact = new Artifact();
- artifacts.put(keyFor(source, part, ext), artifact);
- artifact.lastModified = System.currentTimeMillis();
- return artifact.writer;
- }
-
- @Override
- public boolean isOutOfDate(Source source, Source base, String ext) {
- Artifact artifact = artifacts.get(keyFor(base, "", ext));
- if (artifact == null) {
- return true;
- }
-
- return source.getLastModified() > artifact.lastModified;
- }
-
- /**
- * Quick way to get an artifact without going through the reader.
- */
- public String getArtifactString(Source source, String part, String ext) {
- Artifact artifact = artifacts.get(keyFor(source, part, ext));
- if (artifact == null) {
- return null;
- }
-
- return artifact.writer.toString();
- }
-
- /**
- * Removes the given artifact, by name.
- */
- public void removeArtifact(String name, String part, String ext) {
- artifacts.remove(keyFor(name, part, ext));
- }
-
- private String keyFor(Source source, String part, String ext) {
- return keyFor(source.getName(), part, ext);
- }
-
- private String keyFor(String sourceName, String part, String ext) {
- if (!part.isEmpty()) {
- part = "$" + part;
- }
- return sourceName + part + "/" + ext;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698