97269ad9ac
This is the same change as r9527, except it doesn't use the --progress flag which is unsupported on the buildbot. Review URL: https://chromiumcodereview.appspot.com//10694119 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@9540 260f80e4-7a28-3924-810f-c04153c831b5
91 lines
2.7 KiB
Dart
91 lines
2.7 KiB
Dart
// Copyright (c) 2012, 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('system_cache');
|
|
|
|
#import('io.dart');
|
|
#import('package.dart');
|
|
#import('source.dart');
|
|
#import('source_registry.dart');
|
|
#import('utils.dart');
|
|
|
|
/**
|
|
* The system-wide cache of installed packages.
|
|
*
|
|
* This cache contains all packages that are downloaded from the internet.
|
|
* Packages that are available locally (e.g. from the SDK) don't use this cache.
|
|
*/
|
|
class SystemCache {
|
|
/**
|
|
* The root directory where this package cache is located.
|
|
*/
|
|
final String rootDir;
|
|
|
|
/**
|
|
* Packages which are currently being asynchronously installed to the cache.
|
|
*/
|
|
final Map<PackageId, Future<Package>> _pendingInstalls;
|
|
|
|
/**
|
|
* The sources from which to install packages.
|
|
*/
|
|
final SourceRegistry sources;
|
|
|
|
/**
|
|
* Creates a new package cache which is backed by the given directory on the
|
|
* user's file system.
|
|
*/
|
|
SystemCache(this.rootDir)
|
|
: _pendingInstalls = new Map<PackageId, Future<Package>>(),
|
|
sources = new SourceRegistry();
|
|
|
|
/**
|
|
* Registers a new source. This source must not have the same name as a source
|
|
* that's already been registered.
|
|
*/
|
|
void register(Source source) {
|
|
source.bind(this);
|
|
sources.register(source);
|
|
}
|
|
|
|
/**
|
|
* Loads all of the package ids in the cache and returns them.
|
|
*/
|
|
Future<List<PackageId>> listAll() {
|
|
return listDir(rootDir).chain((paths) {
|
|
final sources = paths.map((path) {
|
|
final source = sources[basename(path)];
|
|
return listDir(path).transform((subpaths) {
|
|
// TODO(rnystrom): Once there are cached packages and this path is
|
|
// being used, figure out how version numbers should be acquired.
|
|
return subpaths.map((subpath) =>
|
|
new PackageId(basename(subpath), source, Version.none));
|
|
});
|
|
});
|
|
return Futures.wait(sources).transform(flatten);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Ensures that the package identified by [id] is installed to the cache,
|
|
* loads it, and returns it.
|
|
*
|
|
* It is an error to try installing a package from a source with `shouldCache
|
|
* == false` to the system cache.
|
|
*/
|
|
Future<Package> install(PackageId id) {
|
|
if (!id.source.shouldCache) {
|
|
throw new IllegalArgumentException("Package $id is not cacheable.");
|
|
}
|
|
|
|
var pending = _pendingInstalls[id];
|
|
if (pending != null) return pending;
|
|
|
|
var future = id.source.installToSystemCache(id);
|
|
always(future, () => _pendingInstalls.remove(id));
|
|
_pendingInstalls[id] = future;
|
|
return future;
|
|
}
|
|
}
|