forked from oracle/graalpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_collections.py
More file actions
632 lines (531 loc) · 17.5 KB
/
_collections.py
File metadata and controls
632 lines (531 loc) · 17.5 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
# coding=utf-8
# Copyright (c) 2018, 2019, Oracle and/or its affiliates.
# Copyright (c) 2017, The PyPy Project
#
# The MIT License
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
import sys
BLOCKLEN = 62
CENTER = ((BLOCKLEN - 1) // 2)
# the deque implementation with helper functions and data structures has been ported from pypy.
class Block(object):
__slots__ = ('leftlink', 'rightlink', 'data')
def __init__(self, leftlink, rightlink):
self.leftlink = leftlink
self.rightlink = rightlink
self.data = [None] * BLOCKLEN
class Lock(object):
pass
def _add(d1, d2):
d1.extend(d2)
return d1
def _mul(d, times):
if not isinstance(times, int):
raise TypeError("can't multiply sequence by non-int of type '%s'" % (type(times)))
if times <= 0:
d.clear()
else:
l = list(d)
for _ in range(times - 1):
d.extend(l)
return d
def _next_or_none(_iter):
try:
return next(_iter)
except StopIteration:
return None
class deque(object):
def __init__(self, iterable=None, maxlen=None):
if maxlen is None:
self._maxlen = sys.maxsize
elif maxlen >= 0:
self._maxlen = maxlen
else:
raise ValueError("maxlen must be non-negative")
self._maxlen = sys.maxsize if maxlen is None else maxlen
self.leftblock = Block(None, None)
self.rightblock = self.leftblock
self.leftindex = CENTER + 1
self.rightindex = CENTER
self.len = 0
self._lock = None
assert self.leftindex > 0
assert self.rightindex > 0
if iterable is not None:
self.extend(iterable)
def pop(self):
"""Remove and return the rightmost element."""
if self.len == 0:
raise IndexError("pop from an empty deque")
self.len -= 1
ri = self.rightindex
obj = self.rightblock.data[ri]
self.rightblock.data[ri] = None
ri -= 1
if ri < 0:
if self.len == 0:
# re-center instead of freeing the last block
self.leftindex = CENTER + 1
ri = CENTER
else:
b = self.rightblock.leftlink
self.rightblock = b
b.rightlink = None
ri = BLOCKLEN - 1
self.rightindex = ri
self._modified()
return obj
def _modified(self):
self._lock = None
def _getlock(self):
if self._lock is None:
self._lock = Lock()
return self._lock
def _checklock(self, lock):
if lock is not self._lock:
raise RuntimeError("deque mutated during iteration")
def _trimleft(self):
if self.len > self._maxlen:
self.popleft()
assert self.len == self._maxlen
def _trimright(self):
if self.len > self._maxlen:
self.pop()
assert self.len == self._maxlen
def append(self, x):
"""Add an element to the right side of the deque."""
ri = self.rightindex + 1
if ri >= BLOCKLEN:
b = Block(self.rightblock, None)
self.rightblock.rightlink = b
self.rightblock = b
ri = 0
self.rightindex = ri
self.rightblock.data[ri] = x
self.len += 1
self._trimleft()
self._modified()
def appendleft(self, x):
"""Add an element to the left side of the deque."""
li = self.leftindex - 1
if li < 0:
b = Block(None, self.leftblock)
self.leftblock.leftlink = b
self.leftblock = b
li = BLOCKLEN - 1
self.leftindex = li
self.leftblock.data[li] = x
self.len += 1
self._trimright()
self._modified()
def clear(self):
"""Remove all elements from the deque."""
self.leftblock = Block(None, None)
self.rightblock = self.leftblock
self.leftindex = CENTER + 1
self.rightindex = CENTER
self.len = 0
self._modified()
def count(self, v):
"""Return number of occurrences of value."""
b = self.leftblock
index = self.leftindex
n = self.len
count = 0
lock = self._getlock()
while (n - 1) >= 0:
n -= 1
assert b is not None
item = b.data[index]
if item == v:
count += 1
self._checklock(lock)
index += 1
if index == BLOCKLEN:
b = b.rightlink
index = 0
return count
def extend(self, iterable):
"""Extend the right side of the deque with elements from the iterable"""
# Handle case where id(deque) == id(iterable)
if self == iterable:
iterable = list(iterable)
_iter = iter(iterable)
while True:
try:
obj = next(_iter)
except StopIteration:
break
self.append(obj)
def __iadd__(self, other):
return _add(self, other)
def __add__(self, other):
if not isinstance(other, deque):
raise TypeError("can only concatenate deque (not '%s') to deque" % (type(other)))
return _add(deque(self, maxlen=self.maxlen), other)
def __imul__(self, times):
return _mul(self, times)
def __mul__(self, times):
return _mul(deque(self, maxlen=self.maxlen), times)
def __rmul__(self, times):
return _mul(deque(self, maxlen=self.maxlen), times)
def __hash__(self):
raise TypeError("unhashable type: '%s'" % self.__name__)
def extendleft(self, iterable):
"""Extend the left side of the deque with elements from the iterable"""
# Handle case where id(deque) == id(iterable)
if self == iterable:
iterable = list(iterable)
_iter = iter(iterable)
while True:
try:
obj = next(_iter)
except StopIteration:
break
self.appendleft(obj)
def popleft(self):
"""Remove and return the leftmost element."""
if self.len == 0:
raise IndexError("pop from an empty deque")
self.len -= 1
li = self.leftindex
obj = self.leftblock.data[li]
self.leftblock.data[li] = None
li += 1
if li >= BLOCKLEN:
if self.len == 0:
# re-center instead of freeing the last block
li = CENTER + 1
self.rightindex = CENTER
else:
b = self.leftblock.rightlink
self.leftblock = b
b.leftlink = None
li = 0
self.leftindex = li
self._modified()
return obj
def remove(self, x):
"""Remove first occurrence of value."""
block = self.leftblock
index = self.leftindex
n = self.len
for i in range(n):
item = block.data[index]
if self.len != n:
raise IndexError("deque mutated during remove().")
if item == x:
self.delitem(i)
return
# Advance the block/index pair
index += 1
if index >= BLOCKLEN:
block = block.rightlink
index = 0
raise ValueError("deque.remove(x): x not in deque")
def reverse(self):
"""Reverse *IN PLACE*."""
li = self.leftindex
lb = self.leftblock
ri = self.rightindex
rb = self.rightblock
for i in range(self.len >> 1):
lb.data[li], rb.data[ri] = rb.data[ri], lb.data[li]
li += 1
if li >= BLOCKLEN:
lb = lb.rightlink
li = 0
ri -= 1
if ri < 0:
rb = rb.leftlink
ri = BLOCKLEN - 1
def rotate(self, n=1):
"""Rotate the deque n steps to the right (default n=1). If n is negative, rotates left."""
len = self.len
if len <= 1:
return
half_len = len >> 1
if n > half_len or n < -half_len:
n %= len
if n > half_len:
n -= len
i = 0
while i < n:
self.appendleft(self.pop())
i += 1
while i > n:
self.append(self.popleft())
i -= 1
def __iter__(self):
return _DequeIter(self)
def __reversed__(self):
"""Return a reverse iterator over the deque."""
return _DequeRevIter(self)
def __len__(self):
return self.len
def __repr__(self):
# TODO: this does not handle infinite repr recursive calls ... (GR-10763)
try:
list_repr = "[" + ", ".join([repr(x) for x in self]) + ']'
finally:
pass
if self.maxlen is None:
maxlen_repr = ''
else:
maxlen_repr = ', maxlen=%d' % (self.maxlen,)
return 'deque(%s%s)' % (list_repr, maxlen_repr)
def __compare__(self, other, op):
if not isinstance(other, deque):
return NotImplemented
it1 = iter(self)
it2 = iter(other)
while True:
x1 = _next_or_none(it1)
x2 = _next_or_none(it2)
if x1 is None or x2 is None:
if op == 'eq':
return x1 is x2 # both None
if op == 'ne':
return x1 is not x2
if op == 'lt':
return x2 is not None
if op == 'le':
return x1 is None
if op == 'gt':
return x1 is not None
if op == 'ge':
return x2 is None
assert False, "bad value for op"
if not x1 == x2:
if op == 'eq':
return False
if op == 'ne':
return True
if op == 'lt':
return x1 < x2
if op == 'le':
return x1 <= x2
if op == 'gt':
return x1 > x2
if op == 'ge':
return x1 >= x2
assert False, "bad value for op"
def __contains__(self, v):
lock = self._getlock()
n = self.len
index = self.leftindex
b = self.leftblock
while (n - 1) >= 0:
n -= 1
assert b is not None
item = b.data[index]
if item == v:
return True
self._checklock(lock)
index += 1
if index == BLOCKLEN:
b = b.rightlink
index = 0
return False
def _norm_index(self, idx, force_index_to_zero=True):
if idx < 0:
idx += self.len
if idx < 0 and force_index_to_zero:
idx = 0
return idx
def _check_index(self, idx):
if idx < 0 or idx >= self.len:
raise IndexError("deque index out of range")
def index(self, v, start=0, stop=None):
if stop is None:
stop = self.len
lock = self._getlock()
start = self._norm_index(start)
stop = self._norm_index(stop)
if stop > self.len:
stop = self.len
if start > stop:
start = stop
assert 0 <= start <= stop <= self.len
index = self.leftindex
b = self.leftblock
i = 0
for i in range(start):
index += 1
if index == BLOCKLEN:
b = b.rightlink
index = 0
n = stop - start
while (n - 1) >= 0:
n -= 1
assert b is not None
item = b.data[index]
if item == v:
return stop - n - 1
self._checklock(lock)
index += 1
if index == BLOCKLEN:
b = b.rightlink
index = 0
raise ValueError("%s is not in deque" % v)
def __lt__(self, other):
return self.__compare__(other, 'lt')
def __le__(self, other):
return self.__compare__(other, 'le')
def __eq__(self, other):
return self.__compare__(other, 'eq')
def __ne__(self, other):
return self.__compare__(other, 'ne')
def __gt__(self, other):
return self.__compare__(other, 'gt')
def __ge__(self, other):
return self.__compare__(other, 'ge')
def _locate(self, i):
if i < (self.len >> 1):
i += self.leftindex
b = self.leftblock
while i >= BLOCKLEN:
b = b.rightlink
i -= BLOCKLEN
else:
i = i - self.len + 1 # then i <= 0
i += self.rightindex
b = self.rightblock
while i < 0:
b = b.leftlink
i += BLOCKLEN
assert i >= 0
return b, i
def delitem(self, i):
# delitem() implemented in terms of rotate for simplicity and
# reasonable performance near the end points.
self.rotate(-i)
self.popleft()
self.rotate(i)
def __getitem__(self, idx):
idx = self._norm_index(idx)
self._check_index(idx)
b, i = self._locate(idx)
return b.data[i]
def __setitem__(self, idx, value):
idx = self._norm_index(idx, force_index_to_zero=False)
self._check_index(idx)
b, i = self._locate(idx)
b.data[i] = value
def __delitem__(self, idx):
idx = self._norm_index(idx, force_index_to_zero=False)
self._check_index(idx)
self.delitem(idx)
def copy(self):
"""Return a shallow copy of a deque."""
if self._maxlen == sys.maxsize:
return deque(self)
else:
return deque(self, self.maxlen)
def __copy__(self):
return self.copy()
def __reduce__(self):
"""Return state information for pickling."""
_type = type(self)
_dict = self.__dict__
_list = list(self)
if _dict is None:
if self._maxlen == sys.maxsize:
result = [_type, tuple([_list])]
else:
result = [_type, tuple([_list, self._maxlen])]
else:
if self._maxlen == sys.maxsize:
_len = None
else:
_len = self._maxlen
result = [_type, tuple([_list, _len]), _dict]
return tuple(result)
@property
def maxlen(self):
if self._maxlen == sys.maxsize:
return None
else:
return self._maxlen
class _DequeIter(object):
def __init__(self, dq):
self._deque = dq
self.block = dq.leftblock
self.index = dq.leftindex
self.counter = dq.len
self.lock = dq._getlock()
assert self.index > 0
def __iter__(self):
return self
def __len__(self):
return self.counter
def __next__(self):
if self.lock is not self._deque._lock:
self.counter = 0
raise RuntimeError("deque mutated during iteration")
if self.counter == 0:
raise StopIteration(None)
self.counter -= 1
ri = self.index
x = self.block.data[ri]
ri += 1
if ri == BLOCKLEN:
self.block = self.block.rightlink
ri = 0
self.index = ri
return x
class _DequeRevIter(object):
def __init__(self, dq):
self._deque = dq
self.block = dq.rightblock
self.index = dq.rightindex
self.counter = dq.len
self.lock = dq._getlock()
assert self.index > 0
def __iter__(self):
return self
def __len__(self):
return self.counter
def __next__(self):
if self.lock is not self._deque._lock:
self.counter = 0
raise RuntimeError("deque mutated during iteration")
if self.counter == 0:
raise StopIteration(None)
self.counter -= 1
ri = self.index
x = self.block.data[ri]
ri -= 1
if ri < 0:
self.block = self.block.leftlink
ri = BLOCKLEN - 1
self.index = ri
return x
class defaultdict(dict):
def __init__(self, default_factory, *args, **kwds):
dict.__init__(self, *args, **kwds)
self.default_factory = default_factory
def __missing__(self, key):
if self.default_factory is None:
raise KeyError((key,))
self[key] = value = self.default_factory()
return value
def __repr__(self):
return "%s(%r, %s)" % (type(self).__name__, self.default_factory, dict.__repr__(self))