blob: 14c148e31097ea26e6ea6bc8ed7cc2b99e9b2054 [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
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000035int pysqlite_row_init(pysqlite_Row* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000036{
37 PyObject* data;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000038 pysqlite_Cursor* cursor;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000039
40 self->data = 0;
41 self->description = 0;
42
43 if (!PyArg_ParseTuple(args, "OO", &cursor, &data)) {
44 return -1;
45 }
46
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000047 if (!PyObject_IsInstance((PyObject*)cursor, (PyObject*)&pysqlite_CursorType)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000048 PyErr_SetString(PyExc_TypeError, "instance of cursor required for first argument");
49 return -1;
50 }
51
52 if (!PyTuple_Check(data)) {
53 PyErr_SetString(PyExc_TypeError, "tuple required for second argument");
54 return -1;
55 }
56
57 Py_INCREF(data);
58 self->data = data;
59
60 Py_INCREF(cursor->description);
61 self->description = cursor->description;
62
63 return 0;
64}
65
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000066PyObject* pysqlite_row_subscript(pysqlite_Row* self, PyObject* idx)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000067{
68 long _idx;
69 char* key;
70 int nitems, i;
71 char* compare_key;
72
73 char* p1;
74 char* p2;
75
76 PyObject* item;
77
Georg Brandle1a0d112007-10-23 19:24:22 +000078 if (PyLong_Check(idx)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000079 _idx = PyLong_AsLong(idx);
80 item = PyTuple_GetItem(self->data, _idx);
81 Py_XINCREF(item);
82 return item;
Gerhard Häring6d214562007-08-10 18:15:11 +000083 } else if (PyUnicode_Check(idx)) {
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +000084 key = _PyUnicode_AsString(idx);
Victor Stinner86999502010-05-19 01:27:23 +000085 if (key == NULL)
86 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000087
88 nitems = PyTuple_Size(self->description);
89
90 for (i = 0; i < nitems; i++) {
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +000091 compare_key = _PyUnicode_AsString(PyTuple_GET_ITEM(PyTuple_GET_ITEM(self->description, i), 0));
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000092 if (!compare_key) {
93 return NULL;
94 }
95
96 p1 = key;
97 p2 = compare_key;
98
99 while (1) {
100 if ((*p1 == (char)0) || (*p2 == (char)0)) {
101 break;
102 }
103
104 if ((*p1 | 0x20) != (*p2 | 0x20)) {
105 break;
106 }
107
108 p1++;
109 p2++;
110 }
111
112 if ((*p1 == (char)0) && (*p2 == (char)0)) {
113 /* found item */
114 item = PyTuple_GetItem(self->data, i);
115 Py_INCREF(item);
116 return item;
117 }
118
119 }
120
121 PyErr_SetString(PyExc_IndexError, "No item with that key");
122 return NULL;
123 } else if (PySlice_Check(idx)) {
124 PyErr_SetString(PyExc_ValueError, "slices not implemented, yet");
125 return NULL;
126 } else {
127 PyErr_SetString(PyExc_IndexError, "Index must be int or string");
128 return NULL;
129 }
130}
131
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000132Py_ssize_t pysqlite_row_length(pysqlite_Row* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000133{
134 return PyTuple_GET_SIZE(self->data);
135}
136
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000137PyObject* pysqlite_row_keys(pysqlite_Row* self, PyObject* args, PyObject* kwargs)
138{
139 PyObject* list;
140 int nitems, i;
141
142 list = PyList_New(0);
143 if (!list) {
144 return NULL;
145 }
146 nitems = PyTuple_Size(self->description);
147
148 for (i = 0; i < nitems; i++) {
149 if (PyList_Append(list, PyTuple_GET_ITEM(PyTuple_GET_ITEM(self->description, i), 0)) != 0) {
150 Py_DECREF(list);
151 return NULL;
152 }
153 }
154
155 return list;
156}
157
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000158static int pysqlite_row_print(pysqlite_Row* self, FILE *fp, int flags)
159{
160 return (&PyTuple_Type)->tp_print(self->data, fp, flags);
161}
162
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000163static PyObject* pysqlite_iter(pysqlite_Row* self)
164{
165 return PyObject_GetIter(self->data);
166}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000167
Georg Brandl016cec72010-10-18 12:24:53 +0000168static Py_hash_t pysqlite_row_hash(pysqlite_Row *self)
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000169{
170 return PyObject_Hash(self->description) ^ PyObject_Hash(self->data);
171}
172
173static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid)
174{
Brian Curtindfc80e32011-08-10 20:28:54 -0500175 if (opid != Py_EQ && opid != Py_NE)
176 Py_RETURN_NOTIMPLEMENTED;
177
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000178 if (PyType_IsSubtype(Py_TYPE(_other), &pysqlite_RowType)) {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000179 pysqlite_Row *other = (pysqlite_Row *)_other;
180 PyObject *res = PyObject_RichCompare(self->description, other->description, opid);
181 if ((opid == Py_EQ && res == Py_True)
182 || (opid == Py_NE && res == Py_False)) {
183 Py_DECREF(res);
184 return PyObject_RichCompare(self->data, other->data, opid);
185 }
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000186 }
Brian Curtindfc80e32011-08-10 20:28:54 -0500187 Py_RETURN_NOTIMPLEMENTED;
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000188}
189
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000190PyMappingMethods pysqlite_row_as_mapping = {
191 /* mp_length */ (lenfunc)pysqlite_row_length,
192 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000193 /* mp_ass_subscript */ (objobjargproc)0,
194};
195
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000196static PyMethodDef pysqlite_row_methods[] = {
197 {"keys", (PyCFunction)pysqlite_row_keys, METH_NOARGS,
198 PyDoc_STR("Returns the keys of the row.")},
199 {NULL, NULL}
200};
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000201
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000202
203PyTypeObject pysqlite_RowType = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000204 PyVarObject_HEAD_INIT(NULL, 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000205 MODULE_NAME ".Row", /* tp_name */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000206 sizeof(pysqlite_Row), /* tp_basicsize */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000207 0, /* tp_itemsize */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000208 (destructor)pysqlite_row_dealloc, /* tp_dealloc */
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000209 (printfunc)pysqlite_row_print, /* tp_print */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000210 0, /* tp_getattr */
211 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +0000212 0, /* tp_reserved */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000213 0, /* tp_repr */
214 0, /* tp_as_number */
215 0, /* tp_as_sequence */
216 0, /* tp_as_mapping */
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000217 (hashfunc)pysqlite_row_hash, /* tp_hash */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000218 0, /* tp_call */
219 0, /* tp_str */
220 0, /* tp_getattro */
221 0, /* tp_setattro */
222 0, /* tp_as_buffer */
223 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
224 0, /* tp_doc */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000225 (traverseproc)0, /* tp_traverse */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000226 0, /* tp_clear */
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000227 (richcmpfunc)pysqlite_row_richcompare, /* tp_richcompare */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000228 0, /* tp_weaklistoffset */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000229 (getiterfunc)pysqlite_iter, /* tp_iter */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000230 0, /* tp_iternext */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000231 pysqlite_row_methods, /* tp_methods */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000232 0, /* tp_members */
233 0, /* tp_getset */
234 0, /* tp_base */
235 0, /* tp_dict */
236 0, /* tp_descr_get */
237 0, /* tp_descr_set */
238 0, /* tp_dictoffset */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000239 (initproc)pysqlite_row_init, /* tp_init */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000240 0, /* tp_alloc */
241 0, /* tp_new */
242 0 /* tp_free */
243};
244
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000245extern int pysqlite_row_setup_types(void)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000246{
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000247 pysqlite_RowType.tp_new = PyType_GenericNew;
248 pysqlite_RowType.tp_as_mapping = &pysqlite_row_as_mapping;
249 return PyType_Ready(&pysqlite_RowType);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000250}