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

Unified Diff: utils/pub/lock_file.dart

Issue 10542015: Start adding support for lock files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « no previous file | utils/pub/pubspec.dart » ('j') | utils/tests/pub/pubspec_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/lock_file.dart
diff --git a/utils/pub/lock_file.dart b/utils/pub/lock_file.dart
new file mode 100644
index 0000000000000000000000000000000000000000..92575fa9f5bd435f756c5c56ba641814c910fe76
--- /dev/null
+++ b/utils/pub/lock_file.dart
@@ -0,0 +1,79 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#library('lock_file');
+
+#import('package.dart');
+#import('source_registry.dart');
+#import('utils.dart');
+#import('version.dart');
+#import('yaml/yaml.dart');
+
+/**
+ * A parsed and validated `pubspec.lock` file.
+ */
+class LockFile {
+ /**
+ * The packages this lockfile pins.
+ */
+ Map<String, PackageId> packages;
+
+ LockFile._(this.packages);
+
+ LockFile.empty()
+ : packages = <PackageId>{};
+
+ /**
+ * Parses the lockfile whose text is [contents].
+ */
+ factory LockFile.parse(String contents, SourceRegistry sources) {
+ var packages = <PackageId>{};
+
+ if (contents.trim() == '') return new LockFile.empty();
+
+ var parsed = loadYaml(contents);
+
+ if (parsed.containsKey('packages')) {
+ var packageEntries = parsed['packages'];
+
+ packageEntries.forEach((name, spec) {
+ // Parse the version.
+ if (!spec.containsKey('version')) {
+ throw new FormatException('Package $name is missing a version.');
+ }
+ var version = new Version.parse(spec['version']);
+
+ // Parse the source.
+ if (!spec.containsKey('source')) {
+ throw new FormatException('Package $name is missing a source.');
+ }
+ var sourceName = spec['source'];
+ if (!sources.contains(sourceName)) {
+ throw new FormatException(
+ 'Could not find a source named $sourceName.');
+ }
+ var source = sources[sourceName];
+
+ // Parse the description.
+ if (!spec.containsKey('description')) {
+ throw new FormatException('Package $name is missing a description.');
+ }
+ var description = spec['description'];
+ source.validateDescription(description);
+
+ var id = new PackageId(source, version, description);
+
+ // Validate the name.
+ if (name != id.name) {
Jennifer Messerly 2012/06/06 00:23:52 How could this happen? It sounds like this means d
Bob Nystrom 2012/06/06 20:44:48 Exactly right. This shouldn't occur in practice, b
+ throw new FormatException(
+ "Package name $name doesn't match ${id.name}.");
+ }
+
+ packages[name] = id;
+ });
+ }
+
+ return new LockFile._(packages);
+ }
+}
« no previous file with comments | « no previous file | utils/pub/pubspec.dart » ('j') | utils/tests/pub/pubspec_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698