blob: 7d12d5ef61f7dbdf54334e865315868a594553f8 [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001/* connection.c - the connection type
2 *
Florent Xiclunac934f322010-09-03 23:47:32 +00003 * Copyright (C) 2004-2010 Gerhard Häring <gh@ghaering.de>
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004 *
5 * This file is part of pysqlite.
Victor Stinner86999502010-05-19 01:27:23 +00006 *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +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"
R. David Murrayd35251d2010-06-01 01:32:12 +000026#include "structmember.h"
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000027#include "connection.h"
28#include "statement.h"
29#include "cursor.h"
30#include "prepare_protocol.h"
31#include "util.h"
32#include "sqlitecompat.h"
33
34#include "pythread.h"
35
Gerhard Häringe7ea7452008-03-29 00:45:29 +000036#define ACTION_FINALIZE 1
37#define ACTION_RESET 2
38
Gerhard Häringf9cee222010-03-05 15:20:03 +000039#if SQLITE_VERSION_NUMBER >= 3003008
40#ifndef SQLITE_OMIT_LOAD_EXTENSION
41#define HAVE_LOAD_EXTENSION
42#endif
43#endif
44
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000045static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level);
Gerhard Häringf9cee222010-03-05 15:20:03 +000046static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000047
Thomas Wouters0e3f5912006-08-11 14:57:12 +000048
Benjamin Petersond7b03282008-09-13 15:58:53 +000049static void _sqlite3_result_error(sqlite3_context* ctx, const char* errmsg, int len)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000050{
51 /* in older SQLite versions, calling sqlite3_result_error in callbacks
52 * triggers a bug in SQLite that leads either to irritating results or
53 * segfaults, depending on the SQLite version */
54#if SQLITE_VERSION_NUMBER >= 3003003
55 sqlite3_result_error(ctx, errmsg, len);
56#else
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000057 PyErr_SetString(pysqlite_OperationalError, errmsg);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000058#endif
59}
60
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000061int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000062{
63 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
64
65 char* database;
66 int detect_types = 0;
67 PyObject* isolation_level = NULL;
68 PyObject* factory = NULL;
69 int check_same_thread = 1;
70 int cached_statements = 100;
71 double timeout = 5.0;
72 int rc;
73
74 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|diOiOi", kwlist,
75 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
76 {
Gerhard Häringe7ea7452008-03-29 00:45:29 +000077 return -1;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000078 }
79
Gerhard Häringf9cee222010-03-05 15:20:03 +000080 self->initialized = 1;
81
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000082 self->begin_statement = NULL;
83
84 self->statement_cache = NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000085 self->statements = NULL;
Gerhard Häringf9cee222010-03-05 15:20:03 +000086 self->cursors = NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000087
88 Py_INCREF(Py_None);
89 self->row_factory = Py_None;
90
91 Py_INCREF(&PyUnicode_Type);
92 self->text_factory = (PyObject*)&PyUnicode_Type;
93
94 Py_BEGIN_ALLOW_THREADS
95 rc = sqlite3_open(database, &self->db);
96 Py_END_ALLOW_THREADS
97
98 if (rc != SQLITE_OK) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +000099 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000100 return -1;
101 }
102
103 if (!isolation_level) {
Neal Norwitzefee9f52007-10-27 02:50:52 +0000104 isolation_level = PyUnicode_FromString("");
Thomas Wouters477c8d52006-05-27 19:21:47 +0000105 if (!isolation_level) {
106 return -1;
107 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000108 } else {
109 Py_INCREF(isolation_level);
110 }
111 self->isolation_level = NULL;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000112 pysqlite_connection_set_isolation_level(self, isolation_level);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000113 Py_DECREF(isolation_level);
114
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000115 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000116 if (PyErr_Occurred()) {
117 return -1;
118 }
119
Gerhard Häringf9cee222010-03-05 15:20:03 +0000120 self->created_statements = 0;
121 self->created_cursors = 0;
122
123 /* Create lists of weak references to statements/cursors */
Thomas Wouters477c8d52006-05-27 19:21:47 +0000124 self->statements = PyList_New(0);
Gerhard Häringf9cee222010-03-05 15:20:03 +0000125 self->cursors = PyList_New(0);
126 if (!self->statements || !self->cursors) {
Thomas Wouters477c8d52006-05-27 19:21:47 +0000127 return -1;
128 }
Thomas Wouters477c8d52006-05-27 19:21:47 +0000129
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000130 /* By default, the Cache class INCREFs the factory in its initializer, and
131 * decrefs it in its deallocator method. Since this would create a circular
132 * reference here, we're breaking it by decrementing self, and telling the
133 * cache class to not decref the factory (self) in its deallocator.
134 */
135 self->statement_cache->decref_factory = 0;
136 Py_DECREF(self);
137
138 self->inTransaction = 0;
139 self->detect_types = detect_types;
140 self->timeout = timeout;
141 (void)sqlite3_busy_timeout(self->db, (int)(timeout*1000));
Georg Brandldfd73442009-04-05 11:47:34 +0000142#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000143 self->thread_ident = PyThread_get_thread_ident();
Georg Brandldfd73442009-04-05 11:47:34 +0000144#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000145 self->check_same_thread = check_same_thread;
146
147 self->function_pinboard = PyDict_New();
148 if (!self->function_pinboard) {
149 return -1;
150 }
151
152 self->collations = PyDict_New();
153 if (!self->collations) {
154 return -1;
155 }
156
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000157 self->Warning = pysqlite_Warning;
158 self->Error = pysqlite_Error;
159 self->InterfaceError = pysqlite_InterfaceError;
160 self->DatabaseError = pysqlite_DatabaseError;
161 self->DataError = pysqlite_DataError;
162 self->OperationalError = pysqlite_OperationalError;
163 self->IntegrityError = pysqlite_IntegrityError;
164 self->InternalError = pysqlite_InternalError;
165 self->ProgrammingError = pysqlite_ProgrammingError;
166 self->NotSupportedError = pysqlite_NotSupportedError;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000167
168 return 0;
169}
170
Thomas Wouters477c8d52006-05-27 19:21:47 +0000171/* Empty the entire statement cache of this connection */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000172void pysqlite_flush_statement_cache(pysqlite_Connection* self)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000173{
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000174 pysqlite_Node* node;
175 pysqlite_Statement* statement;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000176
177 node = self->statement_cache->first;
178
179 while (node) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000180 statement = (pysqlite_Statement*)(node->data);
181 (void)pysqlite_statement_finalize(statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000182 node = node->next;
183 }
184
185 Py_DECREF(self->statement_cache);
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000186 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O", self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000187 Py_DECREF(self);
188 self->statement_cache->decref_factory = 0;
189}
190
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000191/* action in (ACTION_RESET, ACTION_FINALIZE) */
Gerhard Häringf9cee222010-03-05 15:20:03 +0000192void pysqlite_do_all_statements(pysqlite_Connection* self, int action, int reset_cursors)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000193{
Thomas Wouters477c8d52006-05-27 19:21:47 +0000194 int i;
195 PyObject* weakref;
196 PyObject* statement;
Gerhard Häringf9cee222010-03-05 15:20:03 +0000197 pysqlite_Cursor* cursor;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000198
Thomas Wouters477c8d52006-05-27 19:21:47 +0000199 for (i = 0; i < PyList_Size(self->statements); i++) {
200 weakref = PyList_GetItem(self->statements, i);
201 statement = PyWeakref_GetObject(weakref);
202 if (statement != Py_None) {
Benjamin Peterson5c2b09e2011-05-31 21:31:37 -0500203 Py_INCREF(statement);
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000204 if (action == ACTION_RESET) {
205 (void)pysqlite_statement_reset((pysqlite_Statement*)statement);
206 } else {
207 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement);
208 }
Benjamin Peterson5c2b09e2011-05-31 21:31:37 -0500209 Py_DECREF(statement);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000210 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000211 }
Gerhard Häringf9cee222010-03-05 15:20:03 +0000212
213 if (reset_cursors) {
214 for (i = 0; i < PyList_Size(self->cursors); i++) {
215 weakref = PyList_GetItem(self->cursors, i);
216 cursor = (pysqlite_Cursor*)PyWeakref_GetObject(weakref);
217 if ((PyObject*)cursor != Py_None) {
218 cursor->reset = 1;
219 }
220 }
221 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000222}
223
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000224void pysqlite_connection_dealloc(pysqlite_Connection* self)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000225{
226 Py_XDECREF(self->statement_cache);
227
228 /* Clean up if user has not called .close() explicitly. */
229 if (self->db) {
230 Py_BEGIN_ALLOW_THREADS
231 sqlite3_close(self->db);
232 Py_END_ALLOW_THREADS
233 }
234
235 if (self->begin_statement) {
236 PyMem_Free(self->begin_statement);
237 }
238 Py_XDECREF(self->isolation_level);
239 Py_XDECREF(self->function_pinboard);
240 Py_XDECREF(self->row_factory);
241 Py_XDECREF(self->text_factory);
242 Py_XDECREF(self->collations);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000243 Py_XDECREF(self->statements);
Gerhard Häringf9cee222010-03-05 15:20:03 +0000244 Py_XDECREF(self->cursors);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000245
Christian Heimes90aa7642007-12-19 02:45:37 +0000246 Py_TYPE(self)->tp_free((PyObject*)self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000247}
248
Gerhard Häringf9cee222010-03-05 15:20:03 +0000249/*
250 * Registers a cursor with the connection.
251 *
252 * 0 => error; 1 => ok
253 */
254int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor)
255{
256 PyObject* weakref;
257
258 weakref = PyWeakref_NewRef((PyObject*)cursor, NULL);
259 if (!weakref) {
260 goto error;
261 }
262
263 if (PyList_Append(connection->cursors, weakref) != 0) {
264 Py_CLEAR(weakref);
265 goto error;
266 }
267
268 Py_DECREF(weakref);
269
270 return 1;
271error:
272 return 0;
273}
274
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000275PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000276{
277 static char *kwlist[] = {"factory", NULL, NULL};
278 PyObject* factory = NULL;
279 PyObject* cursor;
280
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000281 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", kwlist,
282 &factory)) {
283 return NULL;
284 }
285
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000286 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000287 return NULL;
288 }
289
290 if (factory == NULL) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000291 factory = (PyObject*)&pysqlite_CursorType;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000292 }
293
294 cursor = PyObject_CallFunction(factory, "O", self);
295
Gerhard Häringf9cee222010-03-05 15:20:03 +0000296 _pysqlite_drop_unused_cursor_references(self);
297
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000298 if (cursor && self->row_factory != Py_None) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000299 Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000300 Py_INCREF(self->row_factory);
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000301 ((pysqlite_Cursor*)cursor)->row_factory = self->row_factory;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000302 }
303
304 return cursor;
305}
306
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000307PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000308{
309 int rc;
310
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000311 if (!pysqlite_check_thread(self)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000312 return NULL;
313 }
314
Gerhard Häringf9cee222010-03-05 15:20:03 +0000315 pysqlite_do_all_statements(self, ACTION_FINALIZE, 1);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000316
317 if (self->db) {
318 Py_BEGIN_ALLOW_THREADS
319 rc = sqlite3_close(self->db);
320 Py_END_ALLOW_THREADS
321
322 if (rc != SQLITE_OK) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000323 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000324 return NULL;
325 } else {
326 self->db = NULL;
327 }
328 }
329
330 Py_INCREF(Py_None);
331 return Py_None;
332}
333
334/*
335 * Checks if a connection object is usable (i. e. not closed).
336 *
337 * 0 => error; 1 => ok
338 */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000339int pysqlite_check_connection(pysqlite_Connection* con)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000340{
Gerhard Häringf9cee222010-03-05 15:20:03 +0000341 if (!con->initialized) {
342 PyErr_SetString(pysqlite_ProgrammingError, "Base Connection.__init__ not called.");
343 return 0;
344 }
345
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000346 if (!con->db) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000347 PyErr_SetString(pysqlite_ProgrammingError, "Cannot operate on a closed database.");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000348 return 0;
349 } else {
350 return 1;
351 }
352}
353
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000354PyObject* _pysqlite_connection_begin(pysqlite_Connection* self)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000355{
356 int rc;
357 const char* tail;
358 sqlite3_stmt* statement;
359
360 Py_BEGIN_ALLOW_THREADS
361 rc = sqlite3_prepare(self->db, self->begin_statement, -1, &statement, &tail);
362 Py_END_ALLOW_THREADS
363
364 if (rc != SQLITE_OK) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000365 _pysqlite_seterror(self->db, statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000366 goto error;
367 }
368
Benjamin Petersond7b03282008-09-13 15:58:53 +0000369 rc = pysqlite_step(statement, self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000370 if (rc == SQLITE_DONE) {
371 self->inTransaction = 1;
372 } else {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000373 _pysqlite_seterror(self->db, statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000374 }
375
376 Py_BEGIN_ALLOW_THREADS
377 rc = sqlite3_finalize(statement);
378 Py_END_ALLOW_THREADS
379
380 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000381 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000382 }
383
384error:
385 if (PyErr_Occurred()) {
386 return NULL;
387 } else {
388 Py_INCREF(Py_None);
389 return Py_None;
390 }
391}
392
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000393PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000394{
395 int rc;
396 const char* tail;
397 sqlite3_stmt* statement;
398
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000399 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000400 return NULL;
401 }
402
403 if (self->inTransaction) {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000404 pysqlite_do_all_statements(self, ACTION_RESET, 0);
405
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000406 Py_BEGIN_ALLOW_THREADS
407 rc = sqlite3_prepare(self->db, "COMMIT", -1, &statement, &tail);
408 Py_END_ALLOW_THREADS
409 if (rc != SQLITE_OK) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000410 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000411 goto error;
412 }
413
Benjamin Petersond7b03282008-09-13 15:58:53 +0000414 rc = pysqlite_step(statement, self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000415 if (rc == SQLITE_DONE) {
416 self->inTransaction = 0;
417 } else {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000418 _pysqlite_seterror(self->db, statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000419 }
420
421 Py_BEGIN_ALLOW_THREADS
422 rc = sqlite3_finalize(statement);
423 Py_END_ALLOW_THREADS
424 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000425 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000426 }
427
428 }
429
430error:
431 if (PyErr_Occurred()) {
432 return NULL;
433 } else {
434 Py_INCREF(Py_None);
435 return Py_None;
436 }
437}
438
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000439PyObject* pysqlite_connection_rollback(pysqlite_Connection* self, PyObject* args)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000440{
441 int rc;
442 const char* tail;
443 sqlite3_stmt* statement;
444
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000445 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000446 return NULL;
447 }
448
449 if (self->inTransaction) {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000450 pysqlite_do_all_statements(self, ACTION_RESET, 1);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000451
452 Py_BEGIN_ALLOW_THREADS
Georg Brandl0eaa9402007-08-11 15:39:18 +0000453 rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000454 Py_END_ALLOW_THREADS
455 if (rc != SQLITE_OK) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000456 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000457 goto error;
458 }
459
Benjamin Petersond7b03282008-09-13 15:58:53 +0000460 rc = pysqlite_step(statement, self);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000461 if (rc == SQLITE_DONE) {
462 self->inTransaction = 0;
463 } else {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000464 _pysqlite_seterror(self->db, statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000465 }
466
467 Py_BEGIN_ALLOW_THREADS
468 rc = sqlite3_finalize(statement);
469 Py_END_ALLOW_THREADS
470 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000471 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000472 }
473
474 }
475
476error:
477 if (PyErr_Occurred()) {
478 return NULL;
479 } else {
480 Py_INCREF(Py_None);
481 return Py_None;
482 }
483}
484
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000485void _pysqlite_set_result(sqlite3_context* context, PyObject* py_val)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000486{
487 long longval;
488 const char* buffer;
489 Py_ssize_t buflen;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000490
Thomas Wouters477c8d52006-05-27 19:21:47 +0000491 if ((!py_val) || PyErr_Occurred()) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000492 sqlite3_result_null(context);
493 } else if (py_val == Py_None) {
494 sqlite3_result_null(context);
Christian Heimes217cfd12007-12-02 14:31:20 +0000495 } else if (PyLong_Check(py_val)) {
496 longval = PyLong_AsLong(py_val);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000497 sqlite3_result_int64(context, (PY_LONG_LONG)longval);
498 } else if (PyFloat_Check(py_val)) {
499 sqlite3_result_double(context, PyFloat_AsDouble(py_val));
Guido van Rossumbae07c92007-10-08 02:46:15 +0000500 } else if (PyUnicode_Check(py_val)) {
Victor Stinner86999502010-05-19 01:27:23 +0000501 char *str = _PyUnicode_AsString(py_val);
502 if (str != NULL)
503 sqlite3_result_text(context, str, -1, SQLITE_TRANSIENT);
Guido van Rossumbae07c92007-10-08 02:46:15 +0000504 } else if (PyObject_CheckBuffer(py_val)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000505 if (PyObject_AsCharBuffer(py_val, &buffer, &buflen) != 0) {
506 PyErr_SetString(PyExc_ValueError, "could not convert BLOB to buffer");
Thomas Wouters477c8d52006-05-27 19:21:47 +0000507 } else {
508 sqlite3_result_blob(context, buffer, buflen, SQLITE_TRANSIENT);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000509 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000510 } else {
511 /* TODO: raise error */
512 }
513}
514
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000515PyObject* _pysqlite_build_py_params(sqlite3_context *context, int argc, sqlite3_value** argv)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000516{
517 PyObject* args;
518 int i;
519 sqlite3_value* cur_value;
520 PyObject* cur_py_value;
521 const char* val_str;
522 PY_LONG_LONG val_int;
523 Py_ssize_t buflen;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000524
525 args = PyTuple_New(argc);
526 if (!args) {
527 return NULL;
528 }
529
530 for (i = 0; i < argc; i++) {
531 cur_value = argv[i];
532 switch (sqlite3_value_type(argv[i])) {
533 case SQLITE_INTEGER:
534 val_int = sqlite3_value_int64(cur_value);
Christian Heimes217cfd12007-12-02 14:31:20 +0000535 cur_py_value = PyLong_FromLong((long)val_int);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000536 break;
537 case SQLITE_FLOAT:
538 cur_py_value = PyFloat_FromDouble(sqlite3_value_double(cur_value));
539 break;
540 case SQLITE_TEXT:
541 val_str = (const char*)sqlite3_value_text(cur_value);
Guido van Rossum98297ee2007-11-06 21:34:58 +0000542 cur_py_value = PyUnicode_FromString(val_str);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000543 /* TODO: have a way to show errors here */
544 if (!cur_py_value) {
Thomas Wouters477c8d52006-05-27 19:21:47 +0000545 PyErr_Clear();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000546 Py_INCREF(Py_None);
547 cur_py_value = Py_None;
548 }
549 break;
550 case SQLITE_BLOB:
551 buflen = sqlite3_value_bytes(cur_value);
Christian Heimes72b710a2008-05-26 13:28:38 +0000552 cur_py_value = PyBytes_FromStringAndSize(
Guido van Rossumbae07c92007-10-08 02:46:15 +0000553 sqlite3_value_blob(cur_value), buflen);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000554 break;
555 case SQLITE_NULL:
556 default:
557 Py_INCREF(Py_None);
558 cur_py_value = Py_None;
559 }
Thomas Wouters477c8d52006-05-27 19:21:47 +0000560
561 if (!cur_py_value) {
562 Py_DECREF(args);
563 return NULL;
564 }
565
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000566 PyTuple_SetItem(args, i, cur_py_value);
567
568 }
569
570 return args;
571}
572
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000573void _pysqlite_func_callback(sqlite3_context* context, int argc, sqlite3_value** argv)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000574{
575 PyObject* args;
576 PyObject* py_func;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000577 PyObject* py_retval = NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000578
Georg Brandldfd73442009-04-05 11:47:34 +0000579#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000580 PyGILState_STATE threadstate;
581
582 threadstate = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000583#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000584
585 py_func = (PyObject*)sqlite3_user_data(context);
586
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000587 args = _pysqlite_build_py_params(context, argc, argv);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000588 if (args) {
589 py_retval = PyObject_CallObject(py_func, args);
590 Py_DECREF(args);
591 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000592
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000593 if (py_retval) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000594 _pysqlite_set_result(context, py_retval);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000595 Py_DECREF(py_retval);
596 } else {
597 if (_enable_callback_tracebacks) {
598 PyErr_Print();
599 } else {
600 PyErr_Clear();
601 }
602 _sqlite3_result_error(context, "user-defined function raised exception", -1);
603 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000604
Georg Brandldfd73442009-04-05 11:47:34 +0000605#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000606 PyGILState_Release(threadstate);
Georg Brandldfd73442009-04-05 11:47:34 +0000607#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000608}
609
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000610static void _pysqlite_step_callback(sqlite3_context *context, int argc, sqlite3_value** params)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000611{
612 PyObject* args;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000613 PyObject* function_result = NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000614 PyObject* aggregate_class;
615 PyObject** aggregate_instance;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000616 PyObject* stepmethod = NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000617
Georg Brandldfd73442009-04-05 11:47:34 +0000618#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000619 PyGILState_STATE threadstate;
620
621 threadstate = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000622#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000623
624 aggregate_class = (PyObject*)sqlite3_user_data(context);
625
626 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
627
628 if (*aggregate_instance == 0) {
629 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
630
Thomas Wouters477c8d52006-05-27 19:21:47 +0000631 if (PyErr_Occurred()) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000632 *aggregate_instance = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000633 if (_enable_callback_tracebacks) {
634 PyErr_Print();
635 } else {
636 PyErr_Clear();
637 }
638 _sqlite3_result_error(context, "user-defined aggregate's '__init__' method raised error", -1);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000639 goto error;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000640 }
641 }
642
643 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
Thomas Wouters477c8d52006-05-27 19:21:47 +0000644 if (!stepmethod) {
645 goto error;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000646 }
647
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000648 args = _pysqlite_build_py_params(context, argc, params);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000649 if (!args) {
650 goto error;
651 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000652
653 function_result = PyObject_CallObject(stepmethod, args);
654 Py_DECREF(args);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000655
Thomas Wouters477c8d52006-05-27 19:21:47 +0000656 if (!function_result) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000657 if (_enable_callback_tracebacks) {
658 PyErr_Print();
659 } else {
660 PyErr_Clear();
661 }
662 _sqlite3_result_error(context, "user-defined aggregate's 'step' method raised error", -1);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000663 }
664
Thomas Wouters477c8d52006-05-27 19:21:47 +0000665error:
666 Py_XDECREF(stepmethod);
667 Py_XDECREF(function_result);
668
Georg Brandldfd73442009-04-05 11:47:34 +0000669#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000670 PyGILState_Release(threadstate);
Georg Brandldfd73442009-04-05 11:47:34 +0000671#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000672}
673
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000674void _pysqlite_final_callback(sqlite3_context* context)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000675{
Thomas Wouters477c8d52006-05-27 19:21:47 +0000676 PyObject* function_result = NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000677 PyObject** aggregate_instance;
678 PyObject* aggregate_class;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000679
Georg Brandldfd73442009-04-05 11:47:34 +0000680#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000681 PyGILState_STATE threadstate;
682
683 threadstate = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000684#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000685
686 aggregate_class = (PyObject*)sqlite3_user_data(context);
687
688 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
689 if (!*aggregate_instance) {
690 /* this branch is executed if there was an exception in the aggregate's
691 * __init__ */
692
Thomas Wouters477c8d52006-05-27 19:21:47 +0000693 goto error;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000694 }
695
Thomas Wouters477c8d52006-05-27 19:21:47 +0000696 function_result = PyObject_CallMethod(*aggregate_instance, "finalize", "");
697 if (!function_result) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000698 if (_enable_callback_tracebacks) {
699 PyErr_Print();
700 } else {
701 PyErr_Clear();
702 }
703 _sqlite3_result_error(context, "user-defined aggregate's 'finalize' method raised error", -1);
704 } else {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000705 _pysqlite_set_result(context, function_result);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000706 }
707
Thomas Wouters477c8d52006-05-27 19:21:47 +0000708error:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000709 Py_XDECREF(*aggregate_instance);
710 Py_XDECREF(function_result);
711
Georg Brandldfd73442009-04-05 11:47:34 +0000712#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000713 PyGILState_Release(threadstate);
Georg Brandldfd73442009-04-05 11:47:34 +0000714#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000715}
716
Gerhard Häringf9cee222010-03-05 15:20:03 +0000717static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000718{
719 PyObject* new_list;
720 PyObject* weakref;
721 int i;
722
723 /* we only need to do this once in a while */
724 if (self->created_statements++ < 200) {
725 return;
726 }
727
728 self->created_statements = 0;
729
730 new_list = PyList_New(0);
731 if (!new_list) {
732 return;
733 }
734
735 for (i = 0; i < PyList_Size(self->statements); i++) {
736 weakref = PyList_GetItem(self->statements, i);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000737 if (PyWeakref_GetObject(weakref) != Py_None) {
Thomas Wouters477c8d52006-05-27 19:21:47 +0000738 if (PyList_Append(new_list, weakref) != 0) {
739 Py_DECREF(new_list);
740 return;
741 }
742 }
743 }
744
745 Py_DECREF(self->statements);
746 self->statements = new_list;
747}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000748
Gerhard Häringf9cee222010-03-05 15:20:03 +0000749static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self)
750{
751 PyObject* new_list;
752 PyObject* weakref;
753 int i;
754
755 /* we only need to do this once in a while */
756 if (self->created_cursors++ < 200) {
757 return;
758 }
759
760 self->created_cursors = 0;
761
762 new_list = PyList_New(0);
763 if (!new_list) {
764 return;
765 }
766
767 for (i = 0; i < PyList_Size(self->cursors); i++) {
768 weakref = PyList_GetItem(self->cursors, i);
769 if (PyWeakref_GetObject(weakref) != Py_None) {
770 if (PyList_Append(new_list, weakref) != 0) {
771 Py_DECREF(new_list);
772 return;
773 }
774 }
775 }
776
777 Py_DECREF(self->cursors);
778 self->cursors = new_list;
779}
780
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000781PyObject* pysqlite_connection_create_function(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000782{
783 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
784
785 PyObject* func;
786 char* name;
787 int narg;
788 int rc;
789
Gerhard Häringf9cee222010-03-05 15:20:03 +0000790 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
791 return NULL;
792 }
793
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000794 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO", kwlist,
795 &name, &narg, &func))
796 {
797 return NULL;
798 }
799
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000800 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000801
Thomas Wouters477c8d52006-05-27 19:21:47 +0000802 if (rc != SQLITE_OK) {
803 /* Workaround for SQLite bug: no error code or string is available here */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000804 PyErr_SetString(pysqlite_OperationalError, "Error creating function");
Thomas Wouters477c8d52006-05-27 19:21:47 +0000805 return NULL;
806 } else {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000807 if (PyDict_SetItem(self->function_pinboard, func, Py_None) == -1)
808 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000809
Thomas Wouters477c8d52006-05-27 19:21:47 +0000810 Py_INCREF(Py_None);
811 return Py_None;
812 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000813}
814
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000815PyObject* pysqlite_connection_create_aggregate(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000816{
817 PyObject* aggregate_class;
818
819 int n_arg;
820 char* name;
821 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
822 int rc;
823
Gerhard Häringf9cee222010-03-05 15:20:03 +0000824 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
825 return NULL;
826 }
827
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000828 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO:create_aggregate",
829 kwlist, &name, &n_arg, &aggregate_class)) {
830 return NULL;
831 }
832
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000833 rc = sqlite3_create_function(self->db, name, n_arg, SQLITE_UTF8, (void*)aggregate_class, 0, &_pysqlite_step_callback, &_pysqlite_final_callback);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000834 if (rc != SQLITE_OK) {
Thomas Wouters477c8d52006-05-27 19:21:47 +0000835 /* Workaround for SQLite bug: no error code or string is available here */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000836 PyErr_SetString(pysqlite_OperationalError, "Error creating aggregate");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000837 return NULL;
838 } else {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000839 if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1)
840 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000841
842 Py_INCREF(Py_None);
843 return Py_None;
844 }
845}
846
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000847static int _authorizer_callback(void* user_arg, int action, const char* arg1, const char* arg2 , const char* dbname, const char* access_attempt_source)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000848{
849 PyObject *ret;
850 int rc;
Georg Brandldfd73442009-04-05 11:47:34 +0000851#ifdef WITH_THREAD
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000852 PyGILState_STATE gilstate;
853
854 gilstate = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000855#endif
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000856 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
857
858 if (!ret) {
859 if (_enable_callback_tracebacks) {
860 PyErr_Print();
861 } else {
862 PyErr_Clear();
863 }
864
865 rc = SQLITE_DENY;
866 } else {
Christian Heimes217cfd12007-12-02 14:31:20 +0000867 if (PyLong_Check(ret)) {
868 rc = (int)PyLong_AsLong(ret);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000869 } else {
870 rc = SQLITE_DENY;
871 }
872 Py_DECREF(ret);
873 }
874
Georg Brandldfd73442009-04-05 11:47:34 +0000875#ifdef WITH_THREAD
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000876 PyGILState_Release(gilstate);
Georg Brandldfd73442009-04-05 11:47:34 +0000877#endif
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000878 return rc;
879}
880
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000881static int _progress_handler(void* user_arg)
882{
883 int rc;
884 PyObject *ret;
Georg Brandldfd73442009-04-05 11:47:34 +0000885#ifdef WITH_THREAD
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000886 PyGILState_STATE gilstate;
887
888 gilstate = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000889#endif
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000890 ret = PyObject_CallFunction((PyObject*)user_arg, "");
891
892 if (!ret) {
893 if (_enable_callback_tracebacks) {
894 PyErr_Print();
895 } else {
896 PyErr_Clear();
897 }
898
Mark Dickinson934896d2009-02-21 20:59:32 +0000899 /* abort query if error occurred */
Victor Stinner86999502010-05-19 01:27:23 +0000900 rc = 1;
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000901 } else {
902 rc = (int)PyObject_IsTrue(ret);
903 Py_DECREF(ret);
904 }
905
Georg Brandldfd73442009-04-05 11:47:34 +0000906#ifdef WITH_THREAD
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000907 PyGILState_Release(gilstate);
Georg Brandldfd73442009-04-05 11:47:34 +0000908#endif
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000909 return rc;
910}
911
Gerhard Häringf9cee222010-03-05 15:20:03 +0000912static PyObject* pysqlite_connection_set_authorizer(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000913{
914 PyObject* authorizer_cb;
915
916 static char *kwlist[] = { "authorizer_callback", NULL };
917 int rc;
918
Gerhard Häringf9cee222010-03-05 15:20:03 +0000919 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
920 return NULL;
921 }
922
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000923 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:set_authorizer",
924 kwlist, &authorizer_cb)) {
925 return NULL;
926 }
927
928 rc = sqlite3_set_authorizer(self->db, _authorizer_callback, (void*)authorizer_cb);
929
930 if (rc != SQLITE_OK) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000931 PyErr_SetString(pysqlite_OperationalError, "Error setting authorizer callback");
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000932 return NULL;
933 } else {
Gerhard Häringf9cee222010-03-05 15:20:03 +0000934 if (PyDict_SetItem(self->function_pinboard, authorizer_cb, Py_None) == -1)
935 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000936
937 Py_INCREF(Py_None);
938 return Py_None;
939 }
940}
941
Gerhard Häringf9cee222010-03-05 15:20:03 +0000942static PyObject* pysqlite_connection_set_progress_handler(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000943{
944 PyObject* progress_handler;
945 int n;
946
947 static char *kwlist[] = { "progress_handler", "n", NULL };
948
Gerhard Häringf9cee222010-03-05 15:20:03 +0000949 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
950 return NULL;
951 }
952
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000953 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi:set_progress_handler",
954 kwlist, &progress_handler, &n)) {
955 return NULL;
956 }
957
958 if (progress_handler == Py_None) {
959 /* None clears the progress handler previously set */
960 sqlite3_progress_handler(self->db, 0, 0, (void*)0);
961 } else {
962 sqlite3_progress_handler(self->db, n, _progress_handler, progress_handler);
Gerhard Häringf9cee222010-03-05 15:20:03 +0000963 if (PyDict_SetItem(self->function_pinboard, progress_handler, Py_None) == -1)
964 return NULL;
Gerhard Häringe7ea7452008-03-29 00:45:29 +0000965 }
966
967 Py_INCREF(Py_None);
968 return Py_None;
969}
970
Gerhard Häringf9cee222010-03-05 15:20:03 +0000971#ifdef HAVE_LOAD_EXTENSION
972static PyObject* pysqlite_enable_load_extension(pysqlite_Connection* self, PyObject* args)
973{
974 int rc;
975 int onoff;
976
977 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
978 return NULL;
979 }
980
981 if (!PyArg_ParseTuple(args, "i", &onoff)) {
982 return NULL;
983 }
984
985 rc = sqlite3_enable_load_extension(self->db, onoff);
986
987 if (rc != SQLITE_OK) {
988 PyErr_SetString(pysqlite_OperationalError, "Error enabling load extension");
989 return NULL;
990 } else {
991 Py_INCREF(Py_None);
992 return Py_None;
993 }
994}
995
996static PyObject* pysqlite_load_extension(pysqlite_Connection* self, PyObject* args)
997{
998 int rc;
999 char* extension_name;
1000 char* errmsg;
1001
1002 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1003 return NULL;
1004 }
1005
1006 if (!PyArg_ParseTuple(args, "s", &extension_name)) {
1007 return NULL;
1008 }
1009
1010 rc = sqlite3_load_extension(self->db, extension_name, 0, &errmsg);
1011 if (rc != 0) {
1012 PyErr_SetString(pysqlite_OperationalError, errmsg);
1013 return NULL;
1014 } else {
1015 Py_INCREF(Py_None);
1016 return Py_None;
1017 }
1018}
1019#endif
1020
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001021int pysqlite_check_thread(pysqlite_Connection* self)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001022{
Georg Brandldfd73442009-04-05 11:47:34 +00001023#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001024 if (self->check_same_thread) {
1025 if (PyThread_get_thread_ident() != self->thread_ident) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001026 PyErr_Format(pysqlite_ProgrammingError,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001027 "SQLite objects created in a thread can only be used in that same thread."
1028 "The object was created in thread id %ld and this is thread id %ld",
1029 self->thread_ident, PyThread_get_thread_ident());
1030 return 0;
1031 }
1032
1033 }
Georg Brandldfd73442009-04-05 11:47:34 +00001034#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001035 return 1;
1036}
1037
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001038static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001039{
1040 Py_INCREF(self->isolation_level);
1041 return self->isolation_level;
1042}
1043
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001044static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001045{
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001046 if (!pysqlite_check_connection(self)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001047 return NULL;
1048 } else {
1049 return Py_BuildValue("i", sqlite3_total_changes(self->db));
1050 }
1051}
1052
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001053static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001054{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001055 PyObject* res;
1056 PyObject* begin_statement;
Georg Brandlceab6102007-11-25 00:45:05 +00001057 static PyObject* begin_word;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001058
1059 Py_XDECREF(self->isolation_level);
1060
1061 if (self->begin_statement) {
1062 PyMem_Free(self->begin_statement);
1063 self->begin_statement = NULL;
1064 }
1065
1066 if (isolation_level == Py_None) {
1067 Py_INCREF(Py_None);
1068 self->isolation_level = Py_None;
1069
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001070 res = pysqlite_connection_commit(self, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001071 if (!res) {
1072 return -1;
1073 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001074 Py_DECREF(res);
1075
1076 self->inTransaction = 0;
1077 } else {
Neal Norwitzefee9f52007-10-27 02:50:52 +00001078 const char *statement;
1079 Py_ssize_t size;
1080
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001081 Py_INCREF(isolation_level);
1082 self->isolation_level = isolation_level;
1083
Georg Brandlceab6102007-11-25 00:45:05 +00001084 if (!begin_word) {
1085 begin_word = PyUnicode_FromString("BEGIN ");
1086 if (!begin_word) return -1;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001087 }
Georg Brandlceab6102007-11-25 00:45:05 +00001088 begin_statement = PyUnicode_Concat(begin_word, isolation_level);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001089 if (!begin_statement) {
1090 return -1;
1091 }
1092
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +00001093 statement = _PyUnicode_AsStringAndSize(begin_statement, &size);
Georg Brandl3dbca812008-07-23 16:10:53 +00001094 if (!statement) {
Victor Stinnerff27d6b2010-03-13 00:57:22 +00001095 Py_DECREF(begin_statement);
Georg Brandl3dbca812008-07-23 16:10:53 +00001096 return -1;
1097 }
Neal Norwitzefee9f52007-10-27 02:50:52 +00001098 self->begin_statement = PyMem_Malloc(size + 2);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001099 if (!self->begin_statement) {
Georg Brandl3dbca812008-07-23 16:10:53 +00001100 Py_DECREF(begin_statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001101 return -1;
1102 }
1103
Neal Norwitzefee9f52007-10-27 02:50:52 +00001104 strcpy(self->begin_statement, statement);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001105 Py_DECREF(begin_statement);
1106 }
1107
1108 return 0;
1109}
1110
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001111PyObject* pysqlite_connection_call(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001112{
1113 PyObject* sql;
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001114 pysqlite_Statement* statement;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001115 PyObject* weakref;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001116 int rc;
1117
Gerhard Häringf9cee222010-03-05 15:20:03 +00001118 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
1119 return NULL;
1120 }
1121
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001122 if (!PyArg_ParseTuple(args, "O", &sql)) {
1123 return NULL;
1124 }
1125
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001126 _pysqlite_drop_unused_statement_references(self);
Thomas Wouters477c8d52006-05-27 19:21:47 +00001127
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001128 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001129 if (!statement) {
1130 return NULL;
1131 }
1132
Victor Stinner0201f442010-03-13 03:28:34 +00001133 statement->db = NULL;
1134 statement->st = NULL;
1135 statement->sql = NULL;
1136 statement->in_use = 0;
1137 statement->in_weakreflist = NULL;
1138
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001139 rc = pysqlite_statement_create(statement, self, sql);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001140
1141 if (rc != SQLITE_OK) {
1142 if (rc == PYSQLITE_TOO_MUCH_SQL) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001143 PyErr_SetString(pysqlite_Warning, "You can only execute one statement at a time.");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001144 } else if (rc == PYSQLITE_SQL_WRONG_TYPE) {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001145 PyErr_SetString(pysqlite_Warning, "SQL is of wrong type. Must be string or unicode.");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001146 } else {
Gerhard Häringe7ea7452008-03-29 00:45:29 +00001147 (void)pysqlite_statement_reset(statement);
1148 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001149 }
1150
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001151 Py_CLEAR(statement);
Thomas Wouters477c8d52006-05-27 19:21:47 +00001152 } else {
1153 weakref = PyWeakref_NewRef((PyObject*)statement, NULL);
1154 if (!weakref) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001155 Py_CLEAR(statement);
Thomas Wouters477c8d52006-05-27 19:21:47 +00001156 goto error;
1157 }
1158
1159 if (PyList_Append(self->statements, weakref) != 0) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001160 Py_CLEAR(weakref);
Thomas Wouters477c8d52006-05-27 19:21:47 +00001161 goto error;
1162 }
1163
1164 Py_DECREF(weakref);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001165 }
1166
Thomas Wouters477c8d52006-05-27 19:21:47 +00001167error:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001168 return (PyObject*)statement;
1169}
1170
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001171PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001172{
1173 PyObject* cursor = 0;
1174 PyObject* result = 0;
1175 PyObject* method = 0;
1176
1177 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1178 if (!cursor) {
1179 goto error;
1180 }
1181
1182 method = PyObject_GetAttrString(cursor, "execute");
1183 if (!method) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001184 Py_CLEAR(cursor);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001185 goto error;
1186 }
1187
1188 result = PyObject_CallObject(method, args);
1189 if (!result) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001190 Py_CLEAR(cursor);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001191 }
1192
1193error:
1194 Py_XDECREF(result);
1195 Py_XDECREF(method);
1196
1197 return cursor;
1198}
1199
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001200PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001201{
1202 PyObject* cursor = 0;
1203 PyObject* result = 0;
1204 PyObject* method = 0;
1205
1206 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1207 if (!cursor) {
1208 goto error;
1209 }
1210
1211 method = PyObject_GetAttrString(cursor, "executemany");
1212 if (!method) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001213 Py_CLEAR(cursor);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001214 goto error;
1215 }
1216
1217 result = PyObject_CallObject(method, args);
1218 if (!result) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001219 Py_CLEAR(cursor);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001220 }
1221
1222error:
1223 Py_XDECREF(result);
1224 Py_XDECREF(method);
1225
1226 return cursor;
1227}
1228
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001229PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001230{
1231 PyObject* cursor = 0;
1232 PyObject* result = 0;
1233 PyObject* method = 0;
1234
1235 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1236 if (!cursor) {
1237 goto error;
1238 }
1239
1240 method = PyObject_GetAttrString(cursor, "executescript");
1241 if (!method) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001242 Py_CLEAR(cursor);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001243 goto error;
1244 }
1245
1246 result = PyObject_CallObject(method, args);
1247 if (!result) {
Alexandre Vassalotti1839bac2008-07-13 21:57:48 +00001248 Py_CLEAR(cursor);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001249 }
1250
1251error:
1252 Py_XDECREF(result);
1253 Py_XDECREF(method);
1254
1255 return cursor;
1256}
1257
1258/* ------------------------- COLLATION CODE ------------------------ */
1259
1260static int
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001261pysqlite_collation_callback(
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001262 void* context,
1263 int text1_length, const void* text1_data,
1264 int text2_length, const void* text2_data)
1265{
1266 PyObject* callback = (PyObject*)context;
1267 PyObject* string1 = 0;
1268 PyObject* string2 = 0;
Georg Brandldfd73442009-04-05 11:47:34 +00001269#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001270 PyGILState_STATE gilstate;
Georg Brandldfd73442009-04-05 11:47:34 +00001271#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001272 PyObject* retval = NULL;
1273 int result = 0;
Georg Brandldfd73442009-04-05 11:47:34 +00001274#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001275 gilstate = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +00001276#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001277
1278 if (PyErr_Occurred()) {
1279 goto finally;
1280 }
1281
Guido van Rossum98297ee2007-11-06 21:34:58 +00001282 string1 = PyUnicode_FromStringAndSize((const char*)text1_data, text1_length);
1283 string2 = PyUnicode_FromStringAndSize((const char*)text2_data, text2_length);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001284
1285 if (!string1 || !string2) {
1286 goto finally; /* failed to allocate strings */
1287 }
1288
1289 retval = PyObject_CallFunctionObjArgs(callback, string1, string2, NULL);
1290
1291 if (!retval) {
1292 /* execution failed */
1293 goto finally;
1294 }
1295
Christian Heimes217cfd12007-12-02 14:31:20 +00001296 result = PyLong_AsLong(retval);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001297 if (PyErr_Occurred()) {
1298 result = 0;
1299 }
1300
1301finally:
1302 Py_XDECREF(string1);
1303 Py_XDECREF(string2);
1304 Py_XDECREF(retval);
Georg Brandldfd73442009-04-05 11:47:34 +00001305#ifdef WITH_THREAD
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001306 PyGILState_Release(gilstate);
Georg Brandldfd73442009-04-05 11:47:34 +00001307#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001308 return result;
1309}
1310
1311static PyObject *
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001312pysqlite_connection_interrupt(pysqlite_Connection* self, PyObject* args)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001313{
1314 PyObject* retval = NULL;
1315
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001316 if (!pysqlite_check_connection(self)) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001317 goto finally;
1318 }
1319
1320 sqlite3_interrupt(self->db);
1321
1322 Py_INCREF(Py_None);
1323 retval = Py_None;
1324
1325finally:
1326 return retval;
1327}
1328
Christian Heimesbbe741d2008-03-28 10:53:29 +00001329/* Function author: Paul Kippes <kippesp@gmail.com>
1330 * Class method of Connection to call the Python function _iterdump
1331 * of the sqlite3 module.
1332 */
1333static PyObject *
1334pysqlite_connection_iterdump(pysqlite_Connection* self, PyObject* args)
1335{
1336 PyObject* retval = NULL;
1337 PyObject* module = NULL;
1338 PyObject* module_dict;
1339 PyObject* pyfn_iterdump;
1340
1341 if (!pysqlite_check_connection(self)) {
1342 goto finally;
1343 }
1344
1345 module = PyImport_ImportModule(MODULE_NAME ".dump");
1346 if (!module) {
1347 goto finally;
1348 }
1349
1350 module_dict = PyModule_GetDict(module);
1351 if (!module_dict) {
1352 goto finally;
1353 }
1354
1355 pyfn_iterdump = PyDict_GetItemString(module_dict, "_iterdump");
1356 if (!pyfn_iterdump) {
1357 PyErr_SetString(pysqlite_OperationalError, "Failed to obtain _iterdump() reference");
1358 goto finally;
1359 }
1360
1361 args = PyTuple_New(1);
1362 if (!args) {
1363 goto finally;
1364 }
1365 Py_INCREF(self);
1366 PyTuple_SetItem(args, 0, (PyObject*)self);
1367 retval = PyObject_CallObject(pyfn_iterdump, args);
1368
1369finally:
1370 Py_XDECREF(args);
1371 Py_XDECREF(module);
1372 return retval;
1373}
1374
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001375static PyObject *
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001376pysqlite_connection_create_collation(pysqlite_Connection* self, PyObject* args)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001377{
1378 PyObject* callable;
1379 PyObject* uppercase_name = 0;
1380 PyObject* name;
1381 PyObject* retval;
Victor Stinner35466c52010-04-22 11:23:23 +00001382 Py_UNICODE* chk;
1383 Py_ssize_t i, len;
1384 char *uppercase_name_str;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001385 int rc;
1386
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001387 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001388 goto finally;
1389 }
1390
Gerhard Häring6d214562007-08-10 18:15:11 +00001391 if (!PyArg_ParseTuple(args, "O!O:create_collation(name, callback)", &PyUnicode_Type, &name, &callable)) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001392 goto finally;
1393 }
1394
1395 uppercase_name = PyObject_CallMethod(name, "upper", "");
1396 if (!uppercase_name) {
1397 goto finally;
1398 }
1399
Victor Stinner35466c52010-04-22 11:23:23 +00001400 len = PyUnicode_GET_SIZE(uppercase_name);
1401 chk = PyUnicode_AS_UNICODE(uppercase_name);
1402 for (i=0; i<len; i++, chk++) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001403 if ((*chk >= '0' && *chk <= '9')
1404 || (*chk >= 'A' && *chk <= 'Z')
1405 || (*chk == '_'))
1406 {
Victor Stinner35466c52010-04-22 11:23:23 +00001407 continue;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001408 } else {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001409 PyErr_SetString(pysqlite_ProgrammingError, "invalid character in collation name");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001410 goto finally;
1411 }
1412 }
1413
Victor Stinner35466c52010-04-22 11:23:23 +00001414 uppercase_name_str = _PyUnicode_AsString(uppercase_name);
1415 if (!uppercase_name_str)
1416 goto finally;
1417
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001418 if (callable != Py_None && !PyCallable_Check(callable)) {
1419 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
1420 goto finally;
1421 }
1422
1423 if (callable != Py_None) {
Gerhard Häringf9cee222010-03-05 15:20:03 +00001424 if (PyDict_SetItem(self->collations, uppercase_name, callable) == -1)
1425 goto finally;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001426 } else {
Gerhard Häringf9cee222010-03-05 15:20:03 +00001427 if (PyDict_DelItem(self->collations, uppercase_name) == -1)
1428 goto finally;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001429 }
1430
1431 rc = sqlite3_create_collation(self->db,
Victor Stinner35466c52010-04-22 11:23:23 +00001432 uppercase_name_str,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001433 SQLITE_UTF8,
1434 (callable != Py_None) ? callable : NULL,
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001435 (callable != Py_None) ? pysqlite_collation_callback : NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001436 if (rc != SQLITE_OK) {
1437 PyDict_DelItem(self->collations, uppercase_name);
Gerhard Häringe7ea7452008-03-29 00:45:29 +00001438 _pysqlite_seterror(self->db, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001439 goto finally;
1440 }
1441
1442finally:
1443 Py_XDECREF(uppercase_name);
1444
1445 if (PyErr_Occurred()) {
1446 retval = NULL;
1447 } else {
1448 Py_INCREF(Py_None);
1449 retval = Py_None;
1450 }
1451
1452 return retval;
1453}
1454
Christian Heimesbbe741d2008-03-28 10:53:29 +00001455/* Called when the connection is used as a context manager. Returns itself as a
1456 * convenience to the caller. */
1457static PyObject *
1458pysqlite_connection_enter(pysqlite_Connection* self, PyObject* args)
1459{
1460 Py_INCREF(self);
1461 return (PyObject*)self;
1462}
1463
1464/** Called when the connection is used as a context manager. If there was any
1465 * exception, a rollback takes place; otherwise we commit. */
1466static PyObject *
1467pysqlite_connection_exit(pysqlite_Connection* self, PyObject* args)
1468{
1469 PyObject* exc_type, *exc_value, *exc_tb;
1470 char* method_name;
1471 PyObject* result;
1472
1473 if (!PyArg_ParseTuple(args, "OOO", &exc_type, &exc_value, &exc_tb)) {
1474 return NULL;
1475 }
1476
1477 if (exc_type == Py_None && exc_value == Py_None && exc_tb == Py_None) {
1478 method_name = "commit";
1479 } else {
1480 method_name = "rollback";
1481 }
1482
1483 result = PyObject_CallMethod((PyObject*)self, method_name, "");
1484 if (!result) {
1485 return NULL;
1486 }
1487 Py_DECREF(result);
1488
1489 Py_RETURN_FALSE;
1490}
1491
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001492static char connection_doc[] =
Thomas Wouters477c8d52006-05-27 19:21:47 +00001493PyDoc_STR("SQLite database connection object.");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001494
1495static PyGetSetDef connection_getset[] = {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001496 {"isolation_level", (getter)pysqlite_connection_get_isolation_level, (setter)pysqlite_connection_set_isolation_level},
1497 {"total_changes", (getter)pysqlite_connection_get_total_changes, (setter)0},
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001498 {NULL}
1499};
1500
1501static PyMethodDef connection_methods[] = {
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001502 {"cursor", (PyCFunction)pysqlite_connection_cursor, METH_VARARGS|METH_KEYWORDS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001503 PyDoc_STR("Return a cursor for the connection.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001504 {"close", (PyCFunction)pysqlite_connection_close, METH_NOARGS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001505 PyDoc_STR("Closes the connection.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001506 {"commit", (PyCFunction)pysqlite_connection_commit, METH_NOARGS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001507 PyDoc_STR("Commit the current transaction.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001508 {"rollback", (PyCFunction)pysqlite_connection_rollback, METH_NOARGS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001509 PyDoc_STR("Roll back the current transaction.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001510 {"create_function", (PyCFunction)pysqlite_connection_create_function, METH_VARARGS|METH_KEYWORDS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001511 PyDoc_STR("Creates a new function. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001512 {"create_aggregate", (PyCFunction)pysqlite_connection_create_aggregate, METH_VARARGS|METH_KEYWORDS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001513 PyDoc_STR("Creates a new aggregate. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001514 {"set_authorizer", (PyCFunction)pysqlite_connection_set_authorizer, METH_VARARGS|METH_KEYWORDS,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001515 PyDoc_STR("Sets authorizer callback. Non-standard.")},
Gerhard Häringf9cee222010-03-05 15:20:03 +00001516 #ifdef HAVE_LOAD_EXTENSION
1517 {"enable_load_extension", (PyCFunction)pysqlite_enable_load_extension, METH_VARARGS,
1518 PyDoc_STR("Enable dynamic loading of SQLite extension modules. Non-standard.")},
1519 {"load_extension", (PyCFunction)pysqlite_load_extension, METH_VARARGS,
1520 PyDoc_STR("Load SQLite extension module. Non-standard.")},
1521 #endif
Gerhard Häringe7ea7452008-03-29 00:45:29 +00001522 {"set_progress_handler", (PyCFunction)pysqlite_connection_set_progress_handler, METH_VARARGS|METH_KEYWORDS,
1523 PyDoc_STR("Sets progress handler callback. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001524 {"execute", (PyCFunction)pysqlite_connection_execute, METH_VARARGS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001525 PyDoc_STR("Executes a SQL statement. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001526 {"executemany", (PyCFunction)pysqlite_connection_executemany, METH_VARARGS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001527 PyDoc_STR("Repeatedly executes a SQL statement. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001528 {"executescript", (PyCFunction)pysqlite_connection_executescript, METH_VARARGS,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001529 PyDoc_STR("Executes a multiple SQL statements at once. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001530 {"create_collation", (PyCFunction)pysqlite_connection_create_collation, METH_VARARGS,
Thomas Wouters477c8d52006-05-27 19:21:47 +00001531 PyDoc_STR("Creates a collation function. Non-standard.")},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001532 {"interrupt", (PyCFunction)pysqlite_connection_interrupt, METH_NOARGS,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001533 PyDoc_STR("Abort any pending database operation. Non-standard.")},
Christian Heimesbbe741d2008-03-28 10:53:29 +00001534 {"iterdump", (PyCFunction)pysqlite_connection_iterdump, METH_NOARGS,
Benjamin Petersond7b03282008-09-13 15:58:53 +00001535 PyDoc_STR("Returns iterator to the dump of the database in an SQL text format. Non-standard.")},
Christian Heimesbbe741d2008-03-28 10:53:29 +00001536 {"__enter__", (PyCFunction)pysqlite_connection_enter, METH_NOARGS,
1537 PyDoc_STR("For context manager. Non-standard.")},
1538 {"__exit__", (PyCFunction)pysqlite_connection_exit, METH_VARARGS,
1539 PyDoc_STR("For context manager. Non-standard.")},
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001540 {NULL, NULL}
1541};
1542
1543static struct PyMemberDef connection_members[] =
1544{
Guido van Rossum10f07c42007-08-11 15:32:55 +00001545 {"Warning", T_OBJECT, offsetof(pysqlite_Connection, Warning), READONLY},
1546 {"Error", T_OBJECT, offsetof(pysqlite_Connection, Error), READONLY},
1547 {"InterfaceError", T_OBJECT, offsetof(pysqlite_Connection, InterfaceError), READONLY},
1548 {"DatabaseError", T_OBJECT, offsetof(pysqlite_Connection, DatabaseError), READONLY},
1549 {"DataError", T_OBJECT, offsetof(pysqlite_Connection, DataError), READONLY},
1550 {"OperationalError", T_OBJECT, offsetof(pysqlite_Connection, OperationalError), READONLY},
1551 {"IntegrityError", T_OBJECT, offsetof(pysqlite_Connection, IntegrityError), READONLY},
1552 {"InternalError", T_OBJECT, offsetof(pysqlite_Connection, InternalError), READONLY},
1553 {"ProgrammingError", T_OBJECT, offsetof(pysqlite_Connection, ProgrammingError), READONLY},
1554 {"NotSupportedError", T_OBJECT, offsetof(pysqlite_Connection, NotSupportedError), READONLY},
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001555 {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)},
1556 {"text_factory", T_OBJECT, offsetof(pysqlite_Connection, text_factory)},
R. David Murrayd35251d2010-06-01 01:32:12 +00001557 {"in_transaction", T_BOOL, offsetof(pysqlite_Connection, inTransaction), READONLY},
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001558 {NULL}
1559};
1560
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001561PyTypeObject pysqlite_ConnectionType = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +00001562 PyVarObject_HEAD_INIT(NULL, 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001563 MODULE_NAME ".Connection", /* tp_name */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001564 sizeof(pysqlite_Connection), /* tp_basicsize */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001565 0, /* tp_itemsize */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001566 (destructor)pysqlite_connection_dealloc, /* tp_dealloc */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001567 0, /* tp_print */
1568 0, /* tp_getattr */
1569 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +00001570 0, /* tp_reserved */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001571 0, /* tp_repr */
1572 0, /* tp_as_number */
1573 0, /* tp_as_sequence */
1574 0, /* tp_as_mapping */
1575 0, /* tp_hash */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001576 (ternaryfunc)pysqlite_connection_call, /* tp_call */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001577 0, /* tp_str */
1578 0, /* tp_getattro */
1579 0, /* tp_setattro */
1580 0, /* tp_as_buffer */
1581 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
1582 connection_doc, /* tp_doc */
1583 0, /* tp_traverse */
1584 0, /* tp_clear */
1585 0, /* tp_richcompare */
1586 0, /* tp_weaklistoffset */
1587 0, /* tp_iter */
1588 0, /* tp_iternext */
1589 connection_methods, /* tp_methods */
1590 connection_members, /* tp_members */
1591 connection_getset, /* tp_getset */
1592 0, /* tp_base */
1593 0, /* tp_dict */
1594 0, /* tp_descr_get */
1595 0, /* tp_descr_set */
1596 0, /* tp_dictoffset */
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001597 (initproc)pysqlite_connection_init, /* tp_init */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001598 0, /* tp_alloc */
1599 0, /* tp_new */
1600 0 /* tp_free */
1601};
1602
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001603extern int pysqlite_connection_setup_types(void)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001604{
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +00001605 pysqlite_ConnectionType.tp_new = PyType_GenericNew;
1606 return PyType_Ready(&pysqlite_ConnectionType);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001607}