Skip to content
Snippets Groups Projects
Commit d2b1a80a authored by nweiz@google.com's avatar nweiz@google.com
Browse files

Give cached sources control over their cache directories.

Review URL: https://chromiumcodereview.appspot.com//10577009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@8832 260f80e4-7a28-3924-810f-c04153c831b5
parent a67af791
No related branches found
No related tags found
No related merge requests found
......@@ -35,15 +35,21 @@ class Source {
* to true if the package was found in the source and false if it wasn't. For
* all other error conditions, it should complete with an exception.
*
* If [shouldCache] is true, [path] will be a path to this source's
* subdirectory of the [PackageCache]'s cache directory. If [shouldCache] is
* false, [path] will be a path to the application's "packages" directory.
*
* [path] is guaranteed not to exist, and its parent directory is guaranteed
* to exist.
*/
abstract Future<bool> install(PackageId id, String path);
/**
* Returns the directory in the system cache that the package identified by
* [id] should be installed to. [parent] is this source's subdirectory in the
* system cache directory.
*
* This doesn't need to be implemented if [shouldCache] is false.
*/
String systemCacheDirectory(PackageId id, String parent) =>
join(parent, packageName(id));
/**
* When a [Pubspec] is parsed, it reads in the description for each
* dependency. It is up to the dependency's [Source] to determine how that
......
......@@ -70,7 +70,8 @@ class SystemCache {
var pending = _pendingInstalls[id];
if (pending != null) return pending;
var path = join(rootDir, id.source.name, id.source.packageName(id));
var sourceDir = join(rootDir, id.source.name);
var path = id.source.systemCacheDirectory(id, sourceDir);
var future = exists(path).chain((exists) {
// TODO(nweiz): better error handling
if (exists) throw 'Package $id is already installed.';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment