Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | Written by Jim Hugunin and Chris Chase. |
| 3 | |
Guido van Rossum | e449af7 | 1996-10-11 16:25:41 +0000 | [diff] [blame] | 4 | This includes both the singular ellipsis object and slice objects. |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 5 | |
| 6 | Guido, feel free to do whatever you want in the way of copyrights |
| 7 | for this file. |
| 8 | */ |
| 9 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 10 | /* |
Guido van Rossum | e449af7 | 1996-10-11 16:25:41 +0000 | [diff] [blame] | 11 | Py_Ellipsis encodes the '...' rubber index token. It is similar to |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 12 | the Py_NoneStruct in that there is no way to create other objects of |
| 13 | this type and there is exactly one in existence. |
| 14 | */ |
| 15 | |
| 16 | #include "Python.h" |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 17 | #include "structmember.h" |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 18 | |
| 19 | static PyObject * |
Fred Drake | 45cfbcc | 2000-07-09 06:21:27 +0000 | [diff] [blame] | 20 | ellipsis_repr(PyObject *op) |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 21 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 22 | return PyString_FromString("Ellipsis"); |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 23 | } |
| 24 | |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 25 | PyTypeObject PyEllipsis_Type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 26 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 27 | "ellipsis", /* tp_name */ |
| 28 | 0, /* tp_basicsize */ |
| 29 | 0, /* tp_itemsize */ |
| 30 | 0, /*never called*/ /* tp_dealloc */ |
| 31 | 0, /* tp_print */ |
| 32 | 0, /* tp_getattr */ |
| 33 | 0, /* tp_setattr */ |
| 34 | 0, /* tp_compare */ |
| 35 | ellipsis_repr, /* tp_repr */ |
| 36 | 0, /* tp_as_number */ |
| 37 | 0, /* tp_as_sequence */ |
| 38 | 0, /* tp_as_mapping */ |
| 39 | 0, /* tp_hash */ |
| 40 | 0, /* tp_call */ |
| 41 | 0, /* tp_str */ |
| 42 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 43 | 0, /* tp_setattro */ |
| 44 | 0, /* tp_as_buffer */ |
| 45 | Py_TPFLAGS_DEFAULT, /* tp_flags */ |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 46 | }; |
| 47 | |
Guido van Rossum | e449af7 | 1996-10-11 16:25:41 +0000 | [diff] [blame] | 48 | PyObject _Py_EllipsisObject = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 49 | _PyObject_EXTRA_INIT |
| 50 | 1, &PyEllipsis_Type |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | |
| 54 | /* Slice object implementation |
| 55 | |
| 56 | start, stop, and step are python objects with None indicating no |
| 57 | index is present. |
| 58 | */ |
| 59 | |
| 60 | PyObject * |
Fred Drake | 45cfbcc | 2000-07-09 06:21:27 +0000 | [diff] [blame] | 61 | PySlice_New(PyObject *start, PyObject *stop, PyObject *step) |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 62 | { |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 63 | PySliceObject *obj = PyObject_GC_New(PySliceObject, &PySlice_Type); |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 64 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 65 | if (obj == NULL) |
| 66 | return NULL; |
Guido van Rossum | adf5410 | 2000-12-14 15:09:46 +0000 | [diff] [blame] | 67 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 68 | if (step == NULL) step = Py_None; |
| 69 | Py_INCREF(step); |
| 70 | if (start == NULL) start = Py_None; |
| 71 | Py_INCREF(start); |
| 72 | if (stop == NULL) stop = Py_None; |
| 73 | Py_INCREF(stop); |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 74 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 75 | obj->step = step; |
| 76 | obj->start = start; |
| 77 | obj->stop = stop; |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 78 | |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 79 | _PyObject_GC_TRACK(obj); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 80 | return (PyObject *) obj; |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Neal Norwitz | badc086 | 2006-03-23 06:03:08 +0000 | [diff] [blame] | 83 | PyObject * |
| 84 | _PySlice_FromIndices(Py_ssize_t istart, Py_ssize_t istop) |
| 85 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 86 | PyObject *start, *end, *slice; |
| 87 | start = PyInt_FromSsize_t(istart); |
| 88 | if (!start) |
| 89 | return NULL; |
| 90 | end = PyInt_FromSsize_t(istop); |
| 91 | if (!end) { |
| 92 | Py_DECREF(start); |
| 93 | return NULL; |
| 94 | } |
Neal Norwitz | badc086 | 2006-03-23 06:03:08 +0000 | [diff] [blame] | 95 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 96 | slice = PySlice_New(start, end, NULL); |
| 97 | Py_DECREF(start); |
| 98 | Py_DECREF(end); |
| 99 | return slice; |
Neal Norwitz | badc086 | 2006-03-23 06:03:08 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 102 | int |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 103 | PySlice_GetIndices(PySliceObject *r, Py_ssize_t length, |
| 104 | Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 105 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 106 | /* XXX support long ints */ |
| 107 | if (r->step == Py_None) { |
| 108 | *step = 1; |
| 109 | } else { |
Serhiy Storchaka | 48c8bf2 | 2018-07-31 09:09:36 +0300 | [diff] [blame] | 110 | if (!_PyAnyInt_Check(r->step)) return -1; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 111 | *step = PyInt_AsSsize_t(r->step); |
| 112 | } |
| 113 | if (r->start == Py_None) { |
| 114 | *start = *step < 0 ? length-1 : 0; |
| 115 | } else { |
Serhiy Storchaka | 48c8bf2 | 2018-07-31 09:09:36 +0300 | [diff] [blame] | 116 | if (!_PyAnyInt_Check(r->start)) return -1; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 117 | *start = PyInt_AsSsize_t(r->start); |
| 118 | if (*start < 0) *start += length; |
| 119 | } |
| 120 | if (r->stop == Py_None) { |
| 121 | *stop = *step < 0 ? -1 : length; |
| 122 | } else { |
Serhiy Storchaka | 48c8bf2 | 2018-07-31 09:09:36 +0300 | [diff] [blame] | 123 | if (!_PyAnyInt_Check(r->stop)) return -1; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 124 | *stop = PyInt_AsSsize_t(r->stop); |
| 125 | if (*stop < 0) *stop += length; |
| 126 | } |
| 127 | if (*stop > length) return -1; |
| 128 | if (*start >= length) return -1; |
| 129 | if (*step == 0) return -1; |
| 130 | return 0; |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 133 | int |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 134 | _PySlice_Unpack(PyObject *_r, |
| 135 | Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 136 | { |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 137 | PySliceObject *r = (PySliceObject *)_r; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 138 | /* this is harder to get right than you might think */ |
Michael W. Hudson | 173f11d | 2002-11-05 15:28:51 +0000 | [diff] [blame] | 139 | |
Xiang Zhang | 05469fa | 2017-05-10 19:20:28 +0800 | [diff] [blame] | 140 | assert(PY_SSIZE_T_MIN + 1 <= -PY_SSIZE_T_MAX); |
| 141 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 142 | if (r->step == Py_None) { |
| 143 | *step = 1; |
| 144 | } |
| 145 | else { |
| 146 | if (!_PyEval_SliceIndex(r->step, step)) return -1; |
| 147 | if (*step == 0) { |
| 148 | PyErr_SetString(PyExc_ValueError, |
| 149 | "slice step cannot be zero"); |
| 150 | return -1; |
| 151 | } |
Victor Stinner | f6a3133 | 2017-05-03 16:00:12 +0200 | [diff] [blame] | 152 | /* Here *step might be -PY_SSIZE_T_MAX-1; in this case we replace it |
| 153 | * with -PY_SSIZE_T_MAX. This doesn't affect the semantics, and it |
| 154 | * guards against later undefined behaviour resulting from code that |
| 155 | * does "step = -step" as part of a slice reversal. |
| 156 | */ |
| 157 | if (*step < -PY_SSIZE_T_MAX) |
| 158 | *step = -PY_SSIZE_T_MAX; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 159 | } |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 160 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 161 | if (r->start == Py_None) { |
Xiang Zhang | 05469fa | 2017-05-10 19:20:28 +0800 | [diff] [blame] | 162 | *start = *step < 0 ? PY_SSIZE_T_MAX : 0; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 163 | } |
| 164 | else { |
| 165 | if (!_PyEval_SliceIndex(r->start, start)) return -1; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 166 | } |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 167 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 168 | if (r->stop == Py_None) { |
Xiang Zhang | 05469fa | 2017-05-10 19:20:28 +0800 | [diff] [blame] | 169 | *stop = *step < 0 ? PY_SSIZE_T_MIN : PY_SSIZE_T_MAX; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 170 | } |
| 171 | else { |
| 172 | if (!_PyEval_SliceIndex(r->stop, stop)) return -1; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 173 | } |
Michael W. Hudson | 173f11d | 2002-11-05 15:28:51 +0000 | [diff] [blame] | 174 | |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | Py_ssize_t |
| 179 | _PySlice_AdjustIndices(Py_ssize_t length, |
| 180 | Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t step) |
| 181 | { |
| 182 | /* this is harder to get right than you might think */ |
| 183 | |
| 184 | assert(step != 0); |
| 185 | assert(step >= -PY_SSIZE_T_MAX); |
| 186 | |
| 187 | if (*start < 0) { |
| 188 | *start += length; |
| 189 | if (*start < 0) { |
| 190 | *start = (step < 0) ? -1 : 0; |
| 191 | } |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 192 | } |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 193 | else if (*start >= length) { |
| 194 | *start = (step < 0) ? length - 1 : length; |
| 195 | } |
| 196 | |
| 197 | if (*stop < 0) { |
| 198 | *stop += length; |
| 199 | if (*stop < 0) { |
| 200 | *stop = (step < 0) ? -1 : 0; |
| 201 | } |
| 202 | } |
Xiang Zhang | 05469fa | 2017-05-10 19:20:28 +0800 | [diff] [blame] | 203 | else if (*stop >= length) { |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 204 | *stop = (step < 0) ? length - 1 : length; |
| 205 | } |
| 206 | |
| 207 | if (step < 0) { |
| 208 | if (*stop < *start) { |
| 209 | return (*start - *stop - 1) / (-step) + 1; |
| 210 | } |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 211 | } |
| 212 | else { |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 213 | if (*start < *stop) { |
| 214 | return (*stop - *start - 1) / step + 1; |
| 215 | } |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 216 | } |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 217 | return 0; |
| 218 | } |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 219 | |
Serhiy Storchaka | 3efe32e | 2017-01-25 13:22:06 +0200 | [diff] [blame] | 220 | #undef PySlice_GetIndicesEx |
| 221 | |
| 222 | int |
| 223 | PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length, |
| 224 | Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, |
| 225 | Py_ssize_t *slicelength) |
| 226 | { |
| 227 | if (_PySlice_Unpack((PyObject *)r, start, stop, step) < 0) |
| 228 | return -1; |
| 229 | *slicelength = _PySlice_AdjustIndices(length, start, stop, *step); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 230 | return 0; |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 233 | static PyObject * |
| 234 | slice_new(PyTypeObject *type, PyObject *args, PyObject *kw) |
| 235 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 236 | PyObject *start, *stop, *step; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 237 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 238 | start = stop = step = NULL; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 239 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 240 | if (!_PyArg_NoKeywords("slice()", kw)) |
| 241 | return NULL; |
Georg Brandl | 02c4287 | 2005-08-26 06:42:30 +0000 | [diff] [blame] | 242 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 243 | if (!PyArg_UnpackTuple(args, "slice", 1, 3, &start, &stop, &step)) |
| 244 | return NULL; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 245 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 246 | /* This swapping of stop and start is to maintain similarity with |
| 247 | range(). */ |
| 248 | if (stop == NULL) { |
| 249 | stop = start; |
| 250 | start = NULL; |
| 251 | } |
| 252 | return PySlice_New(start, stop, step); |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | PyDoc_STRVAR(slice_doc, |
Chris Jerdonek | ad4b000 | 2012-10-07 20:37:54 -0700 | [diff] [blame] | 256 | "slice(stop)\n\ |
| 257 | slice(start, stop[, step])\n\ |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 258 | \n\ |
| 259 | Create a slice object. This is used for extended slicing (e.g. a[0:10:2])."); |
| 260 | |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 261 | static void |
Fred Drake | 45cfbcc | 2000-07-09 06:21:27 +0000 | [diff] [blame] | 262 | slice_dealloc(PySliceObject *r) |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 263 | { |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 264 | _PyObject_GC_UNTRACK(r); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 265 | Py_DECREF(r->step); |
| 266 | Py_DECREF(r->start); |
| 267 | Py_DECREF(r->stop); |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 268 | PyObject_GC_Del(r); |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | static PyObject * |
Fred Drake | 45cfbcc | 2000-07-09 06:21:27 +0000 | [diff] [blame] | 272 | slice_repr(PySliceObject *r) |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 273 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 274 | PyObject *s, *comma; |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 275 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 276 | s = PyString_FromString("slice("); |
| 277 | comma = PyString_FromString(", "); |
| 278 | PyString_ConcatAndDel(&s, PyObject_Repr(r->start)); |
| 279 | PyString_Concat(&s, comma); |
| 280 | PyString_ConcatAndDel(&s, PyObject_Repr(r->stop)); |
| 281 | PyString_Concat(&s, comma); |
| 282 | PyString_ConcatAndDel(&s, PyObject_Repr(r->step)); |
| 283 | PyString_ConcatAndDel(&s, PyString_FromString(")")); |
| 284 | Py_DECREF(comma); |
| 285 | return s; |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 288 | static PyMemberDef slice_members[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 289 | {"start", T_OBJECT, offsetof(PySliceObject, start), READONLY}, |
| 290 | {"stop", T_OBJECT, offsetof(PySliceObject, stop), READONLY}, |
| 291 | {"step", T_OBJECT, offsetof(PySliceObject, step), READONLY}, |
| 292 | {0} |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 293 | }; |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 294 | |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 295 | static PyObject* |
| 296 | slice_indices(PySliceObject* self, PyObject* len) |
| 297 | { |
Serhiy Storchaka | 5e79321 | 2017-04-15 20:11:12 +0300 | [diff] [blame] | 298 | Py_ssize_t ilen, start, stop, step; |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 299 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 300 | ilen = PyNumber_AsSsize_t(len, PyExc_OverflowError); |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 301 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 302 | if (ilen == -1 && PyErr_Occurred()) { |
| 303 | return NULL; |
| 304 | } |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 305 | |
Serhiy Storchaka | 5e79321 | 2017-04-15 20:11:12 +0300 | [diff] [blame] | 306 | if (_PySlice_Unpack((PyObject *)self, &start, &stop, &step) < 0) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 307 | return NULL; |
| 308 | } |
Serhiy Storchaka | 5e79321 | 2017-04-15 20:11:12 +0300 | [diff] [blame] | 309 | _PySlice_AdjustIndices(ilen, &start, &stop, step); |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 310 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 311 | return Py_BuildValue("(nnn)", start, stop, step); |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | PyDoc_STRVAR(slice_indices_doc, |
| 315 | "S.indices(len) -> (start, stop, stride)\n\ |
| 316 | \n\ |
| 317 | Assuming a sequence of length len, calculate the start and stop\n\ |
| 318 | indices, and the stride length of the extended slice described by\n\ |
| 319 | S. Out of bounds indices are clipped in a manner consistent with the\n\ |
| 320 | handling of normal slices."); |
| 321 | |
Raymond Hettinger | 1393669 | 2007-04-11 18:40:58 +0000 | [diff] [blame] | 322 | static PyObject * |
| 323 | slice_reduce(PySliceObject* self) |
| 324 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 325 | return Py_BuildValue("O(OOO)", Py_TYPE(self), self->start, self->stop, self->step); |
Raymond Hettinger | 1393669 | 2007-04-11 18:40:58 +0000 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | PyDoc_STRVAR(reduce_doc, "Return state information for pickling."); |
| 329 | |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 330 | static PyMethodDef slice_methods[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 331 | {"indices", (PyCFunction)slice_indices, |
| 332 | METH_O, slice_indices_doc}, |
| 333 | {"__reduce__", (PyCFunction)slice_reduce, |
| 334 | METH_NOARGS, reduce_doc}, |
| 335 | {NULL, NULL} |
Michael W. Hudson | f0d777c | 2002-07-19 15:47:06 +0000 | [diff] [blame] | 336 | }; |
| 337 | |
Guido van Rossum | a1351fb | 2001-03-20 12:41:34 +0000 | [diff] [blame] | 338 | static int |
| 339 | slice_compare(PySliceObject *v, PySliceObject *w) |
| 340 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 341 | int result = 0; |
Guido van Rossum | a1351fb | 2001-03-20 12:41:34 +0000 | [diff] [blame] | 342 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 343 | if (v == w) |
| 344 | return 0; |
Guido van Rossum | a1351fb | 2001-03-20 12:41:34 +0000 | [diff] [blame] | 345 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 346 | if (PyObject_Cmp(v->start, w->start, &result) < 0) |
| 347 | return -2; |
| 348 | if (result != 0) |
| 349 | return result; |
| 350 | if (PyObject_Cmp(v->stop, w->stop, &result) < 0) |
| 351 | return -2; |
| 352 | if (result != 0) |
| 353 | return result; |
| 354 | if (PyObject_Cmp(v->step, w->step, &result) < 0) |
| 355 | return -2; |
| 356 | return result; |
Guido van Rossum | a1351fb | 2001-03-20 12:41:34 +0000 | [diff] [blame] | 357 | } |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 358 | |
Raymond Hettinger | b859c07 | 2003-09-05 14:27:30 +0000 | [diff] [blame] | 359 | static long |
| 360 | slice_hash(PySliceObject *v) |
| 361 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 362 | PyErr_SetString(PyExc_TypeError, "unhashable type"); |
| 363 | return -1L; |
Raymond Hettinger | b859c07 | 2003-09-05 14:27:30 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 366 | static int |
| 367 | slice_traverse(PySliceObject *v, visitproc visit, void *arg) |
| 368 | { |
| 369 | Py_VISIT(v->start); |
| 370 | Py_VISIT(v->stop); |
| 371 | Py_VISIT(v->step); |
| 372 | return 0; |
| 373 | } |
| 374 | |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 375 | PyTypeObject PySlice_Type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 376 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 377 | "slice", /* Name of this type */ |
| 378 | sizeof(PySliceObject), /* Basic object size */ |
| 379 | 0, /* Item size for varobject */ |
| 380 | (destructor)slice_dealloc, /* tp_dealloc */ |
| 381 | 0, /* tp_print */ |
| 382 | 0, /* tp_getattr */ |
| 383 | 0, /* tp_setattr */ |
| 384 | (cmpfunc)slice_compare, /* tp_compare */ |
| 385 | (reprfunc)slice_repr, /* tp_repr */ |
| 386 | 0, /* tp_as_number */ |
| 387 | 0, /* tp_as_sequence */ |
| 388 | 0, /* tp_as_mapping */ |
| 389 | (hashfunc)slice_hash, /* tp_hash */ |
| 390 | 0, /* tp_call */ |
| 391 | 0, /* tp_str */ |
| 392 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 393 | 0, /* tp_setattro */ |
| 394 | 0, /* tp_as_buffer */ |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 395 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 396 | slice_doc, /* tp_doc */ |
Benjamin Peterson | 414f8b9 | 2016-04-16 14:47:12 -0700 | [diff] [blame] | 397 | (traverseproc)slice_traverse, /* tp_traverse */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 398 | 0, /* tp_clear */ |
| 399 | 0, /* tp_richcompare */ |
| 400 | 0, /* tp_weaklistoffset */ |
| 401 | 0, /* tp_iter */ |
| 402 | 0, /* tp_iternext */ |
| 403 | slice_methods, /* tp_methods */ |
| 404 | slice_members, /* tp_members */ |
| 405 | 0, /* tp_getset */ |
| 406 | 0, /* tp_base */ |
| 407 | 0, /* tp_dict */ |
| 408 | 0, /* tp_descr_get */ |
| 409 | 0, /* tp_descr_set */ |
| 410 | 0, /* tp_dictoffset */ |
| 411 | 0, /* tp_init */ |
| 412 | 0, /* tp_alloc */ |
| 413 | slice_new, /* tp_new */ |
Guido van Rossum | f2d125b | 1996-07-30 16:45:48 +0000 | [diff] [blame] | 414 | }; |