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

Unified Diff: sdk/lib/_internal/lib/collection_patch.dart

Issue 23494027: Make LinkedHashMap also have a factory constructor and be customizable (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 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
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | sdk/lib/collection/hash_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/lib/collection_patch.dart
diff --git a/sdk/lib/_internal/lib/collection_patch.dart b/sdk/lib/_internal/lib/collection_patch.dart
index c5fa69cf9dfd4caa245c585b23dc604aa7bb86be..e275fee4097d74e7a866e7893372a68b1cc872ee 100644
--- a/sdk/lib/_internal/lib/collection_patch.dart
+++ b/sdk/lib/_internal/lib/collection_patch.dart
@@ -6,23 +6,34 @@
import 'dart:_foreign_helper' show JS;
patch class HashMap<K, V> {
- patch factory HashMap({ bool equals(K key1, K key2), int hashCode(K key) }) {
- if (hashCode == null) {
- if (equals == null) {
- return new _HashMapImpl<K, V>();
+ patch factory HashMap({ bool equals(K key1, K key2),
+ int hashCode(K key),
+ bool isValidKey(potentialKey) }) {
+ if (isValidKey == null) {
+ if (hashCode == null) {
+ if (equals == null) {
+ return new _HashMap<K, V>();
+ }
+ if (identical(identical, equals)) {
+ return new _IdentityHashMap<K, V>();
+ }
+ hashCode = _defaultHashCode;
+ } else if (equals == null) {
+ equals = _defaultEquals;
}
- if (identical(identical, equals)) {
- return new _IdentityHashMap<K, V>();
+ } else {
+ if (hashCode == null) {
+ hashCode = _defaultHashCode;
+ }
+ if (equals == null) {
+ equals = _defaultEquals;
}
- hashCode = _defaultHashCode;
- } else if (equals == null) {
- equals = _defaultEquals;
}
- return new _CustomHashMap<K, V>(equals, hashCode);
+ return new _CustomHashMap<K, V>(equals, hashCode, isValidKey);
}
}
-class _HashMapImpl<K, V> implements HashMap<K, V> {
+class _HashMap<K, V> implements HashMap<K, V> {
int _length = 0;
// The hash map contents are divided into three parts: one part for
@@ -43,7 +54,7 @@ class _HashMapImpl<K, V> implements HashMap<K, V> {
// guard against concurrent modifications.
List _keys;
- _HashMapImpl();
+ _Hash();
int get length => _length;
bool get isEmpty => _length == 0;
@@ -234,7 +245,7 @@ class _HashMapImpl<K, V> implements HashMap<K, V> {
_setTableEntry(table, key, value);
}
- V _removeHashTableEntry(var table, K key) {
+ V _removeHashTableEntry(var table, Object key) {
if (table != null && _hasTableEntry(table, key)) {
V value = _getTableEntry(table, key);
_deleteTableEntry(table, key);
@@ -325,7 +336,7 @@ class _HashMapImpl<K, V> implements HashMap<K, V> {
}
}
-class _IdentityHashMap<K, V> extends _HashMapImpl<K, V> {
+class _IdentityHashMap<K, V> extends _HashMap<K, V> {
int _findBucketIndex(var bucket, var key) {
if (bucket == null) return -1;
int length = JS('int', '#.length', bucket);
@@ -336,10 +347,27 @@ class _IdentityHashMap<K, V> extends _HashMapImpl<K, V> {
}
}
-class _CustomHashMap<K, V> extends _HashMapImpl<K, V> {
+class _CustomHashMap<K, V> extends _HashMap<K, V> {
final _Equality<K> _equals;
final _Hasher<K> _hashCode;
- _CustomHashMap(this._equals, this._hashCode);
+ final _Predicate _validKey;
+ _CustomHashMap(this._equals, this._hashCode, bool validKey(potentialKey))
+ : _validKey = (validKey != null) ? validKey : ((v) => v is K);
+
+ V operator[](Object key) {
+ if (!_validKey(key)) return null;
+ return super[key];
+ }
+
+ bool containsKey(Object key) {
+ if (!_validKey(key)) return false;
+ return super.containsKey(key);
+ }
+
+ V remove(Object key) {
+ if (!_validKey(key)) return null;
+ return super.remove(key);
+ }
int _computeHashCode(var key) {
// We force the hash codes to be unsigned 30-bit integers to avoid
@@ -416,6 +444,34 @@ class HashMapKeyIterator<E> implements Iterator<E> {
}
patch class LinkedHashMap<K, V> {
+ patch factory LinkedHashMap({ bool equals(K key1, K key2),
+ int hashCode(K key),
+ bool isValidKey(potentialKey) }) {
+ if (isValidKey == null) {
+ if (hashCode == null) {
+ if (equals == null) {
+ return new _LinkedHashMap<K, V>();
+ }
+ if (identical(identical, equals)) {
+ return new _LinkedIdentityHashMap<K, V>();
+ }
+ hashCode = _defaultHashCode;
+ } else if (equals == null) {
+ equals = _defaultEquals;
+ }
+ } else {
+ if (hashCode == null) {
+ hashCode = _defaultHashCode;
+ }
+ if (equals == null) {
+ equals = _defaultEquals;
+ }
+ }
+ return new _LinkedCustomHashMap<K, V>(equals, hashCode, isValidKey);
+ }
+}
+
+class _LinkedHashMap<K, V> implements LinkedHashMap<K, V> {
int _length = 0;
// The hash map contents are divided into three parts: one part for
@@ -440,22 +496,22 @@ patch class LinkedHashMap<K, V> {
// iterated over.
int _modifications = 0;
- patch LinkedHashMap();
+ _LinkedHash();
- patch int get length => _length;
- patch bool get isEmpty => _length == 0;
- patch bool get isNotEmpty => !isEmpty;
+ int get length => _length;
+ bool get isEmpty => _length == 0;
+ bool get isNotEmpty => !isEmpty;
- patch Iterable<K> get keys {
+ Iterable<K> get keys {
return new LinkedHashMapKeyIterable<K>(this);
}
- patch Iterable<V> get values {
+ Iterable<V> get values {
return keys.map((each) => this[each]);
}
- patch bool containsKey(Object key) {
+ bool containsKey(Object key) {
if (_isStringKey(key)) {
var strings = _strings;
if (strings == null) return false;
@@ -474,17 +530,17 @@ patch class LinkedHashMap<K, V> {
}
}
- patch bool containsValue(Object value) {
+ bool containsValue(Object value) {
return keys.any((each) => this[each] == value);
}
- patch void addAll(Map<K, V> other) {
+ void addAll(Map<K, V> other) {
other.forEach((K key, V value) {
this[key] = value;
});
}
- patch V operator[](Object key) {
+ V operator[](Object key) {
if (_isStringKey(key)) {
var strings = _strings;
if (strings == null) return null;
@@ -506,7 +562,7 @@ patch class LinkedHashMap<K, V> {
}
}
- patch void operator[]=(K key, V value) {
+ void operator[]=(K key, V value) {
if (_isStringKey(key)) {
var strings = _strings;
if (strings == null) _strings = strings = _newHashTable();
@@ -536,14 +592,14 @@ patch class LinkedHashMap<K, V> {
}
}
- patch V putIfAbsent(K key, V ifAbsent()) {
+ V putIfAbsent(K key, V ifAbsent()) {
if (containsKey(key)) return this[key];
V value = ifAbsent();
this[key] = value;
return value;
}
- patch V remove(Object key) {
+ V remove(Object key) {
if (_isStringKey(key)) {
return _removeHashTableEntry(_strings, key);
} else if (_isNumericKey(key)) {
@@ -564,7 +620,7 @@ patch class LinkedHashMap<K, V> {
}
}
- patch void clear() {
+ void clear() {
if (_length > 0) {
_strings = _nums = _rest = _first = _last = null;
_length = 0;
@@ -572,7 +628,7 @@ patch class LinkedHashMap<K, V> {
}
}
- patch void forEach(void action(K key, V value)) {
+ void forEach(void action(K key, V value)) {
LinkedHashMapCell cell = _first;
int modifications = _modifications;
while (cell != null) {
@@ -593,7 +649,7 @@ patch class LinkedHashMap<K, V> {
}
}
- V _removeHashTableEntry(var table, K key) {
+ V _removeHashTableEntry(var table, Object key) {
if (table == null) return null;
LinkedHashMapCell cell = _getTableEntry(table, key);
if (cell == null) return null;
@@ -655,7 +711,7 @@ patch class LinkedHashMap<K, V> {
return key is num && JS('bool', '(# & 0x3ffffff) === #', key, key);
}
- static int _computeHashCode(var key) {
+ int _computeHashCode(var key) {
// We force the hash codes to be unsigned 30-bit integers to avoid
// issues with problematic keys like '__proto__'. Another option
// would be to throw an exception if the hash code isn't a number.
@@ -675,12 +731,12 @@ patch class LinkedHashMap<K, V> {
JS('void', 'delete #[#]', table, key);
}
- static List _getBucket(var table, var key) {
+ List _getBucket(var table, var key) {
var hash = _computeHashCode(key);
return JS('var', '#[#]', table, hash);
}
- static int _findBucketIndex(var bucket, var key) {
+ int _findBucketIndex(var bucket, var key) {
if (bucket == null) return -1;
int length = JS('int', '#.length', bucket);
for (int i = 0; i < length; i++) {
@@ -702,6 +758,61 @@ patch class LinkedHashMap<K, V> {
_deleteTableEntry(table, temporaryKey);
return table;
}
+
+ String toString() => Maps.mapToString(this);
+}
+
+class _LinkedIdentityHashMap<K, V> extends _LinkedHashMap<K, V> {
+ int _findBucketIndex(var bucket, var key) {
+ if (bucket == null) return -1;
+ int length = JS('int', '#.length', bucket);
+ for (int i = 0; i < length; i++) {
+ LinkedHashMapCell cell = JS('var', '#[#]', bucket, i);
+ if (identical(cell._key, key)) return i;
+ }
+ return -1;
+ }
+}
+
+class _LinkedCustomHashMap<K, V> extends _LinkedHashMap<K, V> {
+ final _Equality<K> _equals;
+ final _Hasher<K> _hashCode;
+ final _Predicate _validKey;
+ _LinkedCustomHashMap(this._equals, this._hashCode,
+ bool validKey(potentialKey))
+ : _validKey = (validKey != null) ? validKey : ((v) => v is K);
+
+ V operator[](Object key) {
+ if (!_validKey(key)) return null;
+ return super[key];
+ }
+
+ bool containsKey(Object key) {
+ if (!_validKey(key)) return false;
+ return super.containsKey(key);
+ }
+
+ V remove(Object key) {
+ if (!_validKey(key)) return null;
+ return super.remove(key);
+ }
+
+ int _computeHashCode(var key) {
+ // We force the hash codes to be unsigned 30-bit integers to avoid
+ // issues with problematic keys like '__proto__'. Another option
+ // would be to throw an exception if the hash code isn't a number.
+ return JS('int', '# & 0x3ffffff', _hashCode(key));
+ }
+
+ int _findBucketIndex(var bucket, var key) {
+ if (bucket == null) return -1;
+ int length = JS('int', '#.length', bucket);
+ for (int i = 0; i < length; i++) {
+ LinkedHashMapCell cell = JS('var', '#[#]', bucket, i);
+ if (_equals(cell._key, key)) return i;
+ }
+ return -1;
+ }
}
class LinkedHashMapCell {
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | sdk/lib/collection/hash_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698