Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(856)

Unified Diff: utils/pub/version_solver.dart

Issue 10803042: Reverting 9767. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/pub/source.dart ('k') | utils/tests/pub/lock_file_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/version_solver.dart
diff --git a/utils/pub/version_solver.dart b/utils/pub/version_solver.dart
index a71a04f8ff79d3cc62a633304ca0d0d6233419ef..d02dc447b4d67d93b02bb565f69a62baedb35a4f 100644
--- a/utils/pub/version_solver.dart
+++ b/utils/pub/version_solver.dart
@@ -38,7 +38,6 @@
#library('version_solver');
#import('dart:json');
-#import('lock_file.dart');
#import('package.dart');
#import('pubspec.dart');
#import('root_source.dart');
@@ -50,28 +49,26 @@
/**
* Attempts to select the best concrete versions for all of the transitive
* dependencies of [root] taking into account all of the [VersionConstraint]s
- * that those dependencies place on each other and the requirements imposed by
- * [lockFile]. If successful, completes to a [Map] that maps package names to
- * the selected version for that package. If it fails, the future will complete
- * with a [NoVersionException], [DisjointConstraintException], or
- * [CouldNotSolveException].
+ * that those dependencies place on each other. If successful, completes to a
+ * [Map] that maps package names to the selected version for that package. If
+ * it fails, the future will complete with a [NoVersionException],
+ * [DisjointConstraintException], or [CouldNotSolveException].
*/
-Future<List<PackageId>> resolveVersions(SourceRegistry sources, Package root,
- LockFile lockFile) {
- return new VersionSolver(sources, root, lockFile).solve();
+Future<List<PackageId>> resolveVersions(SourceRegistry sources, Package root) {
+ return new VersionSolver(sources, root).solve();
}
class VersionSolver {
final SourceRegistry _sources;
final Package _root;
- final LockFile lockFile;
final PubspecCache _pubspecs;
final Map<String, Dependency> _packages;
final Queue<WorkItem> _work;
int _numIterations = 0;
- VersionSolver(SourceRegistry sources, this._root, this.lockFile)
+ VersionSolver(SourceRegistry sources, Package root)
: _sources = sources,
+ _root = root,
_pubspecs = new PubspecCache(sources),
_packages = <Dependency>{},
_work = new Queue<WorkItem>();
@@ -132,21 +129,9 @@ class VersionSolver {
}
List<PackageId> buildResults() {
- return _packages.getValues().filter((dep) => dep.isDependedOn).map((dep) {
- var description = dep.description;
-
- // If the lockfile contains a fully-resolved description for the package,
- // use that. This allows e.g. Git to ensure that the same commit is used.
- var lockedPackage = lockFile.packages[dep.name];
- if (lockedPackage != null && lockedPackage.version == dep.version &&
- lockedPackage.source.name == dep.source.name &&
- dep.source.descriptionsEqual(
- description, lockedPackage.description)) {
- description = lockedPackage.description;
- }
-
- return new PackageId(dep.source, dep.version, description);
- });
+ return _packages.getValues()
+ .filter((dep) => dep.isDependedOn)
+ .map((dep) => new PackageId(dep.source, dep.version, dep.description));
}
}
@@ -290,17 +275,6 @@ class ChangeConstraint implements WorkItem {
return null;
}
- // If the dependency is on a package in the lockfile, use the lockfile's
- // version for that package if it's valid given the other constraints.
- var lockedPackage = solver.lockFile.packages[name];
- if (lockedPackage != null) {
- var lockedVersion = lockedPackage.version;
- if (newConstraint.allows(lockedVersion)) {
- solver.enqueue(new ChangeVersion(source, description, lockedVersion));
- return null;
- }
- }
-
// The constraint has changed, so see what the best version of the package
// that meets the new constraint is.
return source.getVersions(description).transform((versions) {
« no previous file with comments | « utils/pub/source.dart ('k') | utils/tests/pub/lock_file_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698