forked from ctacke/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OrderedDictionary.cs
241 lines (209 loc) · 5.81 KB
/
OrderedDictionary.cs
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace System.Collections.Specialized
{
public class SafeIndexedDictionary<TKey, TValue> : IEnumerable<KeyValuePair<TKey, TValue>>
{
private Dictionary<TKey, int> m_ordinalLookup = new Dictionary<TKey,int>();
private List<KeyValuePair<TKey, TValue>> m_list = new List<KeyValuePair<TKey, TValue>>();
private object m_syncRoot = new object();
public SafeIndexedDictionary()
{
}
public SafeIndexedDictionary(IEqualityComparer<TKey> comparer)
: this()
{
}
public void Add(TKey key, TValue value)
{
lock (m_syncRoot)
{
var kvp = new KeyValuePair<TKey, TValue>(key, value);
var index = m_list.Count;
m_list.Add(kvp);
m_ordinalLookup.Add(key, index);
}
}
public TValue this[int index]
{
get { return m_list[index].Value; }
set
{
lock (m_syncRoot)
{
var existing = m_list[index];
m_list[index] = new KeyValuePair<TKey, TValue>(existing.Key, value);
}
}
}
public TValue this[TKey key]
{
get
{
var index = m_ordinalLookup[key];
return this[index];
}
set
{
var index = m_ordinalLookup[key];
this[index] = value;
}
}
public int Count
{
get { return m_list.Count; }
}
public Dictionary<TKey, TValue>.KeyCollection Keys
{
get
{
return m_list.ToDictionary(
k => k.Key,
v => v.Value).Keys;
}
}
public Dictionary<TKey, TValue>.ValueCollection Values
{
get
{
return m_list.ToDictionary(
k => k.Key,
v => v.Value).Values;
}
}
public void Clear()
{
lock (m_syncRoot)
{
m_list.Clear();
m_ordinalLookup.Clear();
}
}
public bool ContainsKey(TKey key)
{
return m_ordinalLookup.ContainsKey(key);
}
public bool ContainsValue(TValue value)
{
foreach(var v in m_list)
{
if(v.Value.Equals(value)) return true;
}
return false;
}
public void Insert(int index, TKey key, TValue value)
{
lock (m_syncRoot)
{
throw new NotImplementedException();
}
}
public void Remove(TKey key)
{
lock (m_syncRoot)
{
if (ContainsKey(key))
{
throw new NotImplementedException();
}
}
}
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
return m_list.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
public class OrderedDictionary<TKey, TValue> : IEnumerable<KeyValuePair<TKey, TValue>>
{
private Dictionary<TKey, TValue> m_dictionary;
private List<TValue> m_list = new List<TValue>();
private object m_syncRoot = new object();
public OrderedDictionary()
{
m_dictionary = new Dictionary<TKey, TValue>();
}
public OrderedDictionary(IEqualityComparer<TKey> comparer)
: this()
{
}
public void Add(TKey key, TValue value)
{
lock (m_syncRoot)
{
m_dictionary.Add(key, value);
m_list.Add(value);
var index = m_list.Count - 1;
}
}
public TValue this[int index]
{
get { return m_list[index]; }
}
public TValue this[TKey key]
{
get { return m_dictionary[key]; }
}
public int Count
{
get { return m_dictionary.Count; }
}
public Dictionary<TKey, TValue>.KeyCollection Keys
{
get { return m_dictionary.Keys; }
}
public Dictionary<TKey, TValue>.ValueCollection Values
{
get { return m_dictionary.Values; }
}
public void Clear()
{
lock (m_syncRoot)
{
m_dictionary.Clear();
m_list.Clear();
}
}
public bool ContainsKey(TKey key)
{
return m_dictionary.ContainsKey(key);
}
public bool ContainsValue(TValue value)
{
return m_dictionary.ContainsValue(value);
}
public void Insert(int index, TKey key, TValue value)
{
lock (m_syncRoot)
{
m_list.Insert(index, value);
m_dictionary.Add(key, value);
}
}
public void Remove(TKey key)
{
lock (m_syncRoot)
{
if (ContainsKey(key))
{
var existing = m_dictionary[key];
m_list.Remove(existing);
m_dictionary.Remove(key);
}
}
}
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
return m_dictionary.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
}