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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/rewrite_import_transformer.dart

Issue 23625002: Support loading transformer plugins from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 3 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: sdk/lib/_internal/pub/lib/src/barback/rewrite_import_transformer.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/rewrite_import_transformer.dart b/sdk/lib/_internal/pub/lib/src/barback/rewrite_import_transformer.dart
new file mode 100644
index 0000000000000000000000000000000000000000..66fda923d47c2257153737685d5a33dc2b3f346e
--- /dev/null
+++ b/sdk/lib/_internal/pub/lib/src/barback/rewrite_import_transformer.dart
@@ -0,0 +1,45 @@
+// Copyright (c) 2013, 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.
+
+library pub.rewrite_import_transformer;
+
+import 'package:barback/barback.dart';
+import 'package:analyzer_experimental/analyzer.dart';
+
+/// A transformer used internally to rewrite "package:" imports so they point to
+/// the barback server rather than to pub's package root.
+class RewriteImportTransformer extends Transformer {
+ String get allowedExtensions => '.dart';
+
+ Future apply(Transform transform) {
+ return transform.primaryInput.readAsString().then((contents) {
+ var collector = new _DirectiveCollector();
+ parseCompilationUnit(contents, name: transform.primaryInput.id.toString())
+ .accept(collector);
+
+ var buffer = new StringBuffer();
+ var index = 0;
+ for (var directive in collector.directives) {
+ var uri = Uri.parse(directive.uri.stringValue);
+ if (uri.scheme != 'package') continue;
+
+ buffer
+ ..write(contents.substring(index, directive.uri.literal.offset))
+ ..write('"/packages/${uri.path}"');
+ index = directive.uri.literal.end;
+ }
+ buffer.write(contents.substring(index, contents.length));
+
+ transform.addOutput(
+ new Asset.fromString(transform.primaryInput.id, buffer.toString()));
+ });
+ }
+}
+
+/// A simple visitor that collects import and export nodes.
+class _DirectiveCollector extends GeneralizingASTVisitor {
+ final directives = <UriBasedDirective>[];
+
+ visitUriBasedDirective(UriBasedDirective node) => directives.add(node);
+}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/pub_package_provider.dart ('k') | sdk/lib/_internal/pub/lib/src/barback/server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698