| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 source; | 5 library source; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import '../../pkg/pathos/lib/path.dart' as path; | 9 import '../../pkg/pathos/lib/path.dart' as path; |
| 10 | 10 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 return systemCacheDirectory(id).then((p) { | 112 return systemCacheDirectory(id).then((p) { |
| 113 packageDir = p; | 113 packageDir = p; |
| 114 | 114 |
| 115 // See if it's already cached. | 115 // See if it's already cached. |
| 116 if (!dirExists(packageDir)) return false; | 116 if (!dirExists(packageDir)) return false; |
| 117 | 117 |
| 118 return _isCachedPackageCorrupted(packageDir).then((isCorrupted) { | 118 return _isCachedPackageCorrupted(packageDir).then((isCorrupted) { |
| 119 if (!isCorrupted) return true; | 119 if (!isCorrupted) return true; |
| 120 | 120 |
| 121 // Busted, so wipe out the package and reinstall. | 121 // Busted, so wipe out the package and reinstall. |
| 122 return deleteDir(packageDir).then((_) => false); | 122 deleteDir(packageDir); |
| 123 return false; |
| 123 }); | 124 }); |
| 124 }).then((isInstalled) { | 125 }).then((isInstalled) { |
| 125 if (isInstalled) return true; | 126 if (isInstalled) return true; |
| 126 ensureDir(path.dirname(packageDir)); | 127 ensureDir(path.dirname(packageDir)); |
| 127 return install(id, packageDir); | 128 return install(id, packageDir); |
| 128 }).then((found) { | 129 }).then((found) { |
| 129 if (!found) throw 'Package $id not found.'; | 130 if (!found) throw 'Package $id not found.'; |
| 130 return new Package.load(id.name, packageDir, systemCache.sources); | 131 return new Package.load(id.name, packageDir, systemCache.sources); |
| 131 }); | 132 }); |
| 132 } | 133 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 Future<PackageId> resolveId(PackageId id) => new Future.immediate(id); | 218 Future<PackageId> resolveId(PackageId id) => new Future.immediate(id); |
| 218 | 219 |
| 219 /// Returns the [Package]s that have been installed in the system cache. | 220 /// Returns the [Package]s that have been installed in the system cache. |
| 220 Future<List<Package>> getCachedPackages() { | 221 Future<List<Package>> getCachedPackages() { |
| 221 if (shouldCache) throw "Source $name must implement this."; | 222 if (shouldCache) throw "Source $name must implement this."; |
| 222 } | 223 } |
| 223 | 224 |
| 224 /// Returns the source's name. | 225 /// Returns the source's name. |
| 225 String toString() => name; | 226 String toString() => name; |
| 226 } | 227 } |
| OLD | NEW |