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

Unified Diff: mojo/public/dart/third_party/barback/lib/src/asset/asset_set.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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: mojo/public/dart/third_party/barback/lib/src/asset/asset_set.dart
diff --git a/mojo/public/dart/third_party/barback/lib/src/asset/asset_set.dart b/mojo/public/dart/third_party/barback/lib/src/asset/asset_set.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ac58774cafd221ccc1fb31aa2712fae606164ce9
--- /dev/null
+++ b/mojo/public/dart/third_party/barback/lib/src/asset/asset_set.dart
@@ -0,0 +1,76 @@
+// Copyright (c) 2013, 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 barback.asset.asset_set;
+
+import 'dart:collection';
+
+import 'asset.dart';
+import 'asset_id.dart';
+
+/// A set of [Asset]s with distinct IDs.
+///
+/// This uses the [AssetId] of each asset to determine uniqueness, so no two
+/// assets with the same ID can be in the set.
+class AssetSet extends IterableBase<Asset> {
+ final _assets = new Map<AssetId, Asset>();
+
+ /// The ids of the assets in the set.
+ Iterable<AssetId> get ids => _assets.keys;
+
+ AssetSet();
+
+ /// Creates a new AssetSet from the contents of [other].
+ ///
+ /// If multiple assets in [other] have the same id, the last one takes
+ /// precedence.
+ AssetSet.from(Iterable<Asset> other) {
+ for (var asset in other) {
+ _assets[asset.id] = asset;
+ }
+ }
+
+ Iterator<Asset> get iterator => _assets.values.iterator;
+
+ int get length => _assets.length;
+
+ /// Gets the [Asset] in the set with [id], or returns `null` if no asset with
+ /// that ID is present.
+ Asset operator[](AssetId id) => _assets[id];
+
+ /// Adds [asset] to the set.
+ ///
+ /// If there is already an asset with that ID in the set, it is replaced by
+ /// the new one. Returns [asset].
+ Asset add(Asset asset) {
+ _assets[asset.id] = asset;
+ return asset;
+ }
+
+ /// Adds [assets] to the set.
+ void addAll(Iterable<Asset> assets) {
+ assets.forEach(add);
+ }
+
+ /// Returns `true` if the set contains [asset].
+ bool contains(Asset asset) {
+ var other = _assets[asset.id];
+ return other == asset;
+ }
+
+ /// Returns `true` if the set contains an [Asset] with [id].
+ bool containsId(AssetId id) {
+ return _assets.containsKey(id);
+ }
+
+ /// If the set contains an [Asset] with [id], removes and returns it.
+ Asset removeId(AssetId id) => _assets.remove(id);
+
+ /// Removes all assets from the set.
+ void clear() {
+ _assets.clear();
+ }
+
+ String toString() => _assets.toString();
+}

Powered by Google App Engine
This is Rietveld 408576698