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

Unified Diff: sdk/lib/_internal/pub/lib/src/solver/version_queue.dart

Issue 1125373002: Convert a bunch of version solver code to use async/await. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 years, 7 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
Index: sdk/lib/_internal/pub/lib/src/solver/version_queue.dart
diff --git a/sdk/lib/_internal/pub/lib/src/solver/version_queue.dart b/sdk/lib/_internal/pub/lib/src/solver/version_queue.dart
index 78fa58705f06846d188f5965b2ab097ca2ca21cc..a6723aac50c3d6d18593f2a2ae1caab72dd98520 100644
--- a/sdk/lib/_internal/pub/lib/src/solver/version_queue.dart
+++ b/sdk/lib/_internal/pub/lib/src/solver/version_queue.dart
@@ -56,16 +56,13 @@ class VersionQueue {
/// synchronously. If there is no locked version, we need to get the list of
/// versions asynchronously before we can determine what the first one is.
static Future<VersionQueue> create(PackageId locked,
- PackageIdGenerator allowedGenerator) {
+ PackageIdGenerator allowedGenerator) async {
var versions = new VersionQueue._(locked, allowedGenerator);
- // If there is a locked version, it's the current one so it's synchronously
- // available now.
- if (locked != null) return new Future.value(versions);
-
- // Otherwise, the current version needs to be calculated before we can
+ // If there isn't a locked version, it needs to be calculated before we can
// return.
- return versions._calculateAllowed().then((_) => versions);
+ if (locked == null) await versions._calculateAllowed();
+ return versions;
}
VersionQueue._(this._locked, this._allowedGenerator);
@@ -74,7 +71,7 @@ class VersionQueue {
///
/// Returns `true` if it moved to a new version (which can be accessed from
/// [current]. Returns `false` if there are no more versions.
- Future<bool> advance() {
+ Future<bool> advance() async {
// Any failure was the fault of the previous version, not necessarily the
// new one.
_hasFailed = false;
@@ -83,15 +80,14 @@ class VersionQueue {
if (_locked != null) {
// Advancing past the locked version, so need to load the others now
// so that [current] is available.
- return _calculateAllowed().then((_) {
- _locked = null;
- return _allowed.isNotEmpty;
- });
+ await _calculateAllowed();
+ _locked = null;
+ } else {
+ // Move to the next allowed version.
+ _allowed.removeFirst();
}
- // Move to the next allowed version.
- _allowed.removeFirst();
- return new Future.value(_allowed.isNotEmpty);
+ return _allowed.isNotEmpty;
}
/// Marks the selected version as being directly or indirectly responsible
@@ -102,9 +98,8 @@ class VersionQueue {
/// Determines the list of allowed versions matching its constraint and places
/// them in [_allowed].
- Future _calculateAllowed() {
- return _allowedGenerator().then((allowed) {
- _allowed = new Queue<PackageId>.from(allowed);
- });
+ Future _calculateAllowed() async {
+ var allowed = await _allowedGenerator();
+ _allowed = new Queue<PackageId>.from(allowed);
}
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/solver/dependency_queue.dart ('k') | sdk/lib/_internal/pub/lib/src/solver/version_solver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698