blob: 76665808f2d8b99efbf08e5de44b82493c761458 [file] [log] [blame]
Anthony Baxterc51ee692006-04-01 00:57:31 +00001/* connection.c - the connection type
2 *
Gerhard Häring3bbb6722010-03-05 09:12:37 +00003 * Copyright (C) 2004-2010 Gerhard Häring <gh@ghaering.de>
Anthony Baxterc51ee692006-04-01 00:57:31 +00004 *
5 * This file is part of pysqlite.
Anthony Baxter72289a62006-04-04 06:29:05 +00006 *
Anthony Baxterc51ee692006-04-01 00:57:31 +00007 * 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 "cache.h"
25#include "module.h"
26#include "connection.h"
27#include "statement.h"
28#include "cursor.h"
29#include "prepare_protocol.h"
30#include "util.h"
Anthony Baxter72289a62006-04-04 06:29:05 +000031#include "sqlitecompat.h"
32
Anthony Baxterc51ee692006-04-01 00:57:31 +000033#include "pythread.h"
34
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000035#define ACTION_FINALIZE 1
36#define ACTION_RESET 2
37
Gerhard Häring3bbb6722010-03-05 09:12:37 +000038#if SQLITE_VERSION_NUMBER >= 3003008
39#ifndef SQLITE_OMIT_LOAD_EXTENSION
40#define HAVE_LOAD_EXTENSION
41#endif
42#endif
43
Gerhard Häring0741a602007-01-14 01:43:50 +000044static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level);
Gerhard Häring3bbb6722010-03-05 09:12:37 +000045static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self);
Anthony Baxterc51ee692006-04-01 00:57:31 +000046
Gerhard Häringb2e88162006-06-14 22:28:37 +000047
Gerhard Häring6e1afcf2008-09-12 18:58:57 +000048static void _sqlite3_result_error(sqlite3_context* ctx, const char* errmsg, int len)
Gerhard Häringb2e88162006-06-14 22:28:37 +000049{
50 /* in older SQLite versions, calling sqlite3_result_error in callbacks
51 * triggers a bug in SQLite that leads either to irritating results or
52 * segfaults, depending on the SQLite version */
53#if SQLITE_VERSION_NUMBER >= 3003003
54 sqlite3_result_error(ctx, errmsg, len);
Neal Norwitzfe7d0c32006-06-15 04:54:29 +000055#else
Gerhard Häring0741a602007-01-14 01:43:50 +000056 PyErr_SetString(pysqlite_OperationalError, errmsg);
Gerhard Häringb2e88162006-06-14 22:28:37 +000057#endif
58}
59
Gerhard Häring0741a602007-01-14 01:43:50 +000060int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +000061{
62 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
63
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000064 PyObject* database;
Anthony Baxterc51ee692006-04-01 00:57:31 +000065 int detect_types = 0;
66 PyObject* isolation_level = NULL;
67 PyObject* factory = NULL;
68 int check_same_thread = 1;
69 int cached_statements = 100;
70 double timeout = 5.0;
71 int rc;
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000072 PyObject* class_attr = NULL;
73 PyObject* class_attr_str = NULL;
74 int is_apsw_connection = 0;
75 PyObject* database_utf8;
Anthony Baxterc51ee692006-04-01 00:57:31 +000076
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000077 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|diOiOi", kwlist,
Anthony Baxterc51ee692006-04-01 00:57:31 +000078 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
79 {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000080 return -1;
Anthony Baxterc51ee692006-04-01 00:57:31 +000081 }
82
Gerhard Häring3bbb6722010-03-05 09:12:37 +000083 self->initialized = 1;
84
Anthony Baxterc51ee692006-04-01 00:57:31 +000085 self->begin_statement = NULL;
86
87 self->statement_cache = NULL;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000088 self->statements = NULL;
Gerhard Häring3bbb6722010-03-05 09:12:37 +000089 self->cursors = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +000090
91 Py_INCREF(Py_None);
92 self->row_factory = Py_None;
93
94 Py_INCREF(&PyUnicode_Type);
95 self->text_factory = (PyObject*)&PyUnicode_Type;
96
Gregory P. Smithdd96db62008-06-09 04:58:54 +000097 if (PyString_Check(database) || PyUnicode_Check(database)) {
98 if (PyString_Check(database)) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000099 database_utf8 = database;
100 Py_INCREF(database_utf8);
101 } else {
102 database_utf8 = PyUnicode_AsUTF8String(database);
103 if (!database_utf8) {
104 return -1;
105 }
106 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000107
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000108 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000109 rc = sqlite3_open(PyString_AsString(database_utf8), &self->db);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000110 Py_END_ALLOW_THREADS
111
112 Py_DECREF(database_utf8);
113
114 if (rc != SQLITE_OK) {
115 _pysqlite_seterror(self->db, NULL);
116 return -1;
117 }
118 } else {
119 /* Create a pysqlite connection from a APSW connection */
120 class_attr = PyObject_GetAttrString(database, "__class__");
121 if (class_attr) {
122 class_attr_str = PyObject_Str(class_attr);
123 if (class_attr_str) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000124 if (strcmp(PyString_AsString(class_attr_str), "<type 'apsw.Connection'>") == 0) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000125 /* In the APSW Connection object, the first entry after
126 * PyObject_HEAD is the sqlite3* we want to get hold of.
127 * Luckily, this is the same layout as we have in our
128 * pysqlite_Connection */
129 self->db = ((pysqlite_Connection*)database)->db;
130
131 Py_INCREF(database);
132 self->apsw_connection = database;
133 is_apsw_connection = 1;
134 }
135 }
136 }
137 Py_XDECREF(class_attr_str);
138 Py_XDECREF(class_attr);
139
140 if (!is_apsw_connection) {
141 PyErr_SetString(PyExc_ValueError, "database parameter must be string or APSW Connection object");
142 return -1;
143 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000144 }
145
146 if (!isolation_level) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000147 isolation_level = PyString_FromString("");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000148 if (!isolation_level) {
149 return -1;
150 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000151 } else {
152 Py_INCREF(isolation_level);
153 }
154 self->isolation_level = NULL;
Gerhard Häring0741a602007-01-14 01:43:50 +0000155 pysqlite_connection_set_isolation_level(self, isolation_level);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000156 Py_DECREF(isolation_level);
157
Gerhard Häring0741a602007-01-14 01:43:50 +0000158 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000159 if (PyErr_Occurred()) {
160 return -1;
161 }
162
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000163 self->created_statements = 0;
164 self->created_cursors = 0;
165
166 /* Create lists of weak references to statements/cursors */
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000167 self->statements = PyList_New(0);
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000168 self->cursors = PyList_New(0);
169 if (!self->statements || !self->cursors) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000170 return -1;
171 }
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000172
Anthony Baxterc51ee692006-04-01 00:57:31 +0000173 /* By default, the Cache class INCREFs the factory in its initializer, and
174 * decrefs it in its deallocator method. Since this would create a circular
175 * reference here, we're breaking it by decrementing self, and telling the
176 * cache class to not decref the factory (self) in its deallocator.
177 */
178 self->statement_cache->decref_factory = 0;
179 Py_DECREF(self);
180
181 self->inTransaction = 0;
182 self->detect_types = detect_types;
183 self->timeout = timeout;
184 (void)sqlite3_busy_timeout(self->db, (int)(timeout*1000));
Georg Brandld3eaa742009-04-05 11:07:14 +0000185#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000186 self->thread_ident = PyThread_get_thread_ident();
Georg Brandld3eaa742009-04-05 11:07:14 +0000187#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000188 self->check_same_thread = check_same_thread;
189
190 self->function_pinboard = PyDict_New();
Anthony Baxter72289a62006-04-04 06:29:05 +0000191 if (!self->function_pinboard) {
192 return -1;
193 }
194
195 self->collations = PyDict_New();
196 if (!self->collations) {
197 return -1;
198 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000199
Gerhard Häring0741a602007-01-14 01:43:50 +0000200 self->Warning = pysqlite_Warning;
201 self->Error = pysqlite_Error;
202 self->InterfaceError = pysqlite_InterfaceError;
203 self->DatabaseError = pysqlite_DatabaseError;
204 self->DataError = pysqlite_DataError;
205 self->OperationalError = pysqlite_OperationalError;
206 self->IntegrityError = pysqlite_IntegrityError;
207 self->InternalError = pysqlite_InternalError;
208 self->ProgrammingError = pysqlite_ProgrammingError;
209 self->NotSupportedError = pysqlite_NotSupportedError;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000210
211 return 0;
212}
213
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000214/* Empty the entire statement cache of this connection */
Gerhard Häring0741a602007-01-14 01:43:50 +0000215void pysqlite_flush_statement_cache(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000216{
Gerhard Häring0741a602007-01-14 01:43:50 +0000217 pysqlite_Node* node;
218 pysqlite_Statement* statement;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000219
220 node = self->statement_cache->first;
221
222 while (node) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000223 statement = (pysqlite_Statement*)(node->data);
224 (void)pysqlite_statement_finalize(statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000225 node = node->next;
226 }
227
228 Py_DECREF(self->statement_cache);
Gerhard Häring0741a602007-01-14 01:43:50 +0000229 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O", self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000230 Py_DECREF(self);
231 self->statement_cache->decref_factory = 0;
232}
233
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000234/* action in (ACTION_RESET, ACTION_FINALIZE) */
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000235void pysqlite_do_all_statements(pysqlite_Connection* self, int action, int reset_cursors)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000236{
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000237 int i;
238 PyObject* weakref;
239 PyObject* statement;
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000240 pysqlite_Cursor* cursor;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000241
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000242 for (i = 0; i < PyList_Size(self->statements); i++) {
243 weakref = PyList_GetItem(self->statements, i);
244 statement = PyWeakref_GetObject(weakref);
245 if (statement != Py_None) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000246 if (action == ACTION_RESET) {
247 (void)pysqlite_statement_reset((pysqlite_Statement*)statement);
248 } else {
249 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement);
250 }
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000251 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000252 }
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000253
254 if (reset_cursors) {
255 for (i = 0; i < PyList_Size(self->cursors); i++) {
256 weakref = PyList_GetItem(self->cursors, i);
257 cursor = (pysqlite_Cursor*)PyWeakref_GetObject(weakref);
258 if ((PyObject*)cursor != Py_None) {
259 cursor->reset = 1;
260 }
261 }
262 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000263}
264
Gerhard Häring0741a602007-01-14 01:43:50 +0000265void pysqlite_connection_dealloc(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000266{
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000267 PyObject* ret = NULL;
268
Anthony Baxterc51ee692006-04-01 00:57:31 +0000269 Py_XDECREF(self->statement_cache);
270
271 /* Clean up if user has not called .close() explicitly. */
272 if (self->db) {
273 Py_BEGIN_ALLOW_THREADS
274 sqlite3_close(self->db);
275 Py_END_ALLOW_THREADS
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000276 } else if (self->apsw_connection) {
277 ret = PyObject_CallMethod(self->apsw_connection, "close", "");
278 Py_XDECREF(ret);
279 Py_XDECREF(self->apsw_connection);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000280 }
281
282 if (self->begin_statement) {
283 PyMem_Free(self->begin_statement);
284 }
285 Py_XDECREF(self->isolation_level);
286 Py_XDECREF(self->function_pinboard);
287 Py_XDECREF(self->row_factory);
288 Py_XDECREF(self->text_factory);
Anthony Baxter72289a62006-04-04 06:29:05 +0000289 Py_XDECREF(self->collations);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000290 Py_XDECREF(self->statements);
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000291 Py_XDECREF(self->cursors);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000292
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000293 self->ob_type->tp_free((PyObject*)self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000294}
295
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000296/*
297 * Registers a cursor with the connection.
298 *
299 * 0 => error; 1 => ok
300 */
301int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor)
302{
303 PyObject* weakref;
304
305 weakref = PyWeakref_NewRef((PyObject*)cursor, NULL);
306 if (!weakref) {
307 goto error;
308 }
309
310 if (PyList_Append(connection->cursors, weakref) != 0) {
311 Py_CLEAR(weakref);
312 goto error;
313 }
314
315 Py_DECREF(weakref);
316
317 return 1;
318error:
319 return 0;
320}
321
Gerhard Häring0741a602007-01-14 01:43:50 +0000322PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000323{
324 static char *kwlist[] = {"factory", NULL, NULL};
325 PyObject* factory = NULL;
326 PyObject* cursor;
327
Anthony Baxterc51ee692006-04-01 00:57:31 +0000328 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", kwlist,
329 &factory)) {
330 return NULL;
331 }
332
Gerhard Häring0741a602007-01-14 01:43:50 +0000333 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000334 return NULL;
335 }
336
337 if (factory == NULL) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000338 factory = (PyObject*)&pysqlite_CursorType;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000339 }
340
341 cursor = PyObject_CallFunction(factory, "O", self);
342
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000343 _pysqlite_drop_unused_cursor_references(self);
344
Anthony Baxterc51ee692006-04-01 00:57:31 +0000345 if (cursor && self->row_factory != Py_None) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000346 Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000347 Py_INCREF(self->row_factory);
Gerhard Häring0741a602007-01-14 01:43:50 +0000348 ((pysqlite_Cursor*)cursor)->row_factory = self->row_factory;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000349 }
350
351 return cursor;
352}
353
Gerhard Häring0741a602007-01-14 01:43:50 +0000354PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000355{
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000356 PyObject* ret;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000357 int rc;
358
Gerhard Häring0741a602007-01-14 01:43:50 +0000359 if (!pysqlite_check_thread(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000360 return NULL;
361 }
362
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000363 pysqlite_do_all_statements(self, ACTION_FINALIZE, 1);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000364
365 if (self->db) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000366 if (self->apsw_connection) {
367 ret = PyObject_CallMethod(self->apsw_connection, "close", "");
368 Py_XDECREF(ret);
369 Py_XDECREF(self->apsw_connection);
370 self->apsw_connection = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000371 self->db = NULL;
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000372 } else {
373 Py_BEGIN_ALLOW_THREADS
374 rc = sqlite3_close(self->db);
375 Py_END_ALLOW_THREADS
376
377 if (rc != SQLITE_OK) {
378 _pysqlite_seterror(self->db, NULL);
379 return NULL;
380 } else {
381 self->db = NULL;
382 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000383 }
384 }
385
386 Py_INCREF(Py_None);
387 return Py_None;
388}
389
390/*
391 * Checks if a connection object is usable (i. e. not closed).
392 *
393 * 0 => error; 1 => ok
394 */
Gerhard Häring0741a602007-01-14 01:43:50 +0000395int pysqlite_check_connection(pysqlite_Connection* con)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000396{
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000397 if (!con->initialized) {
398 PyErr_SetString(pysqlite_ProgrammingError, "Base Connection.__init__ not called.");
399 return 0;
400 }
401
Anthony Baxterc51ee692006-04-01 00:57:31 +0000402 if (!con->db) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000403 PyErr_SetString(pysqlite_ProgrammingError, "Cannot operate on a closed database.");
Anthony Baxterc51ee692006-04-01 00:57:31 +0000404 return 0;
405 } else {
406 return 1;
407 }
408}
409
Gerhard Häring0741a602007-01-14 01:43:50 +0000410PyObject* _pysqlite_connection_begin(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000411{
412 int rc;
413 const char* tail;
414 sqlite3_stmt* statement;
415
416 Py_BEGIN_ALLOW_THREADS
417 rc = sqlite3_prepare(self->db, self->begin_statement, -1, &statement, &tail);
418 Py_END_ALLOW_THREADS
419
420 if (rc != SQLITE_OK) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000421 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000422 goto error;
423 }
424
Gerhard Häring6e1afcf2008-09-12 18:58:57 +0000425 rc = pysqlite_step(statement, self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000426 if (rc == SQLITE_DONE) {
427 self->inTransaction = 1;
428 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000429 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000430 }
431
432 Py_BEGIN_ALLOW_THREADS
433 rc = sqlite3_finalize(statement);
434 Py_END_ALLOW_THREADS
435
436 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000437 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000438 }
439
440error:
441 if (PyErr_Occurred()) {
442 return NULL;
443 } else {
444 Py_INCREF(Py_None);
445 return Py_None;
446 }
447}
448
Gerhard Häring0741a602007-01-14 01:43:50 +0000449PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000450{
451 int rc;
452 const char* tail;
453 sqlite3_stmt* statement;
454
Gerhard Häring0741a602007-01-14 01:43:50 +0000455 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000456 return NULL;
457 }
458
459 if (self->inTransaction) {
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000460 pysqlite_do_all_statements(self, ACTION_RESET, 0);
461
Anthony Baxterc51ee692006-04-01 00:57:31 +0000462 Py_BEGIN_ALLOW_THREADS
463 rc = sqlite3_prepare(self->db, "COMMIT", -1, &statement, &tail);
464 Py_END_ALLOW_THREADS
465 if (rc != SQLITE_OK) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000466 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000467 goto error;
468 }
469
Gerhard Häring6e1afcf2008-09-12 18:58:57 +0000470 rc = pysqlite_step(statement, self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000471 if (rc == SQLITE_DONE) {
472 self->inTransaction = 0;
473 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000474 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000475 }
476
477 Py_BEGIN_ALLOW_THREADS
478 rc = sqlite3_finalize(statement);
479 Py_END_ALLOW_THREADS
480 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000481 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000482 }
483
484 }
485
486error:
487 if (PyErr_Occurred()) {
488 return NULL;
489 } else {
490 Py_INCREF(Py_None);
491 return Py_None;
492 }
493}
494
Gerhard Häring0741a602007-01-14 01:43:50 +0000495PyObject* pysqlite_connection_rollback(pysqlite_Connection* self, PyObject* args)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000496{
497 int rc;
498 const char* tail;
499 sqlite3_stmt* statement;
500
Gerhard Häring0741a602007-01-14 01:43:50 +0000501 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000502 return NULL;
503 }
504
505 if (self->inTransaction) {
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000506 pysqlite_do_all_statements(self, ACTION_RESET, 1);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000507
508 Py_BEGIN_ALLOW_THREADS
509 rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
510 Py_END_ALLOW_THREADS
511 if (rc != SQLITE_OK) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000512 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000513 goto error;
514 }
515
Gerhard Häring6e1afcf2008-09-12 18:58:57 +0000516 rc = pysqlite_step(statement, self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000517 if (rc == SQLITE_DONE) {
518 self->inTransaction = 0;
519 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000520 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000521 }
522
523 Py_BEGIN_ALLOW_THREADS
524 rc = sqlite3_finalize(statement);
525 Py_END_ALLOW_THREADS
526 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000527 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000528 }
529
530 }
531
532error:
533 if (PyErr_Occurred()) {
534 return NULL;
535 } else {
536 Py_INCREF(Py_None);
537 return Py_None;
538 }
539}
540
Gerhard Häring0741a602007-01-14 01:43:50 +0000541void _pysqlite_set_result(sqlite3_context* context, PyObject* py_val)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000542{
543 long longval;
544 const char* buffer;
Neal Norwitz95f0e4c2006-04-01 09:08:06 +0000545 Py_ssize_t buflen;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000546 PyObject* stringval;
547
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000548 if ((!py_val) || PyErr_Occurred()) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000549 sqlite3_result_null(context);
550 } else if (py_val == Py_None) {
551 sqlite3_result_null(context);
552 } else if (PyInt_Check(py_val)) {
553 longval = PyInt_AsLong(py_val);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000554 sqlite3_result_int64(context, (PY_LONG_LONG)longval);
555 } else if (PyFloat_Check(py_val)) {
556 sqlite3_result_double(context, PyFloat_AsDouble(py_val));
557 } else if (PyBuffer_Check(py_val)) {
558 if (PyObject_AsCharBuffer(py_val, &buffer, &buflen) != 0) {
559 PyErr_SetString(PyExc_ValueError, "could not convert BLOB to buffer");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000560 } else {
561 sqlite3_result_blob(context, buffer, buflen, SQLITE_TRANSIENT);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000562 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000563 } else if (PyString_Check(py_val)) {
564 sqlite3_result_text(context, PyString_AsString(py_val), -1, SQLITE_TRANSIENT);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000565 } else if (PyUnicode_Check(py_val)) {
566 stringval = PyUnicode_AsUTF8String(py_val);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000567 if (stringval) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000568 sqlite3_result_text(context, PyString_AsString(stringval), -1, SQLITE_TRANSIENT);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000569 Py_DECREF(stringval);
570 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000571 } else {
572 /* TODO: raise error */
573 }
574}
575
Gerhard Häring0741a602007-01-14 01:43:50 +0000576PyObject* _pysqlite_build_py_params(sqlite3_context *context, int argc, sqlite3_value** argv)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000577{
578 PyObject* args;
579 int i;
580 sqlite3_value* cur_value;
581 PyObject* cur_py_value;
582 const char* val_str;
583 PY_LONG_LONG val_int;
Neal Norwitz95f0e4c2006-04-01 09:08:06 +0000584 Py_ssize_t buflen;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000585 void* raw_buffer;
586
587 args = PyTuple_New(argc);
Anthony Baxter72289a62006-04-04 06:29:05 +0000588 if (!args) {
589 return NULL;
590 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000591
592 for (i = 0; i < argc; i++) {
593 cur_value = argv[i];
594 switch (sqlite3_value_type(argv[i])) {
595 case SQLITE_INTEGER:
596 val_int = sqlite3_value_int64(cur_value);
597 cur_py_value = PyInt_FromLong((long)val_int);
598 break;
599 case SQLITE_FLOAT:
600 cur_py_value = PyFloat_FromDouble(sqlite3_value_double(cur_value));
601 break;
602 case SQLITE_TEXT:
603 val_str = (const char*)sqlite3_value_text(cur_value);
604 cur_py_value = PyUnicode_DecodeUTF8(val_str, strlen(val_str), NULL);
605 /* TODO: have a way to show errors here */
606 if (!cur_py_value) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000607 PyErr_Clear();
Anthony Baxterc51ee692006-04-01 00:57:31 +0000608 Py_INCREF(Py_None);
609 cur_py_value = Py_None;
610 }
611 break;
612 case SQLITE_BLOB:
613 buflen = sqlite3_value_bytes(cur_value);
614 cur_py_value = PyBuffer_New(buflen);
615 if (!cur_py_value) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000616 break;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000617 }
618 if (PyObject_AsWriteBuffer(cur_py_value, &raw_buffer, &buflen)) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000619 Py_DECREF(cur_py_value);
620 cur_py_value = NULL;
621 break;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000622 }
623 memcpy(raw_buffer, sqlite3_value_blob(cur_value), buflen);
624 break;
625 case SQLITE_NULL:
626 default:
627 Py_INCREF(Py_None);
628 cur_py_value = Py_None;
629 }
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000630
631 if (!cur_py_value) {
632 Py_DECREF(args);
633 return NULL;
634 }
635
Anthony Baxterc51ee692006-04-01 00:57:31 +0000636 PyTuple_SetItem(args, i, cur_py_value);
637
638 }
639
640 return args;
641}
642
Gerhard Häring0741a602007-01-14 01:43:50 +0000643void _pysqlite_func_callback(sqlite3_context* context, int argc, sqlite3_value** argv)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000644{
645 PyObject* args;
646 PyObject* py_func;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000647 PyObject* py_retval = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000648
Georg Brandld3eaa742009-04-05 11:07:14 +0000649#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000650 PyGILState_STATE threadstate;
651
652 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000653#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000654
655 py_func = (PyObject*)sqlite3_user_data(context);
656
Gerhard Häring0741a602007-01-14 01:43:50 +0000657 args = _pysqlite_build_py_params(context, argc, argv);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000658 if (args) {
659 py_retval = PyObject_CallObject(py_func, args);
660 Py_DECREF(args);
661 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000662
Gerhard Häring1541ef02006-06-13 22:24:47 +0000663 if (py_retval) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000664 _pysqlite_set_result(context, py_retval);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000665 Py_DECREF(py_retval);
666 } else {
667 if (_enable_callback_tracebacks) {
668 PyErr_Print();
669 } else {
670 PyErr_Clear();
671 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000672 _sqlite3_result_error(context, "user-defined function raised exception", -1);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000673 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000674
Georg Brandld3eaa742009-04-05 11:07:14 +0000675#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000676 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000677#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000678}
679
Gerhard Häring0741a602007-01-14 01:43:50 +0000680static void _pysqlite_step_callback(sqlite3_context *context, int argc, sqlite3_value** params)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000681{
682 PyObject* args;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000683 PyObject* function_result = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000684 PyObject* aggregate_class;
685 PyObject** aggregate_instance;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000686 PyObject* stepmethod = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000687
Georg Brandld3eaa742009-04-05 11:07:14 +0000688#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000689 PyGILState_STATE threadstate;
690
691 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000692#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000693
694 aggregate_class = (PyObject*)sqlite3_user_data(context);
695
696 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
697
698 if (*aggregate_instance == 0) {
699 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
700
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000701 if (PyErr_Occurred()) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000702 *aggregate_instance = 0;
Gerhard Häring1541ef02006-06-13 22:24:47 +0000703 if (_enable_callback_tracebacks) {
704 PyErr_Print();
705 } else {
706 PyErr_Clear();
707 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000708 _sqlite3_result_error(context, "user-defined aggregate's '__init__' method raised error", -1);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000709 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000710 }
711 }
712
713 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000714 if (!stepmethod) {
715 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000716 }
717
Gerhard Häring0741a602007-01-14 01:43:50 +0000718 args = _pysqlite_build_py_params(context, argc, params);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000719 if (!args) {
720 goto error;
721 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000722
723 function_result = PyObject_CallObject(stepmethod, args);
724 Py_DECREF(args);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000725
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000726 if (!function_result) {
Gerhard Häring1541ef02006-06-13 22:24:47 +0000727 if (_enable_callback_tracebacks) {
728 PyErr_Print();
729 } else {
730 PyErr_Clear();
731 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000732 _sqlite3_result_error(context, "user-defined aggregate's 'step' method raised error", -1);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000733 }
734
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000735error:
736 Py_XDECREF(stepmethod);
737 Py_XDECREF(function_result);
738
Georg Brandld3eaa742009-04-05 11:07:14 +0000739#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000740 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000741#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000742}
743
Gerhard Häring0741a602007-01-14 01:43:50 +0000744void _pysqlite_final_callback(sqlite3_context* context)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000745{
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000746 PyObject* function_result = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000747 PyObject** aggregate_instance;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000748
Georg Brandld3eaa742009-04-05 11:07:14 +0000749#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000750 PyGILState_STATE threadstate;
751
752 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000753#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000754
Anthony Baxterc51ee692006-04-01 00:57:31 +0000755 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
756 if (!*aggregate_instance) {
757 /* this branch is executed if there was an exception in the aggregate's
758 * __init__ */
759
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000760 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000761 }
762
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000763 function_result = PyObject_CallMethod(*aggregate_instance, "finalize", "");
764 if (!function_result) {
Gerhard Häring1541ef02006-06-13 22:24:47 +0000765 if (_enable_callback_tracebacks) {
766 PyErr_Print();
767 } else {
768 PyErr_Clear();
769 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000770 _sqlite3_result_error(context, "user-defined aggregate's 'finalize' method raised error", -1);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000771 } else {
Gerhard Häring0741a602007-01-14 01:43:50 +0000772 _pysqlite_set_result(context, function_result);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000773 }
774
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000775error:
Anthony Baxterc51ee692006-04-01 00:57:31 +0000776 Py_XDECREF(*aggregate_instance);
777 Py_XDECREF(function_result);
778
Georg Brandld3eaa742009-04-05 11:07:14 +0000779#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000780 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000781#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000782}
783
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000784static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000785{
786 PyObject* new_list;
787 PyObject* weakref;
788 int i;
789
790 /* we only need to do this once in a while */
791 if (self->created_statements++ < 200) {
792 return;
793 }
794
795 self->created_statements = 0;
796
797 new_list = PyList_New(0);
798 if (!new_list) {
799 return;
800 }
801
802 for (i = 0; i < PyList_Size(self->statements); i++) {
803 weakref = PyList_GetItem(self->statements, i);
Gerhard Häringecd20102006-06-19 21:17:35 +0000804 if (PyWeakref_GetObject(weakref) != Py_None) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000805 if (PyList_Append(new_list, weakref) != 0) {
806 Py_DECREF(new_list);
807 return;
808 }
809 }
810 }
811
812 Py_DECREF(self->statements);
813 self->statements = new_list;
814}
Anthony Baxterc51ee692006-04-01 00:57:31 +0000815
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000816static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self)
817{
818 PyObject* new_list;
819 PyObject* weakref;
820 int i;
821
822 /* we only need to do this once in a while */
823 if (self->created_cursors++ < 200) {
824 return;
825 }
826
827 self->created_cursors = 0;
828
829 new_list = PyList_New(0);
830 if (!new_list) {
831 return;
832 }
833
834 for (i = 0; i < PyList_Size(self->cursors); i++) {
835 weakref = PyList_GetItem(self->cursors, i);
836 if (PyWeakref_GetObject(weakref) != Py_None) {
837 if (PyList_Append(new_list, weakref) != 0) {
838 Py_DECREF(new_list);
839 return;
840 }
841 }
842 }
843
844 Py_DECREF(self->cursors);
845 self->cursors = new_list;
846}
847
Gerhard Häring0741a602007-01-14 01:43:50 +0000848PyObject* pysqlite_connection_create_function(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000849{
850 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
851
852 PyObject* func;
853 char* name;
854 int narg;
855 int rc;
856
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000857 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
858 return NULL;
859 }
860
Anthony Baxterc51ee692006-04-01 00:57:31 +0000861 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO", kwlist,
862 &name, &narg, &func))
863 {
864 return NULL;
865 }
866
Gerhard Häring0741a602007-01-14 01:43:50 +0000867 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000868
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000869 if (rc != SQLITE_OK) {
870 /* Workaround for SQLite bug: no error code or string is available here */
Gerhard Häring0741a602007-01-14 01:43:50 +0000871 PyErr_SetString(pysqlite_OperationalError, "Error creating function");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000872 return NULL;
873 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000874 if (PyDict_SetItem(self->function_pinboard, func, Py_None) == -1)
875 return NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000876
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000877 Py_INCREF(Py_None);
878 return Py_None;
879 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000880}
881
Gerhard Häring0741a602007-01-14 01:43:50 +0000882PyObject* pysqlite_connection_create_aggregate(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000883{
884 PyObject* aggregate_class;
885
886 int n_arg;
887 char* name;
888 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
889 int rc;
890
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000891 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
892 return NULL;
893 }
894
Anthony Baxterc51ee692006-04-01 00:57:31 +0000895 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO:create_aggregate",
896 kwlist, &name, &n_arg, &aggregate_class)) {
897 return NULL;
898 }
899
Gerhard Häring0741a602007-01-14 01:43:50 +0000900 rc = sqlite3_create_function(self->db, name, n_arg, SQLITE_UTF8, (void*)aggregate_class, 0, &_pysqlite_step_callback, &_pysqlite_final_callback);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000901 if (rc != SQLITE_OK) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000902 /* Workaround for SQLite bug: no error code or string is available here */
Gerhard Häring0741a602007-01-14 01:43:50 +0000903 PyErr_SetString(pysqlite_OperationalError, "Error creating aggregate");
Anthony Baxterc51ee692006-04-01 00:57:31 +0000904 return NULL;
905 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000906 if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1)
907 return NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000908
909 Py_INCREF(Py_None);
910 return Py_None;
911 }
912}
913
Gerhard Häring0741a602007-01-14 01:43:50 +0000914static int _authorizer_callback(void* user_arg, int action, const char* arg1, const char* arg2 , const char* dbname, const char* access_attempt_source)
Gerhard Häring1541ef02006-06-13 22:24:47 +0000915{
916 PyObject *ret;
917 int rc;
Georg Brandld3eaa742009-04-05 11:07:14 +0000918#ifdef WITH_THREAD
Gerhard Häring1541ef02006-06-13 22:24:47 +0000919 PyGILState_STATE gilstate;
920
921 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000922#endif
Gerhard Häring1541ef02006-06-13 22:24:47 +0000923 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
924
925 if (!ret) {
926 if (_enable_callback_tracebacks) {
927 PyErr_Print();
928 } else {
929 PyErr_Clear();
930 }
931
932 rc = SQLITE_DENY;
933 } else {
934 if (PyInt_Check(ret)) {
935 rc = (int)PyInt_AsLong(ret);
936 } else {
937 rc = SQLITE_DENY;
938 }
939 Py_DECREF(ret);
940 }
941
Georg Brandld3eaa742009-04-05 11:07:14 +0000942#ifdef WITH_THREAD
Gerhard Häring1541ef02006-06-13 22:24:47 +0000943 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000944#endif
Gerhard Häring1541ef02006-06-13 22:24:47 +0000945 return rc;
946}
947
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000948static int _progress_handler(void* user_arg)
949{
950 int rc;
951 PyObject *ret;
Georg Brandld3eaa742009-04-05 11:07:14 +0000952#ifdef WITH_THREAD
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000953 PyGILState_STATE gilstate;
954
955 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000956#endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000957 ret = PyObject_CallFunction((PyObject*)user_arg, "");
958
959 if (!ret) {
960 if (_enable_callback_tracebacks) {
961 PyErr_Print();
962 } else {
963 PyErr_Clear();
964 }
965
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000966 /* abort query if error occurred */
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000967 rc = 1;
968 } else {
969 rc = (int)PyObject_IsTrue(ret);
Neal Norwitzca752f32008-03-03 04:37:45 +0000970 Py_DECREF(ret);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000971 }
972
Georg Brandld3eaa742009-04-05 11:07:14 +0000973#ifdef WITH_THREAD
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000974 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000975#endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000976 return rc;
977}
978
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000979static PyObject* pysqlite_connection_set_authorizer(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Gerhard Häring1541ef02006-06-13 22:24:47 +0000980{
981 PyObject* authorizer_cb;
982
983 static char *kwlist[] = { "authorizer_callback", NULL };
984 int rc;
985
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000986 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
987 return NULL;
988 }
989
Gerhard Häring1541ef02006-06-13 22:24:47 +0000990 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:set_authorizer",
991 kwlist, &authorizer_cb)) {
992 return NULL;
993 }
994
995 rc = sqlite3_set_authorizer(self->db, _authorizer_callback, (void*)authorizer_cb);
996
997 if (rc != SQLITE_OK) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000998 PyErr_SetString(pysqlite_OperationalError, "Error setting authorizer callback");
Gerhard Häring1541ef02006-06-13 22:24:47 +0000999 return NULL;
1000 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001001 if (PyDict_SetItem(self->function_pinboard, authorizer_cb, Py_None) == -1)
1002 return NULL;
Gerhard Häring1541ef02006-06-13 22:24:47 +00001003
1004 Py_INCREF(Py_None);
1005 return Py_None;
1006 }
1007}
1008
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001009static PyObject* pysqlite_connection_set_progress_handler(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001010{
1011 PyObject* progress_handler;
1012 int n;
1013
1014 static char *kwlist[] = { "progress_handler", "n", NULL };
1015
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001016 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1017 return NULL;
1018 }
1019
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001020 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi:set_progress_handler",
1021 kwlist, &progress_handler, &n)) {
1022 return NULL;
1023 }
1024
1025 if (progress_handler == Py_None) {
1026 /* None clears the progress handler previously set */
1027 sqlite3_progress_handler(self->db, 0, 0, (void*)0);
1028 } else {
1029 sqlite3_progress_handler(self->db, n, _progress_handler, progress_handler);
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001030 if (PyDict_SetItem(self->function_pinboard, progress_handler, Py_None) == -1)
1031 return NULL;
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001032 }
1033
1034 Py_INCREF(Py_None);
1035 return Py_None;
1036}
1037
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001038#ifdef HAVE_LOAD_EXTENSION
1039static PyObject* pysqlite_enable_load_extension(pysqlite_Connection* self, PyObject* args)
1040{
1041 int rc;
1042 int onoff;
1043
1044 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1045 return NULL;
1046 }
1047
1048 if (!PyArg_ParseTuple(args, "i", &onoff)) {
1049 return NULL;
1050 }
1051
1052 rc = sqlite3_enable_load_extension(self->db, onoff);
1053
1054 if (rc != SQLITE_OK) {
1055 PyErr_SetString(pysqlite_OperationalError, "Error enabling load extension");
1056 return NULL;
1057 } else {
1058 Py_INCREF(Py_None);
1059 return Py_None;
1060 }
1061}
1062
1063static PyObject* pysqlite_load_extension(pysqlite_Connection* self, PyObject* args)
1064{
1065 int rc;
1066 char* extension_name;
1067 char* errmsg;
1068
1069 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1070 return NULL;
1071 }
1072
1073 if (!PyArg_ParseTuple(args, "s", &extension_name)) {
1074 return NULL;
1075 }
1076
1077 rc = sqlite3_load_extension(self->db, extension_name, 0, &errmsg);
1078 if (rc != 0) {
1079 PyErr_SetString(pysqlite_OperationalError, errmsg);
1080 return NULL;
1081 } else {
1082 Py_INCREF(Py_None);
1083 return Py_None;
1084 }
1085}
1086#endif
1087
Gerhard Häring0741a602007-01-14 01:43:50 +00001088int pysqlite_check_thread(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001089{
Georg Brandld3eaa742009-04-05 11:07:14 +00001090#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +00001091 if (self->check_same_thread) {
1092 if (PyThread_get_thread_ident() != self->thread_ident) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001093 PyErr_Format(pysqlite_ProgrammingError,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001094 "SQLite objects created in a thread can only be used in that same thread."
1095 "The object was created in thread id %ld and this is thread id %ld",
1096 self->thread_ident, PyThread_get_thread_ident());
1097 return 0;
1098 }
1099
1100 }
Georg Brandld3eaa742009-04-05 11:07:14 +00001101#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +00001102 return 1;
1103}
1104
Gerhard Häring0741a602007-01-14 01:43:50 +00001105static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001106{
1107 Py_INCREF(self->isolation_level);
1108 return self->isolation_level;
1109}
1110
Gerhard Häring0741a602007-01-14 01:43:50 +00001111static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused)
Anthony Baxter72289a62006-04-04 06:29:05 +00001112{
Gerhard Häring0741a602007-01-14 01:43:50 +00001113 if (!pysqlite_check_connection(self)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001114 return NULL;
1115 } else {
1116 return Py_BuildValue("i", sqlite3_total_changes(self->db));
1117 }
1118}
1119
Gerhard Häring0741a602007-01-14 01:43:50 +00001120static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001121{
Anthony Baxterc51ee692006-04-01 00:57:31 +00001122 PyObject* res;
1123 PyObject* begin_statement;
Georg Brandla24869a2008-07-16 22:33:18 +00001124 char* begin_statement_str;
Anthony Baxterc51ee692006-04-01 00:57:31 +00001125
1126 Py_XDECREF(self->isolation_level);
1127
Neal Norwitz5b030652006-04-16 03:28:17 +00001128 if (self->begin_statement) {
1129 PyMem_Free(self->begin_statement);
1130 self->begin_statement = NULL;
1131 }
1132
Anthony Baxterc51ee692006-04-01 00:57:31 +00001133 if (isolation_level == Py_None) {
1134 Py_INCREF(Py_None);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001135 self->isolation_level = Py_None;
1136
Gerhard Häring0741a602007-01-14 01:43:50 +00001137 res = pysqlite_connection_commit(self, NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001138 if (!res) {
1139 return -1;
1140 }
Anthony Baxterc51ee692006-04-01 00:57:31 +00001141 Py_DECREF(res);
1142
1143 self->inTransaction = 0;
1144 } else {
1145 Py_INCREF(isolation_level);
1146 self->isolation_level = isolation_level;
1147
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001148 begin_statement = PyString_FromString("BEGIN ");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001149 if (!begin_statement) {
1150 return -1;
1151 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001152 PyString_Concat(&begin_statement, isolation_level);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001153 if (!begin_statement) {
1154 return -1;
1155 }
1156
Georg Brandla24869a2008-07-16 22:33:18 +00001157 begin_statement_str = PyString_AsString(begin_statement);
1158 if (!begin_statement_str) {
1159 Py_DECREF(begin_statement);
1160 return -1;
1161 }
1162 self->begin_statement = PyMem_Malloc(strlen(begin_statement_str) + 2);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001163 if (!self->begin_statement) {
Georg Brandla24869a2008-07-16 22:33:18 +00001164 Py_DECREF(begin_statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001165 return -1;
1166 }
1167
Georg Brandla24869a2008-07-16 22:33:18 +00001168 strcpy(self->begin_statement, begin_statement_str);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001169 Py_DECREF(begin_statement);
1170 }
1171
1172 return 0;
1173}
1174
Gerhard Häring0741a602007-01-14 01:43:50 +00001175PyObject* pysqlite_connection_call(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001176{
1177 PyObject* sql;
Gerhard Häring0741a602007-01-14 01:43:50 +00001178 pysqlite_Statement* statement;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001179 PyObject* weakref;
Anthony Baxterc51ee692006-04-01 00:57:31 +00001180 int rc;
1181
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001182 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1183 return NULL;
1184 }
1185
Anthony Baxterc51ee692006-04-01 00:57:31 +00001186 if (!PyArg_ParseTuple(args, "O", &sql)) {
1187 return NULL;
1188 }
1189
Gerhard Häring0741a602007-01-14 01:43:50 +00001190 _pysqlite_drop_unused_statement_references(self);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001191
Gerhard Häring0741a602007-01-14 01:43:50 +00001192 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001193 if (!statement) {
1194 return NULL;
1195 }
1196
Victor Stinner6e055d72010-03-13 03:27:07 +00001197 statement->db = NULL;
1198 statement->st = NULL;
1199 statement->sql = NULL;
1200 statement->in_use = 0;
1201 statement->in_weakreflist = NULL;
1202
Gerhard Häring0741a602007-01-14 01:43:50 +00001203 rc = pysqlite_statement_create(statement, self, sql);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001204
1205 if (rc != SQLITE_OK) {
1206 if (rc == PYSQLITE_TOO_MUCH_SQL) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001207 PyErr_SetString(pysqlite_Warning, "You can only execute one statement at a time.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001208 } else if (rc == PYSQLITE_SQL_WRONG_TYPE) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001209 PyErr_SetString(pysqlite_Warning, "SQL is of wrong type. Must be string or unicode.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001210 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001211 (void)pysqlite_statement_reset(statement);
1212 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001213 }
1214
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001215 Py_CLEAR(statement);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001216 } else {
1217 weakref = PyWeakref_NewRef((PyObject*)statement, NULL);
1218 if (!weakref) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001219 Py_CLEAR(statement);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001220 goto error;
1221 }
1222
1223 if (PyList_Append(self->statements, weakref) != 0) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001224 Py_CLEAR(weakref);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001225 goto error;
1226 }
1227
1228 Py_DECREF(weakref);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001229 }
1230
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001231error:
Anthony Baxterc51ee692006-04-01 00:57:31 +00001232 return (PyObject*)statement;
1233}
1234
Gerhard Häring0741a602007-01-14 01:43:50 +00001235PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001236{
1237 PyObject* cursor = 0;
1238 PyObject* result = 0;
1239 PyObject* method = 0;
1240
1241 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1242 if (!cursor) {
1243 goto error;
1244 }
1245
1246 method = PyObject_GetAttrString(cursor, "execute");
1247 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001248 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001249 goto error;
1250 }
1251
1252 result = PyObject_CallObject(method, args);
1253 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001254 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001255 }
1256
1257error:
1258 Py_XDECREF(result);
1259 Py_XDECREF(method);
1260
1261 return cursor;
1262}
1263
Gerhard Häring0741a602007-01-14 01:43:50 +00001264PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001265{
1266 PyObject* cursor = 0;
1267 PyObject* result = 0;
1268 PyObject* method = 0;
1269
1270 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1271 if (!cursor) {
1272 goto error;
1273 }
1274
1275 method = PyObject_GetAttrString(cursor, "executemany");
1276 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001277 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001278 goto error;
1279 }
1280
1281 result = PyObject_CallObject(method, args);
1282 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001283 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001284 }
1285
1286error:
1287 Py_XDECREF(result);
1288 Py_XDECREF(method);
1289
1290 return cursor;
1291}
1292
Gerhard Häring0741a602007-01-14 01:43:50 +00001293PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001294{
1295 PyObject* cursor = 0;
1296 PyObject* result = 0;
1297 PyObject* method = 0;
1298
1299 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1300 if (!cursor) {
1301 goto error;
1302 }
1303
1304 method = PyObject_GetAttrString(cursor, "executescript");
1305 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001306 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001307 goto error;
1308 }
1309
1310 result = PyObject_CallObject(method, args);
1311 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001312 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001313 }
1314
1315error:
1316 Py_XDECREF(result);
1317 Py_XDECREF(method);
1318
1319 return cursor;
1320}
1321
Anthony Baxter72289a62006-04-04 06:29:05 +00001322/* ------------------------- COLLATION CODE ------------------------ */
1323
1324static int
Gerhard Häring0741a602007-01-14 01:43:50 +00001325pysqlite_collation_callback(
Anthony Baxter72289a62006-04-04 06:29:05 +00001326 void* context,
1327 int text1_length, const void* text1_data,
1328 int text2_length, const void* text2_data)
1329{
1330 PyObject* callback = (PyObject*)context;
1331 PyObject* string1 = 0;
1332 PyObject* string2 = 0;
Georg Brandld3eaa742009-04-05 11:07:14 +00001333#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001334 PyGILState_STATE gilstate;
Georg Brandld3eaa742009-04-05 11:07:14 +00001335#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001336 PyObject* retval = NULL;
1337 int result = 0;
Georg Brandld3eaa742009-04-05 11:07:14 +00001338#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001339 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +00001340#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001341
1342 if (PyErr_Occurred()) {
1343 goto finally;
1344 }
1345
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001346 string1 = PyString_FromStringAndSize((const char*)text1_data, text1_length);
1347 string2 = PyString_FromStringAndSize((const char*)text2_data, text2_length);
Anthony Baxter72289a62006-04-04 06:29:05 +00001348
1349 if (!string1 || !string2) {
1350 goto finally; /* failed to allocate strings */
1351 }
1352
1353 retval = PyObject_CallFunctionObjArgs(callback, string1, string2, NULL);
1354
1355 if (!retval) {
1356 /* execution failed */
1357 goto finally;
1358 }
1359
1360 result = PyInt_AsLong(retval);
1361 if (PyErr_Occurred()) {
1362 result = 0;
1363 }
1364
1365finally:
1366 Py_XDECREF(string1);
1367 Py_XDECREF(string2);
1368 Py_XDECREF(retval);
Georg Brandld3eaa742009-04-05 11:07:14 +00001369#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001370 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +00001371#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001372 return result;
1373}
1374
1375static PyObject *
Gerhard Häring0741a602007-01-14 01:43:50 +00001376pysqlite_connection_interrupt(pysqlite_Connection* self, PyObject* args)
Gerhard Häring1541ef02006-06-13 22:24:47 +00001377{
1378 PyObject* retval = NULL;
1379
Gerhard Häring0741a602007-01-14 01:43:50 +00001380 if (!pysqlite_check_connection(self)) {
Gerhard Häring1541ef02006-06-13 22:24:47 +00001381 goto finally;
1382 }
1383
1384 sqlite3_interrupt(self->db);
1385
1386 Py_INCREF(Py_None);
1387 retval = Py_None;
1388
1389finally:
1390 return retval;
1391}
1392
Gregory P. Smithb9803422008-03-28 08:32:09 +00001393/* Function author: Paul Kippes <kippesp@gmail.com>
1394 * Class method of Connection to call the Python function _iterdump
1395 * of the sqlite3 module.
1396 */
1397static PyObject *
1398pysqlite_connection_iterdump(pysqlite_Connection* self, PyObject* args)
1399{
1400 PyObject* retval = NULL;
1401 PyObject* module = NULL;
1402 PyObject* module_dict;
1403 PyObject* pyfn_iterdump;
1404
1405 if (!pysqlite_check_connection(self)) {
1406 goto finally;
1407 }
1408
1409 module = PyImport_ImportModule(MODULE_NAME ".dump");
1410 if (!module) {
1411 goto finally;
1412 }
1413
1414 module_dict = PyModule_GetDict(module);
1415 if (!module_dict) {
1416 goto finally;
1417 }
1418
1419 pyfn_iterdump = PyDict_GetItemString(module_dict, "_iterdump");
1420 if (!pyfn_iterdump) {
1421 PyErr_SetString(pysqlite_OperationalError, "Failed to obtain _iterdump() reference");
1422 goto finally;
1423 }
1424
1425 args = PyTuple_New(1);
1426 if (!args) {
1427 goto finally;
1428 }
1429 Py_INCREF(self);
1430 PyTuple_SetItem(args, 0, (PyObject*)self);
1431 retval = PyObject_CallObject(pyfn_iterdump, args);
1432
1433finally:
1434 Py_XDECREF(args);
1435 Py_XDECREF(module);
1436 return retval;
1437}
1438
Gerhard Häring1541ef02006-06-13 22:24:47 +00001439static PyObject *
Gerhard Häring0741a602007-01-14 01:43:50 +00001440pysqlite_connection_create_collation(pysqlite_Connection* self, PyObject* args)
Anthony Baxter72289a62006-04-04 06:29:05 +00001441{
1442 PyObject* callable;
1443 PyObject* uppercase_name = 0;
1444 PyObject* name;
1445 PyObject* retval;
1446 char* chk;
1447 int rc;
1448
Gerhard Häring0741a602007-01-14 01:43:50 +00001449 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001450 goto finally;
1451 }
1452
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001453 if (!PyArg_ParseTuple(args, "O!O:create_collation(name, callback)", &PyString_Type, &name, &callable)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001454 goto finally;
1455 }
1456
1457 uppercase_name = PyObject_CallMethod(name, "upper", "");
1458 if (!uppercase_name) {
1459 goto finally;
1460 }
1461
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001462 chk = PyString_AsString(uppercase_name);
Anthony Baxter72289a62006-04-04 06:29:05 +00001463 while (*chk) {
1464 if ((*chk >= '0' && *chk <= '9')
1465 || (*chk >= 'A' && *chk <= 'Z')
1466 || (*chk == '_'))
1467 {
1468 chk++;
1469 } else {
Gerhard Häring0741a602007-01-14 01:43:50 +00001470 PyErr_SetString(pysqlite_ProgrammingError, "invalid character in collation name");
Anthony Baxter72289a62006-04-04 06:29:05 +00001471 goto finally;
1472 }
1473 }
1474
1475 if (callable != Py_None && !PyCallable_Check(callable)) {
1476 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
1477 goto finally;
1478 }
1479
1480 if (callable != Py_None) {
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001481 if (PyDict_SetItem(self->collations, uppercase_name, callable) == -1)
1482 goto finally;
Anthony Baxter72289a62006-04-04 06:29:05 +00001483 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001484 if (PyDict_DelItem(self->collations, uppercase_name) == -1)
1485 goto finally;
Anthony Baxter72289a62006-04-04 06:29:05 +00001486 }
1487
1488 rc = sqlite3_create_collation(self->db,
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001489 PyString_AsString(uppercase_name),
Anthony Baxter72289a62006-04-04 06:29:05 +00001490 SQLITE_UTF8,
1491 (callable != Py_None) ? callable : NULL,
Gerhard Häring0741a602007-01-14 01:43:50 +00001492 (callable != Py_None) ? pysqlite_collation_callback : NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001493 if (rc != SQLITE_OK) {
1494 PyDict_DelItem(self->collations, uppercase_name);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001495 _pysqlite_seterror(self->db, NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001496 goto finally;
1497 }
1498
1499finally:
1500 Py_XDECREF(uppercase_name);
1501
1502 if (PyErr_Occurred()) {
1503 retval = NULL;
1504 } else {
1505 Py_INCREF(Py_None);
1506 retval = Py_None;
1507 }
1508
1509 return retval;
1510}
1511
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001512/* Called when the connection is used as a context manager. Returns itself as a
1513 * convenience to the caller. */
1514static PyObject *
1515pysqlite_connection_enter(pysqlite_Connection* self, PyObject* args)
1516{
1517 Py_INCREF(self);
1518 return (PyObject*)self;
1519}
1520
1521/** Called when the connection is used as a context manager. If there was any
1522 * exception, a rollback takes place; otherwise we commit. */
1523static PyObject *
1524pysqlite_connection_exit(pysqlite_Connection* self, PyObject* args)
1525{
1526 PyObject* exc_type, *exc_value, *exc_tb;
1527 char* method_name;
1528 PyObject* result;
1529
1530 if (!PyArg_ParseTuple(args, "OOO", &exc_type, &exc_value, &exc_tb)) {
1531 return NULL;
1532 }
1533
1534 if (exc_type == Py_None && exc_value == Py_None && exc_tb == Py_None) {
1535 method_name = "commit";
1536 } else {
1537 method_name = "rollback";
1538 }
1539
1540 result = PyObject_CallMethod((PyObject*)self, method_name, "");
1541 if (!result) {
1542 return NULL;
1543 }
1544 Py_DECREF(result);
1545
1546 Py_INCREF(Py_False);
1547 return Py_False;
1548}
1549
Anthony Baxterc51ee692006-04-01 00:57:31 +00001550static char connection_doc[] =
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001551PyDoc_STR("SQLite database connection object.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001552
1553static PyGetSetDef connection_getset[] = {
Gerhard Häring0741a602007-01-14 01:43:50 +00001554 {"isolation_level", (getter)pysqlite_connection_get_isolation_level, (setter)pysqlite_connection_set_isolation_level},
1555 {"total_changes", (getter)pysqlite_connection_get_total_changes, (setter)0},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001556 {NULL}
1557};
1558
1559static PyMethodDef connection_methods[] = {
Gerhard Häring0741a602007-01-14 01:43:50 +00001560 {"cursor", (PyCFunction)pysqlite_connection_cursor, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001561 PyDoc_STR("Return a cursor for the connection.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001562 {"close", (PyCFunction)pysqlite_connection_close, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001563 PyDoc_STR("Closes the connection.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001564 {"commit", (PyCFunction)pysqlite_connection_commit, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001565 PyDoc_STR("Commit the current transaction.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001566 {"rollback", (PyCFunction)pysqlite_connection_rollback, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001567 PyDoc_STR("Roll back the current transaction.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001568 {"create_function", (PyCFunction)pysqlite_connection_create_function, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001569 PyDoc_STR("Creates a new function. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001570 {"create_aggregate", (PyCFunction)pysqlite_connection_create_aggregate, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001571 PyDoc_STR("Creates a new aggregate. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001572 {"set_authorizer", (PyCFunction)pysqlite_connection_set_authorizer, METH_VARARGS|METH_KEYWORDS,
Gerhard Häring1541ef02006-06-13 22:24:47 +00001573 PyDoc_STR("Sets authorizer callback. Non-standard.")},
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001574 #ifdef HAVE_LOAD_EXTENSION
1575 {"enable_load_extension", (PyCFunction)pysqlite_enable_load_extension, METH_VARARGS,
1576 PyDoc_STR("Enable dynamic loading of SQLite extension modules. Non-standard.")},
1577 {"load_extension", (PyCFunction)pysqlite_load_extension, METH_VARARGS,
1578 PyDoc_STR("Load SQLite extension module. Non-standard.")},
1579 #endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001580 {"set_progress_handler", (PyCFunction)pysqlite_connection_set_progress_handler, METH_VARARGS|METH_KEYWORDS,
1581 PyDoc_STR("Sets progress handler callback. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001582 {"execute", (PyCFunction)pysqlite_connection_execute, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001583 PyDoc_STR("Executes a SQL statement. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001584 {"executemany", (PyCFunction)pysqlite_connection_executemany, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001585 PyDoc_STR("Repeatedly executes a SQL statement. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001586 {"executescript", (PyCFunction)pysqlite_connection_executescript, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001587 PyDoc_STR("Executes a multiple SQL statements at once. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001588 {"create_collation", (PyCFunction)pysqlite_connection_create_collation, METH_VARARGS,
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001589 PyDoc_STR("Creates a collation function. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001590 {"interrupt", (PyCFunction)pysqlite_connection_interrupt, METH_NOARGS,
Gerhard Häring1541ef02006-06-13 22:24:47 +00001591 PyDoc_STR("Abort any pending database operation. Non-standard.")},
Gregory P. Smithb9803422008-03-28 08:32:09 +00001592 {"iterdump", (PyCFunction)pysqlite_connection_iterdump, METH_NOARGS,
Gerhard Häringef2276b2008-09-12 13:54:06 +00001593 PyDoc_STR("Returns iterator to the dump of the database in an SQL text format. Non-standard.")},
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001594 {"__enter__", (PyCFunction)pysqlite_connection_enter, METH_NOARGS,
1595 PyDoc_STR("For context manager. Non-standard.")},
1596 {"__exit__", (PyCFunction)pysqlite_connection_exit, METH_VARARGS,
1597 PyDoc_STR("For context manager. Non-standard.")},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001598 {NULL, NULL}
1599};
1600
1601static struct PyMemberDef connection_members[] =
1602{
Gerhard Häring0741a602007-01-14 01:43:50 +00001603 {"Warning", T_OBJECT, offsetof(pysqlite_Connection, Warning), RO},
1604 {"Error", T_OBJECT, offsetof(pysqlite_Connection, Error), RO},
1605 {"InterfaceError", T_OBJECT, offsetof(pysqlite_Connection, InterfaceError), RO},
1606 {"DatabaseError", T_OBJECT, offsetof(pysqlite_Connection, DatabaseError), RO},
1607 {"DataError", T_OBJECT, offsetof(pysqlite_Connection, DataError), RO},
1608 {"OperationalError", T_OBJECT, offsetof(pysqlite_Connection, OperationalError), RO},
1609 {"IntegrityError", T_OBJECT, offsetof(pysqlite_Connection, IntegrityError), RO},
1610 {"InternalError", T_OBJECT, offsetof(pysqlite_Connection, InternalError), RO},
1611 {"ProgrammingError", T_OBJECT, offsetof(pysqlite_Connection, ProgrammingError), RO},
1612 {"NotSupportedError", T_OBJECT, offsetof(pysqlite_Connection, NotSupportedError), RO},
1613 {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)},
1614 {"text_factory", T_OBJECT, offsetof(pysqlite_Connection, text_factory)},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001615 {NULL}
1616};
1617
Gerhard Häring0741a602007-01-14 01:43:50 +00001618PyTypeObject pysqlite_ConnectionType = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001619 PyVarObject_HEAD_INIT(NULL, 0)
Anthony Baxter8e7b4902006-04-05 18:25:33 +00001620 MODULE_NAME ".Connection", /* tp_name */
Gerhard Häring0741a602007-01-14 01:43:50 +00001621 sizeof(pysqlite_Connection), /* tp_basicsize */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001622 0, /* tp_itemsize */
Gerhard Häring0741a602007-01-14 01:43:50 +00001623 (destructor)pysqlite_connection_dealloc, /* tp_dealloc */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001624 0, /* tp_print */
1625 0, /* tp_getattr */
1626 0, /* tp_setattr */
1627 0, /* tp_compare */
1628 0, /* tp_repr */
1629 0, /* tp_as_number */
1630 0, /* tp_as_sequence */
1631 0, /* tp_as_mapping */
1632 0, /* tp_hash */
Gerhard Häring0741a602007-01-14 01:43:50 +00001633 (ternaryfunc)pysqlite_connection_call, /* tp_call */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001634 0, /* tp_str */
1635 0, /* tp_getattro */
1636 0, /* tp_setattro */
1637 0, /* tp_as_buffer */
1638 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
1639 connection_doc, /* tp_doc */
1640 0, /* tp_traverse */
1641 0, /* tp_clear */
1642 0, /* tp_richcompare */
1643 0, /* tp_weaklistoffset */
1644 0, /* tp_iter */
1645 0, /* tp_iternext */
1646 connection_methods, /* tp_methods */
1647 connection_members, /* tp_members */
1648 connection_getset, /* tp_getset */
1649 0, /* tp_base */
1650 0, /* tp_dict */
1651 0, /* tp_descr_get */
1652 0, /* tp_descr_set */
1653 0, /* tp_dictoffset */
Gerhard Häring0741a602007-01-14 01:43:50 +00001654 (initproc)pysqlite_connection_init, /* tp_init */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001655 0, /* tp_alloc */
1656 0, /* tp_new */
1657 0 /* tp_free */
1658};
1659
Gerhard Häring0741a602007-01-14 01:43:50 +00001660extern int pysqlite_connection_setup_types(void)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001661{
Gerhard Häring0741a602007-01-14 01:43:50 +00001662 pysqlite_ConnectionType.tp_new = PyType_GenericNew;
1663 return PyType_Ready(&pysqlite_ConnectionType);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001664}