blob: 8615bf1d390b1624a517fe353e56a41663f89700 [file] [log] [blame]
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001#include "Python.h"
Raymond Hettinger691d8052004-05-30 07:26:47 +00002#include "structmember.h"
Raymond Hettinger756b3f32004-01-29 06:37:52 +00003
Raymond Hettingerc2083082015-02-28 23:29:16 -08004#ifdef STDC_HEADERS
5#include <stddef.h>
6#else
7#include <sys/types.h> /* For size_t */
8#endif
9
Raymond Hettinger756b3f32004-01-29 06:37:52 +000010/* collections module implementation of a deque() datatype
11 Written and maintained by Raymond D. Hettinger <python@rcn.com>
Raymond Hettinger756b3f32004-01-29 06:37:52 +000012*/
13
Raymond Hettinger77e8bf12004-10-01 15:25:53 +000014/* The block length may be set to any number over 1. Larger numbers
Raymond Hettinger20b0f872013-06-23 15:44:33 -070015 * reduce the number of calls to the memory allocator, give faster
Raymond Hettinger30c90742015-03-02 22:31:35 -080016 * indexing and rotation, and reduce the link to data overhead ratio.
Raymond Hettingerdaf57f22015-02-26 23:21:29 -080017 * Making the block length a power of two speeds-up the modulo
Raymond Hettinger30c90742015-03-02 22:31:35 -080018 * and division calculations in deque_item() and deque_ass_item().
Raymond Hettinger77e8bf12004-10-01 15:25:53 +000019 */
20
Raymond Hettingerdaf57f22015-02-26 23:21:29 -080021#define BLOCKLEN 64
Raymond Hettinger61f05fb2004-10-01 06:24:12 +000022#define CENTER ((BLOCKLEN - 1) / 2)
Raymond Hettinger756b3f32004-01-29 06:37:52 +000023
Raymond Hettinger551350a2015-03-24 00:19:53 -070024/* Data for deque objects is stored in a doubly-linked list of fixed
25 * length blocks. This assures that appends or pops never move any
26 * other data elements besides the one being appended or popped.
27 *
28 * Another advantage is that it completely avoids use of realloc(),
29 * resulting in more predictable performance.
30 *
31 * Textbook implementations of doubly-linked lists store one datum
32 * per link, but that gives them a 200% memory overhead (a prev and
33 * next link for each datum) and it costs one malloc() call per data
34 * element. By using fixed-length blocks, the link to data ratio is
35 * significantly improved and there are proportionally fewer calls
36 * to malloc() and free(). The data blocks of consecutive pointers
37 * also improve cache locality.
38 *
Raymond Hettinger61f05fb2004-10-01 06:24:12 +000039 * The list of blocks is never empty, so d.leftblock and d.rightblock
Raymond Hettinger82df9252013-07-07 01:43:42 -100040 * are never equal to NULL. The list is not circular.
41 *
42 * A deque d's first element is at d.leftblock[leftindex]
43 * and its last element is at d.rightblock[rightindex].
Raymond Hettinger61f05fb2004-10-01 06:24:12 +000044 *
Raymond Hettinger551350a2015-03-24 00:19:53 -070045 * Unlike Python slice indices, these indices are inclusive on both
46 * ends. This makes the algorithms for left and right operations
47 * more symmetrical and it simplifies the design.
Raymond Hettinger61f05fb2004-10-01 06:24:12 +000048 *
Raymond Hettinger551350a2015-03-24 00:19:53 -070049 * The indices, d.leftindex and d.rightindex are always in the range:
50 * 0 <= index < BLOCKLEN
51 *
52 * And their exact relationship is:
53 * (d.leftindex + d.len - 1) % BLOCKLEN == d.rightindex
Raymond Hettinger61f05fb2004-10-01 06:24:12 +000054 *
Raymond Hettinger8dbbae22015-03-24 21:01:50 -070055 * Whenever d.leftblock == d.rightblock, then:
Raymond Hettinger551350a2015-03-24 00:19:53 -070056 * d.leftindex + d.len - 1 == d.rightindex
Thomas Wouters0e3f5912006-08-11 14:57:12 +000057 *
Raymond Hettinger551350a2015-03-24 00:19:53 -070058 * However, when d.leftblock != d.rightblock, the d.leftindex and
59 * d.rightindex become indices into distinct blocks and either may
60 * be larger than the other.
61 *
62 * Empty deques have:
63 * d.len == 0
64 * d.leftblock == d.rightblock
65 * d.leftindex == CENTER + 1
66 * d.rightindex == CENTER
67 *
68 * Checking for d.len == 0 is the intended way to see whether d is empty.
Tim Petersd8768d32004-10-01 01:32:53 +000069 */
70
Raymond Hettinger756b3f32004-01-29 06:37:52 +000071typedef struct BLOCK {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000072 struct BLOCK *leftlink;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000073 PyObject *data[BLOCKLEN];
Raymond Hettinger20b0f872013-06-23 15:44:33 -070074 struct BLOCK *rightlink;
Raymond Hettinger756b3f32004-01-29 06:37:52 +000075} block;
76
Raymond Hettinger30c90742015-03-02 22:31:35 -080077typedef struct {
78 PyObject_VAR_HEAD
79 block *leftblock;
80 block *rightblock;
Raymond Hettinger551350a2015-03-24 00:19:53 -070081 Py_ssize_t leftindex; /* 0 <= leftindex < BLOCKLEN */
82 Py_ssize_t rightindex; /* 0 <= rightindex < BLOCKLEN */
Raymond Hettingerf9d9c792015-03-02 22:47:46 -080083 size_t state; /* incremented whenever the indices move */
Raymond Hettingerd84ec222016-01-24 09:12:06 -080084 Py_ssize_t maxlen; /* maxlen is -1 for unbounded deques */
Raymond Hettinger0f6f9472015-03-21 01:42:10 -070085 PyObject *weakreflist;
Raymond Hettinger30c90742015-03-02 22:31:35 -080086} dequeobject;
87
88static PyTypeObject deque_type;
89
Raymond Hettinger82df9252013-07-07 01:43:42 -100090/* For debug builds, add error checking to track the endpoints
91 * in the chain of links. The goal is to make sure that link
92 * assignments only take place at endpoints so that links already
93 * in use do not get overwritten.
94 *
95 * CHECK_END should happen before each assignment to a block's link field.
96 * MARK_END should happen whenever a link field becomes a new endpoint.
97 * This happens when new blocks are added or whenever an existing
98 * block is freed leaving another existing block as the new endpoint.
99 */
100
Raymond Hettinger3223dd52013-07-26 23:14:22 -0700101#ifndef NDEBUG
Raymond Hettinger82df9252013-07-07 01:43:42 -1000102#define MARK_END(link) link = NULL;
103#define CHECK_END(link) assert(link == NULL);
104#define CHECK_NOT_END(link) assert(link != NULL);
105#else
106#define MARK_END(link)
107#define CHECK_END(link)
108#define CHECK_NOT_END(link)
109#endif
110
111/* A simple freelisting scheme is used to minimize calls to the memory
Raymond Hettinger551350a2015-03-24 00:19:53 -0700112 allocator. It accommodates common use cases where new blocks are being
Raymond Hettinger82df9252013-07-07 01:43:42 -1000113 added at about the same rate as old blocks are being freed.
114 */
115
Raymond Hettingerf2b02ce2015-09-26 17:47:02 -0700116#define MAXFREEBLOCKS 16
Benjamin Petersond6313712008-07-31 16:23:04 +0000117static Py_ssize_t numfreeblocks = 0;
Guido van Rossum58da9312007-11-10 23:39:45 +0000118static block *freeblocks[MAXFREEBLOCKS];
119
Tim Peters6f853562004-10-01 01:04:50 +0000120static block *
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700121newblock(void) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000122 block *b;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 if (numfreeblocks) {
Raymond Hettinger59cf23a2013-02-07 00:57:19 -0500124 numfreeblocks--;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000125 return freeblocks[numfreeblocks];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000126 }
Raymond Hettinger82df9252013-07-07 01:43:42 -1000127 b = PyMem_Malloc(sizeof(block));
128 if (b != NULL) {
129 return b;
130 }
131 PyErr_NoMemory();
132 return NULL;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000133}
134
Martin v. Löwis59683e82008-06-13 07:50:45 +0000135static void
Guido van Rossum58da9312007-11-10 23:39:45 +0000136freeblock(block *b)
137{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000138 if (numfreeblocks < MAXFREEBLOCKS) {
139 freeblocks[numfreeblocks] = b;
140 numfreeblocks++;
141 } else {
142 PyMem_Free(b);
143 }
Guido van Rossum58da9312007-11-10 23:39:45 +0000144}
145
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000146static PyObject *
147deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
148{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 dequeobject *deque;
150 block *b;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000151
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000152 /* create dequeobject structure */
153 deque = (dequeobject *)type->tp_alloc(type, 0);
154 if (deque == NULL)
155 return NULL;
Tim Peters1065f752004-10-01 01:03:29 +0000156
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700157 b = newblock();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000158 if (b == NULL) {
159 Py_DECREF(deque);
160 return NULL;
161 }
Raymond Hettinger82df9252013-07-07 01:43:42 -1000162 MARK_END(b->leftlink);
163 MARK_END(b->rightlink);
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000164
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000165 assert(BLOCKLEN >= 2);
Raymond Hettinger87e69122015-03-02 23:32:02 -0800166 Py_SIZE(deque) = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000167 deque->leftblock = b;
168 deque->rightblock = b;
169 deque->leftindex = CENTER + 1;
170 deque->rightindex = CENTER;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000171 deque->state = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000172 deque->maxlen = -1;
Raymond Hettinger87e69122015-03-02 23:32:02 -0800173 deque->weakreflist = NULL;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000174
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 return (PyObject *)deque;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000176}
177
178static PyObject *
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000179deque_pop(dequeobject *deque, PyObject *unused)
180{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000181 PyObject *item;
182 block *prevblock;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000183
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000184 if (Py_SIZE(deque) == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000185 PyErr_SetString(PyExc_IndexError, "pop from an empty deque");
186 return NULL;
187 }
188 item = deque->rightblock->data[deque->rightindex];
189 deque->rightindex--;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000190 Py_SIZE(deque)--;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191 deque->state++;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000192
Raymond Hettingerd3d2b2c2015-09-21 23:41:56 -0700193 if (deque->rightindex < 0) {
Raymond Hettinger8dbbae22015-03-24 21:01:50 -0700194 if (Py_SIZE(deque)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000195 prevblock = deque->rightblock->leftlink;
196 assert(deque->leftblock != deque->rightblock);
197 freeblock(deque->rightblock);
Raymond Hettinger82df9252013-07-07 01:43:42 -1000198 CHECK_NOT_END(prevblock);
199 MARK_END(prevblock->rightlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000200 deque->rightblock = prevblock;
201 deque->rightindex = BLOCKLEN - 1;
Raymond Hettinger8dbbae22015-03-24 21:01:50 -0700202 } else {
203 assert(deque->leftblock == deque->rightblock);
204 assert(deque->leftindex == deque->rightindex+1);
205 /* re-center instead of freeing a block */
206 deque->leftindex = CENTER + 1;
207 deque->rightindex = CENTER;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208 }
209 }
210 return item;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000211}
212
213PyDoc_STRVAR(pop_doc, "Remove and return the rightmost element.");
214
215static PyObject *
216deque_popleft(dequeobject *deque, PyObject *unused)
217{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000218 PyObject *item;
219 block *prevblock;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000220
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000221 if (Py_SIZE(deque) == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 PyErr_SetString(PyExc_IndexError, "pop from an empty deque");
223 return NULL;
224 }
225 assert(deque->leftblock != NULL);
226 item = deque->leftblock->data[deque->leftindex];
227 deque->leftindex++;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000228 Py_SIZE(deque)--;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000229 deque->state++;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000230
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 if (deque->leftindex == BLOCKLEN) {
Raymond Hettinger8dbbae22015-03-24 21:01:50 -0700232 if (Py_SIZE(deque)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000233 assert(deque->leftblock != deque->rightblock);
234 prevblock = deque->leftblock->rightlink;
235 freeblock(deque->leftblock);
Raymond Hettinger82df9252013-07-07 01:43:42 -1000236 CHECK_NOT_END(prevblock);
237 MARK_END(prevblock->leftlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000238 deque->leftblock = prevblock;
239 deque->leftindex = 0;
Raymond Hettinger8dbbae22015-03-24 21:01:50 -0700240 } else {
241 assert(deque->leftblock == deque->rightblock);
242 assert(deque->leftindex == deque->rightindex+1);
243 /* re-center instead of freeing a block */
244 deque->leftindex = CENTER + 1;
245 deque->rightindex = CENTER;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000246 }
247 }
248 return item;
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000249}
250
251PyDoc_STRVAR(popleft_doc, "Remove and return the leftmost element.");
252
Raymond Hettingerf30f5b92015-03-02 22:23:37 -0800253/* The deque's size limit is d.maxlen. The limit can be zero or positive.
254 * If there is no limit, then d.maxlen == -1.
255 *
Raymond Hettingera4b13d02015-10-15 08:05:31 -0700256 * After an item is added to a deque, we check to see if the size has
257 * grown past the limit. If it has, we get the size back down to the limit
258 * by popping an item off of the opposite end. The methods that can
259 * trigger this are append(), appendleft(), extend(), and extendleft().
Raymond Hettingerd96db092015-10-11 22:34:48 -0700260 *
261 * The macro to check whether a deque needs to be trimmed uses a single
262 * unsigned test that returns true whenever 0 <= maxlen < Py_SIZE(deque).
Raymond Hettingerf30f5b92015-03-02 22:23:37 -0800263 */
264
Raymond Hettingerd96db092015-10-11 22:34:48 -0700265#define NEEDS_TRIM(deque, maxlen) ((size_t)(maxlen) < (size_t)(Py_SIZE(deque)))
Raymond Hettingerf30f5b92015-03-02 22:23:37 -0800266
doko@ubuntu.combc731502016-05-18 01:06:01 +0200267static int
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800268deque_append_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000269{
Raymond Hettinger8dbbae22015-03-24 21:01:50 -0700270 if (deque->rightindex == BLOCKLEN - 1) {
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700271 block *b = newblock();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 if (b == NULL)
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800273 return -1;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000274 b->leftlink = deque->rightblock;
275 CHECK_END(deque->rightblock->rightlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000276 deque->rightblock->rightlink = b;
277 deque->rightblock = b;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000278 MARK_END(b->rightlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000279 deque->rightindex = -1;
280 }
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000281 Py_SIZE(deque)++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000282 deque->rightindex++;
283 deque->rightblock->data[deque->rightindex] = item;
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800284 if (NEEDS_TRIM(deque, maxlen)) {
Raymond Hettinger1286d142015-10-14 23:16:57 -0700285 PyObject *olditem = deque_popleft(deque, NULL);
286 Py_DECREF(olditem);
Raymond Hettinger0f43bb12015-10-20 00:03:33 -0700287 } else {
288 deque->state++;
Raymond Hettingerd96db092015-10-11 22:34:48 -0700289 }
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800290 return 0;
291}
292
293static PyObject *
294deque_append(dequeobject *deque, PyObject *item)
295{
296 Py_INCREF(item);
297 if (deque_append_internal(deque, item, deque->maxlen) < 0)
298 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000299 Py_RETURN_NONE;
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000300}
301
302PyDoc_STRVAR(append_doc, "Add an element to the right side of the deque.");
303
doko@ubuntu.com17f0e612016-06-14 07:27:58 +0200304static int
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800305deque_appendleft_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000306{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000307 if (deque->leftindex == 0) {
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700308 block *b = newblock();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000309 if (b == NULL)
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800310 return -1;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000311 b->rightlink = deque->leftblock;
312 CHECK_END(deque->leftblock->leftlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000313 deque->leftblock->leftlink = b;
314 deque->leftblock = b;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000315 MARK_END(b->leftlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000316 deque->leftindex = BLOCKLEN;
317 }
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000318 Py_SIZE(deque)++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000319 deque->leftindex--;
320 deque->leftblock->data[deque->leftindex] = item;
Raymond Hettingerd96db092015-10-11 22:34:48 -0700321 if (NEEDS_TRIM(deque, deque->maxlen)) {
Raymond Hettinger1286d142015-10-14 23:16:57 -0700322 PyObject *olditem = deque_pop(deque, NULL);
323 Py_DECREF(olditem);
Raymond Hettinger0f43bb12015-10-20 00:03:33 -0700324 } else {
325 deque->state++;
Raymond Hettingerd96db092015-10-11 22:34:48 -0700326 }
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800327 return 0;
328}
329
330static PyObject *
331deque_appendleft(dequeobject *deque, PyObject *item)
332{
333 Py_INCREF(item);
334 if (deque_appendleft_internal(deque, item, deque->maxlen) < 0)
335 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 Py_RETURN_NONE;
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000337}
338
339PyDoc_STRVAR(appendleft_doc, "Add an element to the left side of the deque.");
340
Raymond Hettingerfd265f42015-10-02 23:17:33 -0700341static PyObject*
342finalize_iterator(PyObject *it)
343{
344 if (PyErr_Occurred()) {
345 if (PyErr_ExceptionMatches(PyExc_StopIteration))
346 PyErr_Clear();
347 else {
348 Py_DECREF(it);
349 return NULL;
350 }
351 }
352 Py_DECREF(it);
353 Py_RETURN_NONE;
354}
Raymond Hettinger060c7f62009-03-10 09:36:07 +0000355
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000356/* Run an iterator to exhaustion. Shortcut for
Raymond Hettinger060c7f62009-03-10 09:36:07 +0000357 the extend/extendleft methods when maxlen == 0. */
358static PyObject*
359consume_iterator(PyObject *it)
360{
Raymond Hettingerfd265f42015-10-02 23:17:33 -0700361 PyObject *(*iternext)(PyObject *);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 PyObject *item;
Raymond Hettinger060c7f62009-03-10 09:36:07 +0000363
Raymond Hettingerfd265f42015-10-02 23:17:33 -0700364 iternext = *Py_TYPE(it)->tp_iternext;
365 while ((item = iternext(it)) != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 Py_DECREF(item);
367 }
Raymond Hettingerfd265f42015-10-02 23:17:33 -0700368 return finalize_iterator(it);
Raymond Hettinger060c7f62009-03-10 09:36:07 +0000369}
370
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000371static PyObject *
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000372deque_extend(dequeobject *deque, PyObject *iterable)
373{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 PyObject *it, *item;
Raymond Hettinger7a845522015-09-26 01:30:51 -0700375 PyObject *(*iternext)(PyObject *);
Raymond Hettinger6b1e1132015-10-11 09:43:50 -0700376 Py_ssize_t maxlen = deque->maxlen;
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000377
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000378 /* Handle case where id(deque) == id(iterable) */
379 if ((PyObject *)deque == iterable) {
380 PyObject *result;
381 PyObject *s = PySequence_List(iterable);
382 if (s == NULL)
383 return NULL;
384 result = deque_extend(deque, s);
385 Py_DECREF(s);
386 return result;
387 }
Raymond Hettinger3f9afd82009-12-10 03:03:02 +0000388
Raymond Hettingerd79d5b12016-03-04 09:55:07 -0800389 it = PyObject_GetIter(iterable);
390 if (it == NULL)
391 return NULL;
392
393 if (maxlen == 0)
394 return consume_iterator(it);
395
Raymond Hettingerd9c116c2013-07-09 00:13:21 -0700396 /* Space saving heuristic. Start filling from the left */
397 if (Py_SIZE(deque) == 0) {
398 assert(deque->leftblock == deque->rightblock);
399 assert(deque->leftindex == deque->rightindex+1);
400 deque->leftindex = 1;
401 deque->rightindex = 0;
402 }
403
Raymond Hettinger7a845522015-09-26 01:30:51 -0700404 iternext = *Py_TYPE(it)->tp_iternext;
405 while ((item = iternext(it)) != NULL) {
Raymond Hettinger88057172016-09-11 22:45:53 -0700406 if (deque->rightindex == BLOCKLEN - 1) {
407 block *b = newblock();
408 if (b == NULL) {
409 Py_DECREF(item);
410 Py_DECREF(it);
411 return NULL;
412 }
413 b->leftlink = deque->rightblock;
414 CHECK_END(deque->rightblock->rightlink);
415 deque->rightblock->rightlink = b;
416 deque->rightblock = b;
417 MARK_END(b->rightlink);
418 deque->rightindex = -1;
419 }
420 Py_SIZE(deque)++;
421 deque->rightindex++;
422 deque->rightblock->data[deque->rightindex] = item;
423 if (NEEDS_TRIM(deque, maxlen)) {
424 PyObject *olditem = deque_popleft(deque, NULL);
425 Py_DECREF(olditem);
426 } else {
427 deque->state++;
Raymond Hettinger6b1e1132015-10-11 09:43:50 -0700428 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 }
Raymond Hettingerfd265f42015-10-02 23:17:33 -0700430 return finalize_iterator(it);
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000431}
432
Tim Peters1065f752004-10-01 01:03:29 +0000433PyDoc_STRVAR(extend_doc,
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000434"Extend the right side of the deque with elements from the iterable");
435
436static PyObject *
437deque_extendleft(dequeobject *deque, PyObject *iterable)
438{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000439 PyObject *it, *item;
Raymond Hettinger7a845522015-09-26 01:30:51 -0700440 PyObject *(*iternext)(PyObject *);
Raymond Hettinger6b1e1132015-10-11 09:43:50 -0700441 Py_ssize_t maxlen = deque->maxlen;
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000442
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000443 /* Handle case where id(deque) == id(iterable) */
444 if ((PyObject *)deque == iterable) {
445 PyObject *result;
446 PyObject *s = PySequence_List(iterable);
447 if (s == NULL)
448 return NULL;
449 result = deque_extendleft(deque, s);
450 Py_DECREF(s);
451 return result;
452 }
Raymond Hettinger3f9afd82009-12-10 03:03:02 +0000453
Raymond Hettingerd79d5b12016-03-04 09:55:07 -0800454 it = PyObject_GetIter(iterable);
455 if (it == NULL)
456 return NULL;
457
458 if (maxlen == 0)
459 return consume_iterator(it);
460
Raymond Hettingerd9c116c2013-07-09 00:13:21 -0700461 /* Space saving heuristic. Start filling from the right */
462 if (Py_SIZE(deque) == 0) {
463 assert(deque->leftblock == deque->rightblock);
464 assert(deque->leftindex == deque->rightindex+1);
465 deque->leftindex = BLOCKLEN - 1;
466 deque->rightindex = BLOCKLEN - 2;
467 }
468
Raymond Hettinger7a845522015-09-26 01:30:51 -0700469 iternext = *Py_TYPE(it)->tp_iternext;
470 while ((item = iternext(it)) != NULL) {
Raymond Hettinger88057172016-09-11 22:45:53 -0700471 if (deque->leftindex == 0) {
472 block *b = newblock();
473 if (b == NULL) {
474 Py_DECREF(item);
475 Py_DECREF(it);
476 return NULL;
477 }
478 b->rightlink = deque->leftblock;
479 CHECK_END(deque->leftblock->leftlink);
480 deque->leftblock->leftlink = b;
481 deque->leftblock = b;
482 MARK_END(b->leftlink);
483 deque->leftindex = BLOCKLEN;
484 }
485 Py_SIZE(deque)++;
486 deque->leftindex--;
487 deque->leftblock->data[deque->leftindex] = item;
488 if (NEEDS_TRIM(deque, maxlen)) {
489 PyObject *olditem = deque_pop(deque, NULL);
490 Py_DECREF(olditem);
491 } else {
492 deque->state++;
Raymond Hettinger6b1e1132015-10-11 09:43:50 -0700493 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000494 }
Raymond Hettingerfd265f42015-10-02 23:17:33 -0700495 return finalize_iterator(it);
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000496}
497
Tim Peters1065f752004-10-01 01:03:29 +0000498PyDoc_STRVAR(extendleft_doc,
Raymond Hettinger3ba85c22004-02-06 19:04:56 +0000499"Extend the left side of the deque with elements from the iterable");
500
Raymond Hettinger3f9afd82009-12-10 03:03:02 +0000501static PyObject *
502deque_inplace_concat(dequeobject *deque, PyObject *other)
503{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000504 PyObject *result;
Raymond Hettinger3f9afd82009-12-10 03:03:02 +0000505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 result = deque_extend(deque, other);
507 if (result == NULL)
508 return result;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 Py_INCREF(deque);
Raymond Hettinger2b2b7532015-09-05 17:05:52 -0700510 Py_DECREF(result);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000511 return (PyObject *)deque;
Raymond Hettinger3f9afd82009-12-10 03:03:02 +0000512}
513
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700514static PyObject *
515deque_copy(PyObject *deque)
516{
517 dequeobject *old_deque = (dequeobject *)deque;
518 if (Py_TYPE(deque) == &deque_type) {
519 dequeobject *new_deque;
520 PyObject *rv;
521
522 new_deque = (dequeobject *)deque_new(&deque_type, (PyObject *)NULL, (PyObject *)NULL);
523 if (new_deque == NULL)
524 return NULL;
525 new_deque->maxlen = old_deque->maxlen;
526 /* Fast path for the deque_repeat() common case where len(deque) == 1 */
Raymond Hettinger0443ac22015-10-05 22:52:37 -0400527 if (Py_SIZE(deque) == 1) {
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700528 PyObject *item = old_deque->leftblock->data[old_deque->leftindex];
529 rv = deque_append(new_deque, item);
530 } else {
531 rv = deque_extend(new_deque, deque);
532 }
533 if (rv != NULL) {
534 Py_DECREF(rv);
535 return (PyObject *)new_deque;
536 }
537 Py_DECREF(new_deque);
538 return NULL;
539 }
540 if (old_deque->maxlen < 0)
Victor Stinner7bfb42d2016-12-05 17:04:32 +0100541 return PyObject_CallFunctionObjArgs((PyObject *)(Py_TYPE(deque)),
542 deque, NULL);
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700543 else
544 return PyObject_CallFunction((PyObject *)(Py_TYPE(deque)), "Oi",
545 deque, old_deque->maxlen, NULL);
546}
547
548PyDoc_STRVAR(copy_doc, "Return a shallow copy of a deque.");
Raymond Hettinger41290a62015-03-31 08:12:23 -0700549
550static PyObject *
551deque_concat(dequeobject *deque, PyObject *other)
552{
Benjamin Peterson1a629212015-04-04 10:52:36 -0400553 PyObject *new_deque, *result;
Raymond Hettinger41290a62015-03-31 08:12:23 -0700554 int rv;
555
556 rv = PyObject_IsInstance(other, (PyObject *)&deque_type);
557 if (rv <= 0) {
558 if (rv == 0) {
559 PyErr_Format(PyExc_TypeError,
560 "can only concatenate deque (not \"%.200s\") to deque",
561 other->ob_type->tp_name);
562 }
563 return NULL;
564 }
565
566 new_deque = deque_copy((PyObject *)deque);
567 if (new_deque == NULL)
568 return NULL;
Benjamin Peterson1a629212015-04-04 10:52:36 -0400569 result = deque_extend((dequeobject *)new_deque, other);
570 if (result == NULL) {
571 Py_DECREF(new_deque);
572 return NULL;
573 }
574 Py_DECREF(result);
575 return new_deque;
Raymond Hettinger41290a62015-03-31 08:12:23 -0700576}
577
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700578static void
579deque_clear(dequeobject *deque)
580{
581 block *b;
582 block *prevblock;
583 block *leftblock;
584 Py_ssize_t leftindex;
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800585 Py_ssize_t n, m;
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700586 PyObject *item;
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800587 PyObject **itemptr, **limit;
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700588
Raymond Hettinger38031142015-09-29 22:45:05 -0700589 if (Py_SIZE(deque) == 0)
590 return;
591
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700592 /* During the process of clearing a deque, decrefs can cause the
593 deque to mutate. To avoid fatal confusion, we have to make the
594 deque empty before clearing the blocks and never refer to
595 anything via deque->ref while clearing. (This is the same
596 technique used for clearing lists, sets, and dicts.)
597
598 Making the deque empty requires allocating a new empty block. In
599 the unlikely event that memory is full, we fall back to an
600 alternate method that doesn't require a new block. Repeating
601 pops in a while-loop is slower, possibly re-entrant (and a clever
602 adversary could cause it to never terminate).
603 */
604
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700605 b = newblock();
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700606 if (b == NULL) {
607 PyErr_Clear();
608 goto alternate_method;
609 }
610
611 /* Remember the old size, leftblock, and leftindex */
Raymond Hettinger6f86a332016-03-02 00:30:58 -0800612 n = Py_SIZE(deque);
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700613 leftblock = deque->leftblock;
614 leftindex = deque->leftindex;
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700615
616 /* Set the deque to be empty using the newly allocated block */
617 MARK_END(b->leftlink);
618 MARK_END(b->rightlink);
619 Py_SIZE(deque) = 0;
620 deque->leftblock = b;
621 deque->rightblock = b;
622 deque->leftindex = CENTER + 1;
623 deque->rightindex = CENTER;
624 deque->state++;
625
626 /* Now the old size, leftblock, and leftindex are disconnected from
627 the empty deque and we can use them to decref the pointers.
628 */
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800629 m = (BLOCKLEN - leftindex > n) ? n : BLOCKLEN - leftindex;
Raymond Hettinger589106b2016-03-02 00:06:21 -0800630 itemptr = &leftblock->data[leftindex];
Raymond Hettinger6f86a332016-03-02 00:30:58 -0800631 limit = itemptr + m;
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800632 n -= m;
633 while (1) {
634 if (itemptr == limit) {
635 if (n == 0)
636 break;
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700637 CHECK_NOT_END(leftblock->rightlink);
638 prevblock = leftblock;
639 leftblock = leftblock->rightlink;
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800640 m = (n > BLOCKLEN) ? BLOCKLEN : n;
Raymond Hettinger589106b2016-03-02 00:06:21 -0800641 itemptr = leftblock->data;
Raymond Hettinger6f86a332016-03-02 00:30:58 -0800642 limit = itemptr + m;
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800643 n -= m;
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700644 freeblock(prevblock);
645 }
Raymond Hettingerd84ec222016-01-24 09:12:06 -0800646 item = *(itemptr++);
647 Py_DECREF(item);
Raymond Hettinger8299e9b2015-09-26 21:31:23 -0700648 }
649 CHECK_END(leftblock->rightlink);
650 freeblock(leftblock);
651 return;
652
653 alternate_method:
654 while (Py_SIZE(deque)) {
655 item = deque_pop(deque, NULL);
656 assert (item != NULL);
657 Py_DECREF(item);
658 }
659}
660
661static PyObject *
662deque_clearmethod(dequeobject *deque)
663{
664 deque_clear(deque);
665 Py_RETURN_NONE;
666}
667
668PyDoc_STRVAR(clear_doc, "Remove all elements from the deque.");
Raymond Hettinger41290a62015-03-31 08:12:23 -0700669
670static PyObject *
Raymond Hettinger41290a62015-03-31 08:12:23 -0700671deque_inplace_repeat(dequeobject *deque, Py_ssize_t n)
672{
Raymond Hettingerc22eee62015-09-26 02:14:50 -0700673 Py_ssize_t i, m, size;
Raymond Hettinger41290a62015-03-31 08:12:23 -0700674 PyObject *seq;
675 PyObject *rv;
676
677 size = Py_SIZE(deque);
678 if (size == 0 || n == 1) {
679 Py_INCREF(deque);
680 return (PyObject *)deque;
681 }
682
683 if (n <= 0) {
684 deque_clear(deque);
685 Py_INCREF(deque);
686 return (PyObject *)deque;
687 }
688
Raymond Hettinger41290a62015-03-31 08:12:23 -0700689 if (size == 1) {
690 /* common case, repeating a single element */
691 PyObject *item = deque->leftblock->data[deque->leftindex];
692
Raymond Hettingera7f630092015-10-10 23:56:02 -0400693 if (deque->maxlen >= 0 && n > deque->maxlen)
Raymond Hettinger41290a62015-03-31 08:12:23 -0700694 n = deque->maxlen;
695
Raymond Hettinger67c78b52015-09-12 11:00:20 -0400696 deque->state++;
Raymond Hettingerad262252015-09-14 01:03:04 -0400697 for (i = 0 ; i < n-1 ; ) {
Raymond Hettinger67c78b52015-09-12 11:00:20 -0400698 if (deque->rightindex == BLOCKLEN - 1) {
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700699 block *b = newblock();
Raymond Hettinger67c78b52015-09-12 11:00:20 -0400700 if (b == NULL) {
701 Py_SIZE(deque) += i;
702 return NULL;
703 }
704 b->leftlink = deque->rightblock;
705 CHECK_END(deque->rightblock->rightlink);
706 deque->rightblock->rightlink = b;
707 deque->rightblock = b;
708 MARK_END(b->rightlink);
709 deque->rightindex = -1;
710 }
Raymond Hettingerc22eee62015-09-26 02:14:50 -0700711 m = n - 1 - i;
712 if (m > BLOCKLEN - 1 - deque->rightindex)
713 m = BLOCKLEN - 1 - deque->rightindex;
714 i += m;
715 while (m--) {
Raymond Hettingerad262252015-09-14 01:03:04 -0400716 deque->rightindex++;
717 Py_INCREF(item);
718 deque->rightblock->data[deque->rightindex] = item;
719 }
Raymond Hettinger41290a62015-03-31 08:12:23 -0700720 }
Raymond Hettinger67c78b52015-09-12 11:00:20 -0400721 Py_SIZE(deque) += i;
Raymond Hettinger41290a62015-03-31 08:12:23 -0700722 Py_INCREF(deque);
723 return (PyObject *)deque;
724 }
725
Raymond Hettinger20151f52015-10-16 22:47:29 -0700726 if ((size_t)size > PY_SSIZE_T_MAX / (size_t)n) {
Raymond Hettingerf5d72f32015-09-09 22:39:44 -0400727 return PyErr_NoMemory();
728 }
729
Raymond Hettinger41290a62015-03-31 08:12:23 -0700730 seq = PySequence_List((PyObject *)deque);
731 if (seq == NULL)
732 return seq;
733
734 for (i = 0 ; i < n-1 ; i++) {
735 rv = deque_extend(deque, seq);
736 if (rv == NULL) {
737 Py_DECREF(seq);
738 return NULL;
739 }
740 Py_DECREF(rv);
741 }
742 Py_INCREF(deque);
743 Py_DECREF(seq);
744 return (PyObject *)deque;
745}
746
Raymond Hettingerf5d72f32015-09-09 22:39:44 -0400747static PyObject *
748deque_repeat(dequeobject *deque, Py_ssize_t n)
749{
750 dequeobject *new_deque;
Raymond Hettinger95e2cc52015-09-13 02:41:18 -0400751 PyObject *rv;
Raymond Hettingerf5d72f32015-09-09 22:39:44 -0400752
753 new_deque = (dequeobject *)deque_copy((PyObject *) deque);
754 if (new_deque == NULL)
755 return NULL;
Raymond Hettinger95e2cc52015-09-13 02:41:18 -0400756 rv = deque_inplace_repeat(new_deque, n);
757 Py_DECREF(new_deque);
758 return rv;
Raymond Hettingerf5d72f32015-09-09 22:39:44 -0400759}
760
Raymond Hettinger54023152014-04-23 00:58:48 -0700761/* The rotate() method is part of the public API and is used internally
762as a primitive for other methods.
763
764Rotation by 1 or -1 is a common case, so any optimizations for high
765volume rotations should take care not to penalize the common case.
766
767Conceptually, a rotate by one is equivalent to a pop on one side and an
768append on the other. However, a pop/append pair is unnecessarily slow
Martin Panterd2ad5712015-11-02 04:20:33 +0000769because it requires an incref/decref pair for an object located randomly
Raymond Hettinger54023152014-04-23 00:58:48 -0700770in memory. It is better to just move the object pointer from one block
771to the next without changing the reference count.
772
773When moving batches of pointers, it is tempting to use memcpy() but that
774proved to be slower than a simple loop for a variety of reasons.
775Memcpy() cannot know in advance that we're copying pointers instead of
776bytes, that the source and destination are pointer aligned and
777non-overlapping, that moving just one pointer is a common case, that we
778never need to move more than BLOCKLEN pointers, and that at least one
779pointer is always moved.
780
781For high volume rotations, newblock() and freeblock() are never called
782more than once. Previously emptied blocks are immediately reused as a
783destination block. If a block is left-over at the end, it is freed.
784*/
785
Raymond Hettingerdcb9d942004-10-09 16:02:18 +0000786static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000787_deque_rotate(dequeobject *deque, Py_ssize_t n)
Raymond Hettinger5c5eb862004-02-07 21:13:00 +0000788{
Raymond Hettinger3959af92013-07-13 02:34:08 -0700789 block *b = NULL;
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700790 block *leftblock = deque->leftblock;
791 block *rightblock = deque->rightblock;
792 Py_ssize_t leftindex = deque->leftindex;
793 Py_ssize_t rightindex = deque->rightindex;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000794 Py_ssize_t len=Py_SIZE(deque), halflen=len>>1;
Raymond Hettinger3959af92013-07-13 02:34:08 -0700795 int rv = -1;
Raymond Hettinger5c5eb862004-02-07 21:13:00 +0000796
Raymond Hettinger464d89b2013-01-11 22:29:50 -0800797 if (len <= 1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000798 return 0;
799 if (n > halflen || n < -halflen) {
800 n %= len;
801 if (n > halflen)
802 n -= len;
803 else if (n < -halflen)
804 n += len;
805 }
Raymond Hettinger1f0044c2013-02-05 01:30:46 -0500806 assert(len > 1);
Raymond Hettingera4409c12013-02-04 00:08:12 -0500807 assert(-halflen <= n && n <= halflen);
Raymond Hettinger231ee4d2013-02-02 11:24:43 -0800808
Raymond Hettinger464d89b2013-01-11 22:29:50 -0800809 deque->state++;
Raymond Hettinger1f0044c2013-02-05 01:30:46 -0500810 while (n > 0) {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700811 if (leftindex == 0) {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700812 if (b == NULL) {
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700813 b = newblock();
Raymond Hettinger3959af92013-07-13 02:34:08 -0700814 if (b == NULL)
815 goto done;
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700816 }
Raymond Hettinger82df9252013-07-07 01:43:42 -1000817 b->rightlink = leftblock;
818 CHECK_END(leftblock->leftlink);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700819 leftblock->leftlink = b;
820 leftblock = b;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000821 MARK_END(b->leftlink);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700822 leftindex = BLOCKLEN;
Raymond Hettinger3959af92013-07-13 02:34:08 -0700823 b = NULL;
Raymond Hettinger464d89b2013-01-11 22:29:50 -0800824 }
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700825 assert(leftindex > 0);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700826 {
827 PyObject **src, **dest;
828 Py_ssize_t m = n;
Raymond Hettinger21777ac2013-02-02 09:56:08 -0800829
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700830 if (m > rightindex + 1)
831 m = rightindex + 1;
832 if (m > leftindex)
833 m = leftindex;
834 assert (m > 0 && m <= len);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700835 rightindex -= m;
836 leftindex -= m;
Raymond Hettinger0e259f12015-02-01 22:53:41 -0800837 src = &rightblock->data[rightindex + 1];
838 dest = &leftblock->data[leftindex];
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700839 n -= m;
Raymond Hettinger840533b2013-07-13 17:03:58 -0700840 do {
Raymond Hettinger0e259f12015-02-01 22:53:41 -0800841 *(dest++) = *(src++);
Raymond Hettinger840533b2013-07-13 17:03:58 -0700842 } while (--m);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700843 }
Raymond Hettingerd3d2b2c2015-09-21 23:41:56 -0700844 if (rightindex < 0) {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700845 assert(leftblock != rightblock);
Raymond Hettinger840533b2013-07-13 17:03:58 -0700846 assert(b == NULL);
Raymond Hettinger3959af92013-07-13 02:34:08 -0700847 b = rightblock;
Raymond Hettingerb97cc492013-07-21 01:51:07 -0700848 CHECK_NOT_END(rightblock->leftlink);
849 rightblock = rightblock->leftlink;
850 MARK_END(rightblock->rightlink);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700851 rightindex = BLOCKLEN - 1;
Raymond Hettinger464d89b2013-01-11 22:29:50 -0800852 }
Raymond Hettinger21777ac2013-02-02 09:56:08 -0800853 }
Raymond Hettinger1f0044c2013-02-05 01:30:46 -0500854 while (n < 0) {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700855 if (rightindex == BLOCKLEN - 1) {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700856 if (b == NULL) {
Raymond Hettingerdb41fd42015-10-22 22:48:16 -0700857 b = newblock();
Raymond Hettinger3959af92013-07-13 02:34:08 -0700858 if (b == NULL)
859 goto done;
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700860 }
Raymond Hettinger82df9252013-07-07 01:43:42 -1000861 b->leftlink = rightblock;
862 CHECK_END(rightblock->rightlink);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700863 rightblock->rightlink = b;
864 rightblock = b;
Raymond Hettinger82df9252013-07-07 01:43:42 -1000865 MARK_END(b->rightlink);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700866 rightindex = -1;
Raymond Hettinger3959af92013-07-13 02:34:08 -0700867 b = NULL;
Raymond Hettinger464d89b2013-01-11 22:29:50 -0800868 }
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700869 assert (rightindex < BLOCKLEN - 1);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700870 {
871 PyObject **src, **dest;
872 Py_ssize_t m = -n;
Raymond Hettinger21777ac2013-02-02 09:56:08 -0800873
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700874 if (m > BLOCKLEN - leftindex)
875 m = BLOCKLEN - leftindex;
876 if (m > BLOCKLEN - 1 - rightindex)
877 m = BLOCKLEN - 1 - rightindex;
878 assert (m > 0 && m <= len);
879 src = &leftblock->data[leftindex];
880 dest = &rightblock->data[rightindex + 1];
881 leftindex += m;
882 rightindex += m;
883 n += m;
Raymond Hettinger840533b2013-07-13 17:03:58 -0700884 do {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700885 *(dest++) = *(src++);
Raymond Hettinger840533b2013-07-13 17:03:58 -0700886 } while (--m);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700887 }
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700888 if (leftindex == BLOCKLEN) {
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700889 assert(leftblock != rightblock);
Raymond Hettinger840533b2013-07-13 17:03:58 -0700890 assert(b == NULL);
Raymond Hettinger3959af92013-07-13 02:34:08 -0700891 b = leftblock;
Raymond Hettingerb97cc492013-07-21 01:51:07 -0700892 CHECK_NOT_END(leftblock->rightlink);
893 leftblock = leftblock->rightlink;
894 MARK_END(leftblock->leftlink);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700895 leftindex = 0;
Raymond Hettinger21777ac2013-02-02 09:56:08 -0800896 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000897 }
Raymond Hettinger3959af92013-07-13 02:34:08 -0700898 rv = 0;
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700899done:
Raymond Hettinger3959af92013-07-13 02:34:08 -0700900 if (b != NULL)
901 freeblock(b);
Raymond Hettinger20b0f872013-06-23 15:44:33 -0700902 deque->leftblock = leftblock;
903 deque->rightblock = rightblock;
904 deque->leftindex = leftindex;
905 deque->rightindex = rightindex;
906
907 return rv;
Raymond Hettingerdcb9d942004-10-09 16:02:18 +0000908}
909
910static PyObject *
Victor Stinnerdd407d52017-02-06 16:06:49 +0100911deque_rotate(dequeobject *deque, PyObject **args, Py_ssize_t nargs,
912 PyObject *kwnames)
Raymond Hettingerdcb9d942004-10-09 16:02:18 +0000913{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000914 Py_ssize_t n=1;
Raymond Hettingerdcb9d942004-10-09 16:02:18 +0000915
Victor Stinnerdd407d52017-02-06 16:06:49 +0100916 if (!_PyArg_NoStackKeywords("rotate", kwnames)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000917 return NULL;
Victor Stinnerdd407d52017-02-06 16:06:49 +0100918 }
919 if (!_PyArg_ParseStack(args, nargs, "|n:rotate", &n)) {
920 return NULL;
921 }
922
Raymond Hettinger6921c132015-03-21 02:03:40 -0700923 if (!_deque_rotate(deque, n))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000924 Py_RETURN_NONE;
925 return NULL;
Raymond Hettinger5c5eb862004-02-07 21:13:00 +0000926}
927
Tim Peters1065f752004-10-01 01:03:29 +0000928PyDoc_STRVAR(rotate_doc,
Raymond Hettingeree33b272004-02-08 04:05:26 +0000929"Rotate the deque n steps to the right (default n=1). If n is negative, rotates left.");
Raymond Hettinger5c5eb862004-02-07 21:13:00 +0000930
Raymond Hettingere5fdedb2009-12-10 00:47:21 +0000931static PyObject *
932deque_reverse(dequeobject *deque, PyObject *unused)
933{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000934 block *leftblock = deque->leftblock;
935 block *rightblock = deque->rightblock;
936 Py_ssize_t leftindex = deque->leftindex;
937 Py_ssize_t rightindex = deque->rightindex;
Raymond Hettingercfe5b6c2015-07-20 00:25:50 -0400938 Py_ssize_t n = Py_SIZE(deque) >> 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000939 PyObject *tmp;
Raymond Hettingere5fdedb2009-12-10 00:47:21 +0000940
Raymond Hettinger306d6b12016-01-24 12:40:42 -0800941 n++;
942 while (--n) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 /* Validate that pointers haven't met in the middle */
944 assert(leftblock != rightblock || leftindex < rightindex);
Raymond Hettinger82df9252013-07-07 01:43:42 -1000945 CHECK_NOT_END(leftblock);
946 CHECK_NOT_END(rightblock);
Raymond Hettingere5fdedb2009-12-10 00:47:21 +0000947
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000948 /* Swap */
949 tmp = leftblock->data[leftindex];
950 leftblock->data[leftindex] = rightblock->data[rightindex];
951 rightblock->data[rightindex] = tmp;
Raymond Hettingere5fdedb2009-12-10 00:47:21 +0000952
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000953 /* Advance left block/index pair */
954 leftindex++;
955 if (leftindex == BLOCKLEN) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000956 leftblock = leftblock->rightlink;
957 leftindex = 0;
958 }
Raymond Hettingere5fdedb2009-12-10 00:47:21 +0000959
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000960 /* Step backwards with the right block/index pair */
961 rightindex--;
Raymond Hettingerd3d2b2c2015-09-21 23:41:56 -0700962 if (rightindex < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000963 rightblock = rightblock->leftlink;
964 rightindex = BLOCKLEN - 1;
965 }
966 }
967 Py_RETURN_NONE;
Raymond Hettingere5fdedb2009-12-10 00:47:21 +0000968}
969
970PyDoc_STRVAR(reverse_doc,
971"D.reverse() -- reverse *IN PLACE*");
972
Raymond Hettinger44459de2010-04-03 23:20:46 +0000973static PyObject *
974deque_count(dequeobject *deque, PyObject *v)
975{
Raymond Hettingerf3a67b72013-07-06 17:49:06 -1000976 block *b = deque->leftblock;
977 Py_ssize_t index = deque->leftindex;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -1000978 Py_ssize_t n = Py_SIZE(deque);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000979 Py_ssize_t count = 0;
Raymond Hettingerf9d9c792015-03-02 22:47:46 -0800980 size_t start_state = deque->state;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000981 PyObject *item;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000982 int cmp;
Raymond Hettinger44459de2010-04-03 23:20:46 +0000983
Raymond Hettinger165eee22016-01-24 11:32:07 -0800984 n++;
985 while (--n) {
Raymond Hettinger82df9252013-07-07 01:43:42 -1000986 CHECK_NOT_END(b);
Raymond Hettingerf3a67b72013-07-06 17:49:06 -1000987 item = b->data[index];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000988 cmp = PyObject_RichCompareBool(item, v, Py_EQ);
Raymond Hettinger2b0d6462015-09-23 19:15:44 -0700989 if (cmp < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000990 return NULL;
Raymond Hettinger2b0d6462015-09-23 19:15:44 -0700991 count += cmp;
Raymond Hettinger44459de2010-04-03 23:20:46 +0000992
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000993 if (start_state != deque->state) {
994 PyErr_SetString(PyExc_RuntimeError,
995 "deque mutated during iteration");
996 return NULL;
997 }
Raymond Hettinger44459de2010-04-03 23:20:46 +0000998
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000999 /* Advance left block/index pair */
Raymond Hettingerf3a67b72013-07-06 17:49:06 -10001000 index++;
1001 if (index == BLOCKLEN) {
1002 b = b->rightlink;
1003 index = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001004 }
1005 }
1006 return PyLong_FromSsize_t(count);
Raymond Hettinger44459de2010-04-03 23:20:46 +00001007}
1008
1009PyDoc_STRVAR(count_doc,
1010"D.count(value) -> integer -- return number of occurrences of value");
1011
Raymond Hettinger39dadf72015-03-20 16:38:56 -07001012static int
1013deque_contains(dequeobject *deque, PyObject *v)
1014{
1015 block *b = deque->leftblock;
1016 Py_ssize_t index = deque->leftindex;
1017 Py_ssize_t n = Py_SIZE(deque);
Raymond Hettinger39dadf72015-03-20 16:38:56 -07001018 size_t start_state = deque->state;
1019 PyObject *item;
1020 int cmp;
1021
Raymond Hettinger165eee22016-01-24 11:32:07 -08001022 n++;
1023 while (--n) {
Raymond Hettinger39dadf72015-03-20 16:38:56 -07001024 CHECK_NOT_END(b);
1025 item = b->data[index];
1026 cmp = PyObject_RichCompareBool(item, v, Py_EQ);
1027 if (cmp) {
1028 return cmp;
1029 }
1030 if (start_state != deque->state) {
1031 PyErr_SetString(PyExc_RuntimeError,
1032 "deque mutated during iteration");
1033 return -1;
1034 }
1035 index++;
1036 if (index == BLOCKLEN) {
1037 b = b->rightlink;
1038 index = 0;
1039 }
1040 }
1041 return 0;
1042}
1043
Martin v. Löwis18e16552006-02-15 17:27:45 +00001044static Py_ssize_t
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001045deque_len(dequeobject *deque)
1046{
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001047 return Py_SIZE(deque);
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001048}
1049
Raymond Hettinger4aec61e2005-03-18 21:20:23 +00001050static PyObject *
Victor Stinnerdd407d52017-02-06 16:06:49 +01001051deque_index(dequeobject *deque, PyObject **args, Py_ssize_t nargs,
1052 PyObject *kwnames)
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001053{
Raymond Hettinger67b97b82015-11-01 23:57:37 -05001054 Py_ssize_t i, n, start=0, stop=Py_SIZE(deque);
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001055 PyObject *v, *item;
1056 block *b = deque->leftblock;
1057 Py_ssize_t index = deque->leftindex;
1058 size_t start_state = deque->state;
Raymond Hettinger67b97b82015-11-01 23:57:37 -05001059 int cmp;
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001060
Victor Stinnerdd407d52017-02-06 16:06:49 +01001061 if (!_PyArg_NoStackKeywords("index", kwnames)) {
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001062 return NULL;
Victor Stinnerdd407d52017-02-06 16:06:49 +01001063 }
1064 if (!_PyArg_ParseStack(args, nargs, "O|O&O&:index", &v,
1065 _PyEval_SliceIndex, &start,
1066 _PyEval_SliceIndex, &stop)) {
1067 return NULL;
1068 }
1069
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001070 if (start < 0) {
1071 start += Py_SIZE(deque);
1072 if (start < 0)
1073 start = 0;
1074 }
1075 if (stop < 0) {
1076 stop += Py_SIZE(deque);
1077 if (stop < 0)
1078 stop = 0;
1079 }
Raymond Hettinger87674ec2015-08-26 08:08:38 -07001080 if (stop > Py_SIZE(deque))
1081 stop = Py_SIZE(deque);
Raymond Hettinger67b97b82015-11-01 23:57:37 -05001082 if (start > stop)
1083 start = stop;
1084 assert(0 <= start && start <= stop && stop <= Py_SIZE(deque));
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001085
Raymond Hettinger67b97b82015-11-01 23:57:37 -05001086 /* XXX Replace this loop with faster code from deque_item() */
1087 for (i=0 ; i<start ; i++) {
1088 index++;
1089 if (index == BLOCKLEN) {
1090 b = b->rightlink;
1091 index = 0;
1092 }
1093 }
1094
Raymond Hettinger4a91d212015-11-03 22:00:26 -05001095 n = stop - i + 1;
1096 while (--n) {
Raymond Hettinger67b97b82015-11-01 23:57:37 -05001097 CHECK_NOT_END(b);
1098 item = b->data[index];
1099 cmp = PyObject_RichCompareBool(item, v, Py_EQ);
1100 if (cmp > 0)
Raymond Hettinger4a91d212015-11-03 22:00:26 -05001101 return PyLong_FromSsize_t(stop - n);
Raymond Hettingerdf8f5b52015-11-02 07:27:40 -05001102 if (cmp < 0)
Raymond Hettinger67b97b82015-11-01 23:57:37 -05001103 return NULL;
1104 if (start_state != deque->state) {
1105 PyErr_SetString(PyExc_RuntimeError,
1106 "deque mutated during iteration");
1107 return NULL;
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001108 }
1109 index++;
1110 if (index == BLOCKLEN) {
1111 b = b->rightlink;
1112 index = 0;
1113 }
1114 }
1115 PyErr_Format(PyExc_ValueError, "%R is not in deque", v);
1116 return NULL;
1117}
1118
1119PyDoc_STRVAR(index_doc,
1120"D.index(value, [start, [stop]]) -> integer -- return first index of value.\n"
1121"Raises ValueError if the value is not present.");
1122
Raymond Hettinger551350a2015-03-24 00:19:53 -07001123/* insert(), remove(), and delitem() are implemented in terms of
1124 rotate() for simplicity and reasonable performance near the end
1125 points. If for some reason these methods become popular, it is not
1126 hard to re-implement this using direct data movement (similar to
1127 the code used in list slice assignments) and achieve a performance
Raymond Hettingerfef9c1b2015-03-24 21:12:57 -07001128 boost (by moving each pointer only once instead of twice).
Raymond Hettinger551350a2015-03-24 00:19:53 -07001129*/
1130
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001131static PyObject *
Victor Stinnerdd407d52017-02-06 16:06:49 +01001132deque_insert(dequeobject *deque, PyObject **args, Py_ssize_t nargs,
1133 PyObject *kwnames)
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001134{
1135 Py_ssize_t index;
1136 Py_ssize_t n = Py_SIZE(deque);
1137 PyObject *value;
1138 PyObject *rv;
1139
Victor Stinnerdd407d52017-02-06 16:06:49 +01001140 if (!_PyArg_NoStackKeywords("insert", kwnames)) {
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001141 return NULL;
Victor Stinnerdd407d52017-02-06 16:06:49 +01001142 }
1143 if (!_PyArg_ParseStack(args, nargs, "nO:insert", &index, &value)) {
1144 return NULL;
1145 }
1146
Raymond Hettinger37434322016-01-26 21:44:16 -08001147 if (deque->maxlen == Py_SIZE(deque)) {
Raymond Hettingera6389712016-02-01 21:21:19 -08001148 PyErr_SetString(PyExc_IndexError, "deque already at its maximum size");
1149 return NULL;
Raymond Hettinger37434322016-01-26 21:44:16 -08001150 }
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001151 if (index >= n)
1152 return deque_append(deque, value);
1153 if (index <= -n || index == 0)
1154 return deque_appendleft(deque, value);
1155 if (_deque_rotate(deque, -index))
1156 return NULL;
1157 if (index < 0)
1158 rv = deque_append(deque, value);
1159 else
1160 rv = deque_appendleft(deque, value);
1161 if (rv == NULL)
1162 return NULL;
1163 Py_DECREF(rv);
1164 if (_deque_rotate(deque, index))
1165 return NULL;
1166 Py_RETURN_NONE;
1167}
1168
1169PyDoc_STRVAR(insert_doc,
1170"D.insert(index, object) -- insert object before index");
1171
1172static PyObject *
Raymond Hettinger4aec61e2005-03-18 21:20:23 +00001173deque_remove(dequeobject *deque, PyObject *value)
1174{
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001175 Py_ssize_t i, n=Py_SIZE(deque);
Raymond Hettinger4aec61e2005-03-18 21:20:23 +00001176
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001177 for (i=0 ; i<n ; i++) {
1178 PyObject *item = deque->leftblock->data[deque->leftindex];
1179 int cmp = PyObject_RichCompareBool(item, value, Py_EQ);
Raymond Hettingerd73202c2005-03-19 00:00:51 +00001180
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001181 if (Py_SIZE(deque) != n) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001182 PyErr_SetString(PyExc_IndexError,
1183 "deque mutated during remove().");
1184 return NULL;
1185 }
1186 if (cmp > 0) {
1187 PyObject *tgt = deque_popleft(deque, NULL);
1188 assert (tgt != NULL);
Raymond Hettinger6921c132015-03-21 02:03:40 -07001189 if (_deque_rotate(deque, i))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001190 return NULL;
Raymond Hettingerac13ad62015-03-21 01:53:16 -07001191 Py_DECREF(tgt);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001192 Py_RETURN_NONE;
1193 }
1194 else if (cmp < 0) {
1195 _deque_rotate(deque, i);
1196 return NULL;
1197 }
1198 _deque_rotate(deque, -1);
1199 }
1200 PyErr_SetString(PyExc_ValueError, "deque.remove(x): x not in deque");
1201 return NULL;
Raymond Hettinger4aec61e2005-03-18 21:20:23 +00001202}
1203
1204PyDoc_STRVAR(remove_doc,
1205"D.remove(value) -- remove first occurrence of value.");
1206
Raymond Hettinger3c186ba2015-03-02 21:45:02 -08001207static int
1208valid_index(Py_ssize_t i, Py_ssize_t limit)
1209{
Raymond Hettinger12f896c2015-07-31 12:03:20 -07001210 /* The cast to size_t lets us use just a single comparison
Raymond Hettinger3c186ba2015-03-02 21:45:02 -08001211 to check whether i is in the range: 0 <= i < limit */
1212 return (size_t) i < (size_t) limit;
1213}
1214
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001215static PyObject *
Benjamin Petersond6313712008-07-31 16:23:04 +00001216deque_item(dequeobject *deque, Py_ssize_t i)
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001217{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001218 block *b;
1219 PyObject *item;
1220 Py_ssize_t n, index=i;
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001221
Raymond Hettinger3c186ba2015-03-02 21:45:02 -08001222 if (!valid_index(i, Py_SIZE(deque))) {
1223 PyErr_SetString(PyExc_IndexError, "deque index out of range");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001224 return NULL;
1225 }
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001226
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001227 if (i == 0) {
1228 i = deque->leftindex;
1229 b = deque->leftblock;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001230 } else if (i == Py_SIZE(deque) - 1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001231 i = deque->rightindex;
1232 b = deque->rightblock;
1233 } else {
1234 i += deque->leftindex;
Raymond Hettingerc2083082015-02-28 23:29:16 -08001235 n = (Py_ssize_t)((size_t) i / BLOCKLEN);
1236 i = (Py_ssize_t)((size_t) i % BLOCKLEN);
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001237 if (index < (Py_SIZE(deque) >> 1)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001238 b = deque->leftblock;
Raymond Hettingerd84ec222016-01-24 09:12:06 -08001239 n++;
1240 while (--n)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001241 b = b->rightlink;
1242 } else {
Raymond Hettinger63d1ff22015-02-28 07:41:30 -08001243 n = (Py_ssize_t)(
Raymond Hettingerc2083082015-02-28 23:29:16 -08001244 ((size_t)(deque->leftindex + Py_SIZE(deque) - 1))
Raymond Hettinger63d1ff22015-02-28 07:41:30 -08001245 / BLOCKLEN - n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001246 b = deque->rightblock;
Raymond Hettingerd84ec222016-01-24 09:12:06 -08001247 n++;
1248 while (--n)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001249 b = b->leftlink;
1250 }
1251 }
1252 item = b->data[i];
1253 Py_INCREF(item);
1254 return item;
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001255}
1256
1257static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00001258deque_del_item(dequeobject *deque, Py_ssize_t i)
Raymond Hettinger0e371f22004-05-12 20:55:56 +00001259{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001260 PyObject *item;
Raymond Hettingerac13ad62015-03-21 01:53:16 -07001261 int rv;
Raymond Hettinger0e371f22004-05-12 20:55:56 +00001262
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001263 assert (i >= 0 && i < Py_SIZE(deque));
Raymond Hettinger6921c132015-03-21 02:03:40 -07001264 if (_deque_rotate(deque, -i))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001265 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001266 item = deque_popleft(deque, NULL);
Raymond Hettingerac13ad62015-03-21 01:53:16 -07001267 rv = _deque_rotate(deque, i);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001268 assert (item != NULL);
1269 Py_DECREF(item);
Raymond Hettingerac13ad62015-03-21 01:53:16 -07001270 return rv;
Raymond Hettinger0e371f22004-05-12 20:55:56 +00001271}
1272
1273static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00001274deque_ass_item(dequeobject *deque, Py_ssize_t i, PyObject *v)
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001275{
Raymond Hettinger38418662016-02-08 20:34:49 -08001276 PyObject *old_value;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001277 block *b;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001278 Py_ssize_t n, len=Py_SIZE(deque), halflen=(len+1)>>1, index=i;
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001279
Raymond Hettinger3c186ba2015-03-02 21:45:02 -08001280 if (!valid_index(i, len)) {
1281 PyErr_SetString(PyExc_IndexError, "deque index out of range");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001282 return -1;
1283 }
1284 if (v == NULL)
1285 return deque_del_item(deque, i);
Raymond Hettinger0e371f22004-05-12 20:55:56 +00001286
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001287 i += deque->leftindex;
Raymond Hettingerc2083082015-02-28 23:29:16 -08001288 n = (Py_ssize_t)((size_t) i / BLOCKLEN);
1289 i = (Py_ssize_t)((size_t) i % BLOCKLEN);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001290 if (index <= halflen) {
1291 b = deque->leftblock;
Raymond Hettingerd84ec222016-01-24 09:12:06 -08001292 n++;
1293 while (--n)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001294 b = b->rightlink;
1295 } else {
Raymond Hettingera473b9d2015-02-28 17:49:47 -08001296 n = (Py_ssize_t)(
Raymond Hettingerc2083082015-02-28 23:29:16 -08001297 ((size_t)(deque->leftindex + Py_SIZE(deque) - 1))
Raymond Hettingera473b9d2015-02-28 17:49:47 -08001298 / BLOCKLEN - n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001299 b = deque->rightblock;
Raymond Hettingerd84ec222016-01-24 09:12:06 -08001300 n++;
1301 while (--n)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001302 b = b->leftlink;
1303 }
1304 Py_INCREF(v);
Raymond Hettinger38418662016-02-08 20:34:49 -08001305 old_value = b->data[i];
1306 b->data[i] = v;
1307 Py_DECREF(old_value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001308 return 0;
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001309}
1310
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001311static void
1312deque_dealloc(dequeobject *deque)
1313{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001314 PyObject_GC_UnTrack(deque);
1315 if (deque->weakreflist != NULL)
1316 PyObject_ClearWeakRefs((PyObject *) deque);
1317 if (deque->leftblock != NULL) {
1318 deque_clear(deque);
1319 assert(deque->leftblock != NULL);
1320 freeblock(deque->leftblock);
1321 }
1322 deque->leftblock = NULL;
1323 deque->rightblock = NULL;
1324 Py_TYPE(deque)->tp_free(deque);
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001325}
1326
1327static int
Raymond Hettinger0a4977c2004-03-01 23:16:22 +00001328deque_traverse(dequeobject *deque, visitproc visit, void *arg)
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001329{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001330 block *b;
1331 PyObject *item;
1332 Py_ssize_t index;
1333 Py_ssize_t indexlo = deque->leftindex;
Raymond Hettinger1286d142015-10-14 23:16:57 -07001334 Py_ssize_t indexhigh;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001335
Raymond Hettinger5bfa8672013-07-06 11:58:09 -10001336 for (b = deque->leftblock; b != deque->rightblock; b = b->rightlink) {
1337 for (index = indexlo; index < BLOCKLEN ; index++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001338 item = b->data[index];
1339 Py_VISIT(item);
1340 }
1341 indexlo = 0;
1342 }
Raymond Hettinger1286d142015-10-14 23:16:57 -07001343 indexhigh = deque->rightindex;
1344 for (index = indexlo; index <= indexhigh; index++) {
Raymond Hettinger5bfa8672013-07-06 11:58:09 -10001345 item = b->data[index];
1346 Py_VISIT(item);
1347 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001348 return 0;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001349}
1350
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001351static PyObject *
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001352deque_reduce(dequeobject *deque)
1353{
Serhiy Storchakaa0d416f2016-03-06 08:55:21 +02001354 PyObject *dict, *it;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02001355 _Py_IDENTIFIER(__dict__);
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001356
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02001357 dict = _PyObject_GetAttrId((PyObject *)deque, &PyId___dict__);
Serhiy Storchakaa0d416f2016-03-06 08:55:21 +02001358 if (dict == NULL) {
1359 if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
1360 return NULL;
1361 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001362 PyErr_Clear();
Serhiy Storchakaa0d416f2016-03-06 08:55:21 +02001363 dict = Py_None;
1364 Py_INCREF(dict);
1365 }
1366
1367 it = PyObject_GetIter((PyObject *)deque);
1368 if (it == NULL) {
1369 Py_DECREF(dict);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001370 return NULL;
1371 }
Serhiy Storchakaa0d416f2016-03-06 08:55:21 +02001372
1373 if (deque->maxlen < 0) {
1374 return Py_BuildValue("O()NN", Py_TYPE(deque), dict, it);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001375 }
Serhiy Storchakaa0d416f2016-03-06 08:55:21 +02001376 else {
1377 return Py_BuildValue("O(()n)NN", Py_TYPE(deque), deque->maxlen, dict, it);
1378 }
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001379}
1380
1381PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
1382
1383static PyObject *
1384deque_repr(PyObject *deque)
1385{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001386 PyObject *aslist, *result;
1387 int i;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001389 i = Py_ReprEnter(deque);
1390 if (i != 0) {
1391 if (i < 0)
1392 return NULL;
1393 return PyUnicode_FromString("[...]");
1394 }
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001396 aslist = PySequence_List(deque);
1397 if (aslist == NULL) {
1398 Py_ReprLeave(deque);
1399 return NULL;
1400 }
Raymond Hettingera7f630092015-10-10 23:56:02 -04001401 if (((dequeobject *)deque)->maxlen >= 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001402 result = PyUnicode_FromFormat("deque(%R, maxlen=%zd)",
1403 aslist, ((dequeobject *)deque)->maxlen);
1404 else
1405 result = PyUnicode_FromFormat("deque(%R)", aslist);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001406 Py_ReprLeave(deque);
Raymond Hettinger2b2b7532015-09-05 17:05:52 -07001407 Py_DECREF(aslist);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001408 return result;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001409}
1410
Raymond Hettinger738ec902004-02-29 02:15:56 +00001411static PyObject *
1412deque_richcompare(PyObject *v, PyObject *w, int op)
1413{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001414 PyObject *it1=NULL, *it2=NULL, *x, *y;
1415 Py_ssize_t vs, ws;
1416 int b, cmp=-1;
Raymond Hettinger738ec902004-02-29 02:15:56 +00001417
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001418 if (!PyObject_TypeCheck(v, &deque_type) ||
1419 !PyObject_TypeCheck(w, &deque_type)) {
Brian Curtindfc80e32011-08-10 20:28:54 -05001420 Py_RETURN_NOTIMPLEMENTED;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001421 }
Raymond Hettinger738ec902004-02-29 02:15:56 +00001422
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001423 /* Shortcuts */
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001424 vs = Py_SIZE((dequeobject *)v);
1425 ws = Py_SIZE((dequeobject *)w);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001426 if (op == Py_EQ) {
1427 if (v == w)
1428 Py_RETURN_TRUE;
1429 if (vs != ws)
1430 Py_RETURN_FALSE;
1431 }
1432 if (op == Py_NE) {
1433 if (v == w)
1434 Py_RETURN_FALSE;
1435 if (vs != ws)
1436 Py_RETURN_TRUE;
1437 }
Raymond Hettinger738ec902004-02-29 02:15:56 +00001438
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001439 /* Search for the first index where items are different */
1440 it1 = PyObject_GetIter(v);
1441 if (it1 == NULL)
1442 goto done;
1443 it2 = PyObject_GetIter(w);
1444 if (it2 == NULL)
1445 goto done;
1446 for (;;) {
1447 x = PyIter_Next(it1);
1448 if (x == NULL && PyErr_Occurred())
1449 goto done;
1450 y = PyIter_Next(it2);
1451 if (x == NULL || y == NULL)
1452 break;
1453 b = PyObject_RichCompareBool(x, y, Py_EQ);
1454 if (b == 0) {
1455 cmp = PyObject_RichCompareBool(x, y, op);
1456 Py_DECREF(x);
1457 Py_DECREF(y);
1458 goto done;
1459 }
1460 Py_DECREF(x);
1461 Py_DECREF(y);
Raymond Hettingerd3d2b2c2015-09-21 23:41:56 -07001462 if (b < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001463 goto done;
1464 }
1465 /* We reached the end of one deque or both */
1466 Py_XDECREF(x);
1467 Py_XDECREF(y);
1468 if (PyErr_Occurred())
1469 goto done;
1470 switch (op) {
1471 case Py_LT: cmp = y != NULL; break; /* if w was longer */
1472 case Py_LE: cmp = x == NULL; break; /* if v was not longer */
1473 case Py_EQ: cmp = x == y; break; /* if we reached the end of both */
1474 case Py_NE: cmp = x != y; break; /* if one deque continues */
1475 case Py_GT: cmp = x != NULL; break; /* if v was longer */
1476 case Py_GE: cmp = y == NULL; break; /* if w was not longer */
1477 }
Tim Peters1065f752004-10-01 01:03:29 +00001478
Raymond Hettinger738ec902004-02-29 02:15:56 +00001479done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001480 Py_XDECREF(it1);
1481 Py_XDECREF(it2);
1482 if (cmp == 1)
1483 Py_RETURN_TRUE;
1484 if (cmp == 0)
1485 Py_RETURN_FALSE;
1486 return NULL;
Raymond Hettinger738ec902004-02-29 02:15:56 +00001487}
1488
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001489static int
Guido van Rossum8ce8a782007-11-01 19:42:39 +00001490deque_init(dequeobject *deque, PyObject *args, PyObject *kwdargs)
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001491{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001492 PyObject *iterable = NULL;
1493 PyObject *maxlenobj = NULL;
1494 Py_ssize_t maxlen = -1;
1495 char *kwlist[] = {"iterable", "maxlen", 0};
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001496
Raymond Hettinger0d309402015-09-30 23:15:02 -07001497 if (kwdargs == NULL) {
1498 if (!PyArg_UnpackTuple(args, "deque()", 0, 2, &iterable, &maxlenobj))
1499 return -1;
1500 } else {
1501 if (!PyArg_ParseTupleAndKeywords(args, kwdargs, "|OO:deque", kwlist,
1502 &iterable, &maxlenobj))
1503 return -1;
1504 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001505 if (maxlenobj != NULL && maxlenobj != Py_None) {
1506 maxlen = PyLong_AsSsize_t(maxlenobj);
1507 if (maxlen == -1 && PyErr_Occurred())
1508 return -1;
1509 if (maxlen < 0) {
1510 PyErr_SetString(PyExc_ValueError, "maxlen must be non-negative");
1511 return -1;
1512 }
1513 }
1514 deque->maxlen = maxlen;
Raymond Hettinger0d309402015-09-30 23:15:02 -07001515 if (Py_SIZE(deque) > 0)
1516 deque_clear(deque);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001517 if (iterable != NULL) {
1518 PyObject *rv = deque_extend(deque, iterable);
1519 if (rv == NULL)
1520 return -1;
1521 Py_DECREF(rv);
1522 }
1523 return 0;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001524}
1525
Raymond Hettinger5bb0f0e2009-03-10 12:56:32 +00001526static PyObject *
Jesus Cea16e2fca2012-08-03 14:49:42 +02001527deque_sizeof(dequeobject *deque, void *unused)
1528{
1529 Py_ssize_t res;
1530 Py_ssize_t blocks;
1531
Serhiy Storchaka5c4064e2015-12-19 20:05:25 +02001532 res = _PyObject_SIZE(Py_TYPE(deque));
Raymond Hettingerbc003412015-10-14 23:33:23 -07001533 blocks = (size_t)(deque->leftindex + Py_SIZE(deque) + BLOCKLEN - 1) / BLOCKLEN;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001534 assert(deque->leftindex + Py_SIZE(deque) - 1 ==
Jesus Cea16e2fca2012-08-03 14:49:42 +02001535 (blocks - 1) * BLOCKLEN + deque->rightindex);
1536 res += blocks * sizeof(block);
1537 return PyLong_FromSsize_t(res);
1538}
1539
1540PyDoc_STRVAR(sizeof_doc,
1541"D.__sizeof__() -- size of D in memory, in bytes");
1542
Raymond Hettinger0f1451c2015-03-23 23:23:55 -07001543static int
1544deque_bool(dequeobject *deque)
1545{
1546 return Py_SIZE(deque) != 0;
1547}
1548
Jesus Cea16e2fca2012-08-03 14:49:42 +02001549static PyObject *
Raymond Hettinger5bb0f0e2009-03-10 12:56:32 +00001550deque_get_maxlen(dequeobject *deque)
1551{
Raymond Hettingerd3d2b2c2015-09-21 23:41:56 -07001552 if (deque->maxlen < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001553 Py_RETURN_NONE;
1554 return PyLong_FromSsize_t(deque->maxlen);
Raymond Hettinger5bb0f0e2009-03-10 12:56:32 +00001555}
1556
Raymond Hettinger41290a62015-03-31 08:12:23 -07001557
1558/* deque object ********************************************************/
1559
Raymond Hettinger5bb0f0e2009-03-10 12:56:32 +00001560static PyGetSetDef deque_getset[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001561 {"maxlen", (getter)deque_get_maxlen, (setter)NULL,
1562 "maximum size of a deque or None if unbounded"},
1563 {0}
Raymond Hettinger5bb0f0e2009-03-10 12:56:32 +00001564};
1565
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001566static PySequenceMethods deque_as_sequence = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001567 (lenfunc)deque_len, /* sq_length */
Raymond Hettinger41290a62015-03-31 08:12:23 -07001568 (binaryfunc)deque_concat, /* sq_concat */
1569 (ssizeargfunc)deque_repeat, /* sq_repeat */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001570 (ssizeargfunc)deque_item, /* sq_item */
1571 0, /* sq_slice */
Raymond Hettinger87e69122015-03-02 23:32:02 -08001572 (ssizeobjargproc)deque_ass_item, /* sq_ass_item */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001573 0, /* sq_ass_slice */
Raymond Hettinger39dadf72015-03-20 16:38:56 -07001574 (objobjproc)deque_contains, /* sq_contains */
Raymond Hettinger87e69122015-03-02 23:32:02 -08001575 (binaryfunc)deque_inplace_concat, /* sq_inplace_concat */
Raymond Hettinger41290a62015-03-31 08:12:23 -07001576 (ssizeargfunc)deque_inplace_repeat, /* sq_inplace_repeat */
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001577};
1578
Raymond Hettinger0f1451c2015-03-23 23:23:55 -07001579static PyNumberMethods deque_as_number = {
1580 0, /* nb_add */
1581 0, /* nb_subtract */
1582 0, /* nb_multiply */
1583 0, /* nb_remainder */
1584 0, /* nb_divmod */
1585 0, /* nb_power */
1586 0, /* nb_negative */
1587 0, /* nb_positive */
1588 0, /* nb_absolute */
1589 (inquiry)deque_bool, /* nb_bool */
1590 0, /* nb_invert */
Raymond Hettinger0f1451c2015-03-23 23:23:55 -07001591 };
1592
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001593static PyObject *deque_iter(dequeobject *deque);
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001594static PyObject *deque_reviter(dequeobject *deque);
Tim Peters1065f752004-10-01 01:03:29 +00001595PyDoc_STRVAR(reversed_doc,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001596 "D.__reversed__() -- return a reverse iterator over the deque");
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001597
1598static PyMethodDef deque_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001599 {"append", (PyCFunction)deque_append,
1600 METH_O, append_doc},
1601 {"appendleft", (PyCFunction)deque_appendleft,
1602 METH_O, appendleft_doc},
1603 {"clear", (PyCFunction)deque_clearmethod,
1604 METH_NOARGS, clear_doc},
1605 {"__copy__", (PyCFunction)deque_copy,
1606 METH_NOARGS, copy_doc},
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001607 {"copy", (PyCFunction)deque_copy,
1608 METH_NOARGS, copy_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001609 {"count", (PyCFunction)deque_count,
Raymond Hettinger0f6f9472015-03-21 01:42:10 -07001610 METH_O, count_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001611 {"extend", (PyCFunction)deque_extend,
1612 METH_O, extend_doc},
1613 {"extendleft", (PyCFunction)deque_extendleft,
1614 METH_O, extendleft_doc},
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001615 {"index", (PyCFunction)deque_index,
Victor Stinnerdd407d52017-02-06 16:06:49 +01001616 METH_FASTCALL, index_doc},
Raymond Hettinger32ea1652015-03-21 01:37:37 -07001617 {"insert", (PyCFunction)deque_insert,
Victor Stinnerdd407d52017-02-06 16:06:49 +01001618 METH_FASTCALL, insert_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001619 {"pop", (PyCFunction)deque_pop,
1620 METH_NOARGS, pop_doc},
1621 {"popleft", (PyCFunction)deque_popleft,
1622 METH_NOARGS, popleft_doc},
Raymond Hettinger0f6f9472015-03-21 01:42:10 -07001623 {"__reduce__", (PyCFunction)deque_reduce,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001624 METH_NOARGS, reduce_doc},
1625 {"remove", (PyCFunction)deque_remove,
1626 METH_O, remove_doc},
1627 {"__reversed__", (PyCFunction)deque_reviter,
1628 METH_NOARGS, reversed_doc},
1629 {"reverse", (PyCFunction)deque_reverse,
1630 METH_NOARGS, reverse_doc},
1631 {"rotate", (PyCFunction)deque_rotate,
Victor Stinnerdd407d52017-02-06 16:06:49 +01001632 METH_FASTCALL, rotate_doc},
Jesus Cea16e2fca2012-08-03 14:49:42 +02001633 {"__sizeof__", (PyCFunction)deque_sizeof,
1634 METH_NOARGS, sizeof_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001635 {NULL, NULL} /* sentinel */
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001636};
1637
1638PyDoc_STRVAR(deque_doc,
Andrew Svetlov6a5c7c32012-10-31 11:50:40 +02001639"deque([iterable[, maxlen]]) --> deque object\n\
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001640\n\
Raymond Hettinger41290a62015-03-31 08:12:23 -07001641A list-like sequence optimized for data accesses near its endpoints.");
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001642
Neal Norwitz87f10132004-02-29 15:40:53 +00001643static PyTypeObject deque_type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001644 PyVarObject_HEAD_INIT(NULL, 0)
1645 "collections.deque", /* tp_name */
1646 sizeof(dequeobject), /* tp_basicsize */
1647 0, /* tp_itemsize */
1648 /* methods */
1649 (destructor)deque_dealloc, /* tp_dealloc */
1650 0, /* tp_print */
1651 0, /* tp_getattr */
1652 0, /* tp_setattr */
1653 0, /* tp_reserved */
1654 deque_repr, /* tp_repr */
Raymond Hettinger0f1451c2015-03-23 23:23:55 -07001655 &deque_as_number, /* tp_as_number */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001656 &deque_as_sequence, /* tp_as_sequence */
1657 0, /* tp_as_mapping */
Georg Brandlf038b322010-10-18 07:35:09 +00001658 PyObject_HashNotImplemented, /* tp_hash */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001659 0, /* tp_call */
1660 0, /* tp_str */
1661 PyObject_GenericGetAttr, /* tp_getattro */
1662 0, /* tp_setattro */
1663 0, /* tp_as_buffer */
1664 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
Georg Brandlf038b322010-10-18 07:35:09 +00001665 /* tp_flags */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001666 deque_doc, /* tp_doc */
1667 (traverseproc)deque_traverse, /* tp_traverse */
1668 (inquiry)deque_clear, /* tp_clear */
1669 (richcmpfunc)deque_richcompare, /* tp_richcompare */
Georg Brandlf038b322010-10-18 07:35:09 +00001670 offsetof(dequeobject, weakreflist), /* tp_weaklistoffset*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001671 (getiterfunc)deque_iter, /* tp_iter */
1672 0, /* tp_iternext */
1673 deque_methods, /* tp_methods */
1674 0, /* tp_members */
Georg Brandlf038b322010-10-18 07:35:09 +00001675 deque_getset, /* tp_getset */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001676 0, /* tp_base */
1677 0, /* tp_dict */
1678 0, /* tp_descr_get */
1679 0, /* tp_descr_set */
1680 0, /* tp_dictoffset */
1681 (initproc)deque_init, /* tp_init */
1682 PyType_GenericAlloc, /* tp_alloc */
1683 deque_new, /* tp_new */
1684 PyObject_GC_Del, /* tp_free */
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001685};
1686
1687/*********************** Deque Iterator **************************/
1688
1689typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001690 PyObject_HEAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001691 block *b;
Raymond Hettinger87e69122015-03-02 23:32:02 -08001692 Py_ssize_t index;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001693 dequeobject *deque;
Raymond Hettingerf9d9c792015-03-02 22:47:46 -08001694 size_t state; /* state when the iterator is created */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001695 Py_ssize_t counter; /* number of items remaining for iteration */
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001696} dequeiterobject;
1697
Martin v. Löwis59683e82008-06-13 07:50:45 +00001698static PyTypeObject dequeiter_type;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001699
1700static PyObject *
1701deque_iter(dequeobject *deque)
1702{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001703 dequeiterobject *it;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001704
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001705 it = PyObject_GC_New(dequeiterobject, &dequeiter_type);
1706 if (it == NULL)
1707 return NULL;
1708 it->b = deque->leftblock;
1709 it->index = deque->leftindex;
1710 Py_INCREF(deque);
1711 it->deque = deque;
1712 it->state = deque->state;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001713 it->counter = Py_SIZE(deque);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001714 PyObject_GC_Track(it);
1715 return (PyObject *)it;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001716}
1717
Antoine Pitrou7ddda782009-01-01 15:35:33 +00001718static int
1719dequeiter_traverse(dequeiterobject *dio, visitproc visit, void *arg)
1720{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001721 Py_VISIT(dio->deque);
1722 return 0;
Antoine Pitrou7ddda782009-01-01 15:35:33 +00001723}
1724
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001725static void
1726dequeiter_dealloc(dequeiterobject *dio)
1727{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001728 Py_XDECREF(dio->deque);
1729 PyObject_GC_Del(dio);
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001730}
1731
1732static PyObject *
1733dequeiter_next(dequeiterobject *it)
1734{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001735 PyObject *item;
Raymond Hettingerd1b3d882004-10-02 00:43:13 +00001736
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001737 if (it->deque->state != it->state) {
1738 it->counter = 0;
1739 PyErr_SetString(PyExc_RuntimeError,
1740 "deque mutated during iteration");
1741 return NULL;
1742 }
1743 if (it->counter == 0)
1744 return NULL;
1745 assert (!(it->b == it->deque->rightblock &&
1746 it->index > it->deque->rightindex));
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001747
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001748 item = it->b->data[it->index];
1749 it->index++;
1750 it->counter--;
1751 if (it->index == BLOCKLEN && it->counter > 0) {
Raymond Hettinger82df9252013-07-07 01:43:42 -10001752 CHECK_NOT_END(it->b->rightlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001753 it->b = it->b->rightlink;
1754 it->index = 0;
1755 }
1756 Py_INCREF(item);
1757 return item;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001758}
1759
Raymond Hettinger6b27cda2005-09-24 21:23:05 +00001760static PyObject *
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001761dequeiter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1762{
1763 Py_ssize_t i, index=0;
1764 PyObject *deque;
1765 dequeiterobject *it;
1766 if (!PyArg_ParseTuple(args, "O!|n", &deque_type, &deque, &index))
1767 return NULL;
1768 assert(type == &dequeiter_type);
1769
1770 it = (dequeiterobject*)deque_iter((dequeobject *)deque);
1771 if (!it)
1772 return NULL;
1773 /* consume items from the queue */
1774 for(i=0; i<index; i++) {
1775 PyObject *item = dequeiter_next(it);
1776 if (item) {
1777 Py_DECREF(item);
1778 } else {
1779 if (it->counter) {
1780 Py_DECREF(it);
1781 return NULL;
1782 } else
1783 break;
1784 }
1785 }
1786 return (PyObject*)it;
1787}
1788
1789static PyObject *
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001790dequeiter_len(dequeiterobject *it)
1791{
Antoine Pitrou554f3342010-08-17 18:30:06 +00001792 return PyLong_FromSsize_t(it->counter);
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001793}
1794
Armin Rigof5b3e362006-02-11 21:32:43 +00001795PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
Raymond Hettinger6b27cda2005-09-24 21:23:05 +00001796
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001797static PyObject *
1798dequeiter_reduce(dequeiterobject *it)
1799{
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001800 return Py_BuildValue("O(On)", Py_TYPE(it), it->deque, Py_SIZE(it->deque) - it->counter);
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001801}
1802
Raymond Hettinger6b27cda2005-09-24 21:23:05 +00001803static PyMethodDef dequeiter_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001804 {"__length_hint__", (PyCFunction)dequeiter_len, METH_NOARGS, length_hint_doc},
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001805 {"__reduce__", (PyCFunction)dequeiter_reduce, METH_NOARGS, reduce_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001806 {NULL, NULL} /* sentinel */
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001807};
1808
Martin v. Löwis59683e82008-06-13 07:50:45 +00001809static PyTypeObject dequeiter_type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001810 PyVarObject_HEAD_INIT(NULL, 0)
Raymond Hettinger87e69122015-03-02 23:32:02 -08001811 "_collections._deque_iterator", /* tp_name */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001812 sizeof(dequeiterobject), /* tp_basicsize */
1813 0, /* tp_itemsize */
1814 /* methods */
1815 (destructor)dequeiter_dealloc, /* tp_dealloc */
1816 0, /* tp_print */
1817 0, /* tp_getattr */
1818 0, /* tp_setattr */
1819 0, /* tp_reserved */
1820 0, /* tp_repr */
1821 0, /* tp_as_number */
1822 0, /* tp_as_sequence */
1823 0, /* tp_as_mapping */
1824 0, /* tp_hash */
1825 0, /* tp_call */
1826 0, /* tp_str */
1827 PyObject_GenericGetAttr, /* tp_getattro */
1828 0, /* tp_setattro */
1829 0, /* tp_as_buffer */
Raymond Hettinger87e69122015-03-02 23:32:02 -08001830 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001831 0, /* tp_doc */
1832 (traverseproc)dequeiter_traverse, /* tp_traverse */
1833 0, /* tp_clear */
1834 0, /* tp_richcompare */
1835 0, /* tp_weaklistoffset */
1836 PyObject_SelfIter, /* tp_iter */
1837 (iternextfunc)dequeiter_next, /* tp_iternext */
1838 dequeiter_methods, /* tp_methods */
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001839 0, /* tp_members */
1840 0, /* tp_getset */
1841 0, /* tp_base */
1842 0, /* tp_dict */
1843 0, /* tp_descr_get */
1844 0, /* tp_descr_set */
1845 0, /* tp_dictoffset */
1846 0, /* tp_init */
1847 0, /* tp_alloc */
1848 dequeiter_new, /* tp_new */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001849 0,
Raymond Hettinger756b3f32004-01-29 06:37:52 +00001850};
1851
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001852/*********************** Deque Reverse Iterator **************************/
1853
Martin v. Löwis59683e82008-06-13 07:50:45 +00001854static PyTypeObject dequereviter_type;
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001855
1856static PyObject *
1857deque_reviter(dequeobject *deque)
1858{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001859 dequeiterobject *it;
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001860
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001861 it = PyObject_GC_New(dequeiterobject, &dequereviter_type);
1862 if (it == NULL)
1863 return NULL;
1864 it->b = deque->rightblock;
1865 it->index = deque->rightindex;
1866 Py_INCREF(deque);
1867 it->deque = deque;
1868 it->state = deque->state;
Raymond Hettingerdf715ba2013-07-06 13:01:13 -10001869 it->counter = Py_SIZE(deque);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001870 PyObject_GC_Track(it);
1871 return (PyObject *)it;
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001872}
1873
1874static PyObject *
1875dequereviter_next(dequeiterobject *it)
1876{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001877 PyObject *item;
1878 if (it->counter == 0)
1879 return NULL;
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001880
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001881 if (it->deque->state != it->state) {
1882 it->counter = 0;
1883 PyErr_SetString(PyExc_RuntimeError,
1884 "deque mutated during iteration");
1885 return NULL;
1886 }
1887 assert (!(it->b == it->deque->leftblock &&
1888 it->index < it->deque->leftindex));
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001889
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001890 item = it->b->data[it->index];
1891 it->index--;
1892 it->counter--;
Raymond Hettingerd3d2b2c2015-09-21 23:41:56 -07001893 if (it->index < 0 && it->counter > 0) {
Raymond Hettinger82df9252013-07-07 01:43:42 -10001894 CHECK_NOT_END(it->b->leftlink);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001895 it->b = it->b->leftlink;
1896 it->index = BLOCKLEN - 1;
1897 }
1898 Py_INCREF(item);
1899 return item;
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001900}
1901
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001902static PyObject *
1903dequereviter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1904{
1905 Py_ssize_t i, index=0;
1906 PyObject *deque;
1907 dequeiterobject *it;
1908 if (!PyArg_ParseTuple(args, "O!|n", &deque_type, &deque, &index))
1909 return NULL;
1910 assert(type == &dequereviter_type);
1911
1912 it = (dequeiterobject*)deque_reviter((dequeobject *)deque);
1913 if (!it)
1914 return NULL;
1915 /* consume items from the queue */
1916 for(i=0; i<index; i++) {
1917 PyObject *item = dequereviter_next(it);
1918 if (item) {
1919 Py_DECREF(item);
1920 } else {
1921 if (it->counter) {
1922 Py_DECREF(it);
1923 return NULL;
1924 } else
1925 break;
1926 }
1927 }
1928 return (PyObject*)it;
1929}
1930
Martin v. Löwis59683e82008-06-13 07:50:45 +00001931static PyTypeObject dequereviter_type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001932 PyVarObject_HEAD_INIT(NULL, 0)
Raymond Hettinger87e69122015-03-02 23:32:02 -08001933 "_collections._deque_reverse_iterator", /* tp_name */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001934 sizeof(dequeiterobject), /* tp_basicsize */
1935 0, /* tp_itemsize */
1936 /* methods */
1937 (destructor)dequeiter_dealloc, /* tp_dealloc */
1938 0, /* tp_print */
1939 0, /* tp_getattr */
1940 0, /* tp_setattr */
1941 0, /* tp_reserved */
1942 0, /* tp_repr */
1943 0, /* tp_as_number */
1944 0, /* tp_as_sequence */
1945 0, /* tp_as_mapping */
1946 0, /* tp_hash */
1947 0, /* tp_call */
1948 0, /* tp_str */
1949 PyObject_GenericGetAttr, /* tp_getattro */
1950 0, /* tp_setattro */
1951 0, /* tp_as_buffer */
Raymond Hettinger87e69122015-03-02 23:32:02 -08001952 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001953 0, /* tp_doc */
1954 (traverseproc)dequeiter_traverse, /* tp_traverse */
1955 0, /* tp_clear */
1956 0, /* tp_richcompare */
1957 0, /* tp_weaklistoffset */
1958 PyObject_SelfIter, /* tp_iter */
1959 (iternextfunc)dequereviter_next, /* tp_iternext */
1960 dequeiter_methods, /* tp_methods */
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00001961 0, /* tp_members */
1962 0, /* tp_getset */
1963 0, /* tp_base */
1964 0, /* tp_dict */
1965 0, /* tp_descr_get */
1966 0, /* tp_descr_set */
1967 0, /* tp_dictoffset */
1968 0, /* tp_init */
1969 0, /* tp_alloc */
1970 dequereviter_new, /* tp_new */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001971 0,
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00001972};
1973
Guido van Rossum1968ad32006-02-25 22:38:04 +00001974/* defaultdict type *********************************************************/
1975
1976typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001977 PyDictObject dict;
1978 PyObject *default_factory;
Guido van Rossum1968ad32006-02-25 22:38:04 +00001979} defdictobject;
1980
1981static PyTypeObject defdict_type; /* Forward */
1982
1983PyDoc_STRVAR(defdict_missing_doc,
1984"__missing__(key) # Called by __getitem__ for missing key; pseudo-code:\n\
Guido van Rossumd8faa362007-04-27 19:54:29 +00001985 if self.default_factory is None: raise KeyError((key,))\n\
Guido van Rossum1968ad32006-02-25 22:38:04 +00001986 self[key] = value = self.default_factory()\n\
1987 return value\n\
1988");
1989
1990static PyObject *
1991defdict_missing(defdictobject *dd, PyObject *key)
1992{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001993 PyObject *factory = dd->default_factory;
1994 PyObject *value;
1995 if (factory == NULL || factory == Py_None) {
1996 /* XXX Call dict.__missing__(key) */
1997 PyObject *tup;
1998 tup = PyTuple_Pack(1, key);
1999 if (!tup) return NULL;
2000 PyErr_SetObject(PyExc_KeyError, tup);
2001 Py_DECREF(tup);
2002 return NULL;
2003 }
2004 value = PyEval_CallObject(factory, NULL);
2005 if (value == NULL)
2006 return value;
2007 if (PyObject_SetItem((PyObject *)dd, key, value) < 0) {
2008 Py_DECREF(value);
2009 return NULL;
2010 }
2011 return value;
Guido van Rossum1968ad32006-02-25 22:38:04 +00002012}
2013
2014PyDoc_STRVAR(defdict_copy_doc, "D.copy() -> a shallow copy of D.");
2015
2016static PyObject *
2017defdict_copy(defdictobject *dd)
2018{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002019 /* This calls the object's class. That only works for subclasses
2020 whose class constructor has the same signature. Subclasses that
2021 define a different constructor signature must override copy().
2022 */
Raymond Hettinger54628fa2009-08-04 19:16:39 +00002023
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002024 if (dd->default_factory == NULL)
2025 return PyObject_CallFunctionObjArgs((PyObject*)Py_TYPE(dd), Py_None, dd, NULL);
2026 return PyObject_CallFunctionObjArgs((PyObject*)Py_TYPE(dd),
2027 dd->default_factory, dd, NULL);
Guido van Rossum1968ad32006-02-25 22:38:04 +00002028}
2029
2030static PyObject *
2031defdict_reduce(defdictobject *dd)
2032{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002033 /* __reduce__ must return a 5-tuple as follows:
Guido van Rossum1968ad32006-02-25 22:38:04 +00002034
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002035 - factory function
2036 - tuple of args for the factory function
2037 - additional state (here None)
2038 - sequence iterator (here None)
2039 - dictionary iterator (yielding successive (key, value) pairs
Guido van Rossum1968ad32006-02-25 22:38:04 +00002040
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002041 This API is used by pickle.py and copy.py.
Guido van Rossum1968ad32006-02-25 22:38:04 +00002042
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002043 For this to be useful with pickle.py, the default_factory
2044 must be picklable; e.g., None, a built-in, or a global
2045 function in a module or package.
Guido van Rossum1968ad32006-02-25 22:38:04 +00002046
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002047 Both shallow and deep copying are supported, but for deep
2048 copying, the default_factory must be deep-copyable; e.g. None,
2049 or a built-in (functions are not copyable at this time).
Guido van Rossum1968ad32006-02-25 22:38:04 +00002050
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002051 This only works for subclasses as long as their constructor
2052 signature is compatible; the first argument must be the
2053 optional default_factory, defaulting to None.
2054 */
2055 PyObject *args;
2056 PyObject *items;
2057 PyObject *iter;
2058 PyObject *result;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02002059 _Py_IDENTIFIER(items);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02002060
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002061 if (dd->default_factory == NULL || dd->default_factory == Py_None)
2062 args = PyTuple_New(0);
2063 else
2064 args = PyTuple_Pack(1, dd->default_factory);
2065 if (args == NULL)
2066 return NULL;
Victor Stinnerad8c83a2016-09-05 17:53:15 -07002067 items = _PyObject_CallMethodId((PyObject *)dd, &PyId_items, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002068 if (items == NULL) {
2069 Py_DECREF(args);
2070 return NULL;
2071 }
2072 iter = PyObject_GetIter(items);
2073 if (iter == NULL) {
2074 Py_DECREF(items);
2075 Py_DECREF(args);
2076 return NULL;
2077 }
2078 result = PyTuple_Pack(5, Py_TYPE(dd), args,
2079 Py_None, Py_None, iter);
2080 Py_DECREF(iter);
2081 Py_DECREF(items);
2082 Py_DECREF(args);
2083 return result;
Guido van Rossum1968ad32006-02-25 22:38:04 +00002084}
2085
2086static PyMethodDef defdict_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002087 {"__missing__", (PyCFunction)defdict_missing, METH_O,
2088 defdict_missing_doc},
2089 {"copy", (PyCFunction)defdict_copy, METH_NOARGS,
2090 defdict_copy_doc},
2091 {"__copy__", (PyCFunction)defdict_copy, METH_NOARGS,
2092 defdict_copy_doc},
2093 {"__reduce__", (PyCFunction)defdict_reduce, METH_NOARGS,
2094 reduce_doc},
2095 {NULL}
Guido van Rossum1968ad32006-02-25 22:38:04 +00002096};
2097
2098static PyMemberDef defdict_members[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002099 {"default_factory", T_OBJECT,
2100 offsetof(defdictobject, default_factory), 0,
2101 PyDoc_STR("Factory for default value called by __missing__().")},
2102 {NULL}
Guido van Rossum1968ad32006-02-25 22:38:04 +00002103};
2104
2105static void
2106defdict_dealloc(defdictobject *dd)
2107{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002108 Py_CLEAR(dd->default_factory);
2109 PyDict_Type.tp_dealloc((PyObject *)dd);
Guido van Rossum1968ad32006-02-25 22:38:04 +00002110}
2111
Guido van Rossum1968ad32006-02-25 22:38:04 +00002112static PyObject *
2113defdict_repr(defdictobject *dd)
2114{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002115 PyObject *baserepr;
2116 PyObject *defrepr;
2117 PyObject *result;
2118 baserepr = PyDict_Type.tp_repr((PyObject *)dd);
2119 if (baserepr == NULL)
2120 return NULL;
2121 if (dd->default_factory == NULL)
2122 defrepr = PyUnicode_FromString("None");
2123 else
2124 {
2125 int status = Py_ReprEnter(dd->default_factory);
2126 if (status != 0) {
Antoine Pitrouf5f1fe02012-02-15 02:42:46 +01002127 if (status < 0) {
2128 Py_DECREF(baserepr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002129 return NULL;
Antoine Pitrouf5f1fe02012-02-15 02:42:46 +01002130 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002131 defrepr = PyUnicode_FromString("...");
2132 }
2133 else
2134 defrepr = PyObject_Repr(dd->default_factory);
2135 Py_ReprLeave(dd->default_factory);
2136 }
2137 if (defrepr == NULL) {
2138 Py_DECREF(baserepr);
2139 return NULL;
2140 }
2141 result = PyUnicode_FromFormat("defaultdict(%U, %U)",
2142 defrepr, baserepr);
2143 Py_DECREF(defrepr);
2144 Py_DECREF(baserepr);
2145 return result;
Guido van Rossum1968ad32006-02-25 22:38:04 +00002146}
2147
2148static int
2149defdict_traverse(PyObject *self, visitproc visit, void *arg)
2150{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002151 Py_VISIT(((defdictobject *)self)->default_factory);
2152 return PyDict_Type.tp_traverse(self, visit, arg);
Guido van Rossum1968ad32006-02-25 22:38:04 +00002153}
2154
2155static int
2156defdict_tp_clear(defdictobject *dd)
2157{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002158 Py_CLEAR(dd->default_factory);
2159 return PyDict_Type.tp_clear((PyObject *)dd);
Guido van Rossum1968ad32006-02-25 22:38:04 +00002160}
2161
2162static int
2163defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
2164{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002165 defdictobject *dd = (defdictobject *)self;
2166 PyObject *olddefault = dd->default_factory;
2167 PyObject *newdefault = NULL;
2168 PyObject *newargs;
2169 int result;
2170 if (args == NULL || !PyTuple_Check(args))
2171 newargs = PyTuple_New(0);
2172 else {
2173 Py_ssize_t n = PyTuple_GET_SIZE(args);
2174 if (n > 0) {
2175 newdefault = PyTuple_GET_ITEM(args, 0);
2176 if (!PyCallable_Check(newdefault) && newdefault != Py_None) {
2177 PyErr_SetString(PyExc_TypeError,
Raymond Hettinger239aba72015-07-20 03:09:22 -04002178 "first argument must be callable or None");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002179 return -1;
2180 }
2181 }
2182 newargs = PySequence_GetSlice(args, 1, n);
2183 }
2184 if (newargs == NULL)
2185 return -1;
2186 Py_XINCREF(newdefault);
2187 dd->default_factory = newdefault;
2188 result = PyDict_Type.tp_init(self, newargs, kwds);
2189 Py_DECREF(newargs);
2190 Py_XDECREF(olddefault);
2191 return result;
Guido van Rossum1968ad32006-02-25 22:38:04 +00002192}
2193
2194PyDoc_STRVAR(defdict_doc,
Benjamin Peterson9cb33b72014-01-13 23:56:05 -05002195"defaultdict(default_factory[, ...]) --> dict with default factory\n\
Guido van Rossum1968ad32006-02-25 22:38:04 +00002196\n\
2197The default factory is called without arguments to produce\n\
2198a new value when a key is not present, in __getitem__ only.\n\
2199A defaultdict compares equal to a dict with the same items.\n\
Benjamin Peterson9cb33b72014-01-13 23:56:05 -05002200All remaining arguments are treated the same as if they were\n\
2201passed to the dict constructor, including keyword arguments.\n\
Guido van Rossum1968ad32006-02-25 22:38:04 +00002202");
2203
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002204/* See comment in xxsubtype.c */
2205#define DEFERRED_ADDRESS(ADDR) 0
2206
Guido van Rossum1968ad32006-02-25 22:38:04 +00002207static PyTypeObject defdict_type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002208 PyVarObject_HEAD_INIT(DEFERRED_ADDRESS(&PyType_Type), 0)
2209 "collections.defaultdict", /* tp_name */
2210 sizeof(defdictobject), /* tp_basicsize */
2211 0, /* tp_itemsize */
2212 /* methods */
2213 (destructor)defdict_dealloc, /* tp_dealloc */
2214 0, /* tp_print */
2215 0, /* tp_getattr */
2216 0, /* tp_setattr */
2217 0, /* tp_reserved */
2218 (reprfunc)defdict_repr, /* tp_repr */
2219 0, /* tp_as_number */
2220 0, /* tp_as_sequence */
2221 0, /* tp_as_mapping */
2222 0, /* tp_hash */
2223 0, /* tp_call */
2224 0, /* tp_str */
2225 PyObject_GenericGetAttr, /* tp_getattro */
2226 0, /* tp_setattro */
2227 0, /* tp_as_buffer */
2228 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
2229 /* tp_flags */
2230 defdict_doc, /* tp_doc */
2231 defdict_traverse, /* tp_traverse */
2232 (inquiry)defdict_tp_clear, /* tp_clear */
2233 0, /* tp_richcompare */
2234 0, /* tp_weaklistoffset*/
2235 0, /* tp_iter */
2236 0, /* tp_iternext */
2237 defdict_methods, /* tp_methods */
2238 defdict_members, /* tp_members */
2239 0, /* tp_getset */
2240 DEFERRED_ADDRESS(&PyDict_Type), /* tp_base */
2241 0, /* tp_dict */
2242 0, /* tp_descr_get */
2243 0, /* tp_descr_set */
2244 0, /* tp_dictoffset */
2245 defdict_init, /* tp_init */
2246 PyType_GenericAlloc, /* tp_alloc */
2247 0, /* tp_new */
2248 PyObject_GC_Del, /* tp_free */
Guido van Rossum1968ad32006-02-25 22:38:04 +00002249};
2250
Raymond Hettinger96f34102010-12-15 16:30:37 +00002251/* helper function for Counter *********************************************/
2252
2253PyDoc_STRVAR(_count_elements_doc,
2254"_count_elements(mapping, iterable) -> None\n\
2255\n\
Raymond Hettingera24dca62017-01-12 22:25:25 -08002256Count elements in the iterable, updating the mapping");
Raymond Hettinger96f34102010-12-15 16:30:37 +00002257
2258static PyObject *
2259_count_elements(PyObject *self, PyObject *args)
2260{
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002261 _Py_IDENTIFIER(get);
Raymond Hettinger2ff21902013-10-01 00:55:43 -07002262 _Py_IDENTIFIER(__setitem__);
Raymond Hettinger96f34102010-12-15 16:30:37 +00002263 PyObject *it, *iterable, *mapping, *oldval;
2264 PyObject *newval = NULL;
2265 PyObject *key = NULL;
Raymond Hettinger224c87d2013-10-01 21:36:09 -07002266 PyObject *zero = NULL;
Raymond Hettinger96f34102010-12-15 16:30:37 +00002267 PyObject *one = NULL;
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002268 PyObject *bound_get = NULL;
2269 PyObject *mapping_get;
2270 PyObject *dict_get;
Raymond Hettinger2ff21902013-10-01 00:55:43 -07002271 PyObject *mapping_setitem;
Raymond Hettinger2ff21902013-10-01 00:55:43 -07002272 PyObject *dict_setitem;
Raymond Hettinger96f34102010-12-15 16:30:37 +00002273
2274 if (!PyArg_UnpackTuple(args, "_count_elements", 2, 2, &mapping, &iterable))
2275 return NULL;
2276
Raymond Hettinger96f34102010-12-15 16:30:37 +00002277 it = PyObject_GetIter(iterable);
2278 if (it == NULL)
2279 return NULL;
Raymond Hettinger426e0522011-01-03 02:12:02 +00002280
Raymond Hettinger96f34102010-12-15 16:30:37 +00002281 one = PyLong_FromLong(1);
Raymond Hettinger224c87d2013-10-01 21:36:09 -07002282 if (one == NULL)
2283 goto done;
Raymond Hettinger426e0522011-01-03 02:12:02 +00002284
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002285 /* Only take the fast path when get() and __setitem__()
2286 * have not been overridden.
2287 */
2288 mapping_get = _PyType_LookupId(Py_TYPE(mapping), &PyId_get);
2289 dict_get = _PyType_LookupId(&PyDict_Type, &PyId_get);
Raymond Hettinger2ff21902013-10-01 00:55:43 -07002290 mapping_setitem = _PyType_LookupId(Py_TYPE(mapping), &PyId___setitem__);
2291 dict_setitem = _PyType_LookupId(&PyDict_Type, &PyId___setitem__);
2292
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002293 if (mapping_get != NULL && mapping_get == dict_get &&
2294 mapping_setitem != NULL && mapping_setitem == dict_setitem) {
Raymond Hettinger426e0522011-01-03 02:12:02 +00002295 while (1) {
Raymond Hettinger507d9972014-05-18 21:32:40 +01002296 /* Fast path advantages:
2297 1. Eliminate double hashing
2298 (by re-using the same hash for both the get and set)
2299 2. Avoid argument overhead of PyObject_CallFunctionObjArgs
2300 (argument tuple creation and parsing)
2301 3. Avoid indirection through a bound method object
2302 (creates another argument tuple)
2303 4. Avoid initial increment from zero
2304 (reuse an existing one-object instead)
2305 */
Raymond Hettinger4b0b1ac2014-05-03 16:41:19 -07002306 Py_hash_t hash;
2307
Raymond Hettinger426e0522011-01-03 02:12:02 +00002308 key = PyIter_Next(it);
Victor Stinnera154b5c2011-04-20 23:23:52 +02002309 if (key == NULL)
2310 break;
Raymond Hettinger4b0b1ac2014-05-03 16:41:19 -07002311
2312 if (!PyUnicode_CheckExact(key) ||
2313 (hash = ((PyASCIIObject *) key)->hash) == -1)
2314 {
2315 hash = PyObject_Hash(key);
Raymond Hettingerda2850f2015-02-27 12:42:54 -08002316 if (hash == -1)
Raymond Hettinger4b0b1ac2014-05-03 16:41:19 -07002317 goto done;
2318 }
2319
2320 oldval = _PyDict_GetItem_KnownHash(mapping, key, hash);
Raymond Hettinger426e0522011-01-03 02:12:02 +00002321 if (oldval == NULL) {
Serhiy Storchakaf0b311b2016-11-06 13:18:24 +02002322 if (PyErr_Occurred())
2323 goto done;
Raymond Hettinger28c995d2015-08-14 02:07:41 -07002324 if (_PyDict_SetItem_KnownHash(mapping, key, one, hash) < 0)
Raymond Hettinger507d9972014-05-18 21:32:40 +01002325 goto done;
Raymond Hettinger426e0522011-01-03 02:12:02 +00002326 } else {
2327 newval = PyNumber_Add(oldval, one);
2328 if (newval == NULL)
Raymond Hettinger507d9972014-05-18 21:32:40 +01002329 goto done;
Raymond Hettinger28c995d2015-08-14 02:07:41 -07002330 if (_PyDict_SetItem_KnownHash(mapping, key, newval, hash) < 0)
Raymond Hettinger507d9972014-05-18 21:32:40 +01002331 goto done;
Raymond Hettinger426e0522011-01-03 02:12:02 +00002332 Py_CLEAR(newval);
2333 }
2334 Py_DECREF(key);
Raymond Hettinger96f34102010-12-15 16:30:37 +00002335 }
Raymond Hettinger426e0522011-01-03 02:12:02 +00002336 } else {
Victor Stinnere7f516c2013-11-06 23:52:55 +01002337 bound_get = _PyObject_GetAttrId(mapping, &PyId_get);
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002338 if (bound_get == NULL)
Raymond Hettinger224c87d2013-10-01 21:36:09 -07002339 goto done;
2340
2341 zero = PyLong_FromLong(0);
2342 if (zero == NULL)
2343 goto done;
2344
Raymond Hettinger426e0522011-01-03 02:12:02 +00002345 while (1) {
2346 key = PyIter_Next(it);
Victor Stinnera154b5c2011-04-20 23:23:52 +02002347 if (key == NULL)
2348 break;
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002349 oldval = PyObject_CallFunctionObjArgs(bound_get, key, zero, NULL);
Raymond Hettinger224c87d2013-10-01 21:36:09 -07002350 if (oldval == NULL)
2351 break;
2352 newval = PyNumber_Add(oldval, one);
2353 Py_DECREF(oldval);
2354 if (newval == NULL)
2355 break;
Raymond Hettinger28c995d2015-08-14 02:07:41 -07002356 if (PyObject_SetItem(mapping, key, newval) < 0)
Raymond Hettinger96f34102010-12-15 16:30:37 +00002357 break;
2358 Py_CLEAR(newval);
Raymond Hettinger426e0522011-01-03 02:12:02 +00002359 Py_DECREF(key);
Raymond Hettinger96f34102010-12-15 16:30:37 +00002360 }
Raymond Hettinger96f34102010-12-15 16:30:37 +00002361 }
Raymond Hettinger426e0522011-01-03 02:12:02 +00002362
Raymond Hettinger224c87d2013-10-01 21:36:09 -07002363done:
Raymond Hettinger96f34102010-12-15 16:30:37 +00002364 Py_DECREF(it);
2365 Py_XDECREF(key);
2366 Py_XDECREF(newval);
Raymond Hettingercb1d96f2013-10-04 16:51:02 -07002367 Py_XDECREF(bound_get);
Raymond Hettinger224c87d2013-10-01 21:36:09 -07002368 Py_XDECREF(zero);
2369 Py_XDECREF(one);
Raymond Hettinger96f34102010-12-15 16:30:37 +00002370 if (PyErr_Occurred())
2371 return NULL;
2372 Py_RETURN_NONE;
2373}
2374
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002375/* module level code ********************************************************/
2376
2377PyDoc_STRVAR(module_doc,
Guido van Rossum1968ad32006-02-25 22:38:04 +00002378"High performance data structures.\n\
2379- deque: ordered collection accessible from endpoints only\n\
2380- defaultdict: dict subclass with a default value factory\n\
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002381");
2382
Raymond Hettinger96f34102010-12-15 16:30:37 +00002383static struct PyMethodDef module_functions[] = {
2384 {"_count_elements", _count_elements, METH_VARARGS, _count_elements_doc},
2385 {NULL, NULL} /* sentinel */
2386};
Martin v. Löwis1a214512008-06-11 05:26:20 +00002387
2388static struct PyModuleDef _collectionsmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002389 PyModuleDef_HEAD_INIT,
2390 "_collections",
2391 module_doc,
2392 -1,
Raymond Hettinger96f34102010-12-15 16:30:37 +00002393 module_functions,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002394 NULL,
2395 NULL,
2396 NULL,
2397 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00002398};
2399
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002400PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00002401PyInit__collections(void)
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002402{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002403 PyObject *m;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002404
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002405 m = PyModule_Create(&_collectionsmodule);
2406 if (m == NULL)
2407 return NULL;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002408
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002409 if (PyType_Ready(&deque_type) < 0)
2410 return NULL;
2411 Py_INCREF(&deque_type);
2412 PyModule_AddObject(m, "deque", (PyObject *)&deque_type);
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002413
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002414 defdict_type.tp_base = &PyDict_Type;
2415 if (PyType_Ready(&defdict_type) < 0)
2416 return NULL;
2417 Py_INCREF(&defdict_type);
2418 PyModule_AddObject(m, "defaultdict", (PyObject *)&defdict_type);
Guido van Rossum1968ad32006-02-25 22:38:04 +00002419
Eric Snow47db7172015-05-29 22:21:39 -06002420 Py_INCREF(&PyODict_Type);
2421 PyModule_AddObject(m, "OrderedDict", (PyObject *)&PyODict_Type);
2422
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002423 if (PyType_Ready(&dequeiter_type) < 0)
2424 return NULL;
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002425 Py_INCREF(&dequeiter_type);
2426 PyModule_AddObject(m, "_deque_iterator", (PyObject *)&dequeiter_type);
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002427
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002428 if (PyType_Ready(&dequereviter_type) < 0)
2429 return NULL;
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002430 Py_INCREF(&dequereviter_type);
2431 PyModule_AddObject(m, "_deque_reverse_iterator", (PyObject *)&dequereviter_type);
Raymond Hettinger1e5809f2004-03-18 11:04:57 +00002432
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002433 return m;
Raymond Hettinger756b3f32004-01-29 06:37:52 +00002434}