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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 | 440 |
441 RemoveConstraint(this.depender, this.dependent); | 441 RemoveConstraint(this.depender, this.dependent); |
442 | 442 |
443 Future process(VersionSolver solver) { | 443 Future process(VersionSolver solver) { |
444 var dependency = solver.getDependency(dependent); | 444 var dependency = solver.getDependency(dependent); |
445 var oldDependency = dependency.clone(); | 445 var oldDependency = dependency.clone(); |
446 _removed = dependency.removeConstraint(depender); | 446 _removed = dependency.removeConstraint(depender); |
447 return _processChange(solver, oldDependency, dependency); | 447 return _processChange(solver, oldDependency, dependency); |
448 } | 448 } |
449 | 449 |
450 void undo() { | 450 void undo(VersionSolver solver) { |
451 solver.getDependency(dependent).placeConstraint(depender, _removed); | 451 solver.getDependency(dependent).placeConstraint(depender, _removed); |
452 } | 452 } |
453 } | 453 } |
454 | 454 |
455 /** [package]'s version is no longer constrained by the lockfile. */ | 455 /** [package]'s version is no longer constrained by the lockfile. */ |
456 class UnlockPackage implements WorkItem { | 456 class UnlockPackage implements WorkItem { |
457 /** The package being unlocked. */ | 457 /** The package being unlocked. */ |
458 Dependency package; | 458 Dependency package; |
459 | 459 |
460 UnlockPackage(this.package); | 460 UnlockPackage(this.package); |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 final description1; | 700 final description1; |
701 final description2; | 701 final description2; |
702 | 702 |
703 DescriptionMismatchException(this.package, this.description1, | 703 DescriptionMismatchException(this.package, this.description1, |
704 this.description2); | 704 this.description2); |
705 | 705 |
706 // TODO(nweiz): Dump to YAML when that's supported | 706 // TODO(nweiz): Dump to YAML when that's supported |
707 String toString() => "Package '$package' has conflicting descriptions " | 707 String toString() => "Package '$package' has conflicting descriptions " |
708 "'${JSON.stringify(description1)}' and '${JSON.stringify(description2)}'"; | 708 "'${JSON.stringify(description1)}' and '${JSON.stringify(description2)}'"; |
709 } | 709 } |
OLD | NEW |