OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #library('source_registry'); | 5 #library('source_registry'); |
6 | 6 |
7 #import('source.dart'); | 7 #import('source.dart'); |
8 | 8 |
9 /** | 9 /** |
10 * A class that keeps track of [Source]s used for installing packages. | 10 * A class that keeps track of [Source]s used for installing packages. |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 void register(Source source) { | 43 void register(Source source) { |
44 if (_map.containsKey(source.name)) { | 44 if (_map.containsKey(source.name)) { |
45 // TODO(nweiz): Real error-handling system | 45 // TODO(nweiz): Real error-handling system |
46 throw 'Source registry already has a source named ${source.name}'; | 46 throw 'Source registry already has a source named ${source.name}'; |
47 } | 47 } |
48 | 48 |
49 _map[source.name] = source; | 49 _map[source.name] = source; |
50 } | 50 } |
51 | 51 |
52 /** | 52 /** |
| 53 * Returns `true` if there is a source named [name]. |
| 54 */ |
| 55 bool contains(String name) => _map.containsKey(name); |
| 56 |
| 57 /** |
53 * Returns the source named [name]. Throws an error if no such source has been | 58 * Returns the source named [name]. Throws an error if no such source has been |
54 * registered. If [name] is null, returns the default source. | 59 * registered. If [name] is null, returns the default source. |
55 */ | 60 */ |
56 Source operator[](String name) { | 61 Source operator[](String name) { |
57 if (name == null) { | 62 if (name == null) { |
58 if (defaultSource != null) return defaultSource; | 63 if (defaultSource != null) return defaultSource; |
59 // TODO(nweiz): Real error-handling system | 64 // TODO(nweiz): Real error-handling system |
60 throw 'No default source has been registered'; | 65 throw 'No default source has been registered'; |
61 } | 66 } |
62 if (_map.containsKey(name)) return _map[name]; | 67 if (_map.containsKey(name)) return _map[name]; |
63 throw 'No source named $name is registered'; | 68 throw 'No source named $name is registered'; |
64 } | 69 } |
65 } | 70 } |
OLD | NEW |