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 sdk_source; | 5 library sdk_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 12 matching lines...) Expand all Loading... |
23 | 23 |
24 /// SDK packages are not individually versioned. Instead, their version is | 24 /// SDK packages are not individually versioned. Instead, their version is |
25 /// inferred from the revision number of the SDK itself. | 25 /// inferred from the revision number of the SDK itself. |
26 Future<Pubspec> describe(PackageId id) { | 26 Future<Pubspec> describe(PackageId id) { |
27 return defer(() { | 27 return defer(() { |
28 var packageDir = _getPackagePath(id); | 28 var packageDir = _getPackagePath(id); |
29 // TODO(rnystrom): What if packageDir is null? | 29 // TODO(rnystrom): What if packageDir is null? |
30 var pubspec = new Pubspec.load(id.name, packageDir, systemCache.sources); | 30 var pubspec = new Pubspec.load(id.name, packageDir, systemCache.sources); |
31 // Ignore the pubspec's version, and use the SDK's. | 31 // Ignore the pubspec's version, and use the SDK's. |
32 return new Pubspec(id.name, sdk.version, pubspec.dependencies, | 32 return new Pubspec(id.name, sdk.version, pubspec.dependencies, |
33 pubspec.environment); | 33 pubspec.devDependencies, pubspec.environment); |
34 }); | 34 }); |
35 } | 35 } |
36 | 36 |
37 /// Since all the SDK files are already available locally, installation just | 37 /// Since all the SDK files are already available locally, installation just |
38 /// involves symlinking the SDK library into the packages directory. | 38 /// involves symlinking the SDK library into the packages directory. |
39 Future<bool> install(PackageId id, String destPath) { | 39 Future<bool> install(PackageId id, String destPath) { |
40 return defer(() { | 40 return defer(() { |
41 var path = _getPackagePath(id); | 41 var path = _getPackagePath(id); |
42 if (path == null) return false; | 42 if (path == null) return false; |
43 | 43 |
44 return createPackageSymlink(id.name, path, destPath).then((_) => true); | 44 return createPackageSymlink(id.name, path, destPath).then((_) => true); |
45 }); | 45 }); |
46 } | 46 } |
47 | 47 |
48 /// Gets the path in the SDK's "pkg" directory to the directory containing | 48 /// Gets the path in the SDK's "pkg" directory to the directory containing |
49 /// package [id]. Returns `null` if the package could not be found. | 49 /// package [id]. Returns `null` if the package could not be found. |
50 String _getPackagePath(PackageId id) { | 50 String _getPackagePath(PackageId id) { |
51 var pkgPath = path.join(sdk.rootDirectory, "pkg", id.description); | 51 var pkgPath = path.join(sdk.rootDirectory, "pkg", id.description); |
52 return dirExists(pkgPath) ? pkgPath : null; | 52 return dirExists(pkgPath) ? pkgPath : null; |
53 } | 53 } |
54 } | 54 } |
OLD | NEW |