blob: 26678c7a831116a88108ec45f4ccda3ea633838c [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{
Anthony Baxterc51ee692006-04-01 00:57:31 +0000543 const char* buffer;
Neal Norwitz95f0e4c2006-04-01 09:08:06 +0000544 Py_ssize_t buflen;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000545 PyObject* stringval;
546
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000547 if ((!py_val) || PyErr_Occurred()) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000548 sqlite3_result_null(context);
549 } else if (py_val == Py_None) {
550 sqlite3_result_null(context);
551 } else if (PyInt_Check(py_val)) {
Petri Lehtinen4ab701b2012-02-21 13:58:40 +0200552 sqlite3_result_int64(context, (sqlite3_int64)PyInt_AsLong(py_val));
553 } else if (PyLong_Check(py_val)) {
554 sqlite3_result_int64(context, PyLong_AsLongLong(py_val));
Anthony Baxterc51ee692006-04-01 00:57:31 +0000555 } 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;
Petri Lehtinen4ab701b2012-02-21 13:58:40 +0200583 sqlite3_int64 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);
Petri Lehtinen4ab701b2012-02-21 13:58:40 +0200597 if(val_int < LONG_MIN || val_int > LONG_MAX)
598 cur_py_value = PyLong_FromLongLong(val_int);
599 else
600 cur_py_value = PyInt_FromLong((long)val_int);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000601 break;
602 case SQLITE_FLOAT:
603 cur_py_value = PyFloat_FromDouble(sqlite3_value_double(cur_value));
604 break;
605 case SQLITE_TEXT:
606 val_str = (const char*)sqlite3_value_text(cur_value);
607 cur_py_value = PyUnicode_DecodeUTF8(val_str, strlen(val_str), NULL);
608 /* TODO: have a way to show errors here */
609 if (!cur_py_value) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000610 PyErr_Clear();
Anthony Baxterc51ee692006-04-01 00:57:31 +0000611 Py_INCREF(Py_None);
612 cur_py_value = Py_None;
613 }
614 break;
615 case SQLITE_BLOB:
616 buflen = sqlite3_value_bytes(cur_value);
617 cur_py_value = PyBuffer_New(buflen);
618 if (!cur_py_value) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000619 break;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000620 }
621 if (PyObject_AsWriteBuffer(cur_py_value, &raw_buffer, &buflen)) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000622 Py_DECREF(cur_py_value);
623 cur_py_value = NULL;
624 break;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000625 }
626 memcpy(raw_buffer, sqlite3_value_blob(cur_value), buflen);
627 break;
628 case SQLITE_NULL:
629 default:
630 Py_INCREF(Py_None);
631 cur_py_value = Py_None;
632 }
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000633
634 if (!cur_py_value) {
635 Py_DECREF(args);
636 return NULL;
637 }
638
Anthony Baxterc51ee692006-04-01 00:57:31 +0000639 PyTuple_SetItem(args, i, cur_py_value);
640
641 }
642
643 return args;
644}
645
Gerhard Häring0741a602007-01-14 01:43:50 +0000646void _pysqlite_func_callback(sqlite3_context* context, int argc, sqlite3_value** argv)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000647{
648 PyObject* args;
649 PyObject* py_func;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000650 PyObject* py_retval = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000651
Georg Brandld3eaa742009-04-05 11:07:14 +0000652#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000653 PyGILState_STATE threadstate;
654
655 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000656#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000657
658 py_func = (PyObject*)sqlite3_user_data(context);
659
Gerhard Häring0741a602007-01-14 01:43:50 +0000660 args = _pysqlite_build_py_params(context, argc, argv);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000661 if (args) {
662 py_retval = PyObject_CallObject(py_func, args);
663 Py_DECREF(args);
664 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000665
Gerhard Häring1541ef02006-06-13 22:24:47 +0000666 if (py_retval) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000667 _pysqlite_set_result(context, py_retval);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000668 Py_DECREF(py_retval);
669 } else {
670 if (_enable_callback_tracebacks) {
671 PyErr_Print();
672 } else {
673 PyErr_Clear();
674 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000675 _sqlite3_result_error(context, "user-defined function raised exception", -1);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000676 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000677
Georg Brandld3eaa742009-04-05 11:07:14 +0000678#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000679 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000680#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000681}
682
Gerhard Häring0741a602007-01-14 01:43:50 +0000683static void _pysqlite_step_callback(sqlite3_context *context, int argc, sqlite3_value** params)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000684{
685 PyObject* args;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000686 PyObject* function_result = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000687 PyObject* aggregate_class;
688 PyObject** aggregate_instance;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000689 PyObject* stepmethod = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000690
Georg Brandld3eaa742009-04-05 11:07:14 +0000691#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000692 PyGILState_STATE threadstate;
693
694 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000695#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000696
697 aggregate_class = (PyObject*)sqlite3_user_data(context);
698
699 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
700
701 if (*aggregate_instance == 0) {
702 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
703
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000704 if (PyErr_Occurred()) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000705 *aggregate_instance = 0;
Gerhard Häring1541ef02006-06-13 22:24:47 +0000706 if (_enable_callback_tracebacks) {
707 PyErr_Print();
708 } else {
709 PyErr_Clear();
710 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000711 _sqlite3_result_error(context, "user-defined aggregate's '__init__' method raised error", -1);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000712 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000713 }
714 }
715
716 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000717 if (!stepmethod) {
718 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000719 }
720
Gerhard Häring0741a602007-01-14 01:43:50 +0000721 args = _pysqlite_build_py_params(context, argc, params);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000722 if (!args) {
723 goto error;
724 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000725
726 function_result = PyObject_CallObject(stepmethod, args);
727 Py_DECREF(args);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000728
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000729 if (!function_result) {
Gerhard Häring1541ef02006-06-13 22:24:47 +0000730 if (_enable_callback_tracebacks) {
731 PyErr_Print();
732 } else {
733 PyErr_Clear();
734 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000735 _sqlite3_result_error(context, "user-defined aggregate's 'step' method raised error", -1);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000736 }
737
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000738error:
739 Py_XDECREF(stepmethod);
740 Py_XDECREF(function_result);
741
Georg Brandld3eaa742009-04-05 11:07:14 +0000742#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000743 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000744#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000745}
746
Gerhard Häring0741a602007-01-14 01:43:50 +0000747void _pysqlite_final_callback(sqlite3_context* context)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000748{
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000749 PyObject* function_result = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000750 PyObject** aggregate_instance;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000751
Georg Brandld3eaa742009-04-05 11:07:14 +0000752#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000753 PyGILState_STATE threadstate;
754
755 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000756#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000757
Anthony Baxterc51ee692006-04-01 00:57:31 +0000758 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
759 if (!*aggregate_instance) {
760 /* this branch is executed if there was an exception in the aggregate's
761 * __init__ */
762
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000763 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000764 }
765
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000766 function_result = PyObject_CallMethod(*aggregate_instance, "finalize", "");
767 if (!function_result) {
Gerhard Häring1541ef02006-06-13 22:24:47 +0000768 if (_enable_callback_tracebacks) {
769 PyErr_Print();
770 } else {
771 PyErr_Clear();
772 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000773 _sqlite3_result_error(context, "user-defined aggregate's 'finalize' method raised error", -1);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000774 } else {
Gerhard Häring0741a602007-01-14 01:43:50 +0000775 _pysqlite_set_result(context, function_result);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000776 }
777
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000778error:
Anthony Baxterc51ee692006-04-01 00:57:31 +0000779 Py_XDECREF(*aggregate_instance);
780 Py_XDECREF(function_result);
781
Georg Brandld3eaa742009-04-05 11:07:14 +0000782#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000783 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000784#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000785}
786
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000787static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000788{
789 PyObject* new_list;
790 PyObject* weakref;
791 int i;
792
793 /* we only need to do this once in a while */
794 if (self->created_statements++ < 200) {
795 return;
796 }
797
798 self->created_statements = 0;
799
800 new_list = PyList_New(0);
801 if (!new_list) {
802 return;
803 }
804
805 for (i = 0; i < PyList_Size(self->statements); i++) {
806 weakref = PyList_GetItem(self->statements, i);
Gerhard Häringecd20102006-06-19 21:17:35 +0000807 if (PyWeakref_GetObject(weakref) != Py_None) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000808 if (PyList_Append(new_list, weakref) != 0) {
809 Py_DECREF(new_list);
810 return;
811 }
812 }
813 }
814
815 Py_DECREF(self->statements);
816 self->statements = new_list;
817}
Anthony Baxterc51ee692006-04-01 00:57:31 +0000818
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000819static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self)
820{
821 PyObject* new_list;
822 PyObject* weakref;
823 int i;
824
825 /* we only need to do this once in a while */
826 if (self->created_cursors++ < 200) {
827 return;
828 }
829
830 self->created_cursors = 0;
831
832 new_list = PyList_New(0);
833 if (!new_list) {
834 return;
835 }
836
837 for (i = 0; i < PyList_Size(self->cursors); i++) {
838 weakref = PyList_GetItem(self->cursors, i);
839 if (PyWeakref_GetObject(weakref) != Py_None) {
840 if (PyList_Append(new_list, weakref) != 0) {
841 Py_DECREF(new_list);
842 return;
843 }
844 }
845 }
846
847 Py_DECREF(self->cursors);
848 self->cursors = new_list;
849}
850
Gerhard Häring0741a602007-01-14 01:43:50 +0000851PyObject* pysqlite_connection_create_function(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000852{
853 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
854
855 PyObject* func;
856 char* name;
857 int narg;
858 int rc;
859
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000860 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
861 return NULL;
862 }
863
Anthony Baxterc51ee692006-04-01 00:57:31 +0000864 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO", kwlist,
865 &name, &narg, &func))
866 {
867 return NULL;
868 }
869
Gerhard Häring0741a602007-01-14 01:43:50 +0000870 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000871
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000872 if (rc != SQLITE_OK) {
873 /* Workaround for SQLite bug: no error code or string is available here */
Gerhard Häring0741a602007-01-14 01:43:50 +0000874 PyErr_SetString(pysqlite_OperationalError, "Error creating function");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000875 return NULL;
876 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000877 if (PyDict_SetItem(self->function_pinboard, func, Py_None) == -1)
878 return NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000879
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000880 Py_INCREF(Py_None);
881 return Py_None;
882 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000883}
884
Gerhard Häring0741a602007-01-14 01:43:50 +0000885PyObject* pysqlite_connection_create_aggregate(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000886{
887 PyObject* aggregate_class;
888
889 int n_arg;
890 char* name;
891 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
892 int rc;
893
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000894 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
895 return NULL;
896 }
897
Anthony Baxterc51ee692006-04-01 00:57:31 +0000898 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO:create_aggregate",
899 kwlist, &name, &n_arg, &aggregate_class)) {
900 return NULL;
901 }
902
Gerhard Häring0741a602007-01-14 01:43:50 +0000903 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 +0000904 if (rc != SQLITE_OK) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000905 /* Workaround for SQLite bug: no error code or string is available here */
Gerhard Häring0741a602007-01-14 01:43:50 +0000906 PyErr_SetString(pysqlite_OperationalError, "Error creating aggregate");
Anthony Baxterc51ee692006-04-01 00:57:31 +0000907 return NULL;
908 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000909 if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1)
910 return NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000911
912 Py_INCREF(Py_None);
913 return Py_None;
914 }
915}
916
Gerhard Häring0741a602007-01-14 01:43:50 +0000917static 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 +0000918{
919 PyObject *ret;
920 int rc;
Georg Brandld3eaa742009-04-05 11:07:14 +0000921#ifdef WITH_THREAD
Gerhard Häring1541ef02006-06-13 22:24:47 +0000922 PyGILState_STATE gilstate;
923
924 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000925#endif
Gerhard Häring1541ef02006-06-13 22:24:47 +0000926 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
927
928 if (!ret) {
929 if (_enable_callback_tracebacks) {
930 PyErr_Print();
931 } else {
932 PyErr_Clear();
933 }
934
935 rc = SQLITE_DENY;
936 } else {
937 if (PyInt_Check(ret)) {
938 rc = (int)PyInt_AsLong(ret);
939 } else {
940 rc = SQLITE_DENY;
941 }
942 Py_DECREF(ret);
943 }
944
Georg Brandld3eaa742009-04-05 11:07:14 +0000945#ifdef WITH_THREAD
Gerhard Häring1541ef02006-06-13 22:24:47 +0000946 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000947#endif
Gerhard Häring1541ef02006-06-13 22:24:47 +0000948 return rc;
949}
950
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000951static int _progress_handler(void* user_arg)
952{
953 int rc;
954 PyObject *ret;
Georg Brandld3eaa742009-04-05 11:07:14 +0000955#ifdef WITH_THREAD
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000956 PyGILState_STATE gilstate;
957
958 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000959#endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000960 ret = PyObject_CallFunction((PyObject*)user_arg, "");
961
962 if (!ret) {
963 if (_enable_callback_tracebacks) {
964 PyErr_Print();
965 } else {
966 PyErr_Clear();
967 }
968
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000969 /* abort query if error occurred */
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000970 rc = 1;
971 } else {
972 rc = (int)PyObject_IsTrue(ret);
Neal Norwitzca752f32008-03-03 04:37:45 +0000973 Py_DECREF(ret);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000974 }
975
Georg Brandld3eaa742009-04-05 11:07:14 +0000976#ifdef WITH_THREAD
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000977 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000978#endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000979 return rc;
980}
981
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000982static PyObject* pysqlite_connection_set_authorizer(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Gerhard Häring1541ef02006-06-13 22:24:47 +0000983{
984 PyObject* authorizer_cb;
985
986 static char *kwlist[] = { "authorizer_callback", NULL };
987 int rc;
988
Gerhard Häring3bbb6722010-03-05 09:12:37 +0000989 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
990 return NULL;
991 }
992
Gerhard Häring1541ef02006-06-13 22:24:47 +0000993 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:set_authorizer",
994 kwlist, &authorizer_cb)) {
995 return NULL;
996 }
997
998 rc = sqlite3_set_authorizer(self->db, _authorizer_callback, (void*)authorizer_cb);
999
1000 if (rc != SQLITE_OK) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001001 PyErr_SetString(pysqlite_OperationalError, "Error setting authorizer callback");
Gerhard Häring1541ef02006-06-13 22:24:47 +00001002 return NULL;
1003 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001004 if (PyDict_SetItem(self->function_pinboard, authorizer_cb, Py_None) == -1)
1005 return NULL;
Gerhard Häring1541ef02006-06-13 22:24:47 +00001006
1007 Py_INCREF(Py_None);
1008 return Py_None;
1009 }
1010}
1011
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001012static PyObject* pysqlite_connection_set_progress_handler(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001013{
1014 PyObject* progress_handler;
1015 int n;
1016
1017 static char *kwlist[] = { "progress_handler", "n", NULL };
1018
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001019 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1020 return NULL;
1021 }
1022
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001023 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi:set_progress_handler",
1024 kwlist, &progress_handler, &n)) {
1025 return NULL;
1026 }
1027
1028 if (progress_handler == Py_None) {
1029 /* None clears the progress handler previously set */
1030 sqlite3_progress_handler(self->db, 0, 0, (void*)0);
1031 } else {
1032 sqlite3_progress_handler(self->db, n, _progress_handler, progress_handler);
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001033 if (PyDict_SetItem(self->function_pinboard, progress_handler, Py_None) == -1)
1034 return NULL;
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001035 }
1036
1037 Py_INCREF(Py_None);
1038 return Py_None;
1039}
1040
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001041#ifdef HAVE_LOAD_EXTENSION
1042static PyObject* pysqlite_enable_load_extension(pysqlite_Connection* self, PyObject* args)
1043{
1044 int rc;
1045 int onoff;
1046
1047 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1048 return NULL;
1049 }
1050
1051 if (!PyArg_ParseTuple(args, "i", &onoff)) {
1052 return NULL;
1053 }
1054
1055 rc = sqlite3_enable_load_extension(self->db, onoff);
1056
1057 if (rc != SQLITE_OK) {
1058 PyErr_SetString(pysqlite_OperationalError, "Error enabling load extension");
1059 return NULL;
1060 } else {
1061 Py_INCREF(Py_None);
1062 return Py_None;
1063 }
1064}
1065
1066static PyObject* pysqlite_load_extension(pysqlite_Connection* self, PyObject* args)
1067{
1068 int rc;
1069 char* extension_name;
1070 char* errmsg;
1071
1072 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1073 return NULL;
1074 }
1075
1076 if (!PyArg_ParseTuple(args, "s", &extension_name)) {
1077 return NULL;
1078 }
1079
1080 rc = sqlite3_load_extension(self->db, extension_name, 0, &errmsg);
1081 if (rc != 0) {
1082 PyErr_SetString(pysqlite_OperationalError, errmsg);
1083 return NULL;
1084 } else {
1085 Py_INCREF(Py_None);
1086 return Py_None;
1087 }
1088}
1089#endif
1090
Gerhard Häring0741a602007-01-14 01:43:50 +00001091int pysqlite_check_thread(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001092{
Georg Brandld3eaa742009-04-05 11:07:14 +00001093#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +00001094 if (self->check_same_thread) {
1095 if (PyThread_get_thread_ident() != self->thread_ident) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001096 PyErr_Format(pysqlite_ProgrammingError,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001097 "SQLite objects created in a thread can only be used in that same thread."
1098 "The object was created in thread id %ld and this is thread id %ld",
1099 self->thread_ident, PyThread_get_thread_ident());
1100 return 0;
1101 }
1102
1103 }
Georg Brandld3eaa742009-04-05 11:07:14 +00001104#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +00001105 return 1;
1106}
1107
Gerhard Häring0741a602007-01-14 01:43:50 +00001108static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001109{
1110 Py_INCREF(self->isolation_level);
1111 return self->isolation_level;
1112}
1113
Gerhard Häring0741a602007-01-14 01:43:50 +00001114static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused)
Anthony Baxter72289a62006-04-04 06:29:05 +00001115{
Gerhard Häring0741a602007-01-14 01:43:50 +00001116 if (!pysqlite_check_connection(self)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001117 return NULL;
1118 } else {
1119 return Py_BuildValue("i", sqlite3_total_changes(self->db));
1120 }
1121}
1122
Gerhard Häring0741a602007-01-14 01:43:50 +00001123static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001124{
Anthony Baxterc51ee692006-04-01 00:57:31 +00001125 PyObject* res;
1126 PyObject* begin_statement;
Georg Brandla24869a2008-07-16 22:33:18 +00001127 char* begin_statement_str;
Anthony Baxterc51ee692006-04-01 00:57:31 +00001128
1129 Py_XDECREF(self->isolation_level);
1130
Neal Norwitz5b030652006-04-16 03:28:17 +00001131 if (self->begin_statement) {
1132 PyMem_Free(self->begin_statement);
1133 self->begin_statement = NULL;
1134 }
1135
Anthony Baxterc51ee692006-04-01 00:57:31 +00001136 if (isolation_level == Py_None) {
1137 Py_INCREF(Py_None);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001138 self->isolation_level = Py_None;
1139
Gerhard Häring0741a602007-01-14 01:43:50 +00001140 res = pysqlite_connection_commit(self, NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001141 if (!res) {
1142 return -1;
1143 }
Anthony Baxterc51ee692006-04-01 00:57:31 +00001144 Py_DECREF(res);
1145
1146 self->inTransaction = 0;
1147 } else {
1148 Py_INCREF(isolation_level);
1149 self->isolation_level = isolation_level;
1150
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001151 begin_statement = PyString_FromString("BEGIN ");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001152 if (!begin_statement) {
1153 return -1;
1154 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001155 PyString_Concat(&begin_statement, isolation_level);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001156 if (!begin_statement) {
1157 return -1;
1158 }
1159
Georg Brandla24869a2008-07-16 22:33:18 +00001160 begin_statement_str = PyString_AsString(begin_statement);
1161 if (!begin_statement_str) {
1162 Py_DECREF(begin_statement);
1163 return -1;
1164 }
1165 self->begin_statement = PyMem_Malloc(strlen(begin_statement_str) + 2);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001166 if (!self->begin_statement) {
Georg Brandla24869a2008-07-16 22:33:18 +00001167 Py_DECREF(begin_statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001168 return -1;
1169 }
1170
Georg Brandla24869a2008-07-16 22:33:18 +00001171 strcpy(self->begin_statement, begin_statement_str);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001172 Py_DECREF(begin_statement);
1173 }
1174
1175 return 0;
1176}
1177
Gerhard Häring0741a602007-01-14 01:43:50 +00001178PyObject* pysqlite_connection_call(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001179{
1180 PyObject* sql;
Gerhard Häring0741a602007-01-14 01:43:50 +00001181 pysqlite_Statement* statement;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001182 PyObject* weakref;
Anthony Baxterc51ee692006-04-01 00:57:31 +00001183 int rc;
1184
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001185 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1186 return NULL;
1187 }
1188
Anthony Baxterc51ee692006-04-01 00:57:31 +00001189 if (!PyArg_ParseTuple(args, "O", &sql)) {
1190 return NULL;
1191 }
1192
Gerhard Häring0741a602007-01-14 01:43:50 +00001193 _pysqlite_drop_unused_statement_references(self);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001194
Gerhard Häring0741a602007-01-14 01:43:50 +00001195 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001196 if (!statement) {
1197 return NULL;
1198 }
1199
Victor Stinner6e055d72010-03-13 03:27:07 +00001200 statement->db = NULL;
1201 statement->st = NULL;
1202 statement->sql = NULL;
1203 statement->in_use = 0;
1204 statement->in_weakreflist = NULL;
1205
Gerhard Häring0741a602007-01-14 01:43:50 +00001206 rc = pysqlite_statement_create(statement, self, sql);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001207
1208 if (rc != SQLITE_OK) {
1209 if (rc == PYSQLITE_TOO_MUCH_SQL) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001210 PyErr_SetString(pysqlite_Warning, "You can only execute one statement at a time.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001211 } else if (rc == PYSQLITE_SQL_WRONG_TYPE) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001212 PyErr_SetString(pysqlite_Warning, "SQL is of wrong type. Must be string or unicode.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001213 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001214 (void)pysqlite_statement_reset(statement);
1215 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001216 }
1217
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001218 Py_CLEAR(statement);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001219 } else {
1220 weakref = PyWeakref_NewRef((PyObject*)statement, NULL);
1221 if (!weakref) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001222 Py_CLEAR(statement);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001223 goto error;
1224 }
1225
1226 if (PyList_Append(self->statements, weakref) != 0) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001227 Py_CLEAR(weakref);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001228 goto error;
1229 }
1230
1231 Py_DECREF(weakref);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001232 }
1233
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001234error:
Anthony Baxterc51ee692006-04-01 00:57:31 +00001235 return (PyObject*)statement;
1236}
1237
Gerhard Häring0741a602007-01-14 01:43:50 +00001238PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001239{
1240 PyObject* cursor = 0;
1241 PyObject* result = 0;
1242 PyObject* method = 0;
1243
1244 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1245 if (!cursor) {
1246 goto error;
1247 }
1248
1249 method = PyObject_GetAttrString(cursor, "execute");
1250 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001251 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001252 goto error;
1253 }
1254
1255 result = PyObject_CallObject(method, args);
1256 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001257 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001258 }
1259
1260error:
1261 Py_XDECREF(result);
1262 Py_XDECREF(method);
1263
1264 return cursor;
1265}
1266
Gerhard Häring0741a602007-01-14 01:43:50 +00001267PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001268{
1269 PyObject* cursor = 0;
1270 PyObject* result = 0;
1271 PyObject* method = 0;
1272
1273 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1274 if (!cursor) {
1275 goto error;
1276 }
1277
1278 method = PyObject_GetAttrString(cursor, "executemany");
1279 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001280 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001281 goto error;
1282 }
1283
1284 result = PyObject_CallObject(method, args);
1285 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001286 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001287 }
1288
1289error:
1290 Py_XDECREF(result);
1291 Py_XDECREF(method);
1292
1293 return cursor;
1294}
1295
Gerhard Häring0741a602007-01-14 01:43:50 +00001296PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001297{
1298 PyObject* cursor = 0;
1299 PyObject* result = 0;
1300 PyObject* method = 0;
1301
1302 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1303 if (!cursor) {
1304 goto error;
1305 }
1306
1307 method = PyObject_GetAttrString(cursor, "executescript");
1308 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001309 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001310 goto error;
1311 }
1312
1313 result = PyObject_CallObject(method, args);
1314 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001315 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001316 }
1317
1318error:
1319 Py_XDECREF(result);
1320 Py_XDECREF(method);
1321
1322 return cursor;
1323}
1324
Anthony Baxter72289a62006-04-04 06:29:05 +00001325/* ------------------------- COLLATION CODE ------------------------ */
1326
1327static int
Gerhard Häring0741a602007-01-14 01:43:50 +00001328pysqlite_collation_callback(
Anthony Baxter72289a62006-04-04 06:29:05 +00001329 void* context,
1330 int text1_length, const void* text1_data,
1331 int text2_length, const void* text2_data)
1332{
1333 PyObject* callback = (PyObject*)context;
1334 PyObject* string1 = 0;
1335 PyObject* string2 = 0;
Georg Brandld3eaa742009-04-05 11:07:14 +00001336#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001337 PyGILState_STATE gilstate;
Georg Brandld3eaa742009-04-05 11:07:14 +00001338#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001339 PyObject* retval = NULL;
1340 int result = 0;
Georg Brandld3eaa742009-04-05 11:07:14 +00001341#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001342 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +00001343#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001344
1345 if (PyErr_Occurred()) {
1346 goto finally;
1347 }
1348
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001349 string1 = PyString_FromStringAndSize((const char*)text1_data, text1_length);
1350 string2 = PyString_FromStringAndSize((const char*)text2_data, text2_length);
Anthony Baxter72289a62006-04-04 06:29:05 +00001351
1352 if (!string1 || !string2) {
1353 goto finally; /* failed to allocate strings */
1354 }
1355
1356 retval = PyObject_CallFunctionObjArgs(callback, string1, string2, NULL);
1357
1358 if (!retval) {
1359 /* execution failed */
1360 goto finally;
1361 }
1362
1363 result = PyInt_AsLong(retval);
1364 if (PyErr_Occurred()) {
1365 result = 0;
1366 }
1367
1368finally:
1369 Py_XDECREF(string1);
1370 Py_XDECREF(string2);
1371 Py_XDECREF(retval);
Georg Brandld3eaa742009-04-05 11:07:14 +00001372#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001373 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +00001374#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001375 return result;
1376}
1377
1378static PyObject *
Gerhard Häring0741a602007-01-14 01:43:50 +00001379pysqlite_connection_interrupt(pysqlite_Connection* self, PyObject* args)
Gerhard Häring1541ef02006-06-13 22:24:47 +00001380{
1381 PyObject* retval = NULL;
1382
Gerhard Häring0741a602007-01-14 01:43:50 +00001383 if (!pysqlite_check_connection(self)) {
Gerhard Häring1541ef02006-06-13 22:24:47 +00001384 goto finally;
1385 }
1386
1387 sqlite3_interrupt(self->db);
1388
1389 Py_INCREF(Py_None);
1390 retval = Py_None;
1391
1392finally:
1393 return retval;
1394}
1395
Gregory P. Smithb9803422008-03-28 08:32:09 +00001396/* Function author: Paul Kippes <kippesp@gmail.com>
1397 * Class method of Connection to call the Python function _iterdump
1398 * of the sqlite3 module.
1399 */
1400static PyObject *
1401pysqlite_connection_iterdump(pysqlite_Connection* self, PyObject* args)
1402{
1403 PyObject* retval = NULL;
1404 PyObject* module = NULL;
1405 PyObject* module_dict;
1406 PyObject* pyfn_iterdump;
1407
1408 if (!pysqlite_check_connection(self)) {
1409 goto finally;
1410 }
1411
1412 module = PyImport_ImportModule(MODULE_NAME ".dump");
1413 if (!module) {
1414 goto finally;
1415 }
1416
1417 module_dict = PyModule_GetDict(module);
1418 if (!module_dict) {
1419 goto finally;
1420 }
1421
1422 pyfn_iterdump = PyDict_GetItemString(module_dict, "_iterdump");
1423 if (!pyfn_iterdump) {
1424 PyErr_SetString(pysqlite_OperationalError, "Failed to obtain _iterdump() reference");
1425 goto finally;
1426 }
1427
1428 args = PyTuple_New(1);
1429 if (!args) {
1430 goto finally;
1431 }
1432 Py_INCREF(self);
1433 PyTuple_SetItem(args, 0, (PyObject*)self);
1434 retval = PyObject_CallObject(pyfn_iterdump, args);
1435
1436finally:
1437 Py_XDECREF(args);
1438 Py_XDECREF(module);
1439 return retval;
1440}
1441
Gerhard Häring1541ef02006-06-13 22:24:47 +00001442static PyObject *
Gerhard Häring0741a602007-01-14 01:43:50 +00001443pysqlite_connection_create_collation(pysqlite_Connection* self, PyObject* args)
Anthony Baxter72289a62006-04-04 06:29:05 +00001444{
1445 PyObject* callable;
1446 PyObject* uppercase_name = 0;
1447 PyObject* name;
1448 PyObject* retval;
1449 char* chk;
1450 int rc;
1451
Gerhard Häring0741a602007-01-14 01:43:50 +00001452 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001453 goto finally;
1454 }
1455
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001456 if (!PyArg_ParseTuple(args, "O!O:create_collation(name, callback)", &PyString_Type, &name, &callable)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001457 goto finally;
1458 }
1459
1460 uppercase_name = PyObject_CallMethod(name, "upper", "");
1461 if (!uppercase_name) {
1462 goto finally;
1463 }
1464
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001465 chk = PyString_AsString(uppercase_name);
Anthony Baxter72289a62006-04-04 06:29:05 +00001466 while (*chk) {
1467 if ((*chk >= '0' && *chk <= '9')
1468 || (*chk >= 'A' && *chk <= 'Z')
1469 || (*chk == '_'))
1470 {
1471 chk++;
1472 } else {
Gerhard Häring0741a602007-01-14 01:43:50 +00001473 PyErr_SetString(pysqlite_ProgrammingError, "invalid character in collation name");
Anthony Baxter72289a62006-04-04 06:29:05 +00001474 goto finally;
1475 }
1476 }
1477
1478 if (callable != Py_None && !PyCallable_Check(callable)) {
1479 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
1480 goto finally;
1481 }
1482
1483 if (callable != Py_None) {
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001484 if (PyDict_SetItem(self->collations, uppercase_name, callable) == -1)
1485 goto finally;
Anthony Baxter72289a62006-04-04 06:29:05 +00001486 } else {
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001487 if (PyDict_DelItem(self->collations, uppercase_name) == -1)
1488 goto finally;
Anthony Baxter72289a62006-04-04 06:29:05 +00001489 }
1490
1491 rc = sqlite3_create_collation(self->db,
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001492 PyString_AsString(uppercase_name),
Anthony Baxter72289a62006-04-04 06:29:05 +00001493 SQLITE_UTF8,
1494 (callable != Py_None) ? callable : NULL,
Gerhard Häring0741a602007-01-14 01:43:50 +00001495 (callable != Py_None) ? pysqlite_collation_callback : NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001496 if (rc != SQLITE_OK) {
1497 PyDict_DelItem(self->collations, uppercase_name);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001498 _pysqlite_seterror(self->db, NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001499 goto finally;
1500 }
1501
1502finally:
1503 Py_XDECREF(uppercase_name);
1504
1505 if (PyErr_Occurred()) {
1506 retval = NULL;
1507 } else {
1508 Py_INCREF(Py_None);
1509 retval = Py_None;
1510 }
1511
1512 return retval;
1513}
1514
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001515/* Called when the connection is used as a context manager. Returns itself as a
1516 * convenience to the caller. */
1517static PyObject *
1518pysqlite_connection_enter(pysqlite_Connection* self, PyObject* args)
1519{
1520 Py_INCREF(self);
1521 return (PyObject*)self;
1522}
1523
1524/** Called when the connection is used as a context manager. If there was any
1525 * exception, a rollback takes place; otherwise we commit. */
1526static PyObject *
1527pysqlite_connection_exit(pysqlite_Connection* self, PyObject* args)
1528{
1529 PyObject* exc_type, *exc_value, *exc_tb;
1530 char* method_name;
1531 PyObject* result;
1532
1533 if (!PyArg_ParseTuple(args, "OOO", &exc_type, &exc_value, &exc_tb)) {
1534 return NULL;
1535 }
1536
1537 if (exc_type == Py_None && exc_value == Py_None && exc_tb == Py_None) {
1538 method_name = "commit";
1539 } else {
1540 method_name = "rollback";
1541 }
1542
1543 result = PyObject_CallMethod((PyObject*)self, method_name, "");
1544 if (!result) {
1545 return NULL;
1546 }
1547 Py_DECREF(result);
1548
1549 Py_INCREF(Py_False);
1550 return Py_False;
1551}
1552
Anthony Baxterc51ee692006-04-01 00:57:31 +00001553static char connection_doc[] =
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001554PyDoc_STR("SQLite database connection object.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001555
1556static PyGetSetDef connection_getset[] = {
Gerhard Häring0741a602007-01-14 01:43:50 +00001557 {"isolation_level", (getter)pysqlite_connection_get_isolation_level, (setter)pysqlite_connection_set_isolation_level},
1558 {"total_changes", (getter)pysqlite_connection_get_total_changes, (setter)0},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001559 {NULL}
1560};
1561
1562static PyMethodDef connection_methods[] = {
Gerhard Häring0741a602007-01-14 01:43:50 +00001563 {"cursor", (PyCFunction)pysqlite_connection_cursor, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001564 PyDoc_STR("Return a cursor for the connection.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001565 {"close", (PyCFunction)pysqlite_connection_close, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001566 PyDoc_STR("Closes the connection.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001567 {"commit", (PyCFunction)pysqlite_connection_commit, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001568 PyDoc_STR("Commit the current transaction.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001569 {"rollback", (PyCFunction)pysqlite_connection_rollback, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001570 PyDoc_STR("Roll back the current transaction.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001571 {"create_function", (PyCFunction)pysqlite_connection_create_function, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001572 PyDoc_STR("Creates a new function. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001573 {"create_aggregate", (PyCFunction)pysqlite_connection_create_aggregate, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001574 PyDoc_STR("Creates a new aggregate. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001575 {"set_authorizer", (PyCFunction)pysqlite_connection_set_authorizer, METH_VARARGS|METH_KEYWORDS,
Gerhard Häring1541ef02006-06-13 22:24:47 +00001576 PyDoc_STR("Sets authorizer callback. Non-standard.")},
Gerhard Häring3bbb6722010-03-05 09:12:37 +00001577 #ifdef HAVE_LOAD_EXTENSION
1578 {"enable_load_extension", (PyCFunction)pysqlite_enable_load_extension, METH_VARARGS,
1579 PyDoc_STR("Enable dynamic loading of SQLite extension modules. Non-standard.")},
1580 {"load_extension", (PyCFunction)pysqlite_load_extension, METH_VARARGS,
1581 PyDoc_STR("Load SQLite extension module. Non-standard.")},
1582 #endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001583 {"set_progress_handler", (PyCFunction)pysqlite_connection_set_progress_handler, METH_VARARGS|METH_KEYWORDS,
1584 PyDoc_STR("Sets progress handler callback. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001585 {"execute", (PyCFunction)pysqlite_connection_execute, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001586 PyDoc_STR("Executes a SQL statement. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001587 {"executemany", (PyCFunction)pysqlite_connection_executemany, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001588 PyDoc_STR("Repeatedly executes a SQL statement. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001589 {"executescript", (PyCFunction)pysqlite_connection_executescript, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001590 PyDoc_STR("Executes a multiple SQL statements at once. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001591 {"create_collation", (PyCFunction)pysqlite_connection_create_collation, METH_VARARGS,
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001592 PyDoc_STR("Creates a collation function. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001593 {"interrupt", (PyCFunction)pysqlite_connection_interrupt, METH_NOARGS,
Gerhard Häring1541ef02006-06-13 22:24:47 +00001594 PyDoc_STR("Abort any pending database operation. Non-standard.")},
Gregory P. Smithb9803422008-03-28 08:32:09 +00001595 {"iterdump", (PyCFunction)pysqlite_connection_iterdump, METH_NOARGS,
Gerhard Häringef2276b2008-09-12 13:54:06 +00001596 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 +00001597 {"__enter__", (PyCFunction)pysqlite_connection_enter, METH_NOARGS,
1598 PyDoc_STR("For context manager. Non-standard.")},
1599 {"__exit__", (PyCFunction)pysqlite_connection_exit, METH_VARARGS,
1600 PyDoc_STR("For context manager. Non-standard.")},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001601 {NULL, NULL}
1602};
1603
1604static struct PyMemberDef connection_members[] =
1605{
Gerhard Häring0741a602007-01-14 01:43:50 +00001606 {"Warning", T_OBJECT, offsetof(pysqlite_Connection, Warning), RO},
1607 {"Error", T_OBJECT, offsetof(pysqlite_Connection, Error), RO},
1608 {"InterfaceError", T_OBJECT, offsetof(pysqlite_Connection, InterfaceError), RO},
1609 {"DatabaseError", T_OBJECT, offsetof(pysqlite_Connection, DatabaseError), RO},
1610 {"DataError", T_OBJECT, offsetof(pysqlite_Connection, DataError), RO},
1611 {"OperationalError", T_OBJECT, offsetof(pysqlite_Connection, OperationalError), RO},
1612 {"IntegrityError", T_OBJECT, offsetof(pysqlite_Connection, IntegrityError), RO},
1613 {"InternalError", T_OBJECT, offsetof(pysqlite_Connection, InternalError), RO},
1614 {"ProgrammingError", T_OBJECT, offsetof(pysqlite_Connection, ProgrammingError), RO},
1615 {"NotSupportedError", T_OBJECT, offsetof(pysqlite_Connection, NotSupportedError), RO},
1616 {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)},
1617 {"text_factory", T_OBJECT, offsetof(pysqlite_Connection, text_factory)},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001618 {NULL}
1619};
1620
Gerhard Häring0741a602007-01-14 01:43:50 +00001621PyTypeObject pysqlite_ConnectionType = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001622 PyVarObject_HEAD_INIT(NULL, 0)
Anthony Baxter8e7b4902006-04-05 18:25:33 +00001623 MODULE_NAME ".Connection", /* tp_name */
Gerhard Häring0741a602007-01-14 01:43:50 +00001624 sizeof(pysqlite_Connection), /* tp_basicsize */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001625 0, /* tp_itemsize */
Gerhard Häring0741a602007-01-14 01:43:50 +00001626 (destructor)pysqlite_connection_dealloc, /* tp_dealloc */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001627 0, /* tp_print */
1628 0, /* tp_getattr */
1629 0, /* tp_setattr */
1630 0, /* tp_compare */
1631 0, /* tp_repr */
1632 0, /* tp_as_number */
1633 0, /* tp_as_sequence */
1634 0, /* tp_as_mapping */
1635 0, /* tp_hash */
Gerhard Häring0741a602007-01-14 01:43:50 +00001636 (ternaryfunc)pysqlite_connection_call, /* tp_call */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001637 0, /* tp_str */
1638 0, /* tp_getattro */
1639 0, /* tp_setattro */
1640 0, /* tp_as_buffer */
1641 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
1642 connection_doc, /* tp_doc */
1643 0, /* tp_traverse */
1644 0, /* tp_clear */
1645 0, /* tp_richcompare */
1646 0, /* tp_weaklistoffset */
1647 0, /* tp_iter */
1648 0, /* tp_iternext */
1649 connection_methods, /* tp_methods */
1650 connection_members, /* tp_members */
1651 connection_getset, /* tp_getset */
1652 0, /* tp_base */
1653 0, /* tp_dict */
1654 0, /* tp_descr_get */
1655 0, /* tp_descr_set */
1656 0, /* tp_dictoffset */
Gerhard Häring0741a602007-01-14 01:43:50 +00001657 (initproc)pysqlite_connection_init, /* tp_init */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001658 0, /* tp_alloc */
1659 0, /* tp_new */
1660 0 /* tp_free */
1661};
1662
Gerhard Häring0741a602007-01-14 01:43:50 +00001663extern int pysqlite_connection_setup_types(void)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001664{
Gerhard Häring0741a602007-01-14 01:43:50 +00001665 pysqlite_ConnectionType.tp_new = PyType_GenericNew;
1666 return PyType_Ready(&pysqlite_ConnectionType);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001667}