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

Unified Diff: utils/pub/lock_file.dart

Issue 10796021: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Name change 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
Index: utils/pub/lock_file.dart
diff --git a/utils/pub/lock_file.dart b/utils/pub/lock_file.dart
index 92575fa9f5bd435f756c5c56ba641814c910fe76..d4227be2df7f939663cb2fce35846ced18fe13ad 100644
--- a/utils/pub/lock_file.dart
+++ b/utils/pub/lock_file.dart
@@ -4,6 +4,7 @@
#library('lock_file');
+#import('dart:json');
#import('package.dart');
#import('source_registry.dart');
#import('utils.dart');
@@ -60,7 +61,7 @@ class LockFile {
throw new FormatException('Package $name is missing a description.');
}
var description = spec['description'];
- source.validateDescription(description);
+ source.validateDescription(description, fromLockFile: true);
var id = new PackageId(source, version, description);
@@ -76,4 +77,22 @@ class LockFile {
return new LockFile._(packages);
}
+
+ /**
+ * Returns the serialized YAML text of the lock file.
+ */
+ String serialize() {
+ var packagesObj = <Map>{};
+ packages.forEach((name, id) {
+ packagesObj[name] = {
+ 'version': id.version.toString(),
+ 'source': id.source.name,
+ 'description': id.description
+ };
+ });
+
+ // TODO(nweiz): Serialize using the YAML library once it supports
+ // serialization. For now, we use JSON, since it's a subset of YAML anyway.
+ return JSON.stringify({'packages': packagesObj});
+ }
}

Powered by Google App Engine
This is Rietveld 408576698