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 /** | 5 /** |
6 * Attempts to resolve a set of version constraints for a package dependency | 6 * Attempts to resolve a set of version constraints for a package dependency |
7 * graph and select an appropriate set of best specific versions for all | 7 * graph and select an appropriate set of best specific versions for all |
8 * dependent packages. It works iteratively and tries to reach a stable | 8 * dependent packages. It works iteratively and tries to reach a stable |
9 * solution where the constraints of all dependencies are met. If it fails to | 9 * solution where the constraints of all dependencies are met. If it fails to |
10 * reach a solution after a certain number of iterations, it assumes the | 10 * reach a solution after a certain number of iterations, it assumes the |
(...skipping 17 matching lines...) Expand all Loading... |
28 * | 28 * |
29 * When a constraint on a package changes, we re-calculate the overall | 29 * When a constraint on a package changes, we re-calculate the overall |
30 * constraint on that package. I.e. with a shared dependency, we intersect all | 30 * constraint on that package. I.e. with a shared dependency, we intersect all |
31 * of the constraints that its depending packages place on it. If that overall | 31 * of the constraints that its depending packages place on it. If that overall |
32 * constraint changes (say from "<3.0.0" to "<2.5.0"), then the currently | 32 * constraint changes (say from "<3.0.0" to "<2.5.0"), then the currently |
33 * picked version for that package may fall outside of the new constraint. If | 33 * picked version for that package may fall outside of the new constraint. If |
34 * that happens, we find the new best version that meets the updated constraint | 34 * that happens, we find the new best version that meets the updated constraint |
35 * and then the change the package to use that version. That cycles back up to | 35 * and then the change the package to use that version. That cycles back up to |
36 * the beginning again. | 36 * the beginning again. |
37 */ | 37 */ |
38 #library('version_solver'); | 38 library version_solver; |
39 | 39 |
40 #import('dart:json'); | 40 import 'dart:json'; |
41 #import('dart:math'); | 41 import 'dart:math'; |
42 #import('lock_file.dart'); | 42 import 'lock_file.dart'; |
43 #import('package.dart'); | 43 import 'package.dart'; |
44 #import('pubspec.dart'); | 44 import 'pubspec.dart'; |
45 #import('root_source.dart'); | 45 import 'root_source.dart'; |
46 #import('source.dart'); | 46 import 'source.dart'; |
47 #import('source_registry.dart'); | 47 import 'source_registry.dart'; |
48 #import('utils.dart'); | 48 import 'utils.dart'; |
49 #import('version.dart'); | 49 import 'version.dart'; |
50 | 50 |
51 /** | 51 /** |
52 * Attempts to select the best concrete versions for all of the transitive | 52 * Attempts to select the best concrete versions for all of the transitive |
53 * dependencies of [root] taking into account all of the [VersionConstraint]s | 53 * dependencies of [root] taking into account all of the [VersionConstraint]s |
54 * that those dependencies place on each other and the requirements imposed by | 54 * that those dependencies place on each other and the requirements imposed by |
55 * [lockFile]. If successful, completes to a [Map] that maps package names to | 55 * [lockFile]. If successful, completes to a [Map] that maps package names to |
56 * the selected version for that package. If it fails, the future will complete | 56 * the selected version for that package. If it fails, the future will complete |
57 * with a [NoVersionException], [DisjointConstraintException], or | 57 * with a [NoVersionException], [DisjointConstraintException], or |
58 * [CouldNotSolveException]. | 58 * [CouldNotSolveException]. |
59 */ | 59 */ |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
723 final description1; | 723 final description1; |
724 final description2; | 724 final description2; |
725 | 725 |
726 DescriptionMismatchException(this.package, this.description1, | 726 DescriptionMismatchException(this.package, this.description1, |
727 this.description2); | 727 this.description2); |
728 | 728 |
729 // TODO(nweiz): Dump to YAML when that's supported | 729 // TODO(nweiz): Dump to YAML when that's supported |
730 String toString() => "Package '$package' has conflicting descriptions " | 730 String toString() => "Package '$package' has conflicting descriptions " |
731 "'${JSON.stringify(description1)}' and '${JSON.stringify(description2)}'"; | 731 "'${JSON.stringify(description1)}' and '${JSON.stringify(description2)}'"; |
732 } | 732 } |
OLD | NEW |