blob: 3cfbeeb93bbae68054a9111e25841a68567b93f9 [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001/* row.c - an enhanced tuple for database rows
2 *
Florent Xiclunac934f322010-09-03 23:47:32 +00003 * Copyright (C) 2005-2010 Gerhard Häring <gh@ghaering.de>
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004 *
5 * This file is part of pysqlite.
6 *
7 * This software is provided 'as-is', without any express or implied
8 * warranty. In no event will the authors be held liable for any damages
9 * arising from the use of this software.
10 *
11 * Permission is granted to anyone to use this software for any purpose,
12 * including commercial applications, and to alter it and redistribute it
13 * freely, subject to the following restrictions:
14 *
15 * 1. The origin of this software must not be misrepresented; you must not
16 * claim that you wrote the original software. If you use this software
17 * in a product, an acknowledgment in the product documentation would be
18 * appreciated but is not required.
19 * 2. Altered source versions must be plainly marked as such, and must not be
20 * misrepresented as being the original software.
21 * 3. This notice may not be removed or altered from any source distribution.
22 */
23
24#include "row.h"
25#include "cursor.h"
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000026
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000027void pysqlite_row_dealloc(pysqlite_Row* self)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000028{
29 Py_XDECREF(self->data);
30 Py_XDECREF(self->description);
31
Christian Heimes90aa7642007-12-19 02:45:37 +000032 Py_TYPE(self)->tp_free((PyObject*)self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000033}
34
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030035static PyObject *
36pysqlite_row_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000037{
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030038 pysqlite_Row *self;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000039 PyObject* data;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000040 pysqlite_Cursor* cursor;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000041
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030042 assert(type != NULL && type->tp_alloc != NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000043
Serhiy Storchaka6cca5c82017-06-08 14:41:19 +030044 if (!_PyArg_NoKeywords("Row", kwargs))
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030045 return NULL;
46 if (!PyArg_ParseTuple(args, "OO", &cursor, &data))
47 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000048
Serhiy Storchaka08d230a2015-05-22 11:02:49 +030049 if (!PyObject_TypeCheck((PyObject*)cursor, &pysqlite_CursorType)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000050 PyErr_SetString(PyExc_TypeError, "instance of cursor required for first argument");
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030051 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000052 }
53
54 if (!PyTuple_Check(data)) {
55 PyErr_SetString(PyExc_TypeError, "tuple required for second argument");
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030056 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000057 }
58
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030059 self = (pysqlite_Row *) type->tp_alloc(type, 0);
60 if (self == NULL)
61 return NULL;
62
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000063 Py_INCREF(data);
64 self->data = data;
65
66 Py_INCREF(cursor->description);
67 self->description = cursor->description;
68
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +030069 return (PyObject *) self;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000070}
71
Serhiy Storchaka47a98132014-05-28 12:58:34 +030072PyObject* pysqlite_row_item(pysqlite_Row* self, Py_ssize_t idx)
73{
74 PyObject* item = PyTuple_GetItem(self->data, idx);
75 Py_XINCREF(item);
76 return item;
77}
78
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000079PyObject* pysqlite_row_subscript(pysqlite_Row* self, PyObject* idx)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000080{
Serhiy Storchaka47a98132014-05-28 12:58:34 +030081 Py_ssize_t _idx;
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +020082 const char *key;
Victor Stinner83e30bf2013-11-18 01:27:30 +010083 Py_ssize_t nitems, i;
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +020084 const char *compare_key;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000085
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +020086 const char *p1;
87 const char *p2;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000088
89 PyObject* item;
90
Georg Brandle1a0d112007-10-23 19:24:22 +000091 if (PyLong_Check(idx)) {
Serhiy Storchaka47a98132014-05-28 12:58:34 +030092 _idx = PyNumber_AsSsize_t(idx, PyExc_IndexError);
93 if (_idx == -1 && PyErr_Occurred())
94 return NULL;
95 if (_idx < 0)
96 _idx += PyTuple_GET_SIZE(self->data);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000097 item = PyTuple_GetItem(self->data, _idx);
98 Py_XINCREF(item);
99 return item;
Gerhard Häring6d214562007-08-10 18:15:11 +0000100 } else if (PyUnicode_Check(idx)) {
Serhiy Storchaka06515832016-11-20 09:13:07 +0200101 key = PyUnicode_AsUTF8(idx);
Victor Stinner86999502010-05-19 01:27:23 +0000102 if (key == NULL)
103 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000104
105 nitems = PyTuple_Size(self->description);
106
107 for (i = 0; i < nitems; i++) {
Victor Stinner83e30bf2013-11-18 01:27:30 +0100108 PyObject *obj;
109 obj = PyTuple_GET_ITEM(self->description, i);
110 obj = PyTuple_GET_ITEM(obj, 0);
Serhiy Storchaka06515832016-11-20 09:13:07 +0200111 compare_key = PyUnicode_AsUTF8(obj);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000112 if (!compare_key) {
113 return NULL;
114 }
115
116 p1 = key;
117 p2 = compare_key;
118
119 while (1) {
120 if ((*p1 == (char)0) || (*p2 == (char)0)) {
121 break;
122 }
123
124 if ((*p1 | 0x20) != (*p2 | 0x20)) {
125 break;
126 }
127
128 p1++;
129 p2++;
130 }
131
132 if ((*p1 == (char)0) && (*p2 == (char)0)) {
133 /* found item */
134 item = PyTuple_GetItem(self->data, i);
135 Py_INCREF(item);
136 return item;
137 }
138
139 }
140
141 PyErr_SetString(PyExc_IndexError, "No item with that key");
142 return NULL;
Victor Stinner83e30bf2013-11-18 01:27:30 +0100143 }
144 else if (PySlice_Check(idx)) {
Serhiy Storchaka72e731c2015-03-31 13:33:11 +0300145 return PyObject_GetItem(self->data, idx);
Victor Stinner83e30bf2013-11-18 01:27:30 +0100146 }
147 else {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000148 PyErr_SetString(PyExc_IndexError, "Index must be int or string");
149 return NULL;
150 }
151}
152
Serhiy Storchakad4f9cf52018-11-27 19:34:35 +0200153static Py_ssize_t
154pysqlite_row_length(pysqlite_Row* self)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000155{
156 return PyTuple_GET_SIZE(self->data);
157}
158
Siddhesh Poyarekar55edd0c2018-04-30 00:29:33 +0530159PyObject* pysqlite_row_keys(pysqlite_Row* self, PyObject *Py_UNUSED(ignored))
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000160{
161 PyObject* list;
Serhiy Storchaka26861b02015-02-16 20:52:17 +0200162 Py_ssize_t nitems, i;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000163
164 list = PyList_New(0);
165 if (!list) {
166 return NULL;
167 }
168 nitems = PyTuple_Size(self->description);
169
170 for (i = 0; i < nitems; i++) {
171 if (PyList_Append(list, PyTuple_GET_ITEM(PyTuple_GET_ITEM(self->description, i), 0)) != 0) {
172 Py_DECREF(list);
173 return NULL;
174 }
175 }
176
177 return list;
178}
179
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000180static PyObject* pysqlite_iter(pysqlite_Row* self)
181{
182 return PyObject_GetIter(self->data);
183}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000184
Georg Brandl016cec72010-10-18 12:24:53 +0000185static Py_hash_t pysqlite_row_hash(pysqlite_Row *self)
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000186{
187 return PyObject_Hash(self->description) ^ PyObject_Hash(self->data);
188}
189
190static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid)
191{
Brian Curtindfc80e32011-08-10 20:28:54 -0500192 if (opid != Py_EQ && opid != Py_NE)
193 Py_RETURN_NOTIMPLEMENTED;
194
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000195 if (PyType_IsSubtype(Py_TYPE(_other), &pysqlite_RowType)) {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000196 pysqlite_Row *other = (pysqlite_Row *)_other;
197 PyObject *res = PyObject_RichCompare(self->description, other->description, opid);
198 if ((opid == Py_EQ && res == Py_True)
199 || (opid == Py_NE && res == Py_False)) {
200 Py_DECREF(res);
201 return PyObject_RichCompare(self->data, other->data, opid);
202 }
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000203 }
Brian Curtindfc80e32011-08-10 20:28:54 -0500204 Py_RETURN_NOTIMPLEMENTED;
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000205}
206
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000207PyMappingMethods pysqlite_row_as_mapping = {
208 /* mp_length */ (lenfunc)pysqlite_row_length,
209 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000210 /* mp_ass_subscript */ (objobjargproc)0,
211};
212
Serhiy Storchaka47a98132014-05-28 12:58:34 +0300213static PySequenceMethods pysqlite_row_as_sequence = {
214 /* sq_length */ (lenfunc)pysqlite_row_length,
215 /* sq_concat */ 0,
216 /* sq_repeat */ 0,
217 /* sq_item */ (ssizeargfunc)pysqlite_row_item,
218};
219
220
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000221static PyMethodDef pysqlite_row_methods[] = {
222 {"keys", (PyCFunction)pysqlite_row_keys, METH_NOARGS,
223 PyDoc_STR("Returns the keys of the row.")},
224 {NULL, NULL}
225};
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000226
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000227
228PyTypeObject pysqlite_RowType = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000229 PyVarObject_HEAD_INIT(NULL, 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000230 MODULE_NAME ".Row", /* tp_name */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000231 sizeof(pysqlite_Row), /* tp_basicsize */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000232 0, /* tp_itemsize */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000233 (destructor)pysqlite_row_dealloc, /* tp_dealloc */
jdemeyer66ecefc2018-06-23 14:08:43 +0200234 0, /* tp_print */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000235 0, /* tp_getattr */
236 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +0000237 0, /* tp_reserved */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000238 0, /* tp_repr */
239 0, /* tp_as_number */
240 0, /* tp_as_sequence */
241 0, /* tp_as_mapping */
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000242 (hashfunc)pysqlite_row_hash, /* tp_hash */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000243 0, /* tp_call */
244 0, /* tp_str */
245 0, /* tp_getattro */
246 0, /* tp_setattro */
247 0, /* tp_as_buffer */
248 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
249 0, /* tp_doc */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000250 (traverseproc)0, /* tp_traverse */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000251 0, /* tp_clear */
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000252 (richcmpfunc)pysqlite_row_richcompare, /* tp_richcompare */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000253 0, /* tp_weaklistoffset */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000254 (getiterfunc)pysqlite_iter, /* tp_iter */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000255 0, /* tp_iternext */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000256 pysqlite_row_methods, /* tp_methods */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000257 0, /* tp_members */
258 0, /* tp_getset */
259 0, /* tp_base */
260 0, /* tp_dict */
261 0, /* tp_descr_get */
262 0, /* tp_descr_set */
263 0, /* tp_dictoffset */
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +0300264 0, /* tp_init */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000265 0, /* tp_alloc */
266 0, /* tp_new */
267 0 /* tp_free */
268};
269
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000270extern int pysqlite_row_setup_types(void)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000271{
Serhiy Storchaka3d4b2d42014-08-06 17:50:39 +0300272 pysqlite_RowType.tp_new = pysqlite_row_new;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000273 pysqlite_RowType.tp_as_mapping = &pysqlite_row_as_mapping;
Serhiy Storchaka47a98132014-05-28 12:58:34 +0300274 pysqlite_RowType.tp_as_sequence = &pysqlite_row_as_sequence;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000275 return PyType_Ready(&pysqlite_RowType);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000276}