1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Microsoft Public License. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Microsoft Public License, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Microsoft Public License.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using System;
using System.Collections.Generic;
namespace Microsoft.Scripting.Utils {
// Like ReadOnlyCollection<T>: wraps an IDictionary<K, V> in a read-only wrapper
[Serializable]
public sealed class ReadOnlyDictionary<K, V> : IDictionary<K, V> {
// For wrapping non-readonly Keys, Values collections
// Not used for standard dictionaries, which return read-only Keys and Values
private sealed class ReadOnlyWrapper<T> : ICollection<T> {
// no idea why this warning is here
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
private readonly ICollection<T> _collection;
internal ReadOnlyWrapper(ICollection<T> collection) {
_collection = collection;
}
#region ICollection<T> Members
public void Add(T item) {
throw new NotSupportedException("Collection is read-only.");
}
public void Clear() {
throw new NotSupportedException("Collection is read-only.");
}
public bool Contains(T item) {
return _collection.Contains(item);
}
public void CopyTo(T[] array, int arrayIndex) {
_collection.CopyTo(array, arrayIndex);
}
public int Count {
get { return _collection.Count; }
}
public bool IsReadOnly {
get { return true; }
}
public bool Remove(T item) {
throw new NotSupportedException("Collection is read-only.");
}
#endregion
#region IEnumerable<T> Members
public IEnumerator<T> GetEnumerator() {
return _collection.GetEnumerator();
}
#endregion
#region IEnumerable Members
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
return _collection.GetEnumerator();
}
#endregion
}
private readonly IDictionary<K, V> _dict;
public ReadOnlyDictionary(IDictionary<K, V> dict) {
ReadOnlyDictionary<K, V> rodict = dict as ReadOnlyDictionary<K, V>;
_dict = (rodict != null) ? rodict._dict : dict;
}
#region IDictionary<K,V> Members
public bool ContainsKey(K key) {
return _dict.ContainsKey(key);
}
public ICollection<K> Keys {
get {
ICollection<K> keys = _dict.Keys;
if (!keys.IsReadOnly) {
return new ReadOnlyWrapper<K>(keys);
}
return keys;
}
}
public bool TryGetValue(K key, out V value) {
return _dict.TryGetValue(key, out value);
}
public ICollection<V> Values {
get {
ICollection<V> values = _dict.Values;
if (!values.IsReadOnly) {
return new ReadOnlyWrapper<V>(values);
}
return values;
}
}
public V this[K key] {
get {
return _dict[key];
}
}
void IDictionary<K, V>.Add(K key, V value) {
throw new NotSupportedException("Collection is read-only.");
}
bool IDictionary<K, V>.Remove(K key) {
throw new NotSupportedException("Collection is read-only.");
}
V IDictionary<K, V>.this[K key] {
get {
return _dict[key];
}
set {
throw new NotSupportedException("Collection is read-only.");
}
}
#endregion
#region ICollection<KeyValuePair<K,V>> Members
public bool Contains(KeyValuePair<K, V> item) {
return _dict.Contains(item);
}
public void CopyTo(KeyValuePair<K, V>[] array, int arrayIndex) {
_dict.CopyTo(array, arrayIndex);
}
public int Count {
get { return _dict.Count; }
}
public bool IsReadOnly {
get { return true; }
}
void ICollection<KeyValuePair<K, V>>.Add(KeyValuePair<K, V> item) {
throw new NotSupportedException("Collection is read-only.");
}
void ICollection<KeyValuePair<K, V>>.Clear() {
throw new NotSupportedException("Collection is read-only.");
}
bool ICollection<KeyValuePair<K,V>>.Remove(KeyValuePair<K, V> item) {
throw new NotSupportedException("Collection is read-only.");
}
#endregion
#region IEnumerable<KeyValuePair<K,V>> Members
public IEnumerator<KeyValuePair<K, V>> GetEnumerator() {
return _dict.GetEnumerator();
}
#endregion
#region IEnumerable Members
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
return _dict.GetEnumerator();
}
#endregion
}
}
|