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