-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEnumerators.cs
290 lines (231 loc) · 10.5 KB
/
Enumerators.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Linq;
namespace SimdDictionary {
public partial class VectorizedDictionary<TKey, TValue> {
public struct KeyCollection : ICollection<TKey>, ICollection {
public readonly VectorizedDictionary<TKey, TValue> Dictionary;
public struct Enumerator : IEnumerator<TKey> {
private VectorizedDictionary<TKey, TValue>.Enumerator Inner;
public TKey Current => Inner.CurrentKey;
object? IEnumerator.Current => Inner.CurrentKey;
internal Enumerator (VectorizedDictionary<TKey, TValue> dictionary) {
Inner = dictionary.GetEnumerator();
}
public void Dispose () =>
Inner.Dispose();
public bool MoveNext () =>
Inner.MoveNext();
public void Reset () =>
Inner.Reset();
}
internal KeyCollection (VectorizedDictionary<TKey, TValue> dictionary) {
Dictionary = dictionary;
}
public int Count => Dictionary.Count;
bool ICollection<TKey>.IsReadOnly => true;
void ICollection<TKey>.Add (TKey item) =>
ThrowInvalidOperation();
void ICollection<TKey>.Clear () =>
Dictionary.Clear();
bool ICollection<TKey>.Contains (TKey item) =>
Dictionary.ContainsKey(item);
void ICollection<TKey>.CopyTo (TKey[] array, int arrayIndex) {
// FIXME: Use EnumerateBuckets
using (var e = GetEnumerator())
while (e.MoveNext())
array[arrayIndex++] = e.Current;
}
public Enumerator GetEnumerator () =>
new Enumerator(Dictionary);
IEnumerator<TKey> IEnumerable<TKey>.GetEnumerator () =>
GetEnumerator();
IEnumerator IEnumerable.GetEnumerator () =>
GetEnumerator();
bool ICollection<TKey>.Remove (TKey item) =>
Dictionary.Remove(item);
bool ICollection.IsSynchronized => false;
object ICollection.SyncRoot => Dictionary;
void ICollection.CopyTo(System.Array array, int index) =>
// FIXME
((ICollection)this.ToList()).CopyTo(array, index);
}
public struct ValueCollection : ICollection<TValue>, ICollection {
public readonly VectorizedDictionary<TKey, TValue> Dictionary;
public struct Enumerator : IEnumerator<TValue> {
private VectorizedDictionary<TKey, TValue>.Enumerator Inner;
public TValue Current => Inner.CurrentValue;
object? IEnumerator.Current => Inner.CurrentValue;
internal Enumerator (VectorizedDictionary<TKey, TValue> dictionary) {
Inner = dictionary.GetEnumerator();
}
public void Dispose () =>
Inner.Dispose();
public bool MoveNext () =>
Inner.MoveNext();
public void Reset () =>
Inner.Reset();
}
internal ValueCollection (VectorizedDictionary<TKey, TValue> dictionary) {
Dictionary = dictionary;
}
public int Count => Dictionary.Count;
bool ICollection<TValue>.IsReadOnly => true;
void ICollection<TValue>.Add (TValue item) =>
ThrowInvalidOperation();
void ICollection<TValue>.Clear () =>
Dictionary.Clear();
// FIXME
bool ICollection<TValue>.Contains (TValue item) {
ThrowInvalidOperation();
return false;
}
void ICollection<TValue>.CopyTo (TValue[] array, int arrayIndex) {
// FIXME: Use EnumerateBuckets
using (var e = GetEnumerator())
while (e.MoveNext())
array[arrayIndex++] = e.Current;
}
public Enumerator GetEnumerator () =>
new Enumerator(Dictionary);
IEnumerator<TValue> IEnumerable<TValue>.GetEnumerator () =>
GetEnumerator();
IEnumerator IEnumerable.GetEnumerator () =>
GetEnumerator();
bool ICollection<TValue>.Remove (TValue item) =>
throw new InvalidOperationException();
bool ICollection.IsSynchronized => false;
object ICollection.SyncRoot => Dictionary;
void ICollection.CopyTo(System.Array array, int index) =>
// FIXME
((ICollection)this.ToList()).CopyTo(array, index);
}
public struct Enumerator : IEnumerator<KeyValuePair<TKey, TValue>>, IDictionaryEnumerator {
private int _bucketIndex, _valueIndexLocal;
// NOTE: Copying the bucket as we enter it means that concurrent modification during enumeration is completely safe;
// the old contents of the bucket will be observed instead of a mix of modified and unmodified bucket items, and
// removing or adding items during iteration of the bucket won't cause issues.
// You still shouldn't mutate the collection while enumerating it though!
private Bucket _currentBucket;
private Bucket[] _buckets;
public TKey CurrentKey {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get {
return _currentBucket.Pairs[_valueIndexLocal].Key;
}
}
public TValue CurrentValue {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get {
return _currentBucket.Pairs[_valueIndexLocal].Value;
}
}
public KeyValuePair<TKey, TValue> Current {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get {
ref var pair = ref _currentBucket.Pairs[_valueIndexLocal];
return new KeyValuePair<TKey, TValue>(pair.Key, pair.Value);
}
}
object IEnumerator.Current => Current;
DictionaryEntry IDictionaryEnumerator.Entry {
get {
ref var pair = ref _currentBucket.Pairs[_valueIndexLocal];
return new DictionaryEntry(pair.Key, pair.Value);
}
}
object IDictionaryEnumerator.Key => CurrentKey;
object? IDictionaryEnumerator.Value => CurrentValue;
public Enumerator (VectorizedDictionary<TKey, TValue> dictionary) {
_bucketIndex = -1;
_valueIndexLocal = BucketSizeI;
_buckets = dictionary._Buckets;
}
public void Dispose () {
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool MoveNext () {
_valueIndexLocal++;
while (_bucketIndex < _buckets.Length) {
var count = _currentBucket.Count;
if (_valueIndexLocal >= count) {
_valueIndexLocal = 0;
_bucketIndex++;
if (_bucketIndex >= _buckets.Length)
return false;
_currentBucket = _buckets[_bucketIndex];
}
while (_valueIndexLocal < count) {
var suffix = _currentBucket.GetSlot(_valueIndexLocal);
if (suffix != 0)
return true;
_valueIndexLocal++;
}
}
return false;
}
public void Reset () {
_bucketIndex = -1;
_valueIndexLocal = BucketSizeI;
}
}
public ref struct RefEnumerator {
private int _bucketIndex, _valueIndexLocal;
// FIXME: Make a copy of the current bucket as we walk, so that modification during enumeration isn't hazardous?
private ref Bucket _currentBucket;
private ref Pair _currentPair;
private Span<Bucket> _buckets;
public ref readonly TKey CurrentKey {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get {
return ref _currentPair.Key;
}
}
public ref readonly TValue CurrentValue {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get {
return ref _currentPair.Value;
}
}
public KeyValuePair<TKey, TValue> Current {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get {
ref var pair = ref _currentPair;
return new KeyValuePair<TKey, TValue>(pair.Key, pair.Value);
}
}
public RefEnumerator (VectorizedDictionary<TKey, TValue> dictionary) {
_bucketIndex = -1;
_valueIndexLocal = BucketSizeI;
_buckets = dictionary._Buckets;
_currentPair = ref Unsafe.NullRef<Pair>();
_currentBucket = ref Unsafe.NullRef<Bucket>();
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool MoveNext () {
_valueIndexLocal++;
while (_bucketIndex < _buckets.Length) {
var count = Unsafe.IsNullRef(in _currentBucket) ? 0 : _currentBucket.Count;
if (_valueIndexLocal >= count) {
_valueIndexLocal = 0;
_bucketIndex++;
if (_bucketIndex >= _buckets.Length)
return false;
_currentBucket = ref _buckets[_bucketIndex];
}
while (_valueIndexLocal < count) {
var suffix = _currentBucket.GetSlot(_valueIndexLocal);
if (suffix != 0) {
_currentPair = ref _currentBucket.Pairs[_valueIndexLocal];
return true;
}
_valueIndexLocal++;
}
}
return false;
}
}
}
}