1 | // Protocol Buffers - Google's data interchange format
|
---|
2 | // Copyright 2008 Google Inc. All rights reserved.
|
---|
3 | // http://github.com/jskeet/dotnet-protobufs/
|
---|
4 | // Original C++/Java/Python code:
|
---|
5 | // http://code.google.com/p/protobuf/
|
---|
6 | //
|
---|
7 | // Redistribution and use in source and binary forms, with or without
|
---|
8 | // modification, are permitted provided that the following conditions are
|
---|
9 | // met:
|
---|
10 | //
|
---|
11 | // * Redistributions of source code must retain the above copyright
|
---|
12 | // notice, this list of conditions and the following disclaimer.
|
---|
13 | // * Redistributions in binary form must reproduce the above
|
---|
14 | // copyright notice, this list of conditions and the following disclaimer
|
---|
15 | // in the documentation and/or other materials provided with the
|
---|
16 | // distribution.
|
---|
17 | // * Neither the name of Google Inc. nor the names of its
|
---|
18 | // contributors may be used to endorse or promote products derived from
|
---|
19 | // this software without specific prior written permission.
|
---|
20 | //
|
---|
21 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
22 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
23 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
24 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
25 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
26 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
27 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
28 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
29 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
30 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
31 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
32 | using System;
|
---|
33 | using System.Collections;
|
---|
34 | using System.Collections.Generic;
|
---|
35 |
|
---|
36 | namespace Google.ProtocolBuffers.Collections
|
---|
37 | {
|
---|
38 | /// <summary>
|
---|
39 | /// Read-only wrapper around another dictionary.
|
---|
40 | /// </summary>
|
---|
41 | public sealed class ReadOnlyDictionary<TKey, TValue> : IDictionary<TKey, TValue>
|
---|
42 | {
|
---|
43 | private readonly IDictionary<TKey, TValue> wrapped;
|
---|
44 |
|
---|
45 | public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped)
|
---|
46 | {
|
---|
47 | this.wrapped = wrapped;
|
---|
48 | }
|
---|
49 |
|
---|
50 | public void Add(TKey key, TValue value)
|
---|
51 | {
|
---|
52 | throw new InvalidOperationException();
|
---|
53 | }
|
---|
54 |
|
---|
55 | public bool ContainsKey(TKey key)
|
---|
56 | {
|
---|
57 | return wrapped.ContainsKey(key);
|
---|
58 | }
|
---|
59 |
|
---|
60 | public ICollection<TKey> Keys
|
---|
61 | {
|
---|
62 | get { return wrapped.Keys; }
|
---|
63 | }
|
---|
64 |
|
---|
65 | public bool Remove(TKey key)
|
---|
66 | {
|
---|
67 | throw new InvalidOperationException();
|
---|
68 | }
|
---|
69 |
|
---|
70 | public bool TryGetValue(TKey key, out TValue value)
|
---|
71 | {
|
---|
72 | return wrapped.TryGetValue(key, out value);
|
---|
73 | }
|
---|
74 |
|
---|
75 | public ICollection<TValue> Values
|
---|
76 | {
|
---|
77 | get { return wrapped.Values; }
|
---|
78 | }
|
---|
79 |
|
---|
80 | public TValue this[TKey key]
|
---|
81 | {
|
---|
82 | get { return wrapped[key]; }
|
---|
83 | set { throw new InvalidOperationException(); }
|
---|
84 | }
|
---|
85 |
|
---|
86 | public void Add(KeyValuePair<TKey, TValue> item)
|
---|
87 | {
|
---|
88 | throw new InvalidOperationException();
|
---|
89 | }
|
---|
90 |
|
---|
91 | public void Clear()
|
---|
92 | {
|
---|
93 | throw new InvalidOperationException();
|
---|
94 | }
|
---|
95 |
|
---|
96 | public bool Contains(KeyValuePair<TKey, TValue> item)
|
---|
97 | {
|
---|
98 | return wrapped.Contains(item);
|
---|
99 | }
|
---|
100 |
|
---|
101 | public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
|
---|
102 | {
|
---|
103 | wrapped.CopyTo(array, arrayIndex);
|
---|
104 | }
|
---|
105 |
|
---|
106 | public int Count
|
---|
107 | {
|
---|
108 | get { return wrapped.Count; }
|
---|
109 | }
|
---|
110 |
|
---|
111 | public bool IsReadOnly
|
---|
112 | {
|
---|
113 | get { return true; }
|
---|
114 | }
|
---|
115 |
|
---|
116 | public bool Remove(KeyValuePair<TKey, TValue> item)
|
---|
117 | {
|
---|
118 | throw new InvalidOperationException();
|
---|
119 | }
|
---|
120 |
|
---|
121 | public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
|
---|
122 | {
|
---|
123 | return wrapped.GetEnumerator();
|
---|
124 | }
|
---|
125 |
|
---|
126 | IEnumerator IEnumerable.GetEnumerator()
|
---|
127 | {
|
---|
128 | return ((IEnumerable) wrapped).GetEnumerator();
|
---|
129 | }
|
---|
130 |
|
---|
131 | public override bool Equals(object obj)
|
---|
132 | {
|
---|
133 | return wrapped.Equals(obj);
|
---|
134 | }
|
---|
135 |
|
---|
136 | public override int GetHashCode()
|
---|
137 | {
|
---|
138 | return wrapped.GetHashCode();
|
---|
139 | }
|
---|
140 |
|
---|
141 | public override string ToString()
|
---|
142 | {
|
---|
143 | return wrapped.ToString();
|
---|
144 | }
|
---|
145 | }
|
---|
146 | } |
---|