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 pub.entrypoint; | 5 library pub.entrypoint; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:path/path.dart' as path; | 9 import 'package:path/path.dart' as path; |
10 | 10 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 return true; | 186 return true; |
187 } | 187 } |
188 | 188 |
189 if (!root.dependencies.every(checkDependency)) return false; | 189 if (!root.dependencies.every(checkDependency)) return false; |
190 if (!root.devDependencies.every(checkDependency)) return false; | 190 if (!root.devDependencies.every(checkDependency)) return false; |
191 | 191 |
192 return true; | 192 return true; |
193 } | 193 } |
194 | 194 |
| 195 /// Gets dependencies if the lockfile is out of date with respect to the |
| 196 /// pubspec. |
| 197 Future ensureLockFileIsUpToDate() { |
| 198 return new Future.sync(() { |
| 199 if (isLockFileUpToDate()) return; |
| 200 |
| 201 if (lockFileExists) { |
| 202 log.message( |
| 203 "Your pubspec has changed, so we need to update your lockfile:"); |
| 204 } else { |
| 205 log.message( |
| 206 "You don't have a lockfile, so we need to generate that:"); |
| 207 } |
| 208 |
| 209 return getDependencies().then((_) { |
| 210 log.message("Got dependencies!"); |
| 211 }); |
| 212 }); |
| 213 } |
| 214 |
195 /// Loads the package graph for the application and all of its transitive | 215 /// Loads the package graph for the application and all of its transitive |
196 /// dependencies. | 216 /// dependencies. |
197 Future<PackageGraph> loadPackageGraph() { | 217 Future<PackageGraph> loadPackageGraph() { |
198 return Future.wait(loadLockFile().packages.values.map((id) { | 218 return Future.wait(loadLockFile().packages.values.map((id) { |
199 var source = cache.sources[id.source]; | 219 var source = cache.sources[id.source]; |
200 return source.getDirectory(id) | 220 return source.getDirectory(id) |
201 .then((dir) => new Package.load(id.name, dir, cache.sources)); | 221 .then((dir) => new Package.load(id.name, dir, cache.sources)); |
202 })).then((packages) { | 222 })).then((packages) { |
203 var packageMap = <String, Package>{}; | 223 var packageMap = <String, Package>{}; |
204 for (var package in packages) { | 224 for (var package in packages) { |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 // Skip directories and broken symlinks. | 338 // Skip directories and broken symlinks. |
319 if (!fileExists(file)) return false; | 339 if (!fileExists(file)) return false; |
320 | 340 |
321 var relative = path.relative(file, from: beneath); | 341 var relative = path.relative(file, from: beneath); |
322 if (_BLACKLISTED_FILES.contains(path.basename(relative))) return false; | 342 if (_BLACKLISTED_FILES.contains(path.basename(relative))) return false; |
323 return !path.split(relative).any(_BLACKLISTED_DIRS.contains); | 343 return !path.split(relative).any(_BLACKLISTED_DIRS.contains); |
324 }).toList(); | 344 }).toList(); |
325 }); | 345 }); |
326 } | 346 } |
327 } | 347 } |
OLD | NEW |