Index: sdk/lib/_internal/pub/lib/src/entrypoint.dart |
diff --git a/sdk/lib/_internal/pub/lib/src/entrypoint.dart b/sdk/lib/_internal/pub/lib/src/entrypoint.dart |
index 51f05a7a5018afa2cc304a5287f7a5180f645760..c160207556d3e4df845359ce767b6c002b0c74c1 100644 |
--- a/sdk/lib/_internal/pub/lib/src/entrypoint.dart |
+++ b/sdk/lib/_internal/pub/lib/src/entrypoint.dart |
@@ -43,17 +43,36 @@ class Entrypoint { |
/// the network. |
final SystemCache cache; |
+ /// The lockfile for the entrypoint. |
+ /// |
+ /// If not provided to the entrypoint, it will be laoded lazily from disc. |
+ LockFile _lockFile; |
+ |
/// Loads the entrypoint from a package at [rootDir]. |
Entrypoint(String rootDir, SystemCache cache) |
: root = new Package.load(null, rootDir, cache.sources), |
cache = cache; |
- // TODO(rnystrom): Make this path configurable. |
+ /// Creates an entrypoint given a package and lockfile. |
nweiz
2014/07/02 00:12:02
"package and lockfile" -> "package, lockfile, and
Bob Nystrom
2014/07/02 18:00:52
In all cases, it needs a cache, so I don't think i
|
+ Entrypoint.inMemory(this.root, this._lockFile, this.cache); |
+ |
/// The path to the entrypoint's "packages" directory. |
String get packagesDir => path.join(root.dir, 'packages'); |
/// `true` if the entrypoint package currently has a lock file. |
- bool get lockFileExists => entryExists(lockFilePath); |
+ bool get lockFileExists => _lockFile != null || entryExists(lockFilePath); |
+ |
+ LockFile get lockFile { |
+ if (_lockFile != null) return _lockFile; |
+ |
+ if (!lockFileExists) { |
+ _lockFile = new LockFile.empty(); |
+ } else { |
+ _lockFile = new LockFile.load(lockFilePath, cache.sources); |
+ } |
+ |
+ return _lockFile; |
+ } |
/// The path to the entrypoint package's lockfile. |
String get lockFilePath => path.join(root.dir, 'pubspec.lock'); |
@@ -73,7 +92,7 @@ class Entrypoint { |
Future acquireDependencies({List<String> useLatest, bool isUpgrade: false, |
bool dryRun: false}) { |
return syncFuture(() { |
- return resolveVersions(cache.sources, root, lockFile: loadLockFile(), |
+ return resolveVersions(cache.sources, root, lockFile: lockFile, |
useLatest: useLatest, upgradeAll: isUpgrade && useLatest.isEmpty); |
}).then((result) { |
if (!result.succeeded) throw result.error; |
@@ -111,15 +130,6 @@ class Entrypoint { |
return source.get(id, packageDir).then((_) => source.resolveId(id)); |
} |
- /// Loads the list of concrete package versions from the `pubspec.lock`, if it |
- /// exists. |
- /// |
- /// If it doesn't, this completes to an empty [LockFile]. |
- LockFile loadLockFile() { |
- if (!lockFileExists) return new LockFile.empty(); |
- return new LockFile.load(lockFilePath, cache.sources); |
- } |
- |
/// Determines whether or not the lockfile is out of date with respect to the |
/// pubspec. |
/// |
@@ -174,8 +184,6 @@ class Entrypoint { |
/// pubspec. |
Future _ensureLockFileIsUpToDate() { |
return syncFuture(() { |
- var lockFile = loadLockFile(); |
- |
// If we don't have a current lock file, we definitely need to install. |
if (!_isLockFileUpToDate(lockFile)) { |
if (lockFileExists) { |
@@ -214,7 +222,6 @@ class Entrypoint { |
/// and up to date. |
Future<PackageGraph> loadPackageGraph() { |
return _ensureLockFileIsUpToDate().then((_) { |
- var lockFile = loadLockFile(); |
return Future.wait(lockFile.packages.values.map((id) { |
var source = cache.sources[id.source]; |
return source.getDirectory(id) |