Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1 | /* connection.c - the connection type |
| 2 | * |
Florent Xicluna | c934f32 | 2010-09-03 23:47:32 +0000 | [diff] [blame] | 3 | * Copyright (C) 2004-2010 Gerhard Häring <gh@ghaering.de> |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 4 | * |
| 5 | * This file is part of pysqlite. |
Victor Stinner | 8699950 | 2010-05-19 01:27:23 +0000 | [diff] [blame] | 6 | * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 7 | * This software is provided 'as-is', without any express or implied |
| 8 | * warranty. In no event will the authors be held liable for any damages |
| 9 | * arising from the use of this software. |
| 10 | * |
| 11 | * Permission is granted to anyone to use this software for any purpose, |
| 12 | * including commercial applications, and to alter it and redistribute it |
| 13 | * freely, subject to the following restrictions: |
| 14 | * |
| 15 | * 1. The origin of this software must not be misrepresented; you must not |
| 16 | * claim that you wrote the original software. If you use this software |
| 17 | * in a product, an acknowledgment in the product documentation would be |
| 18 | * appreciated but is not required. |
| 19 | * 2. Altered source versions must be plainly marked as such, and must not be |
| 20 | * misrepresented as being the original software. |
| 21 | * 3. This notice may not be removed or altered from any source distribution. |
| 22 | */ |
| 23 | |
| 24 | #include "cache.h" |
| 25 | #include "module.h" |
R. David Murray | d35251d | 2010-06-01 01:32:12 +0000 | [diff] [blame] | 26 | #include "structmember.h" |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 27 | #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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 36 | #define ACTION_FINALIZE 1 |
| 37 | #define ACTION_RESET 2 |
| 38 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 39 | #if SQLITE_VERSION_NUMBER >= 3003008 |
| 40 | #ifndef SQLITE_OMIT_LOAD_EXTENSION |
| 41 | #define HAVE_LOAD_EXTENSION |
| 42 | #endif |
| 43 | #endif |
| 44 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 45 | static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level); |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 46 | static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 47 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 48 | |
Benjamin Peterson | d7b0328 | 2008-09-13 15:58:53 +0000 | [diff] [blame] | 49 | static void _sqlite3_result_error(sqlite3_context* ctx, const char* errmsg, int len) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 50 | { |
| 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 Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 57 | PyErr_SetString(pysqlite_OperationalError, errmsg); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 58 | #endif |
| 59 | } |
| 60 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 61 | int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 62 | { |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 77 | return -1; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 80 | self->initialized = 1; |
| 81 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 82 | self->begin_statement = NULL; |
| 83 | |
| 84 | self->statement_cache = NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 85 | self->statements = NULL; |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 86 | self->cursors = NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 87 | |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 99 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 100 | return -1; |
| 101 | } |
| 102 | |
| 103 | if (!isolation_level) { |
Neal Norwitz | efee9f5 | 2007-10-27 02:50:52 +0000 | [diff] [blame] | 104 | isolation_level = PyUnicode_FromString(""); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 105 | if (!isolation_level) { |
| 106 | return -1; |
| 107 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 108 | } else { |
| 109 | Py_INCREF(isolation_level); |
| 110 | } |
| 111 | self->isolation_level = NULL; |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 112 | pysqlite_connection_set_isolation_level(self, isolation_level); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 113 | Py_DECREF(isolation_level); |
| 114 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 115 | self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 116 | if (PyErr_Occurred()) { |
| 117 | return -1; |
| 118 | } |
| 119 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 120 | self->created_statements = 0; |
| 121 | self->created_cursors = 0; |
| 122 | |
| 123 | /* Create lists of weak references to statements/cursors */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 124 | self->statements = PyList_New(0); |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 125 | self->cursors = PyList_New(0); |
| 126 | if (!self->statements || !self->cursors) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 127 | return -1; |
| 128 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 129 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 130 | /* 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 Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 142 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 143 | self->thread_ident = PyThread_get_thread_ident(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 144 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 145 | 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 Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 157 | 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 171 | /* Empty the entire statement cache of this connection */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 172 | void pysqlite_flush_statement_cache(pysqlite_Connection* self) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 173 | { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 174 | pysqlite_Node* node; |
| 175 | pysqlite_Statement* statement; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 176 | |
| 177 | node = self->statement_cache->first; |
| 178 | |
| 179 | while (node) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 180 | statement = (pysqlite_Statement*)(node->data); |
| 181 | (void)pysqlite_statement_finalize(statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 182 | node = node->next; |
| 183 | } |
| 184 | |
| 185 | Py_DECREF(self->statement_cache); |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 186 | self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O", self); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 187 | Py_DECREF(self); |
| 188 | self->statement_cache->decref_factory = 0; |
| 189 | } |
| 190 | |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 191 | /* action in (ACTION_RESET, ACTION_FINALIZE) */ |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 192 | void pysqlite_do_all_statements(pysqlite_Connection* self, int action, int reset_cursors) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 193 | { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 194 | int i; |
| 195 | PyObject* weakref; |
| 196 | PyObject* statement; |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 197 | pysqlite_Cursor* cursor; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 198 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 199 | 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 Peterson | 5c2b09e | 2011-05-31 21:31:37 -0500 | [diff] [blame] | 203 | Py_INCREF(statement); |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 204 | if (action == ACTION_RESET) { |
| 205 | (void)pysqlite_statement_reset((pysqlite_Statement*)statement); |
| 206 | } else { |
| 207 | (void)pysqlite_statement_finalize((pysqlite_Statement*)statement); |
| 208 | } |
Benjamin Peterson | 5c2b09e | 2011-05-31 21:31:37 -0500 | [diff] [blame] | 209 | Py_DECREF(statement); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 210 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 211 | } |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 212 | |
| 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 224 | void pysqlite_connection_dealloc(pysqlite_Connection* self) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 225 | { |
| 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 243 | Py_XDECREF(self->statements); |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 244 | Py_XDECREF(self->cursors); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 245 | |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 246 | Py_TYPE(self)->tp_free((PyObject*)self); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 249 | /* |
| 250 | * Registers a cursor with the connection. |
| 251 | * |
| 252 | * 0 => error; 1 => ok |
| 253 | */ |
| 254 | int 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; |
| 271 | error: |
| 272 | return 0; |
| 273 | } |
| 274 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 275 | PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 276 | { |
| 277 | static char *kwlist[] = {"factory", NULL, NULL}; |
| 278 | PyObject* factory = NULL; |
| 279 | PyObject* cursor; |
| 280 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 281 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", kwlist, |
| 282 | &factory)) { |
| 283 | return NULL; |
| 284 | } |
| 285 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 286 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 287 | return NULL; |
| 288 | } |
| 289 | |
| 290 | if (factory == NULL) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 291 | factory = (PyObject*)&pysqlite_CursorType; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | cursor = PyObject_CallFunction(factory, "O", self); |
| 295 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 296 | _pysqlite_drop_unused_cursor_references(self); |
| 297 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 298 | if (cursor && self->row_factory != Py_None) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 299 | Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 300 | Py_INCREF(self->row_factory); |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 301 | ((pysqlite_Cursor*)cursor)->row_factory = self->row_factory; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | return cursor; |
| 305 | } |
| 306 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 307 | PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 308 | { |
| 309 | int rc; |
| 310 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 311 | if (!pysqlite_check_thread(self)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 312 | return NULL; |
| 313 | } |
| 314 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 315 | pysqlite_do_all_statements(self, ACTION_FINALIZE, 1); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 316 | |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 323 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 324 | 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 Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 339 | int pysqlite_check_connection(pysqlite_Connection* con) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 340 | { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 341 | if (!con->initialized) { |
| 342 | PyErr_SetString(pysqlite_ProgrammingError, "Base Connection.__init__ not called."); |
| 343 | return 0; |
| 344 | } |
| 345 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 346 | if (!con->db) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 347 | PyErr_SetString(pysqlite_ProgrammingError, "Cannot operate on a closed database."); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 348 | return 0; |
| 349 | } else { |
| 350 | return 1; |
| 351 | } |
| 352 | } |
| 353 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 354 | PyObject* _pysqlite_connection_begin(pysqlite_Connection* self) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 355 | { |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 365 | _pysqlite_seterror(self->db, statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 366 | goto error; |
| 367 | } |
| 368 | |
Benjamin Peterson | d7b0328 | 2008-09-13 15:58:53 +0000 | [diff] [blame] | 369 | rc = pysqlite_step(statement, self); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 370 | if (rc == SQLITE_DONE) { |
| 371 | self->inTransaction = 1; |
| 372 | } else { |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 373 | _pysqlite_seterror(self->db, statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 374 | } |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 381 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | error: |
| 385 | if (PyErr_Occurred()) { |
| 386 | return NULL; |
| 387 | } else { |
| 388 | Py_INCREF(Py_None); |
| 389 | return Py_None; |
| 390 | } |
| 391 | } |
| 392 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 393 | PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 394 | { |
| 395 | int rc; |
| 396 | const char* tail; |
| 397 | sqlite3_stmt* statement; |
| 398 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 399 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 400 | return NULL; |
| 401 | } |
| 402 | |
| 403 | if (self->inTransaction) { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 404 | pysqlite_do_all_statements(self, ACTION_RESET, 0); |
| 405 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 406 | 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 410 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 411 | goto error; |
| 412 | } |
| 413 | |
Benjamin Peterson | d7b0328 | 2008-09-13 15:58:53 +0000 | [diff] [blame] | 414 | rc = pysqlite_step(statement, self); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 415 | if (rc == SQLITE_DONE) { |
| 416 | self->inTransaction = 0; |
| 417 | } else { |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 418 | _pysqlite_seterror(self->db, statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 419 | } |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 425 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | } |
| 429 | |
| 430 | error: |
| 431 | if (PyErr_Occurred()) { |
| 432 | return NULL; |
| 433 | } else { |
| 434 | Py_INCREF(Py_None); |
| 435 | return Py_None; |
| 436 | } |
| 437 | } |
| 438 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 439 | PyObject* pysqlite_connection_rollback(pysqlite_Connection* self, PyObject* args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 440 | { |
| 441 | int rc; |
| 442 | const char* tail; |
| 443 | sqlite3_stmt* statement; |
| 444 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 445 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 446 | return NULL; |
| 447 | } |
| 448 | |
| 449 | if (self->inTransaction) { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 450 | pysqlite_do_all_statements(self, ACTION_RESET, 1); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 451 | |
| 452 | Py_BEGIN_ALLOW_THREADS |
Georg Brandl | 0eaa940 | 2007-08-11 15:39:18 +0000 | [diff] [blame] | 453 | rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 454 | Py_END_ALLOW_THREADS |
| 455 | if (rc != SQLITE_OK) { |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 456 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 457 | goto error; |
| 458 | } |
| 459 | |
Benjamin Peterson | d7b0328 | 2008-09-13 15:58:53 +0000 | [diff] [blame] | 460 | rc = pysqlite_step(statement, self); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 461 | if (rc == SQLITE_DONE) { |
| 462 | self->inTransaction = 0; |
| 463 | } else { |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 464 | _pysqlite_seterror(self->db, statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 465 | } |
| 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äring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 471 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | } |
| 475 | |
| 476 | error: |
| 477 | if (PyErr_Occurred()) { |
| 478 | return NULL; |
| 479 | } else { |
| 480 | Py_INCREF(Py_None); |
| 481 | return Py_None; |
| 482 | } |
| 483 | } |
| 484 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 485 | void _pysqlite_set_result(sqlite3_context* context, PyObject* py_val) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 486 | { |
| 487 | long longval; |
| 488 | const char* buffer; |
| 489 | Py_ssize_t buflen; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 490 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 491 | if ((!py_val) || PyErr_Occurred()) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 492 | sqlite3_result_null(context); |
| 493 | } else if (py_val == Py_None) { |
| 494 | sqlite3_result_null(context); |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 495 | } else if (PyLong_Check(py_val)) { |
| 496 | longval = PyLong_AsLong(py_val); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 497 | 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 Rossum | bae07c9 | 2007-10-08 02:46:15 +0000 | [diff] [blame] | 500 | } else if (PyUnicode_Check(py_val)) { |
Victor Stinner | 8699950 | 2010-05-19 01:27:23 +0000 | [diff] [blame] | 501 | char *str = _PyUnicode_AsString(py_val); |
| 502 | if (str != NULL) |
| 503 | sqlite3_result_text(context, str, -1, SQLITE_TRANSIENT); |
Guido van Rossum | bae07c9 | 2007-10-08 02:46:15 +0000 | [diff] [blame] | 504 | } else if (PyObject_CheckBuffer(py_val)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 505 | if (PyObject_AsCharBuffer(py_val, &buffer, &buflen) != 0) { |
| 506 | PyErr_SetString(PyExc_ValueError, "could not convert BLOB to buffer"); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 507 | } else { |
| 508 | sqlite3_result_blob(context, buffer, buflen, SQLITE_TRANSIENT); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 509 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 510 | } else { |
| 511 | /* TODO: raise error */ |
| 512 | } |
| 513 | } |
| 514 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 515 | PyObject* _pysqlite_build_py_params(sqlite3_context *context, int argc, sqlite3_value** argv) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 516 | { |
| 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 524 | |
| 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 Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 535 | cur_py_value = PyLong_FromLong((long)val_int); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 536 | 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 Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 542 | cur_py_value = PyUnicode_FromString(val_str); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 543 | /* TODO: have a way to show errors here */ |
| 544 | if (!cur_py_value) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 545 | PyErr_Clear(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 546 | 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 Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 552 | cur_py_value = PyBytes_FromStringAndSize( |
Guido van Rossum | bae07c9 | 2007-10-08 02:46:15 +0000 | [diff] [blame] | 553 | sqlite3_value_blob(cur_value), buflen); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 554 | break; |
| 555 | case SQLITE_NULL: |
| 556 | default: |
| 557 | Py_INCREF(Py_None); |
| 558 | cur_py_value = Py_None; |
| 559 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 560 | |
| 561 | if (!cur_py_value) { |
| 562 | Py_DECREF(args); |
| 563 | return NULL; |
| 564 | } |
| 565 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 566 | PyTuple_SetItem(args, i, cur_py_value); |
| 567 | |
| 568 | } |
| 569 | |
| 570 | return args; |
| 571 | } |
| 572 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 573 | void _pysqlite_func_callback(sqlite3_context* context, int argc, sqlite3_value** argv) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 574 | { |
| 575 | PyObject* args; |
| 576 | PyObject* py_func; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 577 | PyObject* py_retval = NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 578 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 579 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 580 | PyGILState_STATE threadstate; |
| 581 | |
| 582 | threadstate = PyGILState_Ensure(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 583 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 584 | |
| 585 | py_func = (PyObject*)sqlite3_user_data(context); |
| 586 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 587 | args = _pysqlite_build_py_params(context, argc, argv); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 588 | if (args) { |
| 589 | py_retval = PyObject_CallObject(py_func, args); |
| 590 | Py_DECREF(args); |
| 591 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 592 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 593 | if (py_retval) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 594 | _pysqlite_set_result(context, py_retval); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 595 | 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 604 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 605 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 606 | PyGILState_Release(threadstate); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 607 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 608 | } |
| 609 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 610 | static void _pysqlite_step_callback(sqlite3_context *context, int argc, sqlite3_value** params) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 611 | { |
| 612 | PyObject* args; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 613 | PyObject* function_result = NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 614 | PyObject* aggregate_class; |
| 615 | PyObject** aggregate_instance; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 616 | PyObject* stepmethod = NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 617 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 618 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 619 | PyGILState_STATE threadstate; |
| 620 | |
| 621 | threadstate = PyGILState_Ensure(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 622 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 623 | |
| 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 631 | if (PyErr_Occurred()) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 632 | *aggregate_instance = 0; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 633 | 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 639 | goto error; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 640 | } |
| 641 | } |
| 642 | |
| 643 | stepmethod = PyObject_GetAttrString(*aggregate_instance, "step"); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 644 | if (!stepmethod) { |
| 645 | goto error; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 646 | } |
| 647 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 648 | args = _pysqlite_build_py_params(context, argc, params); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 649 | if (!args) { |
| 650 | goto error; |
| 651 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 652 | |
| 653 | function_result = PyObject_CallObject(stepmethod, args); |
| 654 | Py_DECREF(args); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 655 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 656 | if (!function_result) { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 657 | 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 663 | } |
| 664 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 665 | error: |
| 666 | Py_XDECREF(stepmethod); |
| 667 | Py_XDECREF(function_result); |
| 668 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 669 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 670 | PyGILState_Release(threadstate); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 671 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 672 | } |
| 673 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 674 | void _pysqlite_final_callback(sqlite3_context* context) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 675 | { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 676 | PyObject* function_result = NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 677 | PyObject** aggregate_instance; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 678 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 679 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 680 | PyGILState_STATE threadstate; |
| 681 | |
| 682 | threadstate = PyGILState_Ensure(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 683 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 684 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 685 | aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*)); |
| 686 | if (!*aggregate_instance) { |
| 687 | /* this branch is executed if there was an exception in the aggregate's |
| 688 | * __init__ */ |
| 689 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 690 | goto error; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 691 | } |
| 692 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 693 | function_result = PyObject_CallMethod(*aggregate_instance, "finalize", ""); |
| 694 | if (!function_result) { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 695 | if (_enable_callback_tracebacks) { |
| 696 | PyErr_Print(); |
| 697 | } else { |
| 698 | PyErr_Clear(); |
| 699 | } |
| 700 | _sqlite3_result_error(context, "user-defined aggregate's 'finalize' method raised error", -1); |
| 701 | } else { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 702 | _pysqlite_set_result(context, function_result); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 703 | } |
| 704 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 705 | error: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 706 | Py_XDECREF(*aggregate_instance); |
| 707 | Py_XDECREF(function_result); |
| 708 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 709 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 710 | PyGILState_Release(threadstate); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 711 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 714 | static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 715 | { |
| 716 | PyObject* new_list; |
| 717 | PyObject* weakref; |
| 718 | int i; |
| 719 | |
| 720 | /* we only need to do this once in a while */ |
| 721 | if (self->created_statements++ < 200) { |
| 722 | return; |
| 723 | } |
| 724 | |
| 725 | self->created_statements = 0; |
| 726 | |
| 727 | new_list = PyList_New(0); |
| 728 | if (!new_list) { |
| 729 | return; |
| 730 | } |
| 731 | |
| 732 | for (i = 0; i < PyList_Size(self->statements); i++) { |
| 733 | weakref = PyList_GetItem(self->statements, i); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 734 | if (PyWeakref_GetObject(weakref) != Py_None) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 735 | if (PyList_Append(new_list, weakref) != 0) { |
| 736 | Py_DECREF(new_list); |
| 737 | return; |
| 738 | } |
| 739 | } |
| 740 | } |
| 741 | |
| 742 | Py_DECREF(self->statements); |
| 743 | self->statements = new_list; |
| 744 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 745 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 746 | static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self) |
| 747 | { |
| 748 | PyObject* new_list; |
| 749 | PyObject* weakref; |
| 750 | int i; |
| 751 | |
| 752 | /* we only need to do this once in a while */ |
| 753 | if (self->created_cursors++ < 200) { |
| 754 | return; |
| 755 | } |
| 756 | |
| 757 | self->created_cursors = 0; |
| 758 | |
| 759 | new_list = PyList_New(0); |
| 760 | if (!new_list) { |
| 761 | return; |
| 762 | } |
| 763 | |
| 764 | for (i = 0; i < PyList_Size(self->cursors); i++) { |
| 765 | weakref = PyList_GetItem(self->cursors, i); |
| 766 | if (PyWeakref_GetObject(weakref) != Py_None) { |
| 767 | if (PyList_Append(new_list, weakref) != 0) { |
| 768 | Py_DECREF(new_list); |
| 769 | return; |
| 770 | } |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | Py_DECREF(self->cursors); |
| 775 | self->cursors = new_list; |
| 776 | } |
| 777 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 778 | PyObject* pysqlite_connection_create_function(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 779 | { |
| 780 | static char *kwlist[] = {"name", "narg", "func", NULL, NULL}; |
| 781 | |
| 782 | PyObject* func; |
| 783 | char* name; |
| 784 | int narg; |
| 785 | int rc; |
| 786 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 787 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 788 | return NULL; |
| 789 | } |
| 790 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 791 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO", kwlist, |
| 792 | &name, &narg, &func)) |
| 793 | { |
| 794 | return NULL; |
| 795 | } |
| 796 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 797 | rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 798 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 799 | if (rc != SQLITE_OK) { |
| 800 | /* Workaround for SQLite bug: no error code or string is available here */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 801 | PyErr_SetString(pysqlite_OperationalError, "Error creating function"); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 802 | return NULL; |
| 803 | } else { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 804 | if (PyDict_SetItem(self->function_pinboard, func, Py_None) == -1) |
| 805 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 806 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 807 | Py_INCREF(Py_None); |
| 808 | return Py_None; |
| 809 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 810 | } |
| 811 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 812 | PyObject* pysqlite_connection_create_aggregate(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 813 | { |
| 814 | PyObject* aggregate_class; |
| 815 | |
| 816 | int n_arg; |
| 817 | char* name; |
| 818 | static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL }; |
| 819 | int rc; |
| 820 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 821 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 822 | return NULL; |
| 823 | } |
| 824 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 825 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "siO:create_aggregate", |
| 826 | kwlist, &name, &n_arg, &aggregate_class)) { |
| 827 | return NULL; |
| 828 | } |
| 829 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 830 | rc = sqlite3_create_function(self->db, name, n_arg, SQLITE_UTF8, (void*)aggregate_class, 0, &_pysqlite_step_callback, &_pysqlite_final_callback); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 831 | if (rc != SQLITE_OK) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 832 | /* Workaround for SQLite bug: no error code or string is available here */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 833 | PyErr_SetString(pysqlite_OperationalError, "Error creating aggregate"); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 834 | return NULL; |
| 835 | } else { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 836 | if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1) |
| 837 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 838 | |
| 839 | Py_INCREF(Py_None); |
| 840 | return Py_None; |
| 841 | } |
| 842 | } |
| 843 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 844 | static int _authorizer_callback(void* user_arg, int action, const char* arg1, const char* arg2 , const char* dbname, const char* access_attempt_source) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 845 | { |
| 846 | PyObject *ret; |
| 847 | int rc; |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 848 | #ifdef WITH_THREAD |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 849 | PyGILState_STATE gilstate; |
| 850 | |
| 851 | gilstate = PyGILState_Ensure(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 852 | #endif |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 853 | ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source); |
| 854 | |
| 855 | if (!ret) { |
| 856 | if (_enable_callback_tracebacks) { |
| 857 | PyErr_Print(); |
| 858 | } else { |
| 859 | PyErr_Clear(); |
| 860 | } |
| 861 | |
| 862 | rc = SQLITE_DENY; |
| 863 | } else { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 864 | if (PyLong_Check(ret)) { |
| 865 | rc = (int)PyLong_AsLong(ret); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 866 | } else { |
| 867 | rc = SQLITE_DENY; |
| 868 | } |
| 869 | Py_DECREF(ret); |
| 870 | } |
| 871 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 872 | #ifdef WITH_THREAD |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 873 | PyGILState_Release(gilstate); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 874 | #endif |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 875 | return rc; |
| 876 | } |
| 877 | |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 878 | static int _progress_handler(void* user_arg) |
| 879 | { |
| 880 | int rc; |
| 881 | PyObject *ret; |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 882 | #ifdef WITH_THREAD |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 883 | PyGILState_STATE gilstate; |
| 884 | |
| 885 | gilstate = PyGILState_Ensure(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 886 | #endif |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 887 | ret = PyObject_CallFunction((PyObject*)user_arg, ""); |
| 888 | |
| 889 | if (!ret) { |
| 890 | if (_enable_callback_tracebacks) { |
| 891 | PyErr_Print(); |
| 892 | } else { |
| 893 | PyErr_Clear(); |
| 894 | } |
| 895 | |
Mark Dickinson | 934896d | 2009-02-21 20:59:32 +0000 | [diff] [blame] | 896 | /* abort query if error occurred */ |
Victor Stinner | 8699950 | 2010-05-19 01:27:23 +0000 | [diff] [blame] | 897 | rc = 1; |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 898 | } else { |
| 899 | rc = (int)PyObject_IsTrue(ret); |
| 900 | Py_DECREF(ret); |
| 901 | } |
| 902 | |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 903 | #ifdef WITH_THREAD |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 904 | PyGILState_Release(gilstate); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 905 | #endif |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 906 | return rc; |
| 907 | } |
| 908 | |
Antoine Pitrou | 5bfa062 | 2011-04-04 00:12:04 +0200 | [diff] [blame] | 909 | static void _trace_callback(void* user_arg, const char* statement_string) |
| 910 | { |
| 911 | PyObject *py_statement = NULL; |
| 912 | PyObject *ret = NULL; |
| 913 | |
| 914 | #ifdef WITH_THREAD |
| 915 | PyGILState_STATE gilstate; |
| 916 | |
| 917 | gilstate = PyGILState_Ensure(); |
| 918 | #endif |
| 919 | py_statement = PyUnicode_DecodeUTF8(statement_string, |
| 920 | strlen(statement_string), "replace"); |
| 921 | if (py_statement) { |
| 922 | ret = PyObject_CallFunctionObjArgs((PyObject*)user_arg, py_statement, NULL); |
| 923 | Py_DECREF(py_statement); |
| 924 | } |
| 925 | |
| 926 | if (ret) { |
| 927 | Py_DECREF(ret); |
| 928 | } else { |
| 929 | if (_enable_callback_tracebacks) { |
| 930 | PyErr_Print(); |
| 931 | } else { |
| 932 | PyErr_Clear(); |
| 933 | } |
| 934 | } |
| 935 | |
| 936 | #ifdef WITH_THREAD |
| 937 | PyGILState_Release(gilstate); |
| 938 | #endif |
| 939 | } |
| 940 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 941 | static PyObject* pysqlite_connection_set_authorizer(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 942 | { |
| 943 | PyObject* authorizer_cb; |
| 944 | |
| 945 | static char *kwlist[] = { "authorizer_callback", NULL }; |
| 946 | int rc; |
| 947 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 948 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 949 | return NULL; |
| 950 | } |
| 951 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 952 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:set_authorizer", |
| 953 | kwlist, &authorizer_cb)) { |
| 954 | return NULL; |
| 955 | } |
| 956 | |
| 957 | rc = sqlite3_set_authorizer(self->db, _authorizer_callback, (void*)authorizer_cb); |
| 958 | |
| 959 | if (rc != SQLITE_OK) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 960 | PyErr_SetString(pysqlite_OperationalError, "Error setting authorizer callback"); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 961 | return NULL; |
| 962 | } else { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 963 | if (PyDict_SetItem(self->function_pinboard, authorizer_cb, Py_None) == -1) |
| 964 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 965 | |
| 966 | Py_INCREF(Py_None); |
| 967 | return Py_None; |
| 968 | } |
| 969 | } |
| 970 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 971 | static PyObject* pysqlite_connection_set_progress_handler(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 972 | { |
| 973 | PyObject* progress_handler; |
| 974 | int n; |
| 975 | |
| 976 | static char *kwlist[] = { "progress_handler", "n", NULL }; |
| 977 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 978 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 979 | return NULL; |
| 980 | } |
| 981 | |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 982 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi:set_progress_handler", |
| 983 | kwlist, &progress_handler, &n)) { |
| 984 | return NULL; |
| 985 | } |
| 986 | |
| 987 | if (progress_handler == Py_None) { |
| 988 | /* None clears the progress handler previously set */ |
| 989 | sqlite3_progress_handler(self->db, 0, 0, (void*)0); |
| 990 | } else { |
| 991 | sqlite3_progress_handler(self->db, n, _progress_handler, progress_handler); |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 992 | if (PyDict_SetItem(self->function_pinboard, progress_handler, Py_None) == -1) |
| 993 | return NULL; |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 994 | } |
| 995 | |
| 996 | Py_INCREF(Py_None); |
| 997 | return Py_None; |
| 998 | } |
| 999 | |
Antoine Pitrou | 5bfa062 | 2011-04-04 00:12:04 +0200 | [diff] [blame] | 1000 | static PyObject* pysqlite_connection_set_trace_callback(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
| 1001 | { |
| 1002 | PyObject* trace_callback; |
| 1003 | |
| 1004 | static char *kwlist[] = { "trace_callback", NULL }; |
| 1005 | |
| 1006 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 1007 | return NULL; |
| 1008 | } |
| 1009 | |
| 1010 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:set_trace_callback", |
| 1011 | kwlist, &trace_callback)) { |
| 1012 | return NULL; |
| 1013 | } |
| 1014 | |
| 1015 | if (trace_callback == Py_None) { |
| 1016 | /* None clears the trace callback previously set */ |
| 1017 | sqlite3_trace(self->db, 0, (void*)0); |
| 1018 | } else { |
| 1019 | if (PyDict_SetItem(self->function_pinboard, trace_callback, Py_None) == -1) |
| 1020 | return NULL; |
| 1021 | sqlite3_trace(self->db, _trace_callback, trace_callback); |
| 1022 | } |
| 1023 | |
| 1024 | Py_INCREF(Py_None); |
| 1025 | return Py_None; |
| 1026 | } |
| 1027 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 1028 | #ifdef HAVE_LOAD_EXTENSION |
| 1029 | static PyObject* pysqlite_enable_load_extension(pysqlite_Connection* self, PyObject* args) |
| 1030 | { |
| 1031 | int rc; |
| 1032 | int onoff; |
| 1033 | |
| 1034 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 1035 | return NULL; |
| 1036 | } |
| 1037 | |
| 1038 | if (!PyArg_ParseTuple(args, "i", &onoff)) { |
| 1039 | return NULL; |
| 1040 | } |
| 1041 | |
| 1042 | rc = sqlite3_enable_load_extension(self->db, onoff); |
| 1043 | |
| 1044 | if (rc != SQLITE_OK) { |
| 1045 | PyErr_SetString(pysqlite_OperationalError, "Error enabling load extension"); |
| 1046 | return NULL; |
| 1047 | } else { |
| 1048 | Py_INCREF(Py_None); |
| 1049 | return Py_None; |
| 1050 | } |
| 1051 | } |
| 1052 | |
| 1053 | static PyObject* pysqlite_load_extension(pysqlite_Connection* self, PyObject* args) |
| 1054 | { |
| 1055 | int rc; |
| 1056 | char* extension_name; |
| 1057 | char* errmsg; |
| 1058 | |
| 1059 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 1060 | return NULL; |
| 1061 | } |
| 1062 | |
| 1063 | if (!PyArg_ParseTuple(args, "s", &extension_name)) { |
| 1064 | return NULL; |
| 1065 | } |
| 1066 | |
| 1067 | rc = sqlite3_load_extension(self->db, extension_name, 0, &errmsg); |
| 1068 | if (rc != 0) { |
| 1069 | PyErr_SetString(pysqlite_OperationalError, errmsg); |
| 1070 | return NULL; |
| 1071 | } else { |
| 1072 | Py_INCREF(Py_None); |
| 1073 | return Py_None; |
| 1074 | } |
| 1075 | } |
| 1076 | #endif |
| 1077 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1078 | int pysqlite_check_thread(pysqlite_Connection* self) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1079 | { |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1080 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1081 | if (self->check_same_thread) { |
| 1082 | if (PyThread_get_thread_ident() != self->thread_ident) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1083 | PyErr_Format(pysqlite_ProgrammingError, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1084 | "SQLite objects created in a thread can only be used in that same thread." |
| 1085 | "The object was created in thread id %ld and this is thread id %ld", |
| 1086 | self->thread_ident, PyThread_get_thread_ident()); |
| 1087 | return 0; |
| 1088 | } |
| 1089 | |
| 1090 | } |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1091 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1092 | return 1; |
| 1093 | } |
| 1094 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1095 | static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1096 | { |
| 1097 | Py_INCREF(self->isolation_level); |
| 1098 | return self->isolation_level; |
| 1099 | } |
| 1100 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1101 | static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1102 | { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1103 | if (!pysqlite_check_connection(self)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1104 | return NULL; |
| 1105 | } else { |
| 1106 | return Py_BuildValue("i", sqlite3_total_changes(self->db)); |
| 1107 | } |
| 1108 | } |
| 1109 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1110 | static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1111 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1112 | PyObject* res; |
| 1113 | PyObject* begin_statement; |
Georg Brandl | ceab610 | 2007-11-25 00:45:05 +0000 | [diff] [blame] | 1114 | static PyObject* begin_word; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1115 | |
| 1116 | Py_XDECREF(self->isolation_level); |
| 1117 | |
| 1118 | if (self->begin_statement) { |
| 1119 | PyMem_Free(self->begin_statement); |
| 1120 | self->begin_statement = NULL; |
| 1121 | } |
| 1122 | |
| 1123 | if (isolation_level == Py_None) { |
| 1124 | Py_INCREF(Py_None); |
| 1125 | self->isolation_level = Py_None; |
| 1126 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1127 | res = pysqlite_connection_commit(self, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1128 | if (!res) { |
| 1129 | return -1; |
| 1130 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1131 | Py_DECREF(res); |
| 1132 | |
| 1133 | self->inTransaction = 0; |
| 1134 | } else { |
Neal Norwitz | efee9f5 | 2007-10-27 02:50:52 +0000 | [diff] [blame] | 1135 | const char *statement; |
| 1136 | Py_ssize_t size; |
| 1137 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1138 | Py_INCREF(isolation_level); |
| 1139 | self->isolation_level = isolation_level; |
| 1140 | |
Georg Brandl | ceab610 | 2007-11-25 00:45:05 +0000 | [diff] [blame] | 1141 | if (!begin_word) { |
| 1142 | begin_word = PyUnicode_FromString("BEGIN "); |
| 1143 | if (!begin_word) return -1; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1144 | } |
Georg Brandl | ceab610 | 2007-11-25 00:45:05 +0000 | [diff] [blame] | 1145 | begin_statement = PyUnicode_Concat(begin_word, isolation_level); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1146 | if (!begin_statement) { |
| 1147 | return -1; |
| 1148 | } |
| 1149 | |
Marc-André Lemburg | 4cc0f24 | 2008-08-07 18:54:33 +0000 | [diff] [blame] | 1150 | statement = _PyUnicode_AsStringAndSize(begin_statement, &size); |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 1151 | if (!statement) { |
Victor Stinner | ff27d6b | 2010-03-13 00:57:22 +0000 | [diff] [blame] | 1152 | Py_DECREF(begin_statement); |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 1153 | return -1; |
| 1154 | } |
Neal Norwitz | efee9f5 | 2007-10-27 02:50:52 +0000 | [diff] [blame] | 1155 | self->begin_statement = PyMem_Malloc(size + 2); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1156 | if (!self->begin_statement) { |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 1157 | Py_DECREF(begin_statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1158 | return -1; |
| 1159 | } |
| 1160 | |
Neal Norwitz | efee9f5 | 2007-10-27 02:50:52 +0000 | [diff] [blame] | 1161 | strcpy(self->begin_statement, statement); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1162 | Py_DECREF(begin_statement); |
| 1163 | } |
| 1164 | |
| 1165 | return 0; |
| 1166 | } |
| 1167 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1168 | PyObject* pysqlite_connection_call(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1169 | { |
| 1170 | PyObject* sql; |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1171 | pysqlite_Statement* statement; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1172 | PyObject* weakref; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1173 | int rc; |
| 1174 | |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 1175 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
| 1176 | return NULL; |
| 1177 | } |
| 1178 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1179 | if (!PyArg_ParseTuple(args, "O", &sql)) { |
| 1180 | return NULL; |
| 1181 | } |
| 1182 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1183 | _pysqlite_drop_unused_statement_references(self); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1184 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1185 | statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1186 | if (!statement) { |
| 1187 | return NULL; |
| 1188 | } |
| 1189 | |
Victor Stinner | 0201f44 | 2010-03-13 03:28:34 +0000 | [diff] [blame] | 1190 | statement->db = NULL; |
| 1191 | statement->st = NULL; |
| 1192 | statement->sql = NULL; |
| 1193 | statement->in_use = 0; |
| 1194 | statement->in_weakreflist = NULL; |
| 1195 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1196 | rc = pysqlite_statement_create(statement, self, sql); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1197 | |
| 1198 | if (rc != SQLITE_OK) { |
| 1199 | if (rc == PYSQLITE_TOO_MUCH_SQL) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1200 | PyErr_SetString(pysqlite_Warning, "You can only execute one statement at a time."); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1201 | } else if (rc == PYSQLITE_SQL_WRONG_TYPE) { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1202 | PyErr_SetString(pysqlite_Warning, "SQL is of wrong type. Must be string or unicode."); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1203 | } else { |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 1204 | (void)pysqlite_statement_reset(statement); |
| 1205 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1206 | } |
| 1207 | |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1208 | Py_CLEAR(statement); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1209 | } else { |
| 1210 | weakref = PyWeakref_NewRef((PyObject*)statement, NULL); |
| 1211 | if (!weakref) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1212 | Py_CLEAR(statement); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1213 | goto error; |
| 1214 | } |
| 1215 | |
| 1216 | if (PyList_Append(self->statements, weakref) != 0) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1217 | Py_CLEAR(weakref); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1218 | goto error; |
| 1219 | } |
| 1220 | |
| 1221 | Py_DECREF(weakref); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1222 | } |
| 1223 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1224 | error: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1225 | return (PyObject*)statement; |
| 1226 | } |
| 1227 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1228 | PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1229 | { |
| 1230 | PyObject* cursor = 0; |
| 1231 | PyObject* result = 0; |
| 1232 | PyObject* method = 0; |
| 1233 | |
| 1234 | cursor = PyObject_CallMethod((PyObject*)self, "cursor", ""); |
| 1235 | if (!cursor) { |
| 1236 | goto error; |
| 1237 | } |
| 1238 | |
| 1239 | method = PyObject_GetAttrString(cursor, "execute"); |
| 1240 | if (!method) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1241 | Py_CLEAR(cursor); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1242 | goto error; |
| 1243 | } |
| 1244 | |
| 1245 | result = PyObject_CallObject(method, args); |
| 1246 | if (!result) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1247 | Py_CLEAR(cursor); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | error: |
| 1251 | Py_XDECREF(result); |
| 1252 | Py_XDECREF(method); |
| 1253 | |
| 1254 | return cursor; |
| 1255 | } |
| 1256 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1257 | PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1258 | { |
| 1259 | PyObject* cursor = 0; |
| 1260 | PyObject* result = 0; |
| 1261 | PyObject* method = 0; |
| 1262 | |
| 1263 | cursor = PyObject_CallMethod((PyObject*)self, "cursor", ""); |
| 1264 | if (!cursor) { |
| 1265 | goto error; |
| 1266 | } |
| 1267 | |
| 1268 | method = PyObject_GetAttrString(cursor, "executemany"); |
| 1269 | if (!method) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1270 | Py_CLEAR(cursor); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1271 | goto error; |
| 1272 | } |
| 1273 | |
| 1274 | result = PyObject_CallObject(method, args); |
| 1275 | if (!result) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1276 | Py_CLEAR(cursor); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
| 1279 | error: |
| 1280 | Py_XDECREF(result); |
| 1281 | Py_XDECREF(method); |
| 1282 | |
| 1283 | return cursor; |
| 1284 | } |
| 1285 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1286 | PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1287 | { |
| 1288 | PyObject* cursor = 0; |
| 1289 | PyObject* result = 0; |
| 1290 | PyObject* method = 0; |
| 1291 | |
| 1292 | cursor = PyObject_CallMethod((PyObject*)self, "cursor", ""); |
| 1293 | if (!cursor) { |
| 1294 | goto error; |
| 1295 | } |
| 1296 | |
| 1297 | method = PyObject_GetAttrString(cursor, "executescript"); |
| 1298 | if (!method) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1299 | Py_CLEAR(cursor); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1300 | goto error; |
| 1301 | } |
| 1302 | |
| 1303 | result = PyObject_CallObject(method, args); |
| 1304 | if (!result) { |
Alexandre Vassalotti | 1839bac | 2008-07-13 21:57:48 +0000 | [diff] [blame] | 1305 | Py_CLEAR(cursor); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | error: |
| 1309 | Py_XDECREF(result); |
| 1310 | Py_XDECREF(method); |
| 1311 | |
| 1312 | return cursor; |
| 1313 | } |
| 1314 | |
| 1315 | /* ------------------------- COLLATION CODE ------------------------ */ |
| 1316 | |
| 1317 | static int |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1318 | pysqlite_collation_callback( |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1319 | void* context, |
| 1320 | int text1_length, const void* text1_data, |
| 1321 | int text2_length, const void* text2_data) |
| 1322 | { |
| 1323 | PyObject* callback = (PyObject*)context; |
| 1324 | PyObject* string1 = 0; |
| 1325 | PyObject* string2 = 0; |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1326 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1327 | PyGILState_STATE gilstate; |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1328 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1329 | PyObject* retval = NULL; |
| 1330 | int result = 0; |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1331 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1332 | gilstate = PyGILState_Ensure(); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1333 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1334 | |
| 1335 | if (PyErr_Occurred()) { |
| 1336 | goto finally; |
| 1337 | } |
| 1338 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1339 | string1 = PyUnicode_FromStringAndSize((const char*)text1_data, text1_length); |
| 1340 | string2 = PyUnicode_FromStringAndSize((const char*)text2_data, text2_length); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1341 | |
| 1342 | if (!string1 || !string2) { |
| 1343 | goto finally; /* failed to allocate strings */ |
| 1344 | } |
| 1345 | |
| 1346 | retval = PyObject_CallFunctionObjArgs(callback, string1, string2, NULL); |
| 1347 | |
| 1348 | if (!retval) { |
| 1349 | /* execution failed */ |
| 1350 | goto finally; |
| 1351 | } |
| 1352 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 1353 | result = PyLong_AsLong(retval); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1354 | if (PyErr_Occurred()) { |
| 1355 | result = 0; |
| 1356 | } |
| 1357 | |
| 1358 | finally: |
| 1359 | Py_XDECREF(string1); |
| 1360 | Py_XDECREF(string2); |
| 1361 | Py_XDECREF(retval); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1362 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1363 | PyGILState_Release(gilstate); |
Georg Brandl | dfd7344 | 2009-04-05 11:47:34 +0000 | [diff] [blame] | 1364 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1365 | return result; |
| 1366 | } |
| 1367 | |
| 1368 | static PyObject * |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1369 | pysqlite_connection_interrupt(pysqlite_Connection* self, PyObject* args) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1370 | { |
| 1371 | PyObject* retval = NULL; |
| 1372 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1373 | if (!pysqlite_check_connection(self)) { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1374 | goto finally; |
| 1375 | } |
| 1376 | |
| 1377 | sqlite3_interrupt(self->db); |
| 1378 | |
| 1379 | Py_INCREF(Py_None); |
| 1380 | retval = Py_None; |
| 1381 | |
| 1382 | finally: |
| 1383 | return retval; |
| 1384 | } |
| 1385 | |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 1386 | /* Function author: Paul Kippes <kippesp@gmail.com> |
| 1387 | * Class method of Connection to call the Python function _iterdump |
| 1388 | * of the sqlite3 module. |
| 1389 | */ |
| 1390 | static PyObject * |
| 1391 | pysqlite_connection_iterdump(pysqlite_Connection* self, PyObject* args) |
| 1392 | { |
| 1393 | PyObject* retval = NULL; |
| 1394 | PyObject* module = NULL; |
| 1395 | PyObject* module_dict; |
| 1396 | PyObject* pyfn_iterdump; |
| 1397 | |
| 1398 | if (!pysqlite_check_connection(self)) { |
| 1399 | goto finally; |
| 1400 | } |
| 1401 | |
| 1402 | module = PyImport_ImportModule(MODULE_NAME ".dump"); |
| 1403 | if (!module) { |
| 1404 | goto finally; |
| 1405 | } |
| 1406 | |
| 1407 | module_dict = PyModule_GetDict(module); |
| 1408 | if (!module_dict) { |
| 1409 | goto finally; |
| 1410 | } |
| 1411 | |
| 1412 | pyfn_iterdump = PyDict_GetItemString(module_dict, "_iterdump"); |
| 1413 | if (!pyfn_iterdump) { |
| 1414 | PyErr_SetString(pysqlite_OperationalError, "Failed to obtain _iterdump() reference"); |
| 1415 | goto finally; |
| 1416 | } |
| 1417 | |
| 1418 | args = PyTuple_New(1); |
| 1419 | if (!args) { |
| 1420 | goto finally; |
| 1421 | } |
| 1422 | Py_INCREF(self); |
| 1423 | PyTuple_SetItem(args, 0, (PyObject*)self); |
| 1424 | retval = PyObject_CallObject(pyfn_iterdump, args); |
| 1425 | |
| 1426 | finally: |
| 1427 | Py_XDECREF(args); |
| 1428 | Py_XDECREF(module); |
| 1429 | return retval; |
| 1430 | } |
| 1431 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1432 | static PyObject * |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1433 | pysqlite_connection_create_collation(pysqlite_Connection* self, PyObject* args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1434 | { |
| 1435 | PyObject* callable; |
| 1436 | PyObject* uppercase_name = 0; |
| 1437 | PyObject* name; |
| 1438 | PyObject* retval; |
Victor Stinner | 35466c5 | 2010-04-22 11:23:23 +0000 | [diff] [blame] | 1439 | Py_ssize_t i, len; |
| 1440 | char *uppercase_name_str; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1441 | int rc; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1442 | unsigned int kind; |
| 1443 | void *data; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1444 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1445 | if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1446 | goto finally; |
| 1447 | } |
| 1448 | |
Gerhard Häring | 6d21456 | 2007-08-10 18:15:11 +0000 | [diff] [blame] | 1449 | if (!PyArg_ParseTuple(args, "O!O:create_collation(name, callback)", &PyUnicode_Type, &name, &callable)) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1450 | goto finally; |
| 1451 | } |
| 1452 | |
| 1453 | uppercase_name = PyObject_CallMethod(name, "upper", ""); |
| 1454 | if (!uppercase_name) { |
| 1455 | goto finally; |
| 1456 | } |
| 1457 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1458 | if (PyUnicode_READY(uppercase_name)) |
| 1459 | goto finally; |
| 1460 | len = PyUnicode_GET_LENGTH(uppercase_name); |
| 1461 | kind = PyUnicode_KIND(uppercase_name); |
| 1462 | data = PyUnicode_DATA(uppercase_name); |
| 1463 | for (i=0; i<len; i++) { |
| 1464 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 1465 | if ((ch >= '0' && ch <= '9') |
| 1466 | || (ch >= 'A' && ch <= 'Z') |
| 1467 | || (ch == '_')) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1468 | { |
Victor Stinner | 35466c5 | 2010-04-22 11:23:23 +0000 | [diff] [blame] | 1469 | continue; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1470 | } else { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1471 | PyErr_SetString(pysqlite_ProgrammingError, "invalid character in collation name"); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1472 | goto finally; |
| 1473 | } |
| 1474 | } |
| 1475 | |
Victor Stinner | 35466c5 | 2010-04-22 11:23:23 +0000 | [diff] [blame] | 1476 | uppercase_name_str = _PyUnicode_AsString(uppercase_name); |
| 1477 | if (!uppercase_name_str) |
| 1478 | goto finally; |
| 1479 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1480 | if (callable != Py_None && !PyCallable_Check(callable)) { |
| 1481 | PyErr_SetString(PyExc_TypeError, "parameter must be callable"); |
| 1482 | goto finally; |
| 1483 | } |
| 1484 | |
| 1485 | if (callable != Py_None) { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 1486 | if (PyDict_SetItem(self->collations, uppercase_name, callable) == -1) |
| 1487 | goto finally; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1488 | } else { |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 1489 | if (PyDict_DelItem(self->collations, uppercase_name) == -1) |
| 1490 | goto finally; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1491 | } |
| 1492 | |
| 1493 | rc = sqlite3_create_collation(self->db, |
Victor Stinner | 35466c5 | 2010-04-22 11:23:23 +0000 | [diff] [blame] | 1494 | uppercase_name_str, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1495 | SQLITE_UTF8, |
| 1496 | (callable != Py_None) ? callable : NULL, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1497 | (callable != Py_None) ? pysqlite_collation_callback : NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1498 | if (rc != SQLITE_OK) { |
| 1499 | PyDict_DelItem(self->collations, uppercase_name); |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 1500 | _pysqlite_seterror(self->db, NULL); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1501 | goto finally; |
| 1502 | } |
| 1503 | |
| 1504 | finally: |
| 1505 | Py_XDECREF(uppercase_name); |
| 1506 | |
| 1507 | if (PyErr_Occurred()) { |
| 1508 | retval = NULL; |
| 1509 | } else { |
| 1510 | Py_INCREF(Py_None); |
| 1511 | retval = Py_None; |
| 1512 | } |
| 1513 | |
| 1514 | return retval; |
| 1515 | } |
| 1516 | |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 1517 | /* Called when the connection is used as a context manager. Returns itself as a |
| 1518 | * convenience to the caller. */ |
| 1519 | static PyObject * |
| 1520 | pysqlite_connection_enter(pysqlite_Connection* self, PyObject* args) |
| 1521 | { |
| 1522 | Py_INCREF(self); |
| 1523 | return (PyObject*)self; |
| 1524 | } |
| 1525 | |
| 1526 | /** Called when the connection is used as a context manager. If there was any |
| 1527 | * exception, a rollback takes place; otherwise we commit. */ |
| 1528 | static PyObject * |
| 1529 | pysqlite_connection_exit(pysqlite_Connection* self, PyObject* args) |
| 1530 | { |
| 1531 | PyObject* exc_type, *exc_value, *exc_tb; |
| 1532 | char* method_name; |
| 1533 | PyObject* result; |
| 1534 | |
| 1535 | if (!PyArg_ParseTuple(args, "OOO", &exc_type, &exc_value, &exc_tb)) { |
| 1536 | return NULL; |
| 1537 | } |
| 1538 | |
| 1539 | if (exc_type == Py_None && exc_value == Py_None && exc_tb == Py_None) { |
| 1540 | method_name = "commit"; |
| 1541 | } else { |
| 1542 | method_name = "rollback"; |
| 1543 | } |
| 1544 | |
| 1545 | result = PyObject_CallMethod((PyObject*)self, method_name, ""); |
| 1546 | if (!result) { |
| 1547 | return NULL; |
| 1548 | } |
| 1549 | Py_DECREF(result); |
| 1550 | |
| 1551 | Py_RETURN_FALSE; |
| 1552 | } |
| 1553 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1554 | static char connection_doc[] = |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1555 | PyDoc_STR("SQLite database connection object."); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1556 | |
| 1557 | static PyGetSetDef connection_getset[] = { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1558 | {"isolation_level", (getter)pysqlite_connection_get_isolation_level, (setter)pysqlite_connection_set_isolation_level}, |
| 1559 | {"total_changes", (getter)pysqlite_connection_get_total_changes, (setter)0}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1560 | {NULL} |
| 1561 | }; |
| 1562 | |
| 1563 | static PyMethodDef connection_methods[] = { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1564 | {"cursor", (PyCFunction)pysqlite_connection_cursor, METH_VARARGS|METH_KEYWORDS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1565 | PyDoc_STR("Return a cursor for the connection.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1566 | {"close", (PyCFunction)pysqlite_connection_close, METH_NOARGS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1567 | PyDoc_STR("Closes the connection.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1568 | {"commit", (PyCFunction)pysqlite_connection_commit, METH_NOARGS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1569 | PyDoc_STR("Commit the current transaction.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1570 | {"rollback", (PyCFunction)pysqlite_connection_rollback, METH_NOARGS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1571 | PyDoc_STR("Roll back the current transaction.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1572 | {"create_function", (PyCFunction)pysqlite_connection_create_function, METH_VARARGS|METH_KEYWORDS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1573 | PyDoc_STR("Creates a new function. Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1574 | {"create_aggregate", (PyCFunction)pysqlite_connection_create_aggregate, METH_VARARGS|METH_KEYWORDS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1575 | PyDoc_STR("Creates a new aggregate. Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1576 | {"set_authorizer", (PyCFunction)pysqlite_connection_set_authorizer, METH_VARARGS|METH_KEYWORDS, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1577 | PyDoc_STR("Sets authorizer callback. Non-standard.")}, |
Gerhard Häring | f9cee22 | 2010-03-05 15:20:03 +0000 | [diff] [blame] | 1578 | #ifdef HAVE_LOAD_EXTENSION |
| 1579 | {"enable_load_extension", (PyCFunction)pysqlite_enable_load_extension, METH_VARARGS, |
| 1580 | PyDoc_STR("Enable dynamic loading of SQLite extension modules. Non-standard.")}, |
| 1581 | {"load_extension", (PyCFunction)pysqlite_load_extension, METH_VARARGS, |
| 1582 | PyDoc_STR("Load SQLite extension module. Non-standard.")}, |
| 1583 | #endif |
Gerhard Häring | e7ea745 | 2008-03-29 00:45:29 +0000 | [diff] [blame] | 1584 | {"set_progress_handler", (PyCFunction)pysqlite_connection_set_progress_handler, METH_VARARGS|METH_KEYWORDS, |
| 1585 | PyDoc_STR("Sets progress handler callback. Non-standard.")}, |
Antoine Pitrou | 5bfa062 | 2011-04-04 00:12:04 +0200 | [diff] [blame] | 1586 | {"set_trace_callback", (PyCFunction)pysqlite_connection_set_trace_callback, METH_VARARGS|METH_KEYWORDS, |
| 1587 | PyDoc_STR("Sets a trace callback called for each SQL statement (passed as unicode). Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1588 | {"execute", (PyCFunction)pysqlite_connection_execute, METH_VARARGS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1589 | PyDoc_STR("Executes a SQL statement. Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1590 | {"executemany", (PyCFunction)pysqlite_connection_executemany, METH_VARARGS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1591 | PyDoc_STR("Repeatedly executes a SQL statement. Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1592 | {"executescript", (PyCFunction)pysqlite_connection_executescript, METH_VARARGS, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1593 | PyDoc_STR("Executes a multiple SQL statements at once. Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1594 | {"create_collation", (PyCFunction)pysqlite_connection_create_collation, METH_VARARGS, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1595 | PyDoc_STR("Creates a collation function. Non-standard.")}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1596 | {"interrupt", (PyCFunction)pysqlite_connection_interrupt, METH_NOARGS, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1597 | PyDoc_STR("Abort any pending database operation. Non-standard.")}, |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 1598 | {"iterdump", (PyCFunction)pysqlite_connection_iterdump, METH_NOARGS, |
Benjamin Peterson | d7b0328 | 2008-09-13 15:58:53 +0000 | [diff] [blame] | 1599 | PyDoc_STR("Returns iterator to the dump of the database in an SQL text format. Non-standard.")}, |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 1600 | {"__enter__", (PyCFunction)pysqlite_connection_enter, METH_NOARGS, |
| 1601 | PyDoc_STR("For context manager. Non-standard.")}, |
| 1602 | {"__exit__", (PyCFunction)pysqlite_connection_exit, METH_VARARGS, |
| 1603 | PyDoc_STR("For context manager. Non-standard.")}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1604 | {NULL, NULL} |
| 1605 | }; |
| 1606 | |
| 1607 | static struct PyMemberDef connection_members[] = |
| 1608 | { |
Guido van Rossum | 10f07c4 | 2007-08-11 15:32:55 +0000 | [diff] [blame] | 1609 | {"Warning", T_OBJECT, offsetof(pysqlite_Connection, Warning), READONLY}, |
| 1610 | {"Error", T_OBJECT, offsetof(pysqlite_Connection, Error), READONLY}, |
| 1611 | {"InterfaceError", T_OBJECT, offsetof(pysqlite_Connection, InterfaceError), READONLY}, |
| 1612 | {"DatabaseError", T_OBJECT, offsetof(pysqlite_Connection, DatabaseError), READONLY}, |
| 1613 | {"DataError", T_OBJECT, offsetof(pysqlite_Connection, DataError), READONLY}, |
| 1614 | {"OperationalError", T_OBJECT, offsetof(pysqlite_Connection, OperationalError), READONLY}, |
| 1615 | {"IntegrityError", T_OBJECT, offsetof(pysqlite_Connection, IntegrityError), READONLY}, |
| 1616 | {"InternalError", T_OBJECT, offsetof(pysqlite_Connection, InternalError), READONLY}, |
| 1617 | {"ProgrammingError", T_OBJECT, offsetof(pysqlite_Connection, ProgrammingError), READONLY}, |
| 1618 | {"NotSupportedError", T_OBJECT, offsetof(pysqlite_Connection, NotSupportedError), READONLY}, |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1619 | {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)}, |
| 1620 | {"text_factory", T_OBJECT, offsetof(pysqlite_Connection, text_factory)}, |
R. David Murray | d35251d | 2010-06-01 01:32:12 +0000 | [diff] [blame] | 1621 | {"in_transaction", T_BOOL, offsetof(pysqlite_Connection, inTransaction), READONLY}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1622 | {NULL} |
| 1623 | }; |
| 1624 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1625 | PyTypeObject pysqlite_ConnectionType = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1626 | PyVarObject_HEAD_INIT(NULL, 0) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1627 | MODULE_NAME ".Connection", /* tp_name */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1628 | sizeof(pysqlite_Connection), /* tp_basicsize */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1629 | 0, /* tp_itemsize */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1630 | (destructor)pysqlite_connection_dealloc, /* tp_dealloc */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1631 | 0, /* tp_print */ |
| 1632 | 0, /* tp_getattr */ |
| 1633 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 1634 | 0, /* tp_reserved */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1635 | 0, /* tp_repr */ |
| 1636 | 0, /* tp_as_number */ |
| 1637 | 0, /* tp_as_sequence */ |
| 1638 | 0, /* tp_as_mapping */ |
| 1639 | 0, /* tp_hash */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1640 | (ternaryfunc)pysqlite_connection_call, /* tp_call */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1641 | 0, /* tp_str */ |
| 1642 | 0, /* tp_getattro */ |
| 1643 | 0, /* tp_setattro */ |
| 1644 | 0, /* tp_as_buffer */ |
| 1645 | Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */ |
| 1646 | connection_doc, /* tp_doc */ |
| 1647 | 0, /* tp_traverse */ |
| 1648 | 0, /* tp_clear */ |
| 1649 | 0, /* tp_richcompare */ |
| 1650 | 0, /* tp_weaklistoffset */ |
| 1651 | 0, /* tp_iter */ |
| 1652 | 0, /* tp_iternext */ |
| 1653 | connection_methods, /* tp_methods */ |
| 1654 | connection_members, /* tp_members */ |
| 1655 | connection_getset, /* tp_getset */ |
| 1656 | 0, /* tp_base */ |
| 1657 | 0, /* tp_dict */ |
| 1658 | 0, /* tp_descr_get */ |
| 1659 | 0, /* tp_descr_set */ |
| 1660 | 0, /* tp_dictoffset */ |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1661 | (initproc)pysqlite_connection_init, /* tp_init */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1662 | 0, /* tp_alloc */ |
| 1663 | 0, /* tp_new */ |
| 1664 | 0 /* tp_free */ |
| 1665 | }; |
| 1666 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1667 | extern int pysqlite_connection_setup_types(void) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1668 | { |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1669 | pysqlite_ConnectionType.tp_new = PyType_GenericNew; |
| 1670 | return PyType_Ready(&pysqlite_ConnectionType); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1671 | } |