-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathImmutableSegmentedList`1+ValueBuilder.cs
358 lines (273 loc) · 12.4 KB
/
ImmutableSegmentedList`1+ValueBuilder.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.CodeAnalysis.Collections.Internal;
namespace Microsoft.CodeAnalysis.Collections
{
internal partial struct ImmutableSegmentedList<T>
{
private struct ValueBuilder : IList<T>, IReadOnlyList<T>, IList
{
/// <summary>
/// The immutable collection this builder is based on.
/// </summary>
private ImmutableSegmentedList<T> _list;
/// <summary>
/// The current mutable collection this builder is operating on. This field is initialized to a copy of
/// <see cref="_list"/> the first time a change is made.
/// </summary>
private SegmentedList<T>? _mutableList;
internal ValueBuilder(ImmutableSegmentedList<T> list)
{
_list = list;
_mutableList = null;
}
public int Count => ReadOnlyList.Count;
private SegmentedList<T> ReadOnlyList => _mutableList ?? _list._list;
bool ICollection<T>.IsReadOnly => false;
bool IList.IsFixedSize => false;
bool IList.IsReadOnly => false;
bool ICollection.IsSynchronized => false;
object ICollection.SyncRoot => throw new NotSupportedException();
public T this[int index]
{
get => ReadOnlyList[index];
set => GetOrCreateMutableList()[index] = value;
}
object? IList.this[int index]
{
get => ((IList)ReadOnlyList)[index];
set => ((IList)GetOrCreateMutableList())[index] = value;
}
public ref readonly T ItemRef(int index)
{
// Following trick can reduce the range check by one
if ((uint)index >= (uint)ReadOnlyList.Count)
{
ThrowHelper.ThrowArgumentOutOfRange_IndexException();
}
return ref ReadOnlyList._items[index];
}
private SegmentedList<T> GetOrCreateMutableList()
{
if (_mutableList is null)
{
var originalList = RoslynImmutableInterlocked.InterlockedExchange(ref _list, default);
if (originalList.IsDefault)
throw new InvalidOperationException($"Unexpected concurrent access to {GetType()}");
_mutableList = new SegmentedList<T>(originalList._list);
}
return _mutableList;
}
public void Add(T item)
=> GetOrCreateMutableList().Add(item);
public void AddRange(IEnumerable<T> items)
{
if (items is null)
throw new ArgumentNullException(nameof(items));
GetOrCreateMutableList().AddRange(items);
}
public int BinarySearch(T item)
=> ReadOnlyList.BinarySearch(item);
public int BinarySearch(T item, IComparer<T>? comparer)
=> ReadOnlyList.BinarySearch(item, comparer);
public int BinarySearch(int index, int count, T item, IComparer<T>? comparer)
=> ReadOnlyList.BinarySearch(index, count, item, comparer);
public void Clear()
{
if (ReadOnlyList.Count != 0)
{
if (_mutableList is null)
{
_mutableList = new SegmentedList<T>();
_list = default;
}
else
{
_mutableList.Clear();
}
}
}
public bool Contains(T item)
=> ReadOnlyList.Contains(item);
public ImmutableSegmentedList<TOutput> ConvertAll<TOutput>(Converter<T, TOutput> converter)
=> new ImmutableSegmentedList<TOutput>(ReadOnlyList.ConvertAll(converter));
public void CopyTo(T[] array)
=> ReadOnlyList.CopyTo(array);
public void CopyTo(T[] array, int arrayIndex)
=> ReadOnlyList.CopyTo(array, arrayIndex);
public void CopyTo(int index, T[] array, int arrayIndex, int count)
=> ReadOnlyList.CopyTo(index, array, arrayIndex, count);
public bool Exists(Predicate<T> match)
=> ReadOnlyList.Exists(match);
public T? Find(Predicate<T> match)
=> ReadOnlyList.Find(match);
public ImmutableSegmentedList<T> FindAll(Predicate<T> match)
=> new ImmutableSegmentedList<T>(ReadOnlyList.FindAll(match));
public int FindIndex(Predicate<T> match)
=> ReadOnlyList.FindIndex(match);
public int FindIndex(int startIndex, Predicate<T> match)
=> ReadOnlyList.FindIndex(startIndex, match);
public int FindIndex(int startIndex, int count, Predicate<T> match)
=> ReadOnlyList.FindIndex(startIndex, count, match);
public T? FindLast(Predicate<T> match)
=> ReadOnlyList.FindLast(match);
public int FindLastIndex(Predicate<T> match)
=> ReadOnlyList.FindLastIndex(match);
public int FindLastIndex(int startIndex, Predicate<T> match)
{
if (startIndex == 0 && Count == 0)
{
// SegmentedList<T> doesn't allow starting at index 0 for an empty list, but IImmutableList<T> does.
// Handle it explicitly to avoid an exception.
return -1;
}
return ReadOnlyList.FindLastIndex(startIndex, match);
}
public int FindLastIndex(int startIndex, int count, Predicate<T> match)
{
if (count == 0 && startIndex == 0 && Count == 0)
{
// SegmentedList<T> doesn't allow starting at index 0 for an empty list, but IImmutableList<T> does.
// Handle it explicitly to avoid an exception.
return -1;
}
return ReadOnlyList.FindLastIndex(startIndex, count, match);
}
public void ForEach(Action<T> action)
=> ReadOnlyList.ForEach(action);
public Enumerator GetEnumerator()
=> new Enumerator(GetOrCreateMutableList());
public ImmutableSegmentedList<T> GetRange(int index, int count)
{
if (index == 0 && count == Count)
return ToImmutable();
return new ImmutableSegmentedList<T>(ReadOnlyList.GetRange(index, count));
}
public int IndexOf(T item)
=> ReadOnlyList.IndexOf(item);
public int IndexOf(T item, int index)
=> ReadOnlyList.IndexOf(item, index);
public int IndexOf(T item, int index, int count)
=> ReadOnlyList.IndexOf(item, index, count);
public int IndexOf(T item, int index, int count, IEqualityComparer<T>? equalityComparer)
=> ReadOnlyList.IndexOf(item, index, count, equalityComparer);
public void Insert(int index, T item)
=> GetOrCreateMutableList().Insert(index, item);
public void InsertRange(int index, IEnumerable<T> items)
=> GetOrCreateMutableList().InsertRange(index, items);
public int LastIndexOf(T item)
=> ReadOnlyList.LastIndexOf(item);
public int LastIndexOf(T item, int startIndex)
{
if (startIndex == 0 && Count == 0)
{
// SegmentedList<T> doesn't allow starting at index 0 for an empty list, but IImmutableList<T> does.
// Handle it explicitly to avoid an exception.
return -1;
}
return ReadOnlyList.LastIndexOf(item, startIndex);
}
public int LastIndexOf(T item, int startIndex, int count)
{
if (count == 0 && startIndex == 0 && Count == 0)
{
// SegmentedList<T> doesn't allow starting at index 0 for an empty list, but IImmutableList<T> does.
// Handle it explicitly to avoid an exception.
return -1;
}
return ReadOnlyList.LastIndexOf(item, startIndex, count);
}
public int LastIndexOf(T item, int startIndex, int count, IEqualityComparer<T>? equalityComparer)
{
if (startIndex < 0)
ThrowHelper.ThrowArgumentOutOfRange_IndexException();
if (count < 0 || count > Count)
ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.count);
if (startIndex - count + 1 < 0)
throw new ArgumentException();
return ReadOnlyList.LastIndexOf(item, startIndex, count, equalityComparer);
}
public bool Remove(T item)
{
if (_mutableList is null)
{
var index = IndexOf(item);
if (index < 0)
return false;
RemoveAt(index);
return true;
}
else
{
return _mutableList.Remove(item);
}
}
public int RemoveAll(Predicate<T> match)
=> GetOrCreateMutableList().RemoveAll(match);
public void RemoveAt(int index)
=> GetOrCreateMutableList().RemoveAt(index);
public void RemoveRange(int index, int count)
=> GetOrCreateMutableList().RemoveRange(index, count);
public void Reverse()
{
if (Count < 2)
return;
GetOrCreateMutableList().Reverse();
}
public void Reverse(int index, int count)
=> GetOrCreateMutableList().Reverse(index, count);
public void Sort()
{
if (Count < 2)
return;
GetOrCreateMutableList().Sort();
}
public void Sort(IComparer<T>? comparer)
{
if (Count < 2)
return;
GetOrCreateMutableList().Sort(comparer);
}
public void Sort(Comparison<T> comparison)
{
if (comparison == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.comparison);
}
if (Count < 2)
return;
GetOrCreateMutableList().Sort(comparison);
}
public void Sort(int index, int count, IComparer<T>? comparer)
=> GetOrCreateMutableList().Sort(index, count, comparer);
public ImmutableSegmentedList<T> ToImmutable()
{
_list = new ImmutableSegmentedList<T>(ReadOnlyList);
_mutableList = null;
return _list;
}
public bool TrueForAll(Predicate<T> match)
=> ReadOnlyList.TrueForAll(match);
IEnumerator<T> IEnumerable<T>.GetEnumerator()
=> GetEnumerator();
IEnumerator IEnumerable.GetEnumerator()
=> GetEnumerator();
int IList.Add(object? value)
=> ((IList)GetOrCreateMutableList()).Add(value);
bool IList.Contains(object? value)
=> ((IList)ReadOnlyList).Contains(value);
int IList.IndexOf(object? value)
=> ((IList)ReadOnlyList).IndexOf(value);
void IList.Insert(int index, object? value)
=> ((IList)GetOrCreateMutableList()).Insert(index, value);
void IList.Remove(object? value)
=> ((IList)GetOrCreateMutableList()).Remove(value);
void ICollection.CopyTo(Array array, int index)
=> ((ICollection)ReadOnlyList).CopyTo(array, index);
}
}
}