blob: 74177910baa8464a4d59211a88ca9bffdce98590 [file] [log] [blame]
Anthony Baxterc51ee692006-04-01 00:57:31 +00001/* connection.c - the connection type
2 *
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00003 * Copyright (C) 2004-2007 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äring0741a602007-01-14 01:43:50 +000038static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level);
Anthony Baxterc51ee692006-04-01 00:57:31 +000039
Gerhard Häringb2e88162006-06-14 22:28:37 +000040
Gerhard Häring6e1afcf2008-09-12 18:58:57 +000041static void _sqlite3_result_error(sqlite3_context* ctx, const char* errmsg, int len)
Gerhard Häringb2e88162006-06-14 22:28:37 +000042{
43 /* in older SQLite versions, calling sqlite3_result_error in callbacks
44 * triggers a bug in SQLite that leads either to irritating results or
45 * segfaults, depending on the SQLite version */
46#if SQLITE_VERSION_NUMBER >= 3003003
47 sqlite3_result_error(ctx, errmsg, len);
Neal Norwitzfe7d0c32006-06-15 04:54:29 +000048#else
Gerhard Häring0741a602007-01-14 01:43:50 +000049 PyErr_SetString(pysqlite_OperationalError, errmsg);
Gerhard Häringb2e88162006-06-14 22:28:37 +000050#endif
51}
52
Gerhard Häring0741a602007-01-14 01:43:50 +000053int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +000054{
55 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
56
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000057 PyObject* database;
Anthony Baxterc51ee692006-04-01 00:57:31 +000058 int detect_types = 0;
59 PyObject* isolation_level = NULL;
60 PyObject* factory = NULL;
61 int check_same_thread = 1;
62 int cached_statements = 100;
63 double timeout = 5.0;
64 int rc;
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000065 PyObject* class_attr = NULL;
66 PyObject* class_attr_str = NULL;
67 int is_apsw_connection = 0;
68 PyObject* database_utf8;
Anthony Baxterc51ee692006-04-01 00:57:31 +000069
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000070 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|diOiOi", kwlist,
Anthony Baxterc51ee692006-04-01 00:57:31 +000071 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
72 {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000073 return -1;
Anthony Baxterc51ee692006-04-01 00:57:31 +000074 }
75
76 self->begin_statement = NULL;
77
78 self->statement_cache = NULL;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000079 self->statements = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +000080
81 Py_INCREF(Py_None);
82 self->row_factory = Py_None;
83
84 Py_INCREF(&PyUnicode_Type);
85 self->text_factory = (PyObject*)&PyUnicode_Type;
86
Gregory P. Smithdd96db62008-06-09 04:58:54 +000087 if (PyString_Check(database) || PyUnicode_Check(database)) {
88 if (PyString_Check(database)) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000089 database_utf8 = database;
90 Py_INCREF(database_utf8);
91 } else {
92 database_utf8 = PyUnicode_AsUTF8String(database);
93 if (!database_utf8) {
94 return -1;
95 }
96 }
Anthony Baxterc51ee692006-04-01 00:57:31 +000097
Gerhard Häring1cc60ed2008-02-29 22:08:41 +000098 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +000099 rc = sqlite3_open(PyString_AsString(database_utf8), &self->db);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000100 Py_END_ALLOW_THREADS
101
102 Py_DECREF(database_utf8);
103
104 if (rc != SQLITE_OK) {
105 _pysqlite_seterror(self->db, NULL);
106 return -1;
107 }
108 } else {
109 /* Create a pysqlite connection from a APSW connection */
110 class_attr = PyObject_GetAttrString(database, "__class__");
111 if (class_attr) {
112 class_attr_str = PyObject_Str(class_attr);
113 if (class_attr_str) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000114 if (strcmp(PyString_AsString(class_attr_str), "<type 'apsw.Connection'>") == 0) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000115 /* In the APSW Connection object, the first entry after
116 * PyObject_HEAD is the sqlite3* we want to get hold of.
117 * Luckily, this is the same layout as we have in our
118 * pysqlite_Connection */
119 self->db = ((pysqlite_Connection*)database)->db;
120
121 Py_INCREF(database);
122 self->apsw_connection = database;
123 is_apsw_connection = 1;
124 }
125 }
126 }
127 Py_XDECREF(class_attr_str);
128 Py_XDECREF(class_attr);
129
130 if (!is_apsw_connection) {
131 PyErr_SetString(PyExc_ValueError, "database parameter must be string or APSW Connection object");
132 return -1;
133 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000134 }
135
136 if (!isolation_level) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000137 isolation_level = PyString_FromString("");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000138 if (!isolation_level) {
139 return -1;
140 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000141 } else {
142 Py_INCREF(isolation_level);
143 }
144 self->isolation_level = NULL;
Gerhard Häring0741a602007-01-14 01:43:50 +0000145 pysqlite_connection_set_isolation_level(self, isolation_level);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000146 Py_DECREF(isolation_level);
147
Gerhard Häring0741a602007-01-14 01:43:50 +0000148 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000149 if (PyErr_Occurred()) {
150 return -1;
151 }
152
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000153 self->statements = PyList_New(0);
154 if (!self->statements) {
155 return -1;
156 }
157 self->created_statements = 0;
158
Anthony Baxterc51ee692006-04-01 00:57:31 +0000159 /* By default, the Cache class INCREFs the factory in its initializer, and
160 * decrefs it in its deallocator method. Since this would create a circular
161 * reference here, we're breaking it by decrementing self, and telling the
162 * cache class to not decref the factory (self) in its deallocator.
163 */
164 self->statement_cache->decref_factory = 0;
165 Py_DECREF(self);
166
167 self->inTransaction = 0;
168 self->detect_types = detect_types;
169 self->timeout = timeout;
170 (void)sqlite3_busy_timeout(self->db, (int)(timeout*1000));
Georg Brandld3eaa742009-04-05 11:07:14 +0000171#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000172 self->thread_ident = PyThread_get_thread_ident();
Georg Brandld3eaa742009-04-05 11:07:14 +0000173#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000174 self->check_same_thread = check_same_thread;
175
176 self->function_pinboard = PyDict_New();
Anthony Baxter72289a62006-04-04 06:29:05 +0000177 if (!self->function_pinboard) {
178 return -1;
179 }
180
181 self->collations = PyDict_New();
182 if (!self->collations) {
183 return -1;
184 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000185
Gerhard Häring0741a602007-01-14 01:43:50 +0000186 self->Warning = pysqlite_Warning;
187 self->Error = pysqlite_Error;
188 self->InterfaceError = pysqlite_InterfaceError;
189 self->DatabaseError = pysqlite_DatabaseError;
190 self->DataError = pysqlite_DataError;
191 self->OperationalError = pysqlite_OperationalError;
192 self->IntegrityError = pysqlite_IntegrityError;
193 self->InternalError = pysqlite_InternalError;
194 self->ProgrammingError = pysqlite_ProgrammingError;
195 self->NotSupportedError = pysqlite_NotSupportedError;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000196
197 return 0;
198}
199
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000200/* Empty the entire statement cache of this connection */
Gerhard Häring0741a602007-01-14 01:43:50 +0000201void pysqlite_flush_statement_cache(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000202{
Gerhard Häring0741a602007-01-14 01:43:50 +0000203 pysqlite_Node* node;
204 pysqlite_Statement* statement;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000205
206 node = self->statement_cache->first;
207
208 while (node) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000209 statement = (pysqlite_Statement*)(node->data);
210 (void)pysqlite_statement_finalize(statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000211 node = node->next;
212 }
213
214 Py_DECREF(self->statement_cache);
Gerhard Häring0741a602007-01-14 01:43:50 +0000215 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O", self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000216 Py_DECREF(self);
217 self->statement_cache->decref_factory = 0;
218}
219
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000220/* action in (ACTION_RESET, ACTION_FINALIZE) */
221void pysqlite_do_all_statements(pysqlite_Connection* self, int action)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000222{
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000223 int i;
224 PyObject* weakref;
225 PyObject* statement;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000226
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000227 for (i = 0; i < PyList_Size(self->statements); i++) {
228 weakref = PyList_GetItem(self->statements, i);
229 statement = PyWeakref_GetObject(weakref);
230 if (statement != Py_None) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000231 if (action == ACTION_RESET) {
232 (void)pysqlite_statement_reset((pysqlite_Statement*)statement);
233 } else {
234 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement);
235 }
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000236 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000237 }
238}
239
Gerhard Häring0741a602007-01-14 01:43:50 +0000240void pysqlite_connection_dealloc(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000241{
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000242 PyObject* ret = NULL;
243
Anthony Baxterc51ee692006-04-01 00:57:31 +0000244 Py_XDECREF(self->statement_cache);
245
246 /* Clean up if user has not called .close() explicitly. */
247 if (self->db) {
248 Py_BEGIN_ALLOW_THREADS
249 sqlite3_close(self->db);
250 Py_END_ALLOW_THREADS
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000251 } else if (self->apsw_connection) {
252 ret = PyObject_CallMethod(self->apsw_connection, "close", "");
253 Py_XDECREF(ret);
254 Py_XDECREF(self->apsw_connection);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000255 }
256
257 if (self->begin_statement) {
258 PyMem_Free(self->begin_statement);
259 }
260 Py_XDECREF(self->isolation_level);
261 Py_XDECREF(self->function_pinboard);
262 Py_XDECREF(self->row_factory);
263 Py_XDECREF(self->text_factory);
Anthony Baxter72289a62006-04-04 06:29:05 +0000264 Py_XDECREF(self->collations);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000265 Py_XDECREF(self->statements);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000266
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000267 self->ob_type->tp_free((PyObject*)self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000268}
269
Gerhard Häring0741a602007-01-14 01:43:50 +0000270PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000271{
272 static char *kwlist[] = {"factory", NULL, NULL};
273 PyObject* factory = NULL;
274 PyObject* cursor;
275
276
277 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", kwlist,
278 &factory)) {
279 return NULL;
280 }
281
Gerhard Häring0741a602007-01-14 01:43:50 +0000282 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000283 return NULL;
284 }
285
286 if (factory == NULL) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000287 factory = (PyObject*)&pysqlite_CursorType;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000288 }
289
290 cursor = PyObject_CallFunction(factory, "O", self);
291
292 if (cursor && self->row_factory != Py_None) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000293 Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000294 Py_INCREF(self->row_factory);
Gerhard Häring0741a602007-01-14 01:43:50 +0000295 ((pysqlite_Cursor*)cursor)->row_factory = self->row_factory;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000296 }
297
298 return cursor;
299}
300
Gerhard Häring0741a602007-01-14 01:43:50 +0000301PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000302{
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000303 PyObject* ret;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000304 int rc;
305
Gerhard Häring0741a602007-01-14 01:43:50 +0000306 if (!pysqlite_check_thread(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000307 return NULL;
308 }
309
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000310 pysqlite_do_all_statements(self, ACTION_FINALIZE);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000311
312 if (self->db) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000313 if (self->apsw_connection) {
314 ret = PyObject_CallMethod(self->apsw_connection, "close", "");
315 Py_XDECREF(ret);
316 Py_XDECREF(self->apsw_connection);
317 self->apsw_connection = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000318 self->db = NULL;
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000319 } else {
320 Py_BEGIN_ALLOW_THREADS
321 rc = sqlite3_close(self->db);
322 Py_END_ALLOW_THREADS
323
324 if (rc != SQLITE_OK) {
325 _pysqlite_seterror(self->db, NULL);
326 return NULL;
327 } else {
328 self->db = NULL;
329 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000330 }
331 }
332
333 Py_INCREF(Py_None);
334 return Py_None;
335}
336
337/*
338 * Checks if a connection object is usable (i. e. not closed).
339 *
340 * 0 => error; 1 => ok
341 */
Gerhard Häring0741a602007-01-14 01:43:50 +0000342int pysqlite_check_connection(pysqlite_Connection* con)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000343{
344 if (!con->db) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000345 PyErr_SetString(pysqlite_ProgrammingError, "Cannot operate on a closed database.");
Anthony Baxterc51ee692006-04-01 00:57:31 +0000346 return 0;
347 } else {
348 return 1;
349 }
350}
351
Gerhard Häring0741a602007-01-14 01:43:50 +0000352PyObject* _pysqlite_connection_begin(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000353{
354 int rc;
355 const char* tail;
356 sqlite3_stmt* statement;
357
358 Py_BEGIN_ALLOW_THREADS
359 rc = sqlite3_prepare(self->db, self->begin_statement, -1, &statement, &tail);
360 Py_END_ALLOW_THREADS
361
362 if (rc != SQLITE_OK) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000363 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000364 goto error;
365 }
366
Gerhard Häring6e1afcf2008-09-12 18:58:57 +0000367 rc = pysqlite_step(statement, self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000368 if (rc == SQLITE_DONE) {
369 self->inTransaction = 1;
370 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000371 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000372 }
373
374 Py_BEGIN_ALLOW_THREADS
375 rc = sqlite3_finalize(statement);
376 Py_END_ALLOW_THREADS
377
378 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000379 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000380 }
381
382error:
383 if (PyErr_Occurred()) {
384 return NULL;
385 } else {
386 Py_INCREF(Py_None);
387 return Py_None;
388 }
389}
390
Gerhard Häring0741a602007-01-14 01:43:50 +0000391PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000392{
393 int rc;
394 const char* tail;
395 sqlite3_stmt* statement;
396
Gerhard Häring0741a602007-01-14 01:43:50 +0000397 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000398 return NULL;
399 }
400
401 if (self->inTransaction) {
402 Py_BEGIN_ALLOW_THREADS
403 rc = sqlite3_prepare(self->db, "COMMIT", -1, &statement, &tail);
404 Py_END_ALLOW_THREADS
405 if (rc != SQLITE_OK) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000406 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000407 goto error;
408 }
409
Gerhard Häring6e1afcf2008-09-12 18:58:57 +0000410 rc = pysqlite_step(statement, self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000411 if (rc == SQLITE_DONE) {
412 self->inTransaction = 0;
413 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000414 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000415 }
416
417 Py_BEGIN_ALLOW_THREADS
418 rc = sqlite3_finalize(statement);
419 Py_END_ALLOW_THREADS
420 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000421 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000422 }
423
424 }
425
426error:
427 if (PyErr_Occurred()) {
428 return NULL;
429 } else {
430 Py_INCREF(Py_None);
431 return Py_None;
432 }
433}
434
Gerhard Häring0741a602007-01-14 01:43:50 +0000435PyObject* pysqlite_connection_rollback(pysqlite_Connection* self, PyObject* args)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000436{
437 int rc;
438 const char* tail;
439 sqlite3_stmt* statement;
440
Gerhard Häring0741a602007-01-14 01:43:50 +0000441 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000442 return NULL;
443 }
444
445 if (self->inTransaction) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000446 pysqlite_do_all_statements(self, ACTION_RESET);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000447
448 Py_BEGIN_ALLOW_THREADS
449 rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
450 Py_END_ALLOW_THREADS
451 if (rc != SQLITE_OK) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000452 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000453 goto error;
454 }
455
Gerhard Häring6e1afcf2008-09-12 18:58:57 +0000456 rc = pysqlite_step(statement, self);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000457 if (rc == SQLITE_DONE) {
458 self->inTransaction = 0;
459 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000460 _pysqlite_seterror(self->db, statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000461 }
462
463 Py_BEGIN_ALLOW_THREADS
464 rc = sqlite3_finalize(statement);
465 Py_END_ALLOW_THREADS
466 if (rc != SQLITE_OK && !PyErr_Occurred()) {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000467 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000468 }
469
470 }
471
472error:
473 if (PyErr_Occurred()) {
474 return NULL;
475 } else {
476 Py_INCREF(Py_None);
477 return Py_None;
478 }
479}
480
Gerhard Häring0741a602007-01-14 01:43:50 +0000481void _pysqlite_set_result(sqlite3_context* context, PyObject* py_val)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000482{
483 long longval;
484 const char* buffer;
Neal Norwitz95f0e4c2006-04-01 09:08:06 +0000485 Py_ssize_t buflen;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000486 PyObject* stringval;
487
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000488 if ((!py_val) || PyErr_Occurred()) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000489 sqlite3_result_null(context);
490 } else if (py_val == Py_None) {
491 sqlite3_result_null(context);
492 } else if (PyInt_Check(py_val)) {
493 longval = PyInt_AsLong(py_val);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000494 sqlite3_result_int64(context, (PY_LONG_LONG)longval);
495 } else if (PyFloat_Check(py_val)) {
496 sqlite3_result_double(context, PyFloat_AsDouble(py_val));
497 } else if (PyBuffer_Check(py_val)) {
498 if (PyObject_AsCharBuffer(py_val, &buffer, &buflen) != 0) {
499 PyErr_SetString(PyExc_ValueError, "could not convert BLOB to buffer");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000500 } else {
501 sqlite3_result_blob(context, buffer, buflen, SQLITE_TRANSIENT);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000502 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000503 } else if (PyString_Check(py_val)) {
504 sqlite3_result_text(context, PyString_AsString(py_val), -1, SQLITE_TRANSIENT);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000505 } else if (PyUnicode_Check(py_val)) {
506 stringval = PyUnicode_AsUTF8String(py_val);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000507 if (stringval) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000508 sqlite3_result_text(context, PyString_AsString(stringval), -1, SQLITE_TRANSIENT);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000509 Py_DECREF(stringval);
510 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000511 } else {
512 /* TODO: raise error */
513 }
514}
515
Gerhard Häring0741a602007-01-14 01:43:50 +0000516PyObject* _pysqlite_build_py_params(sqlite3_context *context, int argc, sqlite3_value** argv)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000517{
518 PyObject* args;
519 int i;
520 sqlite3_value* cur_value;
521 PyObject* cur_py_value;
522 const char* val_str;
523 PY_LONG_LONG val_int;
Neal Norwitz95f0e4c2006-04-01 09:08:06 +0000524 Py_ssize_t buflen;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000525 void* raw_buffer;
526
527 args = PyTuple_New(argc);
Anthony Baxter72289a62006-04-04 06:29:05 +0000528 if (!args) {
529 return NULL;
530 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000531
532 for (i = 0; i < argc; i++) {
533 cur_value = argv[i];
534 switch (sqlite3_value_type(argv[i])) {
535 case SQLITE_INTEGER:
536 val_int = sqlite3_value_int64(cur_value);
537 cur_py_value = PyInt_FromLong((long)val_int);
538 break;
539 case SQLITE_FLOAT:
540 cur_py_value = PyFloat_FromDouble(sqlite3_value_double(cur_value));
541 break;
542 case SQLITE_TEXT:
543 val_str = (const char*)sqlite3_value_text(cur_value);
544 cur_py_value = PyUnicode_DecodeUTF8(val_str, strlen(val_str), NULL);
545 /* TODO: have a way to show errors here */
546 if (!cur_py_value) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000547 PyErr_Clear();
Anthony Baxterc51ee692006-04-01 00:57:31 +0000548 Py_INCREF(Py_None);
549 cur_py_value = Py_None;
550 }
551 break;
552 case SQLITE_BLOB:
553 buflen = sqlite3_value_bytes(cur_value);
554 cur_py_value = PyBuffer_New(buflen);
555 if (!cur_py_value) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000556 break;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000557 }
558 if (PyObject_AsWriteBuffer(cur_py_value, &raw_buffer, &buflen)) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000559 Py_DECREF(cur_py_value);
560 cur_py_value = NULL;
561 break;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000562 }
563 memcpy(raw_buffer, sqlite3_value_blob(cur_value), buflen);
564 break;
565 case SQLITE_NULL:
566 default:
567 Py_INCREF(Py_None);
568 cur_py_value = Py_None;
569 }
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000570
571 if (!cur_py_value) {
572 Py_DECREF(args);
573 return NULL;
574 }
575
Anthony Baxterc51ee692006-04-01 00:57:31 +0000576 PyTuple_SetItem(args, i, cur_py_value);
577
578 }
579
580 return args;
581}
582
Gerhard Häring0741a602007-01-14 01:43:50 +0000583void _pysqlite_func_callback(sqlite3_context* context, int argc, sqlite3_value** argv)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000584{
585 PyObject* args;
586 PyObject* py_func;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000587 PyObject* py_retval = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000588
Georg Brandld3eaa742009-04-05 11:07:14 +0000589#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000590 PyGILState_STATE threadstate;
591
592 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000593#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000594
595 py_func = (PyObject*)sqlite3_user_data(context);
596
Gerhard Häring0741a602007-01-14 01:43:50 +0000597 args = _pysqlite_build_py_params(context, argc, argv);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000598 if (args) {
599 py_retval = PyObject_CallObject(py_func, args);
600 Py_DECREF(args);
601 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000602
Gerhard Häring1541ef02006-06-13 22:24:47 +0000603 if (py_retval) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000604 _pysqlite_set_result(context, py_retval);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000605 Py_DECREF(py_retval);
606 } else {
607 if (_enable_callback_tracebacks) {
608 PyErr_Print();
609 } else {
610 PyErr_Clear();
611 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000612 _sqlite3_result_error(context, "user-defined function raised exception", -1);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000613 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000614
Georg Brandld3eaa742009-04-05 11:07:14 +0000615#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000616 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000617#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000618}
619
Gerhard Häring0741a602007-01-14 01:43:50 +0000620static void _pysqlite_step_callback(sqlite3_context *context, int argc, sqlite3_value** params)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000621{
622 PyObject* args;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000623 PyObject* function_result = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000624 PyObject* aggregate_class;
625 PyObject** aggregate_instance;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000626 PyObject* stepmethod = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000627
Georg Brandld3eaa742009-04-05 11:07:14 +0000628#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000629 PyGILState_STATE threadstate;
630
631 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000632#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000633
634 aggregate_class = (PyObject*)sqlite3_user_data(context);
635
636 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
637
638 if (*aggregate_instance == 0) {
639 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
640
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000641 if (PyErr_Occurred()) {
Anthony Baxterc51ee692006-04-01 00:57:31 +0000642 *aggregate_instance = 0;
Gerhard Häring1541ef02006-06-13 22:24:47 +0000643 if (_enable_callback_tracebacks) {
644 PyErr_Print();
645 } else {
646 PyErr_Clear();
647 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000648 _sqlite3_result_error(context, "user-defined aggregate's '__init__' method raised error", -1);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000649 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000650 }
651 }
652
653 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000654 if (!stepmethod) {
655 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000656 }
657
Gerhard Häring0741a602007-01-14 01:43:50 +0000658 args = _pysqlite_build_py_params(context, argc, params);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000659 if (!args) {
660 goto error;
661 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000662
663 function_result = PyObject_CallObject(stepmethod, args);
664 Py_DECREF(args);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000665
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000666 if (!function_result) {
Gerhard Häring1541ef02006-06-13 22:24:47 +0000667 if (_enable_callback_tracebacks) {
668 PyErr_Print();
669 } else {
670 PyErr_Clear();
671 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000672 _sqlite3_result_error(context, "user-defined aggregate's 'step' method raised error", -1);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000673 }
674
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000675error:
676 Py_XDECREF(stepmethod);
677 Py_XDECREF(function_result);
678
Georg Brandld3eaa742009-04-05 11:07:14 +0000679#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000680 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000681#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000682}
683
Gerhard Häring0741a602007-01-14 01:43:50 +0000684void _pysqlite_final_callback(sqlite3_context* context)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000685{
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000686 PyObject* function_result = NULL;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000687 PyObject** aggregate_instance;
688 PyObject* aggregate_class;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000689
Georg Brandld3eaa742009-04-05 11:07:14 +0000690#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000691 PyGILState_STATE threadstate;
692
693 threadstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000694#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000695
696 aggregate_class = (PyObject*)sqlite3_user_data(context);
697
698 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
699 if (!*aggregate_instance) {
700 /* this branch is executed if there was an exception in the aggregate's
701 * __init__ */
702
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000703 goto error;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000704 }
705
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000706 function_result = PyObject_CallMethod(*aggregate_instance, "finalize", "");
707 if (!function_result) {
Gerhard Häring1541ef02006-06-13 22:24:47 +0000708 if (_enable_callback_tracebacks) {
709 PyErr_Print();
710 } else {
711 PyErr_Clear();
712 }
Gerhard Häringb2e88162006-06-14 22:28:37 +0000713 _sqlite3_result_error(context, "user-defined aggregate's 'finalize' method raised error", -1);
Gerhard Häring1541ef02006-06-13 22:24:47 +0000714 } else {
Gerhard Häring0741a602007-01-14 01:43:50 +0000715 _pysqlite_set_result(context, function_result);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000716 }
717
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000718error:
Anthony Baxterc51ee692006-04-01 00:57:31 +0000719 Py_XDECREF(*aggregate_instance);
720 Py_XDECREF(function_result);
721
Georg Brandld3eaa742009-04-05 11:07:14 +0000722#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000723 PyGILState_Release(threadstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000724#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000725}
726
Gerhard Häring0741a602007-01-14 01:43:50 +0000727void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000728{
729 PyObject* new_list;
730 PyObject* weakref;
731 int i;
732
733 /* we only need to do this once in a while */
734 if (self->created_statements++ < 200) {
735 return;
736 }
737
738 self->created_statements = 0;
739
740 new_list = PyList_New(0);
741 if (!new_list) {
742 return;
743 }
744
745 for (i = 0; i < PyList_Size(self->statements); i++) {
746 weakref = PyList_GetItem(self->statements, i);
Gerhard Häringecd20102006-06-19 21:17:35 +0000747 if (PyWeakref_GetObject(weakref) != Py_None) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000748 if (PyList_Append(new_list, weakref) != 0) {
749 Py_DECREF(new_list);
750 return;
751 }
752 }
753 }
754
755 Py_DECREF(self->statements);
756 self->statements = new_list;
757}
Anthony Baxterc51ee692006-04-01 00:57:31 +0000758
Gerhard Häring0741a602007-01-14 01:43:50 +0000759PyObject* pysqlite_connection_create_function(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000760{
761 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
762
763 PyObject* func;
764 char* name;
765 int narg;
766 int rc;
767
768 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO", kwlist,
769 &name, &narg, &func))
770 {
771 return NULL;
772 }
773
Gerhard Häring0741a602007-01-14 01:43:50 +0000774 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000775
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000776 if (rc != SQLITE_OK) {
777 /* Workaround for SQLite bug: no error code or string is available here */
Gerhard Häring0741a602007-01-14 01:43:50 +0000778 PyErr_SetString(pysqlite_OperationalError, "Error creating function");
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000779 return NULL;
780 } else {
781 PyDict_SetItem(self->function_pinboard, func, Py_None);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000782
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000783 Py_INCREF(Py_None);
784 return Py_None;
785 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000786}
787
Gerhard Häring0741a602007-01-14 01:43:50 +0000788PyObject* pysqlite_connection_create_aggregate(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000789{
790 PyObject* aggregate_class;
791
792 int n_arg;
793 char* name;
794 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
795 int rc;
796
797 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO:create_aggregate",
798 kwlist, &name, &n_arg, &aggregate_class)) {
799 return NULL;
800 }
801
Gerhard Häring0741a602007-01-14 01:43:50 +0000802 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 +0000803 if (rc != SQLITE_OK) {
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000804 /* Workaround for SQLite bug: no error code or string is available here */
Gerhard Häring0741a602007-01-14 01:43:50 +0000805 PyErr_SetString(pysqlite_OperationalError, "Error creating aggregate");
Anthony Baxterc51ee692006-04-01 00:57:31 +0000806 return NULL;
807 } else {
808 PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None);
809
810 Py_INCREF(Py_None);
811 return Py_None;
812 }
813}
814
Gerhard Häring0741a602007-01-14 01:43:50 +0000815static 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 +0000816{
817 PyObject *ret;
818 int rc;
Georg Brandld3eaa742009-04-05 11:07:14 +0000819#ifdef WITH_THREAD
Gerhard Häring1541ef02006-06-13 22:24:47 +0000820 PyGILState_STATE gilstate;
821
822 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000823#endif
Gerhard Häring1541ef02006-06-13 22:24:47 +0000824 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
825
826 if (!ret) {
827 if (_enable_callback_tracebacks) {
828 PyErr_Print();
829 } else {
830 PyErr_Clear();
831 }
832
833 rc = SQLITE_DENY;
834 } else {
835 if (PyInt_Check(ret)) {
836 rc = (int)PyInt_AsLong(ret);
837 } else {
838 rc = SQLITE_DENY;
839 }
840 Py_DECREF(ret);
841 }
842
Georg Brandld3eaa742009-04-05 11:07:14 +0000843#ifdef WITH_THREAD
Gerhard Häring1541ef02006-06-13 22:24:47 +0000844 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000845#endif
Gerhard Häring1541ef02006-06-13 22:24:47 +0000846 return rc;
847}
848
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000849static int _progress_handler(void* user_arg)
850{
851 int rc;
852 PyObject *ret;
Georg Brandld3eaa742009-04-05 11:07:14 +0000853#ifdef WITH_THREAD
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000854 PyGILState_STATE gilstate;
855
856 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000857#endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000858 ret = PyObject_CallFunction((PyObject*)user_arg, "");
859
860 if (!ret) {
861 if (_enable_callback_tracebacks) {
862 PyErr_Print();
863 } else {
864 PyErr_Clear();
865 }
866
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000867 /* abort query if error occurred */
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000868 rc = 1;
869 } else {
870 rc = (int)PyObject_IsTrue(ret);
Neal Norwitzca752f32008-03-03 04:37:45 +0000871 Py_DECREF(ret);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000872 }
873
Georg Brandld3eaa742009-04-05 11:07:14 +0000874#ifdef WITH_THREAD
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000875 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +0000876#endif
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000877 return rc;
878}
879
Gerhard Häring0741a602007-01-14 01:43:50 +0000880PyObject* pysqlite_connection_set_authorizer(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Gerhard Häring1541ef02006-06-13 22:24:47 +0000881{
882 PyObject* authorizer_cb;
883
884 static char *kwlist[] = { "authorizer_callback", NULL };
885 int rc;
886
887 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:set_authorizer",
888 kwlist, &authorizer_cb)) {
889 return NULL;
890 }
891
892 rc = sqlite3_set_authorizer(self->db, _authorizer_callback, (void*)authorizer_cb);
893
894 if (rc != SQLITE_OK) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000895 PyErr_SetString(pysqlite_OperationalError, "Error setting authorizer callback");
Gerhard Häring1541ef02006-06-13 22:24:47 +0000896 return NULL;
897 } else {
898 PyDict_SetItem(self->function_pinboard, authorizer_cb, Py_None);
899
900 Py_INCREF(Py_None);
901 return Py_None;
902 }
903}
904
Gerhard Häring1cc60ed2008-02-29 22:08:41 +0000905PyObject* pysqlite_connection_set_progress_handler(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
906{
907 PyObject* progress_handler;
908 int n;
909
910 static char *kwlist[] = { "progress_handler", "n", NULL };
911
912 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi:set_progress_handler",
913 kwlist, &progress_handler, &n)) {
914 return NULL;
915 }
916
917 if (progress_handler == Py_None) {
918 /* None clears the progress handler previously set */
919 sqlite3_progress_handler(self->db, 0, 0, (void*)0);
920 } else {
921 sqlite3_progress_handler(self->db, n, _progress_handler, progress_handler);
922 PyDict_SetItem(self->function_pinboard, progress_handler, Py_None);
923 }
924
925 Py_INCREF(Py_None);
926 return Py_None;
927}
928
Gerhard Häring0741a602007-01-14 01:43:50 +0000929int pysqlite_check_thread(pysqlite_Connection* self)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000930{
Georg Brandld3eaa742009-04-05 11:07:14 +0000931#ifdef WITH_THREAD
Anthony Baxterc51ee692006-04-01 00:57:31 +0000932 if (self->check_same_thread) {
933 if (PyThread_get_thread_ident() != self->thread_ident) {
Gerhard Häring0741a602007-01-14 01:43:50 +0000934 PyErr_Format(pysqlite_ProgrammingError,
Anthony Baxterc51ee692006-04-01 00:57:31 +0000935 "SQLite objects created in a thread can only be used in that same thread."
936 "The object was created in thread id %ld and this is thread id %ld",
937 self->thread_ident, PyThread_get_thread_ident());
938 return 0;
939 }
940
941 }
Georg Brandld3eaa742009-04-05 11:07:14 +0000942#endif
Anthony Baxterc51ee692006-04-01 00:57:31 +0000943 return 1;
944}
945
Gerhard Häring0741a602007-01-14 01:43:50 +0000946static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000947{
948 Py_INCREF(self->isolation_level);
949 return self->isolation_level;
950}
951
Gerhard Häring0741a602007-01-14 01:43:50 +0000952static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused)
Anthony Baxter72289a62006-04-04 06:29:05 +0000953{
Gerhard Häring0741a602007-01-14 01:43:50 +0000954 if (!pysqlite_check_connection(self)) {
Anthony Baxter72289a62006-04-04 06:29:05 +0000955 return NULL;
956 } else {
957 return Py_BuildValue("i", sqlite3_total_changes(self->db));
958 }
959}
960
Gerhard Häring0741a602007-01-14 01:43:50 +0000961static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000962{
Anthony Baxterc51ee692006-04-01 00:57:31 +0000963 PyObject* res;
964 PyObject* begin_statement;
Georg Brandla24869a2008-07-16 22:33:18 +0000965 char* begin_statement_str;
Anthony Baxterc51ee692006-04-01 00:57:31 +0000966
967 Py_XDECREF(self->isolation_level);
968
Neal Norwitz5b030652006-04-16 03:28:17 +0000969 if (self->begin_statement) {
970 PyMem_Free(self->begin_statement);
971 self->begin_statement = NULL;
972 }
973
Anthony Baxterc51ee692006-04-01 00:57:31 +0000974 if (isolation_level == Py_None) {
975 Py_INCREF(Py_None);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000976 self->isolation_level = Py_None;
977
Gerhard Häring0741a602007-01-14 01:43:50 +0000978 res = pysqlite_connection_commit(self, NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +0000979 if (!res) {
980 return -1;
981 }
Anthony Baxterc51ee692006-04-01 00:57:31 +0000982 Py_DECREF(res);
983
984 self->inTransaction = 0;
985 } else {
986 Py_INCREF(isolation_level);
987 self->isolation_level = isolation_level;
988
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000989 begin_statement = PyString_FromString("BEGIN ");
Anthony Baxterc51ee692006-04-01 00:57:31 +0000990 if (!begin_statement) {
991 return -1;
992 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000993 PyString_Concat(&begin_statement, isolation_level);
Anthony Baxterc51ee692006-04-01 00:57:31 +0000994 if (!begin_statement) {
995 return -1;
996 }
997
Georg Brandla24869a2008-07-16 22:33:18 +0000998 begin_statement_str = PyString_AsString(begin_statement);
999 if (!begin_statement_str) {
1000 Py_DECREF(begin_statement);
1001 return -1;
1002 }
1003 self->begin_statement = PyMem_Malloc(strlen(begin_statement_str) + 2);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001004 if (!self->begin_statement) {
Georg Brandla24869a2008-07-16 22:33:18 +00001005 Py_DECREF(begin_statement);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001006 return -1;
1007 }
1008
Georg Brandla24869a2008-07-16 22:33:18 +00001009 strcpy(self->begin_statement, begin_statement_str);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001010 Py_DECREF(begin_statement);
1011 }
1012
1013 return 0;
1014}
1015
Gerhard Häring0741a602007-01-14 01:43:50 +00001016PyObject* pysqlite_connection_call(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001017{
1018 PyObject* sql;
Gerhard Häring0741a602007-01-14 01:43:50 +00001019 pysqlite_Statement* statement;
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001020 PyObject* weakref;
Anthony Baxterc51ee692006-04-01 00:57:31 +00001021 int rc;
1022
1023 if (!PyArg_ParseTuple(args, "O", &sql)) {
1024 return NULL;
1025 }
1026
Gerhard Häring0741a602007-01-14 01:43:50 +00001027 _pysqlite_drop_unused_statement_references(self);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001028
Gerhard Häring0741a602007-01-14 01:43:50 +00001029 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001030 if (!statement) {
1031 return NULL;
1032 }
1033
Gerhard Häring0741a602007-01-14 01:43:50 +00001034 rc = pysqlite_statement_create(statement, self, sql);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001035
1036 if (rc != SQLITE_OK) {
1037 if (rc == PYSQLITE_TOO_MUCH_SQL) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001038 PyErr_SetString(pysqlite_Warning, "You can only execute one statement at a time.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001039 } else if (rc == PYSQLITE_SQL_WRONG_TYPE) {
Gerhard Häring0741a602007-01-14 01:43:50 +00001040 PyErr_SetString(pysqlite_Warning, "SQL is of wrong type. Must be string or unicode.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001041 } else {
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001042 (void)pysqlite_statement_reset(statement);
1043 _pysqlite_seterror(self->db, NULL);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001044 }
1045
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001046 Py_CLEAR(statement);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001047 } else {
1048 weakref = PyWeakref_NewRef((PyObject*)statement, NULL);
1049 if (!weakref) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001050 Py_CLEAR(statement);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001051 goto error;
1052 }
1053
1054 if (PyList_Append(self->statements, weakref) != 0) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001055 Py_CLEAR(weakref);
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001056 goto error;
1057 }
1058
1059 Py_DECREF(weakref);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001060 }
1061
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001062error:
Anthony Baxterc51ee692006-04-01 00:57:31 +00001063 return (PyObject*)statement;
1064}
1065
Gerhard Häring0741a602007-01-14 01:43:50 +00001066PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001067{
1068 PyObject* cursor = 0;
1069 PyObject* result = 0;
1070 PyObject* method = 0;
1071
1072 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1073 if (!cursor) {
1074 goto error;
1075 }
1076
1077 method = PyObject_GetAttrString(cursor, "execute");
1078 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001079 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001080 goto error;
1081 }
1082
1083 result = PyObject_CallObject(method, args);
1084 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001085 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001086 }
1087
1088error:
1089 Py_XDECREF(result);
1090 Py_XDECREF(method);
1091
1092 return cursor;
1093}
1094
Gerhard Häring0741a602007-01-14 01:43:50 +00001095PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001096{
1097 PyObject* cursor = 0;
1098 PyObject* result = 0;
1099 PyObject* method = 0;
1100
1101 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1102 if (!cursor) {
1103 goto error;
1104 }
1105
1106 method = PyObject_GetAttrString(cursor, "executemany");
1107 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001108 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001109 goto error;
1110 }
1111
1112 result = PyObject_CallObject(method, args);
1113 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001114 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001115 }
1116
1117error:
1118 Py_XDECREF(result);
1119 Py_XDECREF(method);
1120
1121 return cursor;
1122}
1123
Gerhard Häring0741a602007-01-14 01:43:50 +00001124PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001125{
1126 PyObject* cursor = 0;
1127 PyObject* result = 0;
1128 PyObject* method = 0;
1129
1130 cursor = PyObject_CallMethod((PyObject*)self, "cursor", "");
1131 if (!cursor) {
1132 goto error;
1133 }
1134
1135 method = PyObject_GetAttrString(cursor, "executescript");
1136 if (!method) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001137 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001138 goto error;
1139 }
1140
1141 result = PyObject_CallObject(method, args);
1142 if (!result) {
Alexandre Vassalottibd704762008-07-13 21:47:59 +00001143 Py_CLEAR(cursor);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001144 }
1145
1146error:
1147 Py_XDECREF(result);
1148 Py_XDECREF(method);
1149
1150 return cursor;
1151}
1152
Anthony Baxter72289a62006-04-04 06:29:05 +00001153/* ------------------------- COLLATION CODE ------------------------ */
1154
1155static int
Gerhard Häring0741a602007-01-14 01:43:50 +00001156pysqlite_collation_callback(
Anthony Baxter72289a62006-04-04 06:29:05 +00001157 void* context,
1158 int text1_length, const void* text1_data,
1159 int text2_length, const void* text2_data)
1160{
1161 PyObject* callback = (PyObject*)context;
1162 PyObject* string1 = 0;
1163 PyObject* string2 = 0;
Georg Brandld3eaa742009-04-05 11:07:14 +00001164#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001165 PyGILState_STATE gilstate;
Georg Brandld3eaa742009-04-05 11:07:14 +00001166#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001167 PyObject* retval = NULL;
1168 int result = 0;
Georg Brandld3eaa742009-04-05 11:07:14 +00001169#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001170 gilstate = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +00001171#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001172
1173 if (PyErr_Occurred()) {
1174 goto finally;
1175 }
1176
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001177 string1 = PyString_FromStringAndSize((const char*)text1_data, text1_length);
1178 string2 = PyString_FromStringAndSize((const char*)text2_data, text2_length);
Anthony Baxter72289a62006-04-04 06:29:05 +00001179
1180 if (!string1 || !string2) {
1181 goto finally; /* failed to allocate strings */
1182 }
1183
1184 retval = PyObject_CallFunctionObjArgs(callback, string1, string2, NULL);
1185
1186 if (!retval) {
1187 /* execution failed */
1188 goto finally;
1189 }
1190
1191 result = PyInt_AsLong(retval);
1192 if (PyErr_Occurred()) {
1193 result = 0;
1194 }
1195
1196finally:
1197 Py_XDECREF(string1);
1198 Py_XDECREF(string2);
1199 Py_XDECREF(retval);
Georg Brandld3eaa742009-04-05 11:07:14 +00001200#ifdef WITH_THREAD
Anthony Baxter72289a62006-04-04 06:29:05 +00001201 PyGILState_Release(gilstate);
Georg Brandld3eaa742009-04-05 11:07:14 +00001202#endif
Anthony Baxter72289a62006-04-04 06:29:05 +00001203 return result;
1204}
1205
1206static PyObject *
Gerhard Häring0741a602007-01-14 01:43:50 +00001207pysqlite_connection_interrupt(pysqlite_Connection* self, PyObject* args)
Gerhard Häring1541ef02006-06-13 22:24:47 +00001208{
1209 PyObject* retval = NULL;
1210
Gerhard Häring0741a602007-01-14 01:43:50 +00001211 if (!pysqlite_check_connection(self)) {
Gerhard Häring1541ef02006-06-13 22:24:47 +00001212 goto finally;
1213 }
1214
1215 sqlite3_interrupt(self->db);
1216
1217 Py_INCREF(Py_None);
1218 retval = Py_None;
1219
1220finally:
1221 return retval;
1222}
1223
Gregory P. Smithb9803422008-03-28 08:32:09 +00001224/* Function author: Paul Kippes <kippesp@gmail.com>
1225 * Class method of Connection to call the Python function _iterdump
1226 * of the sqlite3 module.
1227 */
1228static PyObject *
1229pysqlite_connection_iterdump(pysqlite_Connection* self, PyObject* args)
1230{
1231 PyObject* retval = NULL;
1232 PyObject* module = NULL;
1233 PyObject* module_dict;
1234 PyObject* pyfn_iterdump;
1235
1236 if (!pysqlite_check_connection(self)) {
1237 goto finally;
1238 }
1239
1240 module = PyImport_ImportModule(MODULE_NAME ".dump");
1241 if (!module) {
1242 goto finally;
1243 }
1244
1245 module_dict = PyModule_GetDict(module);
1246 if (!module_dict) {
1247 goto finally;
1248 }
1249
1250 pyfn_iterdump = PyDict_GetItemString(module_dict, "_iterdump");
1251 if (!pyfn_iterdump) {
1252 PyErr_SetString(pysqlite_OperationalError, "Failed to obtain _iterdump() reference");
1253 goto finally;
1254 }
1255
1256 args = PyTuple_New(1);
1257 if (!args) {
1258 goto finally;
1259 }
1260 Py_INCREF(self);
1261 PyTuple_SetItem(args, 0, (PyObject*)self);
1262 retval = PyObject_CallObject(pyfn_iterdump, args);
1263
1264finally:
1265 Py_XDECREF(args);
1266 Py_XDECREF(module);
1267 return retval;
1268}
1269
Gerhard Häring1541ef02006-06-13 22:24:47 +00001270static PyObject *
Gerhard Häring0741a602007-01-14 01:43:50 +00001271pysqlite_connection_create_collation(pysqlite_Connection* self, PyObject* args)
Anthony Baxter72289a62006-04-04 06:29:05 +00001272{
1273 PyObject* callable;
1274 PyObject* uppercase_name = 0;
1275 PyObject* name;
1276 PyObject* retval;
1277 char* chk;
1278 int rc;
1279
Gerhard Häring0741a602007-01-14 01:43:50 +00001280 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001281 goto finally;
1282 }
1283
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001284 if (!PyArg_ParseTuple(args, "O!O:create_collation(name, callback)", &PyString_Type, &name, &callable)) {
Anthony Baxter72289a62006-04-04 06:29:05 +00001285 goto finally;
1286 }
1287
1288 uppercase_name = PyObject_CallMethod(name, "upper", "");
1289 if (!uppercase_name) {
1290 goto finally;
1291 }
1292
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001293 chk = PyString_AsString(uppercase_name);
Anthony Baxter72289a62006-04-04 06:29:05 +00001294 while (*chk) {
1295 if ((*chk >= '0' && *chk <= '9')
1296 || (*chk >= 'A' && *chk <= 'Z')
1297 || (*chk == '_'))
1298 {
1299 chk++;
1300 } else {
Gerhard Häring0741a602007-01-14 01:43:50 +00001301 PyErr_SetString(pysqlite_ProgrammingError, "invalid character in collation name");
Anthony Baxter72289a62006-04-04 06:29:05 +00001302 goto finally;
1303 }
1304 }
1305
1306 if (callable != Py_None && !PyCallable_Check(callable)) {
1307 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
1308 goto finally;
1309 }
1310
1311 if (callable != Py_None) {
1312 PyDict_SetItem(self->collations, uppercase_name, callable);
1313 } else {
1314 PyDict_DelItem(self->collations, uppercase_name);
1315 }
1316
1317 rc = sqlite3_create_collation(self->db,
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001318 PyString_AsString(uppercase_name),
Anthony Baxter72289a62006-04-04 06:29:05 +00001319 SQLITE_UTF8,
1320 (callable != Py_None) ? callable : NULL,
Gerhard Häring0741a602007-01-14 01:43:50 +00001321 (callable != Py_None) ? pysqlite_collation_callback : NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001322 if (rc != SQLITE_OK) {
1323 PyDict_DelItem(self->collations, uppercase_name);
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001324 _pysqlite_seterror(self->db, NULL);
Anthony Baxter72289a62006-04-04 06:29:05 +00001325 goto finally;
1326 }
1327
1328finally:
1329 Py_XDECREF(uppercase_name);
1330
1331 if (PyErr_Occurred()) {
1332 retval = NULL;
1333 } else {
1334 Py_INCREF(Py_None);
1335 retval = Py_None;
1336 }
1337
1338 return retval;
1339}
1340
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001341/* Called when the connection is used as a context manager. Returns itself as a
1342 * convenience to the caller. */
1343static PyObject *
1344pysqlite_connection_enter(pysqlite_Connection* self, PyObject* args)
1345{
1346 Py_INCREF(self);
1347 return (PyObject*)self;
1348}
1349
1350/** Called when the connection is used as a context manager. If there was any
1351 * exception, a rollback takes place; otherwise we commit. */
1352static PyObject *
1353pysqlite_connection_exit(pysqlite_Connection* self, PyObject* args)
1354{
1355 PyObject* exc_type, *exc_value, *exc_tb;
1356 char* method_name;
1357 PyObject* result;
1358
1359 if (!PyArg_ParseTuple(args, "OOO", &exc_type, &exc_value, &exc_tb)) {
1360 return NULL;
1361 }
1362
1363 if (exc_type == Py_None && exc_value == Py_None && exc_tb == Py_None) {
1364 method_name = "commit";
1365 } else {
1366 method_name = "rollback";
1367 }
1368
1369 result = PyObject_CallMethod((PyObject*)self, method_name, "");
1370 if (!result) {
1371 return NULL;
1372 }
1373 Py_DECREF(result);
1374
1375 Py_INCREF(Py_False);
1376 return Py_False;
1377}
1378
Anthony Baxterc51ee692006-04-01 00:57:31 +00001379static char connection_doc[] =
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001380PyDoc_STR("SQLite database connection object.");
Anthony Baxterc51ee692006-04-01 00:57:31 +00001381
1382static PyGetSetDef connection_getset[] = {
Gerhard Häring0741a602007-01-14 01:43:50 +00001383 {"isolation_level", (getter)pysqlite_connection_get_isolation_level, (setter)pysqlite_connection_set_isolation_level},
1384 {"total_changes", (getter)pysqlite_connection_get_total_changes, (setter)0},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001385 {NULL}
1386};
1387
1388static PyMethodDef connection_methods[] = {
Gerhard Häring0741a602007-01-14 01:43:50 +00001389 {"cursor", (PyCFunction)pysqlite_connection_cursor, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001390 PyDoc_STR("Return a cursor for the connection.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001391 {"close", (PyCFunction)pysqlite_connection_close, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001392 PyDoc_STR("Closes the connection.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001393 {"commit", (PyCFunction)pysqlite_connection_commit, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001394 PyDoc_STR("Commit the current transaction.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001395 {"rollback", (PyCFunction)pysqlite_connection_rollback, METH_NOARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001396 PyDoc_STR("Roll back the current transaction.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001397 {"create_function", (PyCFunction)pysqlite_connection_create_function, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001398 PyDoc_STR("Creates a new function. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001399 {"create_aggregate", (PyCFunction)pysqlite_connection_create_aggregate, METH_VARARGS|METH_KEYWORDS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001400 PyDoc_STR("Creates a new aggregate. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001401 {"set_authorizer", (PyCFunction)pysqlite_connection_set_authorizer, METH_VARARGS|METH_KEYWORDS,
Gerhard Häring1541ef02006-06-13 22:24:47 +00001402 PyDoc_STR("Sets authorizer callback. Non-standard.")},
Gerhard Häring1cc60ed2008-02-29 22:08:41 +00001403 {"set_progress_handler", (PyCFunction)pysqlite_connection_set_progress_handler, METH_VARARGS|METH_KEYWORDS,
1404 PyDoc_STR("Sets progress handler callback. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001405 {"execute", (PyCFunction)pysqlite_connection_execute, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001406 PyDoc_STR("Executes a SQL statement. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001407 {"executemany", (PyCFunction)pysqlite_connection_executemany, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001408 PyDoc_STR("Repeatedly executes a SQL statement. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001409 {"executescript", (PyCFunction)pysqlite_connection_executescript, METH_VARARGS,
Anthony Baxterc51ee692006-04-01 00:57:31 +00001410 PyDoc_STR("Executes a multiple SQL statements at once. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001411 {"create_collation", (PyCFunction)pysqlite_connection_create_collation, METH_VARARGS,
Gerhard Häring3e99c0a2006-04-23 15:24:26 +00001412 PyDoc_STR("Creates a collation function. Non-standard.")},
Gerhard Häring0741a602007-01-14 01:43:50 +00001413 {"interrupt", (PyCFunction)pysqlite_connection_interrupt, METH_NOARGS,
Gerhard Häring1541ef02006-06-13 22:24:47 +00001414 PyDoc_STR("Abort any pending database operation. Non-standard.")},
Gregory P. Smithb9803422008-03-28 08:32:09 +00001415 {"iterdump", (PyCFunction)pysqlite_connection_iterdump, METH_NOARGS,
Gerhard Häringef2276b2008-09-12 13:54:06 +00001416 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 +00001417 {"__enter__", (PyCFunction)pysqlite_connection_enter, METH_NOARGS,
1418 PyDoc_STR("For context manager. Non-standard.")},
1419 {"__exit__", (PyCFunction)pysqlite_connection_exit, METH_VARARGS,
1420 PyDoc_STR("For context manager. Non-standard.")},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001421 {NULL, NULL}
1422};
1423
1424static struct PyMemberDef connection_members[] =
1425{
Gerhard Häring0741a602007-01-14 01:43:50 +00001426 {"Warning", T_OBJECT, offsetof(pysqlite_Connection, Warning), RO},
1427 {"Error", T_OBJECT, offsetof(pysqlite_Connection, Error), RO},
1428 {"InterfaceError", T_OBJECT, offsetof(pysqlite_Connection, InterfaceError), RO},
1429 {"DatabaseError", T_OBJECT, offsetof(pysqlite_Connection, DatabaseError), RO},
1430 {"DataError", T_OBJECT, offsetof(pysqlite_Connection, DataError), RO},
1431 {"OperationalError", T_OBJECT, offsetof(pysqlite_Connection, OperationalError), RO},
1432 {"IntegrityError", T_OBJECT, offsetof(pysqlite_Connection, IntegrityError), RO},
1433 {"InternalError", T_OBJECT, offsetof(pysqlite_Connection, InternalError), RO},
1434 {"ProgrammingError", T_OBJECT, offsetof(pysqlite_Connection, ProgrammingError), RO},
1435 {"NotSupportedError", T_OBJECT, offsetof(pysqlite_Connection, NotSupportedError), RO},
1436 {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)},
1437 {"text_factory", T_OBJECT, offsetof(pysqlite_Connection, text_factory)},
Anthony Baxterc51ee692006-04-01 00:57:31 +00001438 {NULL}
1439};
1440
Gerhard Häring0741a602007-01-14 01:43:50 +00001441PyTypeObject pysqlite_ConnectionType = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001442 PyVarObject_HEAD_INIT(NULL, 0)
Anthony Baxter8e7b4902006-04-05 18:25:33 +00001443 MODULE_NAME ".Connection", /* tp_name */
Gerhard Häring0741a602007-01-14 01:43:50 +00001444 sizeof(pysqlite_Connection), /* tp_basicsize */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001445 0, /* tp_itemsize */
Gerhard Häring0741a602007-01-14 01:43:50 +00001446 (destructor)pysqlite_connection_dealloc, /* tp_dealloc */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001447 0, /* tp_print */
1448 0, /* tp_getattr */
1449 0, /* tp_setattr */
1450 0, /* tp_compare */
1451 0, /* tp_repr */
1452 0, /* tp_as_number */
1453 0, /* tp_as_sequence */
1454 0, /* tp_as_mapping */
1455 0, /* tp_hash */
Gerhard Häring0741a602007-01-14 01:43:50 +00001456 (ternaryfunc)pysqlite_connection_call, /* tp_call */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001457 0, /* tp_str */
1458 0, /* tp_getattro */
1459 0, /* tp_setattro */
1460 0, /* tp_as_buffer */
1461 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
1462 connection_doc, /* tp_doc */
1463 0, /* tp_traverse */
1464 0, /* tp_clear */
1465 0, /* tp_richcompare */
1466 0, /* tp_weaklistoffset */
1467 0, /* tp_iter */
1468 0, /* tp_iternext */
1469 connection_methods, /* tp_methods */
1470 connection_members, /* tp_members */
1471 connection_getset, /* tp_getset */
1472 0, /* tp_base */
1473 0, /* tp_dict */
1474 0, /* tp_descr_get */
1475 0, /* tp_descr_set */
1476 0, /* tp_dictoffset */
Gerhard Häring0741a602007-01-14 01:43:50 +00001477 (initproc)pysqlite_connection_init, /* tp_init */
Anthony Baxterc51ee692006-04-01 00:57:31 +00001478 0, /* tp_alloc */
1479 0, /* tp_new */
1480 0 /* tp_free */
1481};
1482
Gerhard Häring0741a602007-01-14 01:43:50 +00001483extern int pysqlite_connection_setup_types(void)
Anthony Baxterc51ee692006-04-01 00:57:31 +00001484{
Gerhard Häring0741a602007-01-14 01:43:50 +00001485 pysqlite_ConnectionType.tp_new = PyType_GenericNew;
1486 return PyType_Ready(&pysqlite_ConnectionType);
Anthony Baxterc51ee692006-04-01 00:57:31 +00001487}