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

Side by Side Diff: pkg/barback/lib/src/package_provider.dart

Issue 554783003: Add the ability for a PackageProvider to declare static packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/barback/lib/src/graph/static_asset_cascade.dart ('k') | pkg/barback/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library barback.package_provider; 5 library barback.package_provider;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'asset/asset.dart'; 9 import 'asset/asset.dart';
10 import 'asset/asset_id.dart'; 10 import 'asset/asset_id.dart';
11 11
12 /// API for locating and accessing packages on disk. 12 /// API for locating and accessing packages on disk.
13 /// 13 ///
14 /// Implemented by pub and provided to barback so that it isn't coupled 14 /// Implemented by pub and provided to barback so that it isn't coupled
15 /// directly to pub. 15 /// directly to pub.
16 abstract class PackageProvider { 16 abstract class PackageProvider {
17 /// The names of all packages that can be provided by this provider. 17 /// The names of all packages that can be provided by this provider.
18 /// 18 ///
19 /// This is equal to the transitive closure of the entrypoint package 19 /// This is equal to the transitive closure of the entrypoint package
20 /// dependencies. 20 /// dependencies.
21 Iterable<String> get packages; 21 Iterable<String> get packages;
22 22
23 /// Loads an asset from disk. 23 /// Loads an asset from disk.
24 /// 24 ///
25 /// This should be re-entrant; it may be called multiple times with the same 25 /// This should be re-entrant; it may be called multiple times with the same
26 /// id before the previously returned future has completed. 26 /// id before the previously returned future has completed.
27 ///
28 /// If no asset with [id] exists, the provider should throw an
29 /// [AssetNotFoundException].
27 Future<Asset> getAsset(AssetId id); 30 Future<Asset> getAsset(AssetId id);
28 } 31 }
32
33 /// A PackageProvider for which some packages are known to be static—that is,
34 /// the package has no transformers and its assets won't ever change.
35 ///
36 /// For static packages, rather than telling barback up-front which assets that
37 /// package contains via [Barback.updateSources], barback will lazily query the
38 /// provider for an asset when it's needed. This is much more efficient.
39 abstract class StaticPackageProvider implements PackageProvider {
40 /// The names of all static packages provided by this provider.
41 ///
42 /// This must be disjoint from [packages].
43 Iterable<String> get staticPackages;
44
45 /// Returns all ids of assets in [package].
46 ///
47 /// This is used for [Barback.getAllAssets].
48 Stream<AssetId> getAllAssetIds(String package);
49 }
OLDNEW
« no previous file with comments | « pkg/barback/lib/src/graph/static_asset_cascade.dart ('k') | pkg/barback/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698