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

Unified Diff: utils/pub/source_registry.dart

Issue 10392089: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update both RegExps Created 8 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
« no previous file with comments | « utils/pub/source.dart ('k') | utils/pub/system_cache.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/source_registry.dart
diff --git a/utils/pub/source_registry.dart b/utils/pub/source_registry.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4cfdf693a36555d6ab153d6a1d692ac67a2988dd
--- /dev/null
+++ b/utils/pub/source_registry.dart
@@ -0,0 +1,61 @@
+// 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.
+
+/**
+ * A class that keeps track of [Source]s used for installing packages.
+ */
+class SourceRegistry {
+ final Map<String, Source> _map;
+ Source _default;
+
+ /**
+ * Creates a new registry with no packages registered.
+ */
+ SourceRegistry() : _map = <Source>{};
+
+ /**
+ * Returns the default source, which is used when no source is specified.
+ */
+ Source get defaultSource() => _default;
+
+ /**
+ * Sets the default source. This takes a string, which must be the name of a
+ * registered source.
+ */
+ void setDefault(String name) {
+ if (!_map.containsKey(name)) {
+ // TODO(nweiz): Real error-handling system
+ throw 'Default source $name is not in the registry';
+ }
+
+ _default = _map[name];
+ }
+
+ /**
+ * Registers a new source. This source may not have the same name as a source
+ * that's already been registered.
+ */
+ void register(Source source) {
+ if (_map.containsKey(source.name)) {
+ // TODO(nweiz): Real error-handling system
+ throw 'Source registry already has a source named ${source.name}';
+ }
+
+ _map[source.name] = source;
+ }
+
+ /**
+ * Returns the source named [name]. Throws an error if no such source has been
+ * registered. If [name] is null, returns the default source.
+ */
+ Source operator[](String name) {
+ if (name == null) {
+ if (defaultSource != null) return defaultSource;
+ // TODO(nweiz): Real error-handling system
+ throw 'No default source has been registered';
+ }
+ if (_map.containsKey(name)) return _map[name];
+ throw 'No source named $name is registered';
+ }
+}
« no previous file with comments | « utils/pub/source.dart ('k') | utils/pub/system_cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698