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/path/lib/path.dart' as path; | 9 import '../../pkg/path/lib/path.dart' as path; |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
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, destPath, path).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 |