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

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

Issue 23522029: Support passing configuration data to a transformer plugin. (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
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/barback.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback.dart b/sdk/lib/_internal/pub/lib/src/barback.dart
index 001b0739c139616be834b720c5ae06556d857c27..3c14a16fea84963ddfcc8f946e8ac667cfe004ab 100644
--- a/sdk/lib/_internal/pub/lib/src/barback.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback.dart
@@ -15,6 +15,38 @@ import 'barback/server.dart';
import 'barback/watch_sources.dart';
import 'utils.dart';
+/// An identifier for a transformer and the configuration that will be passed to
+/// it.
+///
+/// It's possible that [asset] defines multiple transformers. If so,
+/// [configuration] will be passed to all of them.
+class TransformerId {
+ /// The asset containing the transformer.
+ final AssetId asset;
+
+ /// The configuration to pass to the transformer.
+ ///
+ /// This will be null if no configuration was provided.
+ final Map configuration;
+
+ TransformerId(this.asset, this.configuration) {
+ if (configuration == null) return;
+ for (var reserved in ['include', 'exclude']) {
+ if (!configuration.containsKey(reserved)) continue;
+ throw new FormatException('Configuration for transformer '
+ '${idToLibraryIdentifier(asset)} may not include reserved key '
+ '"$reserved".');
+ }
+ }
+
+ // TODO(nweiz): support deep equality on [configuration] as well.
+ bool operator==(other) => other is TransformerId &&
+ other.asset == asset &&
+ other.configuration == configuration;
+
+ int get hashCode => asset.hashCode ^ configuration.hashCode;
+}
+
/// Creates a [BarbackServer] serving on [host] and [port].
///
/// This transforms and serves all library and asset files in all packages in
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698