forked from laicasaane/unity-supplements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadArrayDictionary{TKey,TValue}.cs
463 lines (363 loc) · 14.3 KB
/
ReadArrayDictionary{TKey,TValue}.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace System.Collections.ArrayBased
{
public readonly struct ReadArrayDictionary<TKey, TValue> : IEnumerable<KeyValuePair<TKey, TValue>>
{
public ref readonly TValue this[TKey key]
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
if (this.source == null)
throw ThrowHelper.GetArgumentOutOfRange_KeyException();
return ref this.values[GetIndex(key)];
}
}
public ref readonly TValue this[in TKey key]
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
if (this.source == null)
throw ThrowHelper.GetArgumentOutOfRange_KeyException();
return ref this.values[GetIndex(in key)];
}
}
public KeyValuePair<TKey, TValue> this[uint index]
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
if (this.source == null || index >= this.Count)
throw ThrowHelper.GetArgumentOutOfRange_IndexException();
return new KeyValuePair<TKey, TValue>(this.keys[index], this.values[index]);
}
}
public ReadArray1<ArrayDictionary<TKey, TValue>.Node> Keys
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => new ReadArray1<ArrayDictionary<TKey, TValue>.Node>(GetSource().UnsafeKeys, this.Count);
}
public ReadArray1<TValue> Values
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => new ReadArray1<TValue>(GetSource().UnsafeValues, this.Count);
}
public readonly IEqualityComparerIn<TKey> Comparer;
public readonly uint Count;
public readonly uint Capacity;
private readonly ArrayDictionary<TKey, TValue> source;
private readonly ArrayDictionary<TKey, TValue>.Node[] keys;
private readonly TValue[] values;
private readonly int[] buckets;
public ReadArrayDictionary(ArrayDictionary<TKey, TValue> source)
{
this.source = source ?? ArrayDictionary<TKey, TValue>.Empty;
this.Comparer = this.source.Comparer;
this.keys = this.source.UnsafeKeys;
this.values = this.source.UnsafeValues;
this.buckets = this.source.UnsafeBuckets;
this.Count = this.source.Count;
this.Capacity = this.source.Capacity;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal ArrayDictionary<TKey, TValue> GetSource()
=> this.source ?? ArrayDictionary<TKey, TValue>.Empty;
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
=> CopyTo(array, (uint)arrayIndex);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void CopyTo(KeyValuePair<TKey, TValue>[] array, uint arrayIndex)
{
if (array == null)
throw new ArgumentNullException(nameof(array));
if (arrayIndex >= (uint)array.Length)
throw new ArgumentOutOfRangeException(nameof(arrayIndex));
if (array.Length - arrayIndex < this.Count)
throw new ArgumentException("The number of elements in the source is greater than the available space from index to the end of the destination array.");
if (this.source == null)
return;
for (var i = 0u; i < this.Count; i++)
{
array[arrayIndex++] = new KeyValuePair<TKey, TValue>(this.keys[i].Key, this.values[i]);
}
}
public void CopyKeysTo(TKey[] array, int arrayIndex)
=> CopyKeysTo(array, (uint)arrayIndex);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void CopyKeysTo(TKey[] array, uint arrayIndex)
{
if (array == null)
throw new ArgumentNullException(nameof(array));
if (arrayIndex >= (uint)array.Length)
throw new ArgumentOutOfRangeException(nameof(arrayIndex));
if (array.Length - arrayIndex < this.Count)
throw new ArgumentException("The number of elements in the source is greater than the available space from index to the end of the destination array.");
if (this.source == null)
return;
for (var i = 0u; i < this.Count; i++)
{
array[arrayIndex++] = this.keys[i].Key;
}
}
public void CopyValuesTo(TValue[] array, int arrayIndex)
{
if (this.source == null)
return;
Array.Copy(this.values, 0, array, arrayIndex, this.Count);
}
public void CopyValuesTo(TValue[] array, uint arrayIndex)
{
if (this.source == null)
return;
Array.Copy(this.values, 0, array, arrayIndex, this.Count);
}
public bool ContainsValue(TValue value)
{
if (value == null)
return false;
if (this.source == null)
return false;
var comparer = EqualityComparerIn<TValue>.Default;
for (var i = 0u; i < this.Count; i++)
{
if (comparer.Equals(this.values[i], value))
return true;
}
return false;
}
public bool ContainsValue(TValue value, IEqualityComparer<TValue> comparer)
{
if (comparer == null)
throw new ArgumentNullException(nameof(comparer));
if (value == null)
return false;
if (this.source == null)
return false;
for (var i = 0u; i < this.Count; i++)
{
if (comparer.Equals(this.values[i], value))
return true;
}
return false;
}
public bool ContainsValue(in TValue value)
{
if (value == null)
return false;
if (this.source == null)
return false;
var comparer = EqualityComparerIn<TValue>.Default;
for (var i = 0u; i < this.Count; i++)
{
if (comparer.Equals(in this.values[i], in value))
return true;
}
return false;
}
public bool ContainsValue(in TValue value, IEqualityComparerIn<TValue> comparer)
{
if (comparer == null)
throw new ArgumentNullException(nameof(comparer));
if (value == null)
return false;
if (this.source == null)
return false;
for (var i = 0u; i < this.Count; i++)
{
if (comparer.Equals(in this.values[i], in value))
return true;
}
return false;
}
public bool ContainsKey(TKey key)
=> TryGetIndex(key, out _);
public bool ContainsKey(in TKey key)
=> TryGetIndex(in key, out _);
public bool TryGetValue(TKey key, out TValue result)
{
if (TryGetIndex(key, out var findIndex))
{
result = this.values[findIndex];
return true;
}
result = default;
return false;
}
public bool TryGetValue(in TKey key, out TValue result)
{
if (TryGetIndex(in key, out var findIndex))
{
result = this.values[findIndex];
return true;
}
result = default;
return false;
}
public void GetAt(uint index, out TKey key, out TValue value)
{
if (index >= this.Count)
throw ThrowHelper.GetArgumentOutOfRange_IndexException();
key = this.keys[index];
value = this.values[index];
}
public bool TryGetAt(uint index, out TKey key, out TValue value)
{
if (index >= this.Count)
{
key = default;
value = default;
return false;
}
key = this.keys[index];
value = this.values[index];
return true;
}
public Enumerator GetEnumerator()
=> new Enumerator(GetSource());
IEnumerator<KeyValuePair<TKey, TValue>> IEnumerable<KeyValuePair<TKey, TValue>>.GetEnumerator()
=> GetEnumerator();
IEnumerator IEnumerable.GetEnumerator()
=> GetEnumerator();
public ref TValue GetValueByRef(TKey key)
{
if (TryGetIndex(key, out var findIndex))
{
return ref this.values[findIndex];
}
throw new ArrayDictionaryException("Key not found");
}
public ref TValue GetValueByRef(in TKey key)
{
if (TryGetIndex(in key, out var findIndex))
{
return ref this.values[findIndex];
}
throw new ArrayDictionaryException("Key not found");
}
public uint GetIndex(TKey key)
{
if (TryGetIndex(key, out var findIndex)) return findIndex;
throw new ArrayDictionaryException("Key not found");
}
public uint GetIndex(in TKey key)
{
if (TryGetIndex(in key, out var findIndex)) return findIndex;
throw new ArrayDictionaryException("Key not found");
}
//I store all the index with an offset + 1, so that in the bucket list 0 means actually not existing.
//When read the offset must be offset by -1 again to be the real one. In this way
//I avoid to initialize the array to -1
public bool TryGetIndex(TKey key, out uint findIndex)
{
if (this.source == null)
{
findIndex = 0;
return false;
}
var hash = this.Comparer.GetHashCode(key);
var bucketIndex = Reduce((uint)hash, (uint)this.buckets.Length);
var kvIndex = this.buckets[bucketIndex] - 1;
//even if we found an existing value we need to be sure it's the one we requested
while (kvIndex != -1)
{
ref var node = ref this.keys[kvIndex];
if (node.Hash == hash && this.Comparer.Equals(node.Key, key))
{
//this is the one
findIndex = (uint)kvIndex;
return true;
}
kvIndex = node.Previous;
}
findIndex = 0;
return false;
}
//I store all the index with an offset + 1, so that in the bucket list 0 means actually not existing.
//When read the offset must be offset by -1 again to be the real one. In this way
//I avoid to initialize the array to -1
public bool TryGetIndex(in TKey key, out uint findIndex)
{
if (this.source == null)
{
findIndex = 0;
return false;
}
var hash = this.Comparer.GetHashCode(in key);
var bucketIndex = Reduce((uint)hash, (uint)this.buckets.Length);
var kvIndex = this.buckets[bucketIndex] - 1;
//even if we found an existing value we need to be sure it's the one we requested
while (kvIndex != -1)
{
ref var node = ref this.keys[kvIndex];
if (node.Hash == hash && this.Comparer.Equals(in node.Key, in key))
{
//this is the one
findIndex = (uint)kvIndex;
return true;
}
kvIndex = node.Previous;
}
findIndex = 0;
return false;
}
private static uint Reduce(uint x, uint N)
{
if (x >= N)
return x % N;
return x;
}
public static ReadArrayDictionary<TKey, TValue> Empty { get; }
= new ReadArrayDictionary<TKey, TValue>(ArrayDictionary<TKey, TValue>.Empty);
public static implicit operator ReadArrayDictionary<TKey, TValue>(ArrayDictionary<TKey, TValue> dict)
=> new ReadArrayDictionary<TKey, TValue>(dict);
public struct Enumerator : IEnumerator<KeyValuePair<TKey, TValue>>
{
private readonly ArrayDictionary<TKey, TValue> source;
private readonly uint count;
private uint index;
private bool first;
public Enumerator(ArrayDictionary<TKey, TValue> source)
{
this.source = source;
this.count = source.Count;
this.index = 0;
this.first = true;
}
public bool MoveNext()
{
#if DEBUG
if (this.count != this.source.Count)
throw new ArrayDictionaryException("Cannot modify a dictionary during its iteration");
#endif
if (this.count == 0)
return false;
if (this.first)
{
this.first = false;
return true;
}
if (this.index < this.count - 1)
{
this.index += 1;
return true;
}
return false;
}
public void Reset()
{
this.index = 0;
this.first = true;
}
public void Dispose()
{
}
public ArrayDictionary<TKey, TValue>.KeyValuePair Current
=> new ArrayDictionary<TKey, TValue>.KeyValuePair(this.source.UnsafeKeys[this.index], this.source.UnsafeValues, this.index);
KeyValuePair<TKey, TValue> IEnumerator<KeyValuePair<TKey, TValue>>.Current
=> new KeyValuePair<TKey, TValue>(this.source.UnsafeKeys[this.index], this.source.UnsafeValues[this.index]);
object IEnumerator.Current
=> new KeyValuePair<TKey, TValue>(this.source.UnsafeKeys[this.index], this.source.UnsafeValues[this.index]);
}
}
}