forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPythonList.cs
More file actions
1586 lines (1285 loc) · 52.9 KB
/
PythonList.cs
File metadata and controls
1586 lines (1285 loc) · 52.9 KB
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
#nullable enable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Numerics;
using System.Text;
using System.Threading;
using IronPython.Runtime.Operations;
using IronPython.Runtime.Types;
using Microsoft.Scripting;
using Microsoft.Scripting.Generation;
using Microsoft.Scripting.Runtime;
using Microsoft.Scripting.Utils;
using SpecialNameAttribute = System.Runtime.CompilerServices.SpecialNameAttribute;
namespace IronPython.Runtime {
[PythonType("list"), Serializable, System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
[DebuggerTypeProxy(typeof(ObjectCollectionDebugProxy)), DebuggerDisplay("list, {Count} items")]
public class PythonList : IList, ICodeFormattable, IList<object?>, IReversible, IStructuralEquatable, IReadOnlyList<object?> {
private const int INITIAL_SIZE = 20;
internal int _size;
internal volatile object?[] _data;
#region Python Constructors and Initializers
public void __init__() {
_data = new object[8];
_size = 0;
}
public void __init__([NotNone] IEnumerable enumerable) {
__init__();
foreach (object? o in enumerable) {
AddNoLock(o);
}
}
public void __init__([NotNone] ICollection sequence) {
_data = new object[sequence.Count];
int i = 0;
foreach (object? item in sequence) {
_data[i++] = item;
}
_size = i;
}
public void __init__([NotNone] SetCollection sequence) {
PythonList list = sequence._items.GetItems();
_size = list._size;
_data = list._data;
}
public void __init__([NotNone] FrozenSetCollection sequence) {
PythonList list = sequence._items.GetItems();
_size = list._size;
_data = list._data;
}
public void __init__([NotNone] PythonList sequence) {
if (this == sequence) {
// list.__init__(l, l) resets l
_size = 0;
return;
}
// Only initialize from using _data if we have an exact list
if (sequence.GetType() != typeof(PythonList)) {
__init__((IEnumerable)sequence);
return;
}
_data = new object[sequence._size];
Array.Copy(sequence._data, 0, _data, 0, _data.Length);
_size = _data.Length;
}
public void __init__([NotNone] string sequence) {
_data = new object[sequence.Length];
_size = sequence.Length;
for (int i = 0; i < sequence.Length; i++) {
_data[i] = ScriptingRuntimeHelpers.CharToString(sequence[i]);
}
}
public void __init__(CodeContext context, object? sequence) {
int len;
try {
if (!PythonOps.TryInvokeLengthHint(context, sequence, out len)) {
len = INITIAL_SIZE;
}
} catch (MissingMemberException) {
len = INITIAL_SIZE;
}
_data = new object[len];
_size = 0;
ExtendNoLengthCheck(context, sequence);
}
public static object __new__(CodeContext/*!*/ context, [NotNone] PythonType cls) {
if (cls == TypeCache.PythonList) {
return new PythonList();
}
return cls.CreateInstance(context);
}
public static object __new__(CodeContext/*!*/ context, [NotNone] PythonType cls, object? arg)
=> __new__(context, cls);
public static object __new__(CodeContext/*!*/ context, [NotNone] PythonType cls, [NotNone] params object[] args)
=> __new__(context, cls);
public static object __new__(CodeContext/*!*/ context, [NotNone] PythonType cls, [ParamDictionary] IDictionary<object, object> kwArgs, [NotNone] params object[] args)
=> __new__(context, cls);
#endregion
#region C# Constructors and Factories
public PythonList()
: this(0) {
}
public PythonList(CodeContext context, [NotNone] object sequence) {
if (sequence is ICollection items) {
_data = new object[items.Count];
int i = 0;
foreach (object? item in items) {
_data[i++] = item;
}
_size = i;
} else {
if (!PythonOps.TryInvokeLengthHint(context, sequence, out int len)) {
len = INITIAL_SIZE;
}
_data = new object[len];
ExtendNoLengthCheck(context, sequence);
}
}
internal PythonList(int capacity) {
if (capacity == 0) {
_data = [];
} else {
_data = new object[capacity];
}
}
internal PythonList(ICollection items)
: this(items.Count) {
int i = 0;
foreach (object? item in items) {
_data[i++] = item;
}
_size = i;
}
private PythonList(object?[] items) {
_data = items;
_size = _data.Length;
}
private PythonList(IEnumerator e)
: this(10) {
while (e.MoveNext()) AddNoLock(e.Current);
}
#if ALLOC_DEBUG
private static int total, totalSize, cnt, growthCnt, growthSize;
~PythonList() {
total += _data.Length;
totalSize += _size;
cnt++;
Console.Error.WriteLine("PythonList: allocated {0} used {1} total wasted {2} - grand total wasted {3}", _data.Length, _size, total-totalSize, growthSize + total - totalSize);
Console.Error.WriteLine(" Growing {0} {1} avg {2}", growthCnt, growthSize, growthSize / growthCnt);
}
#endif
internal static PythonList FromGenericCollection<T>(ICollection<T> items) {
var list = new PythonList(items.Count);
int i = 0;
foreach (object? item in items) {
list._data[i++] = item;
}
list._size = i;
return list;
}
internal static PythonList FromEnumerable(IEnumerable items) {
var enumerator = items.GetEnumerator();
try {
return new PythonList(enumerator);
} finally {
(enumerator as IDisposable)?.Dispose();
}
}
/// <summary>
/// Creates a new list with the data in the array and a size
/// the same as the length of the array. The array is held
/// onto and may be mutated in the future by the list.
/// </summary>
/// <param name="data">params array to use for lists storage</param>
internal static PythonList FromArrayNoCopy(params object[] data)
=> new PythonList(data);
#endregion
internal object?[] GetObjectArray() {
lock (this) {
return ArrayOps.CopyArray(_data, _size);
}
}
#region binary operators
public static PythonList operator +([NotNone] PythonList l1, [NotNone] PythonList l2) {
object?[] ret;
int size;
lock (l1) {
ret = ArrayOps.CopyArray(l1._data, GetAddSize(l1._size, l2._size));
size = l1._size;
}
lock (l2) {
if (l2._size + size > ret.Length) {
ret = ArrayOps.CopyArray(ret, GetAddSize(size, l2._size));
}
Array.Copy(l2._data, 0, ret, size, l2._size);
PythonList lret = new PythonList(ret);
lret._size = size + l2._size;
return lret;
}
}
public static PythonList operator +([NotNone] PythonList self, object? other) {
if (other is PythonList l) return self + l;
throw PythonOps.TypeError($"can only concatenate list (not \"{PythonOps.GetPythonTypeName(other)}\") to list");
}
/// <summary>
/// Gets a reasonable size for the addition of two arrays. We round
/// to a power of two so that we usually have some extra space if
/// the resulting array gets added to.
/// </summary>
private static int GetAddSize(int s1, int s2) {
int length = s1 + s2;
return GetNewSize(length);
}
private static int GetNewSize(int length) {
if (length > 256) {
return length + (128 - 1) & ~(128 - 1);
}
return length + (16 - 1) & ~(16 - 1);
}
public static PythonList operator *([NotNone] PythonList self, int count)
=> MultiplyWorker(self, count);
public static PythonList operator *(int count, [NotNone] PythonList self)
=> MultiplyWorker(self, count);
public static object operator *([NotNone] PythonList self, [NotNone] Index count)
=> PythonOps.MultiplySequence<PythonList>(MultiplyWorker, self, count, true);
public static object operator *([NotNone] Index count, [NotNone] PythonList self)
=> PythonOps.MultiplySequence<PythonList>(MultiplyWorker, self, count, false);
public static object operator *([NotNone] PythonList self, object? count) {
if (Converter.TryConvertToIndex(count, out int index)) {
return self * index;
}
throw PythonOps.TypeErrorForUnIndexableObject(count);
}
public static object operator *(object? count, [NotNone] PythonList self) {
if (Converter.TryConvertToIndex(count, out int index)) {
return index * self;
}
throw PythonOps.TypeErrorForUnIndexableObject(count);
}
private static PythonList MultiplyWorker(PythonList self, int count) {
if (count <= 0) return new PythonList(0);
int n, newCount;
object?[] ret;
lock (self) {
n = self._size;
//??? is this useful optimization
//???if (n == 1) return new PythonList(Array.ArrayList.Repeat(this[0], count));
try {
newCount = checked(n * count);
} catch (OverflowException) {
throw PythonOps.MemoryError();
}
ret = ArrayOps.CopyArray(self._data, newCount);
}
// this should be extremely fast for large count as it uses the same algoithim as efficient integer powers
// ??? need to test to see how large count and n need to be for this to be fastest approach
int block = n;
int pos = n;
while (pos < newCount) {
Array.Copy(ret, 0, ret, pos, Math.Min(block, newCount - pos));
pos += block;
block *= 2;
}
return new PythonList(ret);
}
#endregion
public virtual int __len__() => _size;
public virtual IEnumerator __iter__() {
// return type is strongly typed to IEnumerator so that
// we can call it w/o requiring an explicit conversion. If the
// user overrides this we'll place a conversion in the wrapper
// helper
return new PythonListIterator(this);
}
public virtual IEnumerator __reversed__()
=> new PythonListReverseIterator(this);
public virtual bool __contains__(object? value)
=> ContainsWorker(value);
internal bool ContainsWorker(object? value) {
bool lockTaken = false;
try {
MonitorUtils.Enter(this, ref lockTaken);
for (int i = 0; i < _size; i++) {
object? thisIndex = _data[i];
// release the lock while we may call user code...
MonitorUtils.Exit(this, ref lockTaken);
try {
if (PythonOps.IsOrEqualsRetBool(thisIndex, value))
return true;
} finally {
MonitorUtils.Enter(this, ref lockTaken);
}
}
} finally {
if (lockTaken) {
Monitor.Exit(this);
}
}
return false;
}
#region ISequence Members
internal void AddRange<T>(ICollection<T> otherList) {
foreach (object? o in otherList) append(o);
}
[SpecialName]
public virtual object InPlaceAdd(object? other) {
if (ReferenceEquals(this, other)) {
InPlaceMultiply(2);
} else {
IEnumerator e = PythonOps.GetEnumerator(other);
while (e.MoveNext()) {
append(e.Current);
}
}
return this;
}
[SpecialName]
public PythonList InPlaceMultiply(int count) {
lock (this) {
int n = _size;
int newCount;
try {
newCount = checked(n * count);
} catch (OverflowException) {
throw PythonOps.MemoryError();
}
EnsureSize(newCount);
int block = n;
int pos = n;
while (pos < newCount) {
Array.Copy(_data, 0, _data, pos, Math.Min(block, newCount - pos));
pos += block;
block *= 2;
}
_size = newCount;
}
return this;
}
[SpecialName]
public object InPlaceMultiply([NotNone] Index count)
=> PythonOps.MultiplySequence<PythonList>(InPlaceMultiplyWorker, this, count, true);
[SpecialName]
public object InPlaceMultiply(object? count) {
int index;
if (Converter.TryConvertToIndex(count, out index)) {
return InPlaceMultiply(index);
}
throw PythonOps.TypeErrorForUnIndexableObject(count);
}
private static PythonList InPlaceMultiplyWorker(PythonList self, int count)
=> self.InPlaceMultiply(count);
internal object?[] GetSliceAsArray(int start, int stop) {
if (start < 0) start = 0;
if (stop > Count) stop = Count;
lock (this) return ArrayOps.GetSlice(_data, start, stop);
}
private static readonly object _boxedOne = ScriptingRuntimeHelpers.Int32ToObject(1);
[System.Diagnostics.CodeAnalysis.NotNull]
public virtual object? this[[NotNone] Slice slice] {
get {
int start, stop, step, count;
slice.GetIndicesAndCount(_size, out start, out stop, out step, out count);
if ((step > 0 && start >= stop) || (step < 0 && start <= stop)) return new PythonList();
if (step == 1) {
object?[] ret;
lock (this) ret = ArrayOps.GetSlice(_data, start, stop);
return new PythonList(ret);
} else {
object?[] ret = new object[count];
lock (this) {
int ri = 0;
for (int i = 0, index = start; i < count; i++, index += step) {
ret[ri++] = _data[index];
}
}
return new PythonList(ret);
}
}
set {
if (slice.step != null && (!(slice.step is int) || !slice.step.Equals(_boxedOne))) {
// try to assign back to self: make a copy first
if (this == value) value = new PythonList((ICollection)value);
if (ValueRequiresNoLocks(value)) {
// we don't need to worry about lock ordering of accesses to the
// RHS & ourselves. We can lock once and avoid repeatedly locking/unlocking
// on each assign.
lock (this) {
slice.DoSliceAssign(SliceAssignNoLock, _size, value);
}
} else {
slice.DoSliceAssign(SliceAssign, _size, value);
}
} else {
slice.Indices(_size, out int start, out int stop, out int step);
if (value is PythonList lstVal) {
SliceNoStep(start, stop, lstVal);
} else {
SliceNoStep(start, stop, value);
}
}
}
}
private static bool ValueRequiresNoLocks(object? value)
=> value is PythonTuple || value is Array || value is FrozenSetCollection;
private void SliceNoStep(int start, int stop, PythonList other) {
// We don't lock other here - instead we read it's object array
// and size therefore having a stable view even if it resizes.
// This means if we had a multithreaded app like:
//
// T1 T2 T3
// l1[:] = [1] * 100 l1[:] = [2] * 100 l3[:] = l1[:]
//
// we can end up with both 1s and 2s in the array. This is the
// same as if our set was implemented on top of get/set item where
// we'd take and release the locks repeatedly.
int otherSize = other._size;
object?[] otherData = other._data;
lock (this) {
if ((stop - start) == otherSize) {
// we are simply replacing values, this is fast...
for (int i = 0; i < otherSize; i++) {
_data[i + start] = otherData[i];
}
} else {
// we are resizing the array (either bigger or smaller), we
// will copy the data array and replace it all at once.
stop = Math.Max(stop, start);
int newSize = _size - (stop - start) + otherSize;
object?[] newData = new object[GetNewSize(newSize)];
for (int i = 0; i < start; i++) {
newData[i] = _data[i];
}
for (int i = 0; i < otherSize; i++) {
newData[i + start] = otherData[i];
}
int writeOffset = otherSize - (stop - start);
for (int i = stop; i < _size; i++) {
newData[i + writeOffset] = _data[i];
}
_size = newSize;
_data = newData;
}
}
}
private void SliceNoStep(int start, int stop, object? value) {
// always copy from a List object, even if it's a copy of some user defined enumerator. This
// makes it easy to hold the lock for the duration fo the copy.
IList<object?> other = value as IList<object?> ?? new PythonList(PythonOps.GetEnumerator(value));
lock (this) {
if ((stop - start) == other.Count) {
// we are simply replacing values, this is fast...
for (int i = 0; i < other.Count; i++) {
_data[i + start] = other[i];
}
} else {
// we are resizing the array (either bigger or smaller), we
// will copy the data array and replace it all at once.
stop = Math.Max(stop, start);
int newSize = _size - (stop - start) + other.Count;
object?[] newData = new object[GetNewSize(newSize)];
for (int i = 0; i < start; i++) {
newData[i] = _data[i];
}
for (int i = 0; i < other.Count; i++) {
newData[i + start] = other[i];
}
int writeOffset = other.Count - (stop - start);
for (int i = stop; i < _size; i++) {
newData[i + writeOffset] = _data[i];
}
_size = newSize;
_data = newData;
}
}
}
private void SliceAssign(int index, object? value)
=> this[index] = value;
private void SliceAssignNoLock(int index, object? value)
=> _data[index] = value;
public virtual void __delitem__(int index) {
lock (this) RawDelete(PythonOps.FixIndex(index, _size));
}
public virtual void __delitem__(object? index) {
if (!Converter.TryConvertToIndex(index, out int idx))
throw PythonOps.TypeError("list indices must be integers or slices, not {0}", PythonOps.GetPythonTypeName(index));
__delitem__(idx);
}
public void __delitem__([NotNone] Slice slice) {
lock (this) {
slice.Indices(_size, out int start, out int stop, out int step);
if (step > 0 && (start >= stop)) return;
if (step < 0 && (start <= stop)) return;
if (step == 1) {
int i = start;
for (int j = stop; j < _size; j++, i++) {
_data[i] = _data[j];
}
_size -= stop - start;
return;
}
if (step == -1) {
int i = stop + 1;
for (int j = start + 1; j < _size; j++, i++) {
_data[i] = _data[j];
}
_size -= start - stop;
return;
}
if (step < 0) {
// find "start" we will skip in the 1,2,3,... order
int i = start;
while (i > stop) {
i += step;
}
i -= step;
// swap start/stop, make step positive
stop = start + 1;
start = i;
step = -step;
}
int curr, skip, move;
// skip: the next position we should skip
// curr: the next position we should fill in data
// move: the next position we will check
curr = skip = move = start;
while (curr < stop && move < stop) {
if (move != skip) {
_data[curr++] = _data[move];
} else
skip += step;
move++;
}
while (stop < _size) {
_data[curr++] = _data[stop++];
}
_size = curr;
}
}
#endregion
private void RawDelete(int index) {
int len = _size - 1;
_size = len;
object?[] tempData = _data;
for (int i = index; i < len; i++) {
tempData[i] = tempData[i + 1];
}
tempData[len] = null;
}
internal void EnsureSize(int needed) {
if (_data.Length >= needed) return;
if (_data.Length == 0) {
// free growth, we wasted nothing
_data = new object[4];
return;
}
int newSize = Math.Max(_size * 3, 10);
while (newSize < needed) newSize *= 2;
#if ALLOC_DEBUG
growthCnt++;
growthSize += _size;
Console.Error.WriteLine("Growing {3} {0} {1} avg {2}", growthCnt, growthSize, growthSize/growthCnt, newSize - _size);
#endif
_data = ArrayOps.CopyArray(_data, newSize);
}
public void append(object? item) {
lock (this) {
AddNoLock(item);
}
}
/// <summary>
/// Non-thread safe adder, should only be used by internal callers that
/// haven't yet exposed their list.
/// </summary>
internal void AddNoLock(object? item) {
EnsureSize(_size + 1);
_data[_size] = item;
_size += 1;
}
internal void AddNoLockNoDups(object? item) {
for (int i = 0; i < _size; i++) {
if (PythonOps.IsOrEqualsRetBool(_data[i], item)) {
return;
}
}
AddNoLock(item);
}
internal void AppendListNoLockNoDups(PythonList list) {
if (list != null) {
foreach (object? item in list) {
AddNoLockNoDups(item);
}
}
}
public void clear() => Clear();
public int count(object? item) {
bool lockTaken = false;
try {
MonitorUtils.Enter(this, ref lockTaken);
int cnt = 0;
for (int i = 0, len = _size; i < len; i++) {
object? val = _data[i];
MonitorUtils.Exit(this, ref lockTaken);
try {
if (PythonOps.IsOrEqualsRetBool(val, item)) cnt++;
} finally {
MonitorUtils.Enter(this, ref lockTaken);
}
}
return cnt;
} finally {
if (lockTaken) {
Monitor.Exit(this);
}
}
}
public void extend([NotNone] PythonList/*!*/ seq) {
using (new OrderedLocker(this, seq)) {
// use the original count for if we're extending this w/ this
int count = seq.Count;
EnsureSize(Count + count);
for (int i = 0; i < count; i++) {
AddNoLock(seq[i]);
}
}
}
public void extend([NotNone] PythonTuple/*!*/ seq) {
lock (this) {
EnsureSize(Count + seq.Count);
for (int i = 0; i < seq.Count; i++) {
AddNoLock(seq[i]);
}
}
}
public void extend(CodeContext context, object? seq) {
if (PythonOps.TryInvokeLengthHint(context, seq, out int len)) {
// CPython proceeds without resizing if the length overflows
if (int.MaxValue - len >= Count) {
EnsureSize(Count + len);
}
}
ExtendNoLengthCheck(context, seq);
}
internal void ExtendNoLock(ICollection seq) {
EnsureSize(Count + seq.Count);
foreach (var item in seq) {
AddNoLock(item);
}
}
private void ExtendNoLengthCheck(CodeContext context, object? seq) {
IEnumerator i = PythonOps.GetEnumerator(context, seq);
if (seq == (object)this) {
PythonList other = new PythonList(i);
i = ((IEnumerable)other).GetEnumerator();
}
while (i.MoveNext()) append(i.Current);
}
public int index(object? item)
=> index(item, 0, _size);
public int index(object? item, int start)
=> index(item, start, _size);
public int index(object? item, int start, int stop) {
// CPython behavior for index is to only look at the
// original items. If new items are added they
// are ignored, but if items are removed they
// aren't iterated. We therefore get a stable view
// of our data, and then go with the minimum between
// our starting size and ending size.
object?[] locData;
int locSize;
lock (this) {
// get a stable view on size / data...
locData = _data;
locSize = _size;
}
start = PythonOps.FixSliceIndex(start, locSize);
stop = PythonOps.FixSliceIndex(stop, locSize);
for (int i = start; i < Math.Min(stop, Math.Min(locSize, _size)); i++) {
if (PythonOps.IsOrEqualsRetBool(locData[i], item)) return i;
}
throw PythonOps.ValueError("list.index(item): item not in list");
}
public int index(object? item, object? start)
=> index(item, Converter.ConvertToIndex(start), _size);
public int index(object? item, object? start, object? stop)
=> index(item, Converter.ConvertToIndex(start), Converter.ConvertToIndex(stop));
public void insert(int index, object? value) {
if (index >= _size) {
append(value);
return;
}
lock (this) {
index = PythonOps.FixSliceIndex(index, _size);
EnsureSize(_size + 1);
_size += 1;
for (int i = _size - 1; i > index; i--) {
_data[i] = _data[i - 1];
}
_data[index] = value;
}
}
[PythonHidden]
public void Insert(int index, object? value) => insert(index, value);
public object? pop() {
if (_size == 0) throw PythonOps.IndexError("pop off of empty list");
lock (this) {
_size -= 1;
var ret = _data[_size];
_data[_size] = null; // release the object
return ret;
}
}
public object? pop(int index) {
lock (this) {
if (_size == 0) throw PythonOps.IndexError("pop off of empty list");
index = PythonOps.FixIndex(index, _size);
object? ret = _data[index];
_size -= 1;
for (int i = index; i < _size; i++) {
_data[i] = _data[i + 1];
}
_data[_size] = null; // release the object
return ret;
}
}
public void remove(object? value) {
lock (this) RawDelete(index(value));
}
void IList.Remove(object? value) => remove(value);
public void reverse() {
lock (this) Array.Reverse(_data, 0, _size);
}
internal void reverse(int index, int count) {
lock (this) Array.Reverse(_data, index, count);
}
public void sort(CodeContext/*!*/ context,
[ParamDictionary] IDictionary<string, object> kwArgs) {
object? key = null;
bool reverse = false;
foreach (var arg in kwArgs) {
switch (arg.Key) {
case "key":
key = arg.Value;
break;
case "reverse":
if (!PythonOps.CheckingConvertToBool(arg.Value) && !PythonOps.CheckingConvertToInt(arg.Value)) { // Python 3.8: PythonOps.TryToIndex
throw PythonOps.TypeErrorForTypeMismatch("integer", arg.Value);
}
reverse = Convert.ToBoolean(arg.Value);
break;
default:
throw PythonOps.TypeError("'{0} is an invalid keyword argument for sort()", arg.Key);
}
}
Sort(context, key, reverse);
}
[PythonHidden]
public void Sort(CodeContext/*!*/ context,
object? key = null,
bool reverse = false) {
// the empty list is already sorted
if (_size != 0) {
IComparer comparer = context.LanguageContext.GetLtComparer(GetComparisonType());
DoSort(context, comparer, key, reverse, 0, _size);
}
}
private Type? GetComparisonType() {
if (_size >= 4000) {
// we're big, we can afford a custom comparison call site.
return null;
}
if (_data.Length > 0) {
// use the 1st index to determine the type - we're assuming lists are
// homogeneous
return CompilerHelpers.GetType(_data[0]);
}
return typeof(object);
}
private void DoSort(CodeContext/*!*/ context, IComparer cmp, object? key, bool reverse, int index, int count) {
lock (this) {
object?[] sortData = _data;
int sortSize = _size;
try {
// make the list appear empty for the duration of the sort...
_data = [];
_size = 0;
if (key != null) {
object?[] keys = new object[sortSize];
for (int i = 0; i < sortSize; i++) {
Debug.Assert(_data.Length == 0);
keys[i] = PythonCalls.Call(context, key, sortData[i]);
if (_data.Length != 0) throw PythonOps.ValueError("list mutated while determining keys");
}
sortData = ListMergeSort(sortData, keys, cmp, index, count, reverse);
} else {
sortData = ListMergeSort(sortData, null, cmp, index, count, reverse);
}
} finally {
// restore the list to it's old data & size (which is now supported appropriately)
_data = sortData;
_size = sortSize;
}
}
}
internal object?[] ListMergeSort(object?[] sortData, object?[]? keys, IComparer cmp, int index, int count, bool reverse) {
if (count - index < 2) return sortData; // 1 or less items, we're sorted, quit now...
if (keys == null) keys = sortData;
// list merge sort - stable sort w/ a minimum # of comparisons.
int len = count - index;
// prepare the two lists.
int[] lists = new int[len + 2]; //0 and count + 1 are auxiliary fields
lists[0] = 1;
lists[len + 1] = 2;
for (int i = 1; i <= len - 2; i++) {
lists[i] = -(i + 2);
}
lists[len - 1] = lists[len] = 0;
// new pass
for (; ; ) {