blob: 91cf57b1abb35436b648d0295a8298123da9d9b7 [file] [log] [blame]
Guido van Rossume82f75a2001-10-18 20:47:51 +00001/* Implementation helper: a struct that looks like a tuple. See timemodule
2 and posixmodule for example uses. */
3
4#include "Python.h"
5#include "structmember.h"
6#include "structseq.h"
7
8static char visible_length_key[] = "n_sequence_fields";
9static char real_length_key[] = "n_fields";
Martin v. Löwisceaa77c2002-10-16 19:10:03 +000010static char unnamed_fields_key[] = "n_unnamed_fields";
Guido van Rossume82f75a2001-10-18 20:47:51 +000011
Martin v. Löwisf607bda2002-10-16 18:27:39 +000012/* Fields with this name have only a field index, not a field name.
13 They are only allowed for indices < n_visible_fields. */
14char *PyStructSequence_UnnamedField = "unnamed field";
15
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000016#define VISIBLE_SIZE(op) Py_Size(op)
Christian Heimes217cfd12007-12-02 14:31:20 +000017#define VISIBLE_SIZE_TP(tp) PyLong_AsLong( \
Guido van Rossume82f75a2001-10-18 20:47:51 +000018 PyDict_GetItemString((tp)->tp_dict, visible_length_key))
19
Christian Heimes217cfd12007-12-02 14:31:20 +000020#define REAL_SIZE_TP(tp) PyLong_AsLong( \
Guido van Rossume82f75a2001-10-18 20:47:51 +000021 PyDict_GetItemString((tp)->tp_dict, real_length_key))
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000022#define REAL_SIZE(op) REAL_SIZE_TP(Py_Type(op))
Guido van Rossume82f75a2001-10-18 20:47:51 +000023
Christian Heimes217cfd12007-12-02 14:31:20 +000024#define UNNAMED_FIELDS_TP(tp) PyLong_AsLong( \
Martin v. Löwisceaa77c2002-10-16 19:10:03 +000025 PyDict_GetItemString((tp)->tp_dict, unnamed_fields_key))
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000026#define UNNAMED_FIELDS(op) UNNAMED_FIELDS_TP(Py_Type(op))
Martin v. Löwisceaa77c2002-10-16 19:10:03 +000027
Guido van Rossume82f75a2001-10-18 20:47:51 +000028
29PyObject *
30PyStructSequence_New(PyTypeObject *type)
31{
32 PyStructSequence *obj;
33
Neil Schemenauer7465ad22002-04-12 03:05:37 +000034 obj = PyObject_New(PyStructSequence, type);
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000035 Py_Size(obj) = VISIBLE_SIZE_TP(type);
Guido van Rossume82f75a2001-10-18 20:47:51 +000036
37 return (PyObject*) obj;
38}
39
40static void
41structseq_dealloc(PyStructSequence *obj)
42{
Martin v. Löwis18e16552006-02-15 17:27:45 +000043 Py_ssize_t i, size;
Guido van Rossume82f75a2001-10-18 20:47:51 +000044
45 size = REAL_SIZE(obj);
46 for (i = 0; i < size; ++i) {
47 Py_XDECREF(obj->ob_item[i]);
48 }
Neil Schemenauer7465ad22002-04-12 03:05:37 +000049 PyObject_Del(obj);
Guido van Rossume82f75a2001-10-18 20:47:51 +000050}
51
Martin v. Löwis18e16552006-02-15 17:27:45 +000052static Py_ssize_t
Guido van Rossume82f75a2001-10-18 20:47:51 +000053structseq_length(PyStructSequence *obj)
54{
55 return VISIBLE_SIZE(obj);
56}
57
58static PyObject*
Martin v. Löwis18e16552006-02-15 17:27:45 +000059structseq_item(PyStructSequence *obj, Py_ssize_t i)
Guido van Rossume82f75a2001-10-18 20:47:51 +000060{
61 if (i < 0 || i >= VISIBLE_SIZE(obj)) {
62 PyErr_SetString(PyExc_IndexError, "tuple index out of range");
63 return NULL;
64 }
65 Py_INCREF(obj->ob_item[i]);
66 return obj->ob_item[i];
67}
68
69static PyObject*
Martin v. Löwis18e16552006-02-15 17:27:45 +000070structseq_slice(PyStructSequence *obj, Py_ssize_t low, Py_ssize_t high)
Guido van Rossume82f75a2001-10-18 20:47:51 +000071{
72 PyTupleObject *np;
Martin v. Löwis18e16552006-02-15 17:27:45 +000073 Py_ssize_t i;
Guido van Rossume82f75a2001-10-18 20:47:51 +000074
75 if (low < 0)
76 low = 0;
77 if (high > VISIBLE_SIZE(obj))
78 high = VISIBLE_SIZE(obj);
79 if (high < low)
80 high = low;
81 np = (PyTupleObject *)PyTuple_New(high-low);
82 if (np == NULL)
83 return NULL;
84 for(i = low; i < high; ++i) {
85 PyObject *v = obj->ob_item[i];
86 Py_INCREF(v);
Tim Petersc2fe6182001-10-30 23:20:46 +000087 PyTuple_SET_ITEM(np, i-low, v);
Guido van Rossume82f75a2001-10-18 20:47:51 +000088 }
89 return (PyObject *) np;
90}
91
92static PyObject *
Thomas Woutersed03b412007-08-28 21:37:11 +000093structseq_subscript(PyStructSequence *self, PyObject *item)
94{
95 if (PyIndex_Check(item)) {
96 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
97 if (i == -1 && PyErr_Occurred())
98 return NULL;
99
100 if (i < 0)
101 i += VISIBLE_SIZE(self);
102
103 if (i < 0 || i >= VISIBLE_SIZE(self)) {
104 PyErr_SetString(PyExc_IndexError,
105 "tuple index out of range");
106 return NULL;
107 }
108 Py_INCREF(self->ob_item[i]);
109 return self->ob_item[i];
110 }
111 else if (PySlice_Check(item)) {
112 Py_ssize_t start, stop, step, slicelen, cur, i;
113 PyObject *result;
114
115 if (PySlice_GetIndicesEx((PySliceObject *)item,
116 VISIBLE_SIZE(self), &start, &stop,
117 &step, &slicelen) < 0) {
118 return NULL;
119 }
120 if (slicelen <= 0)
121 return PyTuple_New(0);
122 result = PyTuple_New(slicelen);
123 if (result == NULL)
124 return NULL;
125 for (cur = start, i = 0; i < slicelen;
126 cur += step, i++) {
127 PyObject *v = self->ob_item[cur];
128 Py_INCREF(v);
129 PyTuple_SET_ITEM(result, i, v);
130 }
131 return result;
132 }
133 else {
134 PyErr_SetString(PyExc_TypeError,
135 "structseq index must be integer");
136 return NULL;
137 }
138}
139
140static PyObject *
Guido van Rossume82f75a2001-10-18 20:47:51 +0000141structseq_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
142{
143 PyObject *arg = NULL;
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000144 PyObject *dict = NULL;
145 PyObject *ob;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000146 PyStructSequence *res = NULL;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000147 Py_ssize_t len, min_len, max_len, i, n_unnamed_fields;
Martin v. Löwis15e62742006-02-27 16:46:16 +0000148 static char *kwlist[] = {"sequence", "dict", 0};
Guido van Rossume82f75a2001-10-18 20:47:51 +0000149
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000150 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:structseq",
151 kwlist, &arg, &dict))
Guido van Rossume82f75a2001-10-18 20:47:51 +0000152 return NULL;
153
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000154 arg = PySequence_Fast(arg, "constructor requires a sequence");
155
156 if (!arg) {
Guido van Rossume82f75a2001-10-18 20:47:51 +0000157 return NULL;
158 }
159
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000160 if (dict && !PyDict_Check(dict)) {
161 PyErr_Format(PyExc_TypeError,
162 "%.500s() takes a dict as second arg, if any",
163 type->tp_name);
164 Py_DECREF(arg);
Guido van Rossume82f75a2001-10-18 20:47:51 +0000165 return NULL;
166 }
167
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000168 len = PySequence_Fast_GET_SIZE(arg);
169 min_len = VISIBLE_SIZE_TP(type);
170 max_len = REAL_SIZE_TP(type);
Martin v. Löwisceaa77c2002-10-16 19:10:03 +0000171 n_unnamed_fields = UNNAMED_FIELDS_TP(type);
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000172
173 if (min_len != max_len) {
174 if (len < min_len) {
175 PyErr_Format(PyExc_TypeError,
Martin v. Löwis2c95cc62006-02-16 06:54:25 +0000176 "%.500s() takes an at least %zd-sequence (%zd-sequence given)",
Martin v. Löwise0e89f72006-02-16 06:59:22 +0000177 type->tp_name, min_len, len);
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000178 Py_DECREF(arg);
179 return NULL;
180 }
181
182 if (len > max_len) {
183 PyErr_Format(PyExc_TypeError,
Martin v. Löwis2c95cc62006-02-16 06:54:25 +0000184 "%.500s() takes an at most %zd-sequence (%zd-sequence given)",
Martin v. Löwise0e89f72006-02-16 06:59:22 +0000185 type->tp_name, max_len, len);
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000186 Py_DECREF(arg);
187 return NULL;
188 }
189 }
190 else {
191 if (len != min_len) {
192 PyErr_Format(PyExc_TypeError,
Martin v. Löwis2c95cc62006-02-16 06:54:25 +0000193 "%.500s() takes a %zd-sequence (%zd-sequence given)",
Martin v. Löwise0e89f72006-02-16 06:59:22 +0000194 type->tp_name, min_len, len);
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000195 Py_DECREF(arg);
196 return NULL;
197 }
198 }
199
Guido van Rossume82f75a2001-10-18 20:47:51 +0000200 res = (PyStructSequence*) PyStructSequence_New(type);
Neal Norwitz8feeabb2002-12-18 23:20:39 +0000201 if (res == NULL) {
202 return NULL;
203 }
Guido van Rossume82f75a2001-10-18 20:47:51 +0000204 for (i = 0; i < len; ++i) {
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000205 PyObject *v = PySequence_Fast_GET_ITEM(arg, i);
206 Py_INCREF(v);
207 res->ob_item[i] = v;
208 }
209 for (; i < max_len; ++i) {
210 if (dict && (ob = PyDict_GetItemString(
Martin v. Löwisceaa77c2002-10-16 19:10:03 +0000211 dict, type->tp_members[i-n_unnamed_fields].name))) {
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000212 }
213 else {
214 ob = Py_None;
215 }
216 Py_INCREF(ob);
217 res->ob_item[i] = ob;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000218 }
219
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000220 Py_DECREF(arg);
Guido van Rossume82f75a2001-10-18 20:47:51 +0000221 return (PyObject*) res;
222}
223
224static PyObject *
225make_tuple(PyStructSequence *obj)
226{
227 return structseq_slice(obj, 0, VISIBLE_SIZE(obj));
228}
229
230static PyObject *
231structseq_repr(PyStructSequence *obj)
232{
233 PyObject *tup, *str;
234 tup = make_tuple(obj);
235 str = PyObject_Repr(tup);
236 Py_DECREF(tup);
237 return str;
238}
239
240static PyObject *
241structseq_concat(PyStructSequence *obj, PyObject *b)
242{
243 PyObject *tup, *result;
244 tup = make_tuple(obj);
245 result = PySequence_Concat(tup, b);
246 Py_DECREF(tup);
247 return result;
248}
249
250static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000251structseq_repeat(PyStructSequence *obj, Py_ssize_t n)
Guido van Rossume82f75a2001-10-18 20:47:51 +0000252{
253 PyObject *tup, *result;
254 tup = make_tuple(obj);
255 result = PySequence_Repeat(tup, n);
256 Py_DECREF(tup);
257 return result;
258}
259
260static int
261structseq_contains(PyStructSequence *obj, PyObject *o)
262{
263 PyObject *tup;
264 int result;
265 tup = make_tuple(obj);
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000266 if (!tup)
267 return -1;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000268 result = PySequence_Contains(tup, o);
269 Py_DECREF(tup);
270 return result;
271}
272
273static long
274structseq_hash(PyObject *obj)
275{
276 PyObject *tup;
277 long result;
278 tup = make_tuple((PyStructSequence*) obj);
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000279 if (!tup)
280 return -1;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000281 result = PyObject_Hash(tup);
282 Py_DECREF(tup);
283 return result;
284}
285
286static PyObject *
287structseq_richcompare(PyObject *obj, PyObject *o2, int op)
288{
289 PyObject *tup, *result;
290 tup = make_tuple((PyStructSequence*) obj);
291 result = PyObject_RichCompare(tup, o2, op);
292 Py_DECREF(tup);
293 return result;
294}
295
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000296static PyObject *
297structseq_reduce(PyStructSequence* self)
298{
299 PyObject* tup;
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000300 PyObject* dict;
Michael W. Hudson70ffddf2002-03-07 15:13:40 +0000301 PyObject* result;
Martin v. Löwiseb079f12006-02-16 14:32:27 +0000302 Py_ssize_t n_fields, n_visible_fields, n_unnamed_fields;
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000303 int i;
304
305 n_fields = REAL_SIZE(self);
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000306 n_visible_fields = VISIBLE_SIZE(self);
Martin v. Löwisceaa77c2002-10-16 19:10:03 +0000307 n_unnamed_fields = UNNAMED_FIELDS(self);
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000308 tup = PyTuple_New(n_visible_fields);
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000309 if (!tup) {
310 return NULL;
311 }
312
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000313 dict = PyDict_New();
314 if (!dict) {
315 Py_DECREF(tup);
316 return NULL;
317 }
318
319 for (i = 0; i < n_visible_fields; i++) {
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000320 Py_INCREF(self->ob_item[i]);
321 PyTuple_SET_ITEM(tup, i, self->ob_item[i]);
322 }
323
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000324 for (; i < n_fields; i++) {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000325 char *n = Py_Type(self)->tp_members[i-n_unnamed_fields].name;
Martin v. Löwisceaa77c2002-10-16 19:10:03 +0000326 PyDict_SetItemString(dict, n,
Michael W. Hudsonce358e32002-03-06 17:07:49 +0000327 self->ob_item[i]);
328 }
329
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000330 result = Py_BuildValue("(O(OO))", Py_Type(self), tup, dict);
Michael W. Hudson70ffddf2002-03-07 15:13:40 +0000331
332 Py_DECREF(tup);
333 Py_DECREF(dict);
334
335 return result;
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000336}
337
Guido van Rossume82f75a2001-10-18 20:47:51 +0000338static PySequenceMethods structseq_as_sequence = {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000339 (lenfunc)structseq_length,
Guido van Rossume82f75a2001-10-18 20:47:51 +0000340 (binaryfunc)structseq_concat, /* sq_concat */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000341 (ssizeargfunc)structseq_repeat, /* sq_repeat */
342 (ssizeargfunc)structseq_item, /* sq_item */
Thomas Woutersd2cf20e2007-08-30 22:57:53 +0000343 0, /* sq_slice */
Guido van Rossume82f75a2001-10-18 20:47:51 +0000344 0, /* sq_ass_item */
345 0, /* sq_ass_slice */
346 (objobjproc)structseq_contains, /* sq_contains */
347};
348
Thomas Woutersed03b412007-08-28 21:37:11 +0000349static PyMappingMethods structseq_as_mapping = {
350 (lenfunc)structseq_length,
351 (binaryfunc)structseq_subscript,
352};
353
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000354static PyMethodDef structseq_methods[] = {
355 {"__reduce__", (PyCFunction)structseq_reduce,
356 METH_NOARGS, NULL},
357 {NULL, NULL}
358};
359
Guido van Rossume82f75a2001-10-18 20:47:51 +0000360static PyTypeObject _struct_sequence_template = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000361 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossume82f75a2001-10-18 20:47:51 +0000362 NULL, /* tp_name */
363 0, /* tp_basicsize */
364 0, /* tp_itemsize */
365 (destructor)structseq_dealloc, /* tp_dealloc */
366 0, /* tp_print */
367 0, /* tp_getattr */
368 0, /* tp_setattr */
369 0, /* tp_compare */
370 (reprfunc)structseq_repr, /* tp_repr */
371 0, /* tp_as_number */
372 &structseq_as_sequence, /* tp_as_sequence */
Thomas Woutersed03b412007-08-28 21:37:11 +0000373 &structseq_as_mapping, /* tp_as_mapping */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000374 structseq_hash, /* tp_hash */
Guido van Rossume82f75a2001-10-18 20:47:51 +0000375 0, /* tp_call */
376 0, /* tp_str */
377 0, /* tp_getattro */
378 0, /* tp_setattro */
379 0, /* tp_as_buffer */
380 Py_TPFLAGS_DEFAULT, /* tp_flags */
381 NULL, /* tp_doc */
382 0, /* tp_traverse */
383 0, /* tp_clear */
384 structseq_richcompare, /* tp_richcompare */
385 0, /* tp_weaklistoffset */
386 0, /* tp_iter */
387 0, /* tp_iternext */
Michael W. Hudson7bb466a2002-03-05 13:27:58 +0000388 structseq_methods, /* tp_methods */
Guido van Rossume82f75a2001-10-18 20:47:51 +0000389 NULL, /* tp_members */
390 0, /* tp_getset */
391 0, /* tp_base */
392 0, /* tp_dict */
393 0, /* tp_descr_get */
394 0, /* tp_descr_set */
395 0, /* tp_dictoffset */
396 0, /* tp_init */
397 0, /* tp_alloc */
398 structseq_new, /* tp_new */
399};
400
401void
402PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc)
403{
404 PyObject *dict;
405 PyMemberDef* members;
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000406 int n_members, n_unnamed_members, i, k;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000407
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000408#ifdef Py_TRACE_REFS
409 /* if the type object was chained, unchain it first
410 before overwriting its storage */
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000411 if (type->ob_base.ob_base._ob_next) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000412 _Py_ForgetReference((PyObject*)type);
413 }
414#endif
415
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000416 n_unnamed_members = 0;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000417 for (i = 0; desc->fields[i].name != NULL; ++i)
Martin v. Löwisceaa77c2002-10-16 19:10:03 +0000418 if (desc->fields[i].name == PyStructSequence_UnnamedField)
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000419 n_unnamed_members++;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000420 n_members = i;
421
422 memcpy(type, &_struct_sequence_template, sizeof(PyTypeObject));
423 type->tp_name = desc->name;
424 type->tp_doc = desc->doc;
425 type->tp_basicsize = sizeof(PyStructSequence)+
426 sizeof(PyObject*)*(n_members-1);
427 type->tp_itemsize = 0;
428
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000429 members = PyMem_NEW(PyMemberDef, n_members-n_unnamed_members+1);
Neal Norwitz8feeabb2002-12-18 23:20:39 +0000430 if (members == NULL)
431 return;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000432
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000433 for (i = k = 0; i < n_members; ++i) {
434 if (desc->fields[i].name == PyStructSequence_UnnamedField)
435 continue;
436 members[k].name = desc->fields[i].name;
437 members[k].type = T_OBJECT;
438 members[k].offset = offsetof(PyStructSequence, ob_item)
Guido van Rossume82f75a2001-10-18 20:47:51 +0000439 + i * sizeof(PyObject*);
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000440 members[k].flags = READONLY;
441 members[k].doc = desc->fields[i].doc;
442 k++;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000443 }
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000444 members[k].name = NULL;
Guido van Rossume82f75a2001-10-18 20:47:51 +0000445
446 type->tp_members = members;
447
448 if (PyType_Ready(type) < 0)
449 return;
450 Py_INCREF(type);
451
452 dict = type->tp_dict;
453 PyDict_SetItemString(dict, visible_length_key,
Christian Heimes217cfd12007-12-02 14:31:20 +0000454 PyLong_FromLong((long) desc->n_in_sequence));
Guido van Rossume82f75a2001-10-18 20:47:51 +0000455 PyDict_SetItemString(dict, real_length_key,
Christian Heimes217cfd12007-12-02 14:31:20 +0000456 PyLong_FromLong((long) n_members));
Martin v. Löwisceaa77c2002-10-16 19:10:03 +0000457 PyDict_SetItemString(dict, unnamed_fields_key,
Christian Heimes217cfd12007-12-02 14:31:20 +0000458 PyLong_FromLong((long) n_unnamed_members));
Guido van Rossume82f75a2001-10-18 20:47:51 +0000459}