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

Unified Diff: sdk/lib/_internal/pub/lib/src/pub_package_provider.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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/package_graph.dart ('k') | sdk/lib/_internal/pub/lib/src/pubspec.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/pub_package_provider.dart
diff --git a/sdk/lib/_internal/pub/lib/src/pub_package_provider.dart b/sdk/lib/_internal/pub/lib/src/pub_package_provider.dart
deleted file mode 100644
index 0e2c51b6f6a24eeaec9ae3c506febe16938afca0..0000000000000000000000000000000000000000
--- a/sdk/lib/_internal/pub/lib/src/pub_package_provider.dart
+++ /dev/null
@@ -1,53 +0,0 @@
-// 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.pub_package_provider;
-
-import 'dart:async';
-
-import 'package:barback/barback.dart';
-import 'package:path/path.dart' as path;
-
-import 'entrypoint.dart';
-
-/// An implementation of barback's [PackageProvider] interface so that barback
-/// can assets within pub packages.
-class PubPackageProvider implements PackageProvider {
- /// Maps the names of all of the packages in [_entrypoint]'s transitive
- /// dependency graph to the local path of the directory for that package.
- final Map<String, String> _packageDirs;
-
- /// Creates a new provider for [entrypoint].
- static Future<PubPackageProvider> create(Entrypoint entrypoint) {
- var packageDirs = <String, String>{};
-
- packageDirs[entrypoint.root.name] = entrypoint.root.dir;
-
- // Cache package directories up front so we can have synchronous access
- // to them.
- var futures = [];
- entrypoint.loadLockFile().packages.forEach((name, package) {
- var source = entrypoint.cache.sources[package.source];
- futures.add(source.getDirectory(package).then((packageDir) {
- packageDirs[name] = packageDir;
- }));
- });
-
- return Future.wait(futures).then((_) {
- return new PubPackageProvider._(packageDirs);
- });
- }
-
- PubPackageProvider._(this._packageDirs);
-
- Iterable<String> get packages => _packageDirs.keys;
-
- /// Gets the root directory of [package].
- String getPackageDir(String package) => _packageDirs[package];
-
- Future<Asset> getAsset(AssetId id) {
- var file = path.join(_packageDirs[id.package], id.path);
- return new Future.value(new Asset.fromPath(id, file));
- }
-}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/package_graph.dart ('k') | sdk/lib/_internal/pub/lib/src/pubspec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698