- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathrangeobject.c
345 lines (307 loc) · 11.7 KB
/
rangeobject.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/* Range object implementation */
#include"Python.h"
typedefstruct {
PyObject_HEAD
longstart;
longstep;
longlen;
} rangeobject;
/* Return number of items in range (lo, hi, step). step != 0
* required. The result always fits in an unsigned long.
*/
staticunsigned long
get_len_of_range(longlo, longhi, longstep)
{
/* -------------------------------------------------------------
If step > 0 and lo >= hi, or step < 0 and lo <= hi, the range is empty.
Else for step > 0, if n values are in the range, the last one is
lo + (n-1)*step, which must be <= hi-1. Rearranging,
n <= (hi - lo - 1)/step + 1, so taking the floor of the RHS gives
the proper value. Since lo < hi in this case, hi-lo-1 >= 0, so
the RHS is non-negative and so truncation is the same as the
floor. Letting M be the largest positive long, the worst case
for the RHS numerator is hi=M, lo=-M-1, and then
hi-lo-1 = M-(-M-1)-1 = 2*M. Therefore unsigned long has enough
precision to compute the RHS exactly. The analysis for step < 0
is similar.
---------------------------------------------------------------*/
assert(step!=0);
if (step>0&&lo<hi)
return1UL+ (hi-1UL-lo) / step;
elseif (step<0&&lo>hi)
return1UL+ (lo-1UL-hi) / (0UL-step);
else
return0UL;
}
/* Return a stop value suitable for reconstructing the xrange from
* a (start, stop, step) triple. Used in range_repr and range_reduce.
* Computes start + len * step, clipped to the range [LONG_MIN, LONG_MAX].
*/
staticlong
get_stop_for_range(rangeobject*r)
{
longlast;
if (r->len==0)
returnr->start;
/* The tricky bit is avoiding overflow. We first compute the last entry in
the xrange, start + (len - 1) * step, which is guaranteed to lie within
the range of a long, and then add step to it. See the range_reverse
comments for an explanation of the casts below.
*/
last= (long)(r->start+ (unsigned long)(r->len-1) *r->step);
if (r->step>0)
returnlast>LONG_MAX-r->step ? LONG_MAX : last+r->step;
else
returnlast<LONG_MIN-r->step ? LONG_MIN : last+r->step;
}
staticPyObject*
range_new(PyTypeObject*type, PyObject*args, PyObject*kw)
{
rangeobject*obj;
longilow=0, ihigh=0, istep=1;
unsigned longn;
if (!_PyArg_NoKeywords("xrange()", kw))
returnNULL;
if (PyTuple_Size(args) <= 1) {
if (!PyArg_ParseTuple(args,
"l;xrange() requires 1-3 int arguments",
&ihigh))
returnNULL;
}
else {
if (!PyArg_ParseTuple(args,
"ll|l;xrange() requires 1-3 int arguments",
&ilow, &ihigh, &istep))
returnNULL;
}
if (istep==0) {
PyErr_SetString(PyExc_ValueError, "xrange() arg 3 must not be zero");
returnNULL;
}
n=get_len_of_range(ilow, ihigh, istep);
if (n> (unsigned long)LONG_MAX|| (long)n>PY_SSIZE_T_MAX) {
PyErr_SetString(PyExc_OverflowError,
"xrange() result has too many items");
returnNULL;
}
obj=PyObject_New(rangeobject, &PyRange_Type);
if (obj==NULL)
returnNULL;
obj->start=ilow;
obj->len= (long)n;
obj->step=istep;
return (PyObject*) obj;
}
PyDoc_STRVAR(range_doc,
"xrange(stop) -> xrange object\n\
xrange(start, stop[, step]) -> xrange object\n\
\n\
Like range(), but instead of returning a list, returns an object that\n\
generates the numbers in the range on demand. For looping, this is \n\
slightly faster than range() and more memory efficient.");
staticPyObject*
range_item(rangeobject*r, Py_ssize_ti)
{
if (i<0||i >= r->len) {
PyErr_SetString(PyExc_IndexError,
"xrange object index out of range");
returnNULL;
}
/* do calculation entirely using unsigned longs, to avoid
undefined behaviour due to signed overflow. */
returnPyInt_FromLong((long)(r->start+ (unsigned long)i*r->step));
}
staticPy_ssize_t
range_length(rangeobject*r)
{
return (Py_ssize_t)(r->len);
}
staticPyObject*
range_repr(rangeobject*r)
{
PyObject*rtn;
if (r->start==0&&r->step==1)
rtn=PyString_FromFormat("xrange(%ld)",
get_stop_for_range(r));
elseif (r->step==1)
rtn=PyString_FromFormat("xrange(%ld, %ld)",
r->start,
get_stop_for_range(r));
else
rtn=PyString_FromFormat("xrange(%ld, %ld, %ld)",
r->start,
get_stop_for_range(r),
r->step);
returnrtn;
}
/* Pickling support */
staticPyObject*
range_reduce(rangeobject*r, PyObject*args)
{
returnPy_BuildValue("(O(lll))", Py_TYPE(r),
r->start,
get_stop_for_range(r),
r->step);
}
staticPySequenceMethodsrange_as_sequence= {
(lenfunc)range_length, /* sq_length */
0, /* sq_concat */
0, /* sq_repeat */
(ssizeargfunc)range_item, /* sq_item */
0, /* sq_slice */
};
staticPyObject*range_iter(PyObject*seq);
staticPyObject*range_reverse(PyObject*seq);
PyDoc_STRVAR(reverse_doc,
"Returns a reverse iterator.");
staticPyMethodDefrange_methods[] = {
{"__reversed__", (PyCFunction)range_reverse, METH_NOARGS, reverse_doc},
{"__reduce__", (PyCFunction)range_reduce, METH_VARARGS},
{NULL, NULL} /* sentinel */
};
PyTypeObjectPyRange_Type= {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"xrange", /* Name of this type */
sizeof(rangeobject), /* Basic object size */
0, /* Item size for varobject */
(destructor)PyObject_Del, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
(reprfunc)range_repr, /* tp_repr */
0, /* tp_as_number */
&range_as_sequence, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
range_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
range_iter, /* tp_iter */
0, /* tp_iternext */
range_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
range_new, /* tp_new */
};
/*********************** Xrange Iterator **************************/
typedefstruct {
PyObject_HEAD
longindex;
longstart;
longstep;
longlen;
} rangeiterobject;
staticPyObject*
rangeiter_next(rangeiterobject*r)
{
if (r->index<r->len)
returnPyInt_FromLong(r->start+ (r->index++) *r->step);
returnNULL;
}
staticPyObject*
rangeiter_len(rangeiterobject*r)
{
returnPyInt_FromLong(r->len-r->index);
}
PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
staticPyMethodDefrangeiter_methods[] = {
{"__length_hint__", (PyCFunction)rangeiter_len, METH_NOARGS, length_hint_doc},
{NULL, NULL} /* sentinel */
};
staticPyTypeObjectPyrangeiter_Type= {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"rangeiterator", /* tp_name */
sizeof(rangeiterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)PyObject_Del, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)rangeiter_next, /* tp_iternext */
rangeiter_methods, /* tp_methods */
0,
};
staticPyObject*
range_iter(PyObject*seq)
{
rangeiterobject*it;
if (!PyRange_Check(seq)) {
PyErr_BadInternalCall();
returnNULL;
}
it=PyObject_New(rangeiterobject, &Pyrangeiter_Type);
if (it==NULL)
returnNULL;
it->index=0;
it->start= ((rangeobject*)seq)->start;
it->step= ((rangeobject*)seq)->step;
it->len= ((rangeobject*)seq)->len;
return (PyObject*)it;
}
staticPyObject*
range_reverse(PyObject*seq)
{
rangeiterobject*it;
longstart, step, len;
if (!PyRange_Check(seq)) {
PyErr_BadInternalCall();
returnNULL;
}
it=PyObject_New(rangeiterobject, &Pyrangeiter_Type);
if (it==NULL)
returnNULL;
start= ((rangeobject*)seq)->start;
step= ((rangeobject*)seq)->step;
len= ((rangeobject*)seq)->len;
it->index=0;
it->len=len;
/* the casts below guard against signed overflow by turning it
into unsigned overflow instead. The correctness of this
code still depends on conversion from unsigned long to long
wrapping modulo ULONG_MAX+1, which isn't guaranteed (see
C99 6.3.1.3p3) but seems to hold in practice for all
platforms we're likely to meet.
If step == LONG_MIN then we still end up with LONG_MIN
after negation; but this works out, since we've still got
the correct value modulo ULONG_MAX+1, and the range_item
calculation is also done modulo ULONG_MAX+1.
*/
it->start= (long)(start+ (unsigned long)(len-1) *step);
it->step= (long)(0UL-step);
return (PyObject*)it;
}