Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1 | /*---------------------------------------------------------------------- |
| 2 | Copyright (c) 1999-2001, Digital Creations, Fredericksburg, VA, USA |
| 3 | and Andrew Kuchling. All rights reserved. |
| 4 | |
| 5 | Redistribution and use in source and binary forms, with or without |
| 6 | modification, are permitted provided that the following conditions are |
| 7 | met: |
| 8 | |
| 9 | o Redistributions of source code must retain the above copyright |
| 10 | notice, this list of conditions, and the disclaimer that follows. |
| 11 | |
| 12 | o Redistributions in binary form must reproduce the above copyright |
| 13 | notice, this list of conditions, and the following disclaimer in |
| 14 | the documentation and/or other materials provided with the |
| 15 | distribution. |
| 16 | |
| 17 | o Neither the name of Digital Creations nor the names of its |
| 18 | contributors may be used to endorse or promote products derived |
| 19 | from this software without specific prior written permission. |
| 20 | |
| 21 | THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS |
| 22 | IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 23 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 24 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL |
| 25 | CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 26 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 27 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 28 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 29 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 30 | TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
| 31 | USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
| 32 | DAMAGE. |
| 33 | ------------------------------------------------------------------------*/ |
| 34 | |
| 35 | |
| 36 | /* |
| 37 | * Handwritten code to wrap version 3.x of the Berkeley DB library, |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 38 | * written to replace a SWIG-generated file. It has since been updated |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 39 | * to compile with BerkeleyDB versions 3.2 through 4.2. |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 40 | * |
| 41 | * This module was started by Andrew Kuchling to remove the dependency |
| 42 | * on SWIG in a package by Gregory P. Smith <greg@electricrain.com> who |
| 43 | * based his work on a similar package by Robin Dunn <robin@alldunn.com> |
| 44 | * which wrapped Berkeley DB 2.7.x. |
| 45 | * |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 46 | * Development of this module then returned full circle back to Robin Dunn |
| 47 | * who worked on behalf of Digital Creations to complete the wrapping of |
| 48 | * the DB 3.x API and to build a solid unit test suite. Robin has |
| 49 | * since gone onto other projects (wxPython). |
| 50 | * |
| 51 | * Gregory P. Smith <greg@electricrain.com> is once again the maintainer. |
| 52 | * |
| 53 | * Use the pybsddb-users@lists.sf.net mailing list for all questions. |
Barry Warsaw | c74e4a5 | 2003-04-24 14:28:08 +0000 | [diff] [blame] | 54 | * Things can change faster than the header of this file is updated. This |
| 55 | * file is shared with the PyBSDDB project at SourceForge: |
| 56 | * |
| 57 | * http://pybsddb.sf.net |
| 58 | * |
| 59 | * This file should remain backward compatible with Python 2.1, but see PEP |
| 60 | * 291 for the most current backward compatibility requirements: |
| 61 | * |
| 62 | * http://www.python.org/peps/pep-0291.html |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 63 | * |
| 64 | * This module contains 5 types: |
| 65 | * |
| 66 | * DB (Database) |
| 67 | * DBCursor (Database Cursor) |
| 68 | * DBEnv (database environment) |
| 69 | * DBTxn (An explicit database transaction) |
| 70 | * DBLock (A lock handle) |
| 71 | * |
| 72 | */ |
| 73 | |
| 74 | /* --------------------------------------------------------------------- */ |
| 75 | |
| 76 | /* |
| 77 | * Portions of this module, associated unit tests and build scripts are the |
| 78 | * result of a contract with The Written Word (http://thewrittenword.com/) |
| 79 | * Many thanks go out to them for causing me to raise the bar on quality and |
| 80 | * functionality, resulting in a better bsddb3 package for all of us to use. |
| 81 | * |
| 82 | * --Robin |
| 83 | */ |
| 84 | |
| 85 | /* --------------------------------------------------------------------- */ |
| 86 | |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 87 | #include <stddef.h> /* for offsetof() */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 88 | #include <Python.h> |
| 89 | #include <db.h> |
| 90 | |
| 91 | /* --------------------------------------------------------------------- */ |
| 92 | /* Various macro definitions */ |
| 93 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 94 | /* 40 = 4.0, 33 = 3.3; this will break if the second number is > 9 */ |
| 95 | #define DBVER (DB_VERSION_MAJOR * 10 + DB_VERSION_MINOR) |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 96 | #if DB_VERSION_MINOR > 9 |
| 97 | #error "eek! DBVER can't handle minor versions > 9" |
| 98 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 99 | |
Gregory P. Smith | 8a47404 | 2006-01-27 07:05:40 +0000 | [diff] [blame] | 100 | #define PY_BSDDB_VERSION "4.4.2" |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 101 | static char *rcs_id = "$Id$"; |
| 102 | |
| 103 | |
Gregory P. Smith | 7f5b6f4 | 2006-04-08 07:10:51 +0000 | [diff] [blame] | 104 | #if (PY_VERSION_HEX < 0x02050000) |
| 105 | #define Py_ssize_t int |
| 106 | #endif |
| 107 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 108 | #ifdef WITH_THREAD |
| 109 | |
| 110 | /* These are for when calling Python --> C */ |
| 111 | #define MYDB_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS; |
| 112 | #define MYDB_END_ALLOW_THREADS Py_END_ALLOW_THREADS; |
| 113 | |
Mark Hammond | a69d409 | 2003-04-22 23:13:27 +0000 | [diff] [blame] | 114 | /* For 2.3, use the PyGILState_ calls */ |
| 115 | #if (PY_VERSION_HEX >= 0x02030000) |
| 116 | #define MYDB_USE_GILSTATE |
| 117 | #endif |
| 118 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 119 | /* and these are for calling C --> Python */ |
Mark Hammond | a69d409 | 2003-04-22 23:13:27 +0000 | [diff] [blame] | 120 | #if defined(MYDB_USE_GILSTATE) |
| 121 | #define MYDB_BEGIN_BLOCK_THREADS \ |
| 122 | PyGILState_STATE __savestate = PyGILState_Ensure(); |
| 123 | #define MYDB_END_BLOCK_THREADS \ |
| 124 | PyGILState_Release(__savestate); |
| 125 | #else /* MYDB_USE_GILSTATE */ |
| 126 | /* Pre GILState API - do it the long old way */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 127 | static PyInterpreterState* _db_interpreterState = NULL; |
| 128 | #define MYDB_BEGIN_BLOCK_THREADS { \ |
| 129 | PyThreadState* prevState; \ |
| 130 | PyThreadState* newState; \ |
| 131 | PyEval_AcquireLock(); \ |
| 132 | newState = PyThreadState_New(_db_interpreterState); \ |
| 133 | prevState = PyThreadState_Swap(newState); |
| 134 | |
| 135 | #define MYDB_END_BLOCK_THREADS \ |
| 136 | newState = PyThreadState_Swap(prevState); \ |
| 137 | PyThreadState_Clear(newState); \ |
| 138 | PyEval_ReleaseLock(); \ |
| 139 | PyThreadState_Delete(newState); \ |
| 140 | } |
Mark Hammond | a69d409 | 2003-04-22 23:13:27 +0000 | [diff] [blame] | 141 | #endif /* MYDB_USE_GILSTATE */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 142 | |
| 143 | #else |
Mark Hammond | a69d409 | 2003-04-22 23:13:27 +0000 | [diff] [blame] | 144 | /* Compiled without threads - avoid all this cruft */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 145 | #define MYDB_BEGIN_ALLOW_THREADS |
| 146 | #define MYDB_END_ALLOW_THREADS |
| 147 | #define MYDB_BEGIN_BLOCK_THREADS |
| 148 | #define MYDB_END_BLOCK_THREADS |
| 149 | |
| 150 | #endif |
| 151 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 152 | /* Should DB_INCOMPLETE be turned into a warning or an exception? */ |
| 153 | #define INCOMPLETE_IS_WARNING 1 |
| 154 | |
| 155 | /* --------------------------------------------------------------------- */ |
| 156 | /* Exceptions */ |
| 157 | |
| 158 | static PyObject* DBError; /* Base class, all others derive from this */ |
Gregory P. Smith | e276717 | 2003-11-02 08:06:29 +0000 | [diff] [blame] | 159 | static PyObject* DBCursorClosedError; /* raised when trying to use a closed cursor object */ |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 160 | static PyObject* DBKeyEmptyError; /* DB_KEYEMPTY: also derives from KeyError */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 161 | static PyObject* DBKeyExistError; /* DB_KEYEXIST */ |
| 162 | static PyObject* DBLockDeadlockError; /* DB_LOCK_DEADLOCK */ |
| 163 | static PyObject* DBLockNotGrantedError; /* DB_LOCK_NOTGRANTED */ |
| 164 | static PyObject* DBNotFoundError; /* DB_NOTFOUND: also derives from KeyError */ |
| 165 | static PyObject* DBOldVersionError; /* DB_OLD_VERSION */ |
| 166 | static PyObject* DBRunRecoveryError; /* DB_RUNRECOVERY */ |
| 167 | static PyObject* DBVerifyBadError; /* DB_VERIFY_BAD */ |
| 168 | static PyObject* DBNoServerError; /* DB_NOSERVER */ |
| 169 | static PyObject* DBNoServerHomeError; /* DB_NOSERVER_HOME */ |
| 170 | static PyObject* DBNoServerIDError; /* DB_NOSERVER_ID */ |
| 171 | #if (DBVER >= 33) |
| 172 | static PyObject* DBPageNotFoundError; /* DB_PAGE_NOTFOUND */ |
| 173 | static PyObject* DBSecondaryBadError; /* DB_SECONDARY_BAD */ |
| 174 | #endif |
| 175 | |
| 176 | #if !INCOMPLETE_IS_WARNING |
| 177 | static PyObject* DBIncompleteError; /* DB_INCOMPLETE */ |
| 178 | #endif |
| 179 | |
| 180 | static PyObject* DBInvalidArgError; /* EINVAL */ |
| 181 | static PyObject* DBAccessError; /* EACCES */ |
| 182 | static PyObject* DBNoSpaceError; /* ENOSPC */ |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 183 | static PyObject* DBNoMemoryError; /* DB_BUFFER_SMALL (ENOMEM when < 4.3) */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 184 | static PyObject* DBAgainError; /* EAGAIN */ |
| 185 | static PyObject* DBBusyError; /* EBUSY */ |
| 186 | static PyObject* DBFileExistsError; /* EEXIST */ |
| 187 | static PyObject* DBNoSuchFileError; /* ENOENT */ |
| 188 | static PyObject* DBPermissionsError; /* EPERM */ |
| 189 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 190 | #if (DBVER < 43) |
| 191 | #define DB_BUFFER_SMALL ENOMEM |
| 192 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 193 | |
| 194 | |
| 195 | /* --------------------------------------------------------------------- */ |
| 196 | /* Structure definitions */ |
| 197 | |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 198 | #if PYTHON_API_VERSION >= 1010 /* python >= 2.1 support weak references */ |
| 199 | #define HAVE_WEAKREF |
| 200 | #else |
| 201 | #undef HAVE_WEAKREF |
| 202 | #endif |
| 203 | |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 204 | /* if Python >= 2.1 better support warnings */ |
| 205 | #if PYTHON_API_VERSION >= 1010 |
| 206 | #define HAVE_WARNINGS |
| 207 | #else |
| 208 | #undef HAVE_WARNINGS |
| 209 | #endif |
| 210 | |
Neal Norwitz | b4a5581 | 2004-07-09 23:30:57 +0000 | [diff] [blame] | 211 | #if PYTHON_API_VERSION <= 1007 |
| 212 | /* 1.5 compatibility */ |
| 213 | #define PyObject_New PyObject_NEW |
| 214 | #define PyObject_Del PyMem_DEL |
| 215 | #endif |
| 216 | |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 217 | struct behaviourFlags { |
| 218 | /* What is the default behaviour when DB->get or DBCursor->get returns a |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 219 | DB_NOTFOUND || DB_KEYEMPTY error? Return None or raise an exception? */ |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 220 | unsigned int getReturnsNone : 1; |
| 221 | /* What is the default behaviour for DBCursor.set* methods when DBCursor->get |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 222 | * returns a DB_NOTFOUND || DB_KEYEMPTY error? Return None or raise? */ |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 223 | unsigned int cursorSetReturnsNone : 1; |
| 224 | }; |
| 225 | |
| 226 | #define DEFAULT_GET_RETURNS_NONE 1 |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 227 | #define DEFAULT_CURSOR_SET_RETURNS_NONE 1 /* 0 in pybsddb < 4.2, python < 2.4 */ |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 228 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 229 | typedef struct { |
| 230 | PyObject_HEAD |
| 231 | DB_ENV* db_env; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 232 | u_int32_t flags; /* saved flags from open() */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 233 | int closed; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 234 | struct behaviourFlags moduleFlags; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 235 | #ifdef HAVE_WEAKREF |
| 236 | PyObject *in_weakreflist; /* List of weak references */ |
| 237 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 238 | } DBEnvObject; |
| 239 | |
| 240 | |
| 241 | typedef struct { |
| 242 | PyObject_HEAD |
| 243 | DB* db; |
| 244 | DBEnvObject* myenvobj; /* PyObject containing the DB_ENV */ |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 245 | u_int32_t flags; /* saved flags from open() */ |
| 246 | u_int32_t setflags; /* saved flags from set_flags() */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 247 | int haveStat; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 248 | struct behaviourFlags moduleFlags; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 249 | #if (DBVER >= 33) |
| 250 | PyObject* associateCallback; |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 251 | PyObject* btCompareCallback; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 252 | int primaryDBType; |
| 253 | #endif |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 254 | #ifdef HAVE_WEAKREF |
| 255 | PyObject *in_weakreflist; /* List of weak references */ |
| 256 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 257 | } DBObject; |
| 258 | |
| 259 | |
| 260 | typedef struct { |
| 261 | PyObject_HEAD |
| 262 | DBC* dbc; |
| 263 | DBObject* mydb; |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 264 | #ifdef HAVE_WEAKREF |
| 265 | PyObject *in_weakreflist; /* List of weak references */ |
| 266 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 267 | } DBCursorObject; |
| 268 | |
| 269 | |
| 270 | typedef struct { |
| 271 | PyObject_HEAD |
| 272 | DB_TXN* txn; |
Neal Norwitz | 62a2112 | 2006-01-25 05:21:55 +0000 | [diff] [blame] | 273 | PyObject *env; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 274 | #ifdef HAVE_WEAKREF |
| 275 | PyObject *in_weakreflist; /* List of weak references */ |
| 276 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 277 | } DBTxnObject; |
| 278 | |
| 279 | |
| 280 | typedef struct { |
| 281 | PyObject_HEAD |
| 282 | DB_LOCK lock; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 283 | #ifdef HAVE_WEAKREF |
| 284 | PyObject *in_weakreflist; /* List of weak references */ |
| 285 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 286 | } DBLockObject; |
| 287 | |
| 288 | |
| 289 | |
| 290 | staticforward PyTypeObject DB_Type, DBCursor_Type, DBEnv_Type, DBTxn_Type, DBLock_Type; |
| 291 | |
| 292 | #define DBObject_Check(v) ((v)->ob_type == &DB_Type) |
| 293 | #define DBCursorObject_Check(v) ((v)->ob_type == &DBCursor_Type) |
| 294 | #define DBEnvObject_Check(v) ((v)->ob_type == &DBEnv_Type) |
| 295 | #define DBTxnObject_Check(v) ((v)->ob_type == &DBTxn_Type) |
| 296 | #define DBLockObject_Check(v) ((v)->ob_type == &DBLock_Type) |
| 297 | |
| 298 | |
| 299 | /* --------------------------------------------------------------------- */ |
| 300 | /* Utility macros and functions */ |
| 301 | |
| 302 | #define RETURN_IF_ERR() \ |
| 303 | if (makeDBError(err)) { \ |
| 304 | return NULL; \ |
| 305 | } |
| 306 | |
| 307 | #define RETURN_NONE() Py_INCREF(Py_None); return Py_None; |
| 308 | |
Gregory P. Smith | e276717 | 2003-11-02 08:06:29 +0000 | [diff] [blame] | 309 | #define _CHECK_OBJECT_NOT_CLOSED(nonNull, pyErrObj, name) \ |
| 310 | if ((nonNull) == NULL) { \ |
| 311 | PyObject *errTuple = NULL; \ |
| 312 | errTuple = Py_BuildValue("(is)", 0, #name " object has been closed"); \ |
| 313 | PyErr_SetObject((pyErrObj), errTuple); \ |
| 314 | Py_DECREF(errTuple); \ |
| 315 | return NULL; \ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Gregory P. Smith | e276717 | 2003-11-02 08:06:29 +0000 | [diff] [blame] | 318 | #define CHECK_DB_NOT_CLOSED(dbobj) \ |
| 319 | _CHECK_OBJECT_NOT_CLOSED(dbobj->db, DBError, DB) |
| 320 | |
| 321 | #define CHECK_ENV_NOT_CLOSED(env) \ |
| 322 | _CHECK_OBJECT_NOT_CLOSED(env->db_env, DBError, DBEnv) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 323 | |
| 324 | #define CHECK_CURSOR_NOT_CLOSED(curs) \ |
Gregory P. Smith | e276717 | 2003-11-02 08:06:29 +0000 | [diff] [blame] | 325 | _CHECK_OBJECT_NOT_CLOSED(curs->dbc, DBCursorClosedError, DBCursor) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 326 | |
| 327 | |
| 328 | #define CHECK_DBFLAG(mydb, flag) (((mydb)->flags & (flag)) || \ |
| 329 | (((mydb)->myenvobj != NULL) && ((mydb)->myenvobj->flags & (flag)))) |
| 330 | |
| 331 | #define CLEAR_DBT(dbt) (memset(&(dbt), 0, sizeof(dbt))) |
| 332 | |
| 333 | #define FREE_DBT(dbt) if ((dbt.flags & (DB_DBT_MALLOC|DB_DBT_REALLOC)) && \ |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 334 | dbt.data != NULL) { free(dbt.data); dbt.data = NULL; } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 335 | |
| 336 | |
| 337 | static int makeDBError(int err); |
| 338 | |
| 339 | |
| 340 | /* Return the access method type of the DBObject */ |
| 341 | static int _DB_get_type(DBObject* self) |
| 342 | { |
| 343 | #if (DBVER >= 33) |
| 344 | DBTYPE type; |
| 345 | int err; |
| 346 | err = self->db->get_type(self->db, &type); |
| 347 | if (makeDBError(err)) { |
| 348 | return -1; |
| 349 | } |
| 350 | return type; |
| 351 | #else |
| 352 | return self->db->get_type(self->db); |
| 353 | #endif |
| 354 | } |
| 355 | |
| 356 | |
| 357 | /* Create a DBT structure (containing key and data values) from Python |
| 358 | strings. Returns 1 on success, 0 on an error. */ |
| 359 | static int make_dbt(PyObject* obj, DBT* dbt) |
| 360 | { |
| 361 | CLEAR_DBT(*dbt); |
| 362 | if (obj == Py_None) { |
| 363 | /* no need to do anything, the structure has already been zeroed */ |
| 364 | } |
| 365 | else if (!PyArg_Parse(obj, "s#", &dbt->data, &dbt->size)) { |
| 366 | PyErr_SetString(PyExc_TypeError, |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 367 | "Data values must be of type string or None."); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | return 1; |
| 371 | } |
| 372 | |
| 373 | |
| 374 | /* Recno and Queue DBs can have integer keys. This function figures out |
| 375 | what's been given, verifies that it's allowed, and then makes the DBT. |
| 376 | |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 377 | Caller MUST call FREE_DBT(key) when done. */ |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 378 | static int |
| 379 | make_key_dbt(DBObject* self, PyObject* keyobj, DBT* key, int* pflags) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 380 | { |
| 381 | db_recno_t recno; |
| 382 | int type; |
| 383 | |
| 384 | CLEAR_DBT(*key); |
Gustavo Niemeyer | f073b75 | 2004-01-20 15:24:29 +0000 | [diff] [blame] | 385 | if (keyobj == Py_None) { |
Gustavo Niemeyer | 024f2de | 2004-01-20 15:14:55 +0000 | [diff] [blame] | 386 | type = _DB_get_type(self); |
Gustavo Niemeyer | 8974f72 | 2004-01-20 15:20:03 +0000 | [diff] [blame] | 387 | if (type == -1) |
| 388 | return 0; |
Gustavo Niemeyer | 024f2de | 2004-01-20 15:14:55 +0000 | [diff] [blame] | 389 | if (type == DB_RECNO || type == DB_QUEUE) { |
| 390 | PyErr_SetString( |
| 391 | PyExc_TypeError, |
| 392 | "None keys not allowed for Recno and Queue DB's"); |
| 393 | return 0; |
| 394 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 395 | /* no need to do anything, the structure has already been zeroed */ |
| 396 | } |
| 397 | |
| 398 | else if (PyString_Check(keyobj)) { |
| 399 | /* verify access method type */ |
| 400 | type = _DB_get_type(self); |
| 401 | if (type == -1) |
| 402 | return 0; |
| 403 | if (type == DB_RECNO || type == DB_QUEUE) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 404 | PyErr_SetString( |
| 405 | PyExc_TypeError, |
| 406 | "String keys not allowed for Recno and Queue DB's"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | |
| 410 | key->data = PyString_AS_STRING(keyobj); |
| 411 | key->size = PyString_GET_SIZE(keyobj); |
| 412 | } |
| 413 | |
| 414 | else if (PyInt_Check(keyobj)) { |
| 415 | /* verify access method type */ |
| 416 | type = _DB_get_type(self); |
| 417 | if (type == -1) |
| 418 | return 0; |
| 419 | if (type == DB_BTREE && pflags != NULL) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 420 | /* if BTREE then an Integer key is allowed with the |
| 421 | * DB_SET_RECNO flag */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 422 | *pflags |= DB_SET_RECNO; |
| 423 | } |
| 424 | else if (type != DB_RECNO && type != DB_QUEUE) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 425 | PyErr_SetString( |
| 426 | PyExc_TypeError, |
| 427 | "Integer keys only allowed for Recno and Queue DB's"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 428 | return 0; |
| 429 | } |
| 430 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 431 | /* Make a key out of the requested recno, use allocated space so DB |
| 432 | * will be able to realloc room for the real key if needed. */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 433 | recno = PyInt_AS_LONG(keyobj); |
| 434 | key->data = malloc(sizeof(db_recno_t)); |
| 435 | if (key->data == NULL) { |
| 436 | PyErr_SetString(PyExc_MemoryError, "Key memory allocation failed"); |
| 437 | return 0; |
| 438 | } |
| 439 | key->ulen = key->size = sizeof(db_recno_t); |
| 440 | memcpy(key->data, &recno, sizeof(db_recno_t)); |
| 441 | key->flags = DB_DBT_REALLOC; |
| 442 | } |
| 443 | else { |
| 444 | PyErr_Format(PyExc_TypeError, |
| 445 | "String or Integer object expected for key, %s found", |
| 446 | keyobj->ob_type->tp_name); |
| 447 | return 0; |
| 448 | } |
| 449 | |
| 450 | return 1; |
| 451 | } |
| 452 | |
| 453 | |
| 454 | /* Add partial record access to an existing DBT data struct. |
| 455 | If dlen and doff are set, then the DB_DBT_PARTIAL flag will be set |
| 456 | and the data storage/retrieval will be done using dlen and doff. */ |
| 457 | static int add_partial_dbt(DBT* d, int dlen, int doff) { |
| 458 | /* if neither were set we do nothing (-1 is the default value) */ |
| 459 | if ((dlen == -1) && (doff == -1)) { |
| 460 | return 1; |
| 461 | } |
| 462 | |
| 463 | if ((dlen < 0) || (doff < 0)) { |
| 464 | PyErr_SetString(PyExc_TypeError, "dlen and doff must both be >= 0"); |
| 465 | return 0; |
| 466 | } |
| 467 | |
| 468 | d->flags = d->flags | DB_DBT_PARTIAL; |
| 469 | d->dlen = (unsigned int) dlen; |
| 470 | d->doff = (unsigned int) doff; |
| 471 | return 1; |
| 472 | } |
| 473 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 474 | /* a safe strcpy() without the zeroing behaviour and semantics of strncpy. */ |
| 475 | /* TODO: make this use the native libc strlcpy() when available (BSD) */ |
| 476 | unsigned int our_strlcpy(char* dest, const char* src, unsigned int n) |
| 477 | { |
| 478 | unsigned int srclen, copylen; |
| 479 | |
| 480 | srclen = strlen(src); |
| 481 | if (n <= 0) |
| 482 | return srclen; |
| 483 | copylen = (srclen > n-1) ? n-1 : srclen; |
| 484 | /* populate dest[0] thru dest[copylen-1] */ |
| 485 | memcpy(dest, src, copylen); |
| 486 | /* guarantee null termination */ |
| 487 | dest[copylen] = 0; |
| 488 | |
| 489 | return srclen; |
| 490 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 491 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 492 | /* Callback used to save away more information about errors from the DB |
| 493 | * library. */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 494 | static char _db_errmsg[1024]; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 495 | #if (DBVER <= 42) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 496 | static void _db_errorCallback(const char* prefix, char* msg) |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 497 | #else |
| 498 | static void _db_errorCallback(const DB_ENV *db_env, |
| 499 | const char* prefix, const char* msg) |
| 500 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 501 | { |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 502 | our_strlcpy(_db_errmsg, msg, sizeof(_db_errmsg)); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | |
| 506 | /* make a nice exception object to raise for errors. */ |
| 507 | static int makeDBError(int err) |
| 508 | { |
| 509 | char errTxt[2048]; /* really big, just in case... */ |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 510 | PyObject *errObj = NULL; |
| 511 | PyObject *errTuple = NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 512 | int exceptionRaised = 0; |
| 513 | |
| 514 | switch (err) { |
| 515 | case 0: /* successful, no error */ break; |
| 516 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 517 | #if (DBVER < 41) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 518 | case DB_INCOMPLETE: |
| 519 | #if INCOMPLETE_IS_WARNING |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 520 | our_strlcpy(errTxt, db_strerror(err), sizeof(errTxt)); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 521 | if (_db_errmsg[0]) { |
| 522 | strcat(errTxt, " -- "); |
| 523 | strcat(errTxt, _db_errmsg); |
| 524 | _db_errmsg[0] = 0; |
| 525 | } |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 526 | #ifdef HAVE_WARNINGS |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 527 | exceptionRaised = PyErr_Warn(PyExc_RuntimeWarning, errTxt); |
| 528 | #else |
| 529 | fprintf(stderr, errTxt); |
| 530 | fprintf(stderr, "\n"); |
| 531 | #endif |
| 532 | |
| 533 | #else /* do an exception instead */ |
| 534 | errObj = DBIncompleteError; |
| 535 | #endif |
| 536 | break; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 537 | #endif /* DBVER < 41 */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 538 | |
| 539 | case DB_KEYEMPTY: errObj = DBKeyEmptyError; break; |
| 540 | case DB_KEYEXIST: errObj = DBKeyExistError; break; |
| 541 | case DB_LOCK_DEADLOCK: errObj = DBLockDeadlockError; break; |
| 542 | case DB_LOCK_NOTGRANTED: errObj = DBLockNotGrantedError; break; |
| 543 | case DB_NOTFOUND: errObj = DBNotFoundError; break; |
| 544 | case DB_OLD_VERSION: errObj = DBOldVersionError; break; |
| 545 | case DB_RUNRECOVERY: errObj = DBRunRecoveryError; break; |
| 546 | case DB_VERIFY_BAD: errObj = DBVerifyBadError; break; |
| 547 | case DB_NOSERVER: errObj = DBNoServerError; break; |
| 548 | case DB_NOSERVER_HOME: errObj = DBNoServerHomeError; break; |
| 549 | case DB_NOSERVER_ID: errObj = DBNoServerIDError; break; |
| 550 | #if (DBVER >= 33) |
| 551 | case DB_PAGE_NOTFOUND: errObj = DBPageNotFoundError; break; |
| 552 | case DB_SECONDARY_BAD: errObj = DBSecondaryBadError; break; |
| 553 | #endif |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 554 | case DB_BUFFER_SMALL: errObj = DBNoMemoryError; break; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 555 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 556 | #if (DBVER >= 43) |
| 557 | /* ENOMEM and DB_BUFFER_SMALL were one and the same until 4.3 */ |
| 558 | case ENOMEM: errObj = PyExc_MemoryError; break; |
| 559 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 560 | case EINVAL: errObj = DBInvalidArgError; break; |
| 561 | case EACCES: errObj = DBAccessError; break; |
| 562 | case ENOSPC: errObj = DBNoSpaceError; break; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 563 | case EAGAIN: errObj = DBAgainError; break; |
| 564 | case EBUSY : errObj = DBBusyError; break; |
| 565 | case EEXIST: errObj = DBFileExistsError; break; |
| 566 | case ENOENT: errObj = DBNoSuchFileError; break; |
| 567 | case EPERM : errObj = DBPermissionsError; break; |
| 568 | |
| 569 | default: errObj = DBError; break; |
| 570 | } |
| 571 | |
| 572 | if (errObj != NULL) { |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 573 | our_strlcpy(errTxt, db_strerror(err), sizeof(errTxt)); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 574 | if (_db_errmsg[0]) { |
| 575 | strcat(errTxt, " -- "); |
| 576 | strcat(errTxt, _db_errmsg); |
| 577 | _db_errmsg[0] = 0; |
| 578 | } |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 579 | |
| 580 | errTuple = Py_BuildValue("(is)", err, errTxt); |
| 581 | PyErr_SetObject(errObj, errTuple); |
| 582 | Py_DECREF(errTuple); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | return ((errObj != NULL) || exceptionRaised); |
| 586 | } |
| 587 | |
| 588 | |
| 589 | |
| 590 | /* set a type exception */ |
| 591 | static void makeTypeError(char* expected, PyObject* found) |
| 592 | { |
| 593 | PyErr_Format(PyExc_TypeError, "Expected %s argument, %s found.", |
| 594 | expected, found->ob_type->tp_name); |
| 595 | } |
| 596 | |
| 597 | |
| 598 | /* verify that an obj is either None or a DBTxn, and set the txn pointer */ |
| 599 | static int checkTxnObj(PyObject* txnobj, DB_TXN** txn) |
| 600 | { |
| 601 | if (txnobj == Py_None || txnobj == NULL) { |
| 602 | *txn = NULL; |
| 603 | return 1; |
| 604 | } |
| 605 | if (DBTxnObject_Check(txnobj)) { |
| 606 | *txn = ((DBTxnObject*)txnobj)->txn; |
| 607 | return 1; |
| 608 | } |
| 609 | else |
| 610 | makeTypeError("DBTxn", txnobj); |
| 611 | return 0; |
| 612 | } |
| 613 | |
| 614 | |
| 615 | /* Delete a key from a database |
| 616 | Returns 0 on success, -1 on an error. */ |
| 617 | static int _DB_delete(DBObject* self, DB_TXN *txn, DBT *key, int flags) |
| 618 | { |
| 619 | int err; |
| 620 | |
| 621 | MYDB_BEGIN_ALLOW_THREADS; |
| 622 | err = self->db->del(self->db, txn, key, 0); |
| 623 | MYDB_END_ALLOW_THREADS; |
| 624 | if (makeDBError(err)) { |
| 625 | return -1; |
| 626 | } |
| 627 | self->haveStat = 0; |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | |
| 632 | /* Store a key into a database |
| 633 | Returns 0 on success, -1 on an error. */ |
| 634 | static int _DB_put(DBObject* self, DB_TXN *txn, DBT *key, DBT *data, int flags) |
| 635 | { |
| 636 | int err; |
| 637 | |
| 638 | MYDB_BEGIN_ALLOW_THREADS; |
| 639 | err = self->db->put(self->db, txn, key, data, flags); |
| 640 | MYDB_END_ALLOW_THREADS; |
| 641 | if (makeDBError(err)) { |
| 642 | return -1; |
| 643 | } |
| 644 | self->haveStat = 0; |
| 645 | return 0; |
| 646 | } |
| 647 | |
| 648 | /* Get a key/data pair from a cursor */ |
| 649 | static PyObject* _DBCursor_get(DBCursorObject* self, int extra_flags, |
| 650 | PyObject *args, PyObject *kwargs, char *format) |
| 651 | { |
| 652 | int err; |
| 653 | PyObject* retval = NULL; |
| 654 | DBT key, data; |
| 655 | int dlen = -1; |
| 656 | int doff = -1; |
| 657 | int flags = 0; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 658 | static char* kwnames[] = { "flags", "dlen", "doff", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 659 | |
| 660 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, format, kwnames, |
| 661 | &flags, &dlen, &doff)) |
| 662 | return NULL; |
| 663 | |
| 664 | CHECK_CURSOR_NOT_CLOSED(self); |
| 665 | |
| 666 | flags |= extra_flags; |
| 667 | CLEAR_DBT(key); |
| 668 | CLEAR_DBT(data); |
| 669 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 670 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 671 | data.flags = DB_DBT_MALLOC; |
| 672 | key.flags = DB_DBT_MALLOC; |
| 673 | } |
| 674 | if (!add_partial_dbt(&data, dlen, doff)) |
| 675 | return NULL; |
| 676 | |
| 677 | MYDB_BEGIN_ALLOW_THREADS; |
| 678 | err = self->dbc->c_get(self->dbc, &key, &data, flags); |
| 679 | MYDB_END_ALLOW_THREADS; |
| 680 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 681 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 682 | && self->mydb->moduleFlags.getReturnsNone) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 683 | Py_INCREF(Py_None); |
| 684 | retval = Py_None; |
| 685 | } |
| 686 | else if (makeDBError(err)) { |
| 687 | retval = NULL; |
| 688 | } |
| 689 | else { /* otherwise, success! */ |
| 690 | |
| 691 | /* if Recno or Queue, return the key as an Int */ |
| 692 | switch (_DB_get_type(self->mydb)) { |
| 693 | case -1: |
| 694 | retval = NULL; |
| 695 | break; |
| 696 | |
| 697 | case DB_RECNO: |
| 698 | case DB_QUEUE: |
| 699 | retval = Py_BuildValue("is#", *((db_recno_t*)key.data), |
| 700 | data.data, data.size); |
| 701 | break; |
| 702 | case DB_HASH: |
| 703 | case DB_BTREE: |
| 704 | default: |
| 705 | retval = Py_BuildValue("s#s#", key.data, key.size, |
| 706 | data.data, data.size); |
| 707 | break; |
| 708 | } |
| 709 | } |
| 710 | if (!err) { |
| 711 | FREE_DBT(key); |
| 712 | FREE_DBT(data); |
| 713 | } |
| 714 | return retval; |
| 715 | } |
| 716 | |
| 717 | |
| 718 | /* add an integer to a dictionary using the given name as a key */ |
| 719 | static void _addIntToDict(PyObject* dict, char *name, int value) |
| 720 | { |
| 721 | PyObject* v = PyInt_FromLong((long) value); |
| 722 | if (!v || PyDict_SetItemString(dict, name, v)) |
| 723 | PyErr_Clear(); |
| 724 | |
| 725 | Py_XDECREF(v); |
| 726 | } |
| 727 | |
| 728 | |
| 729 | |
| 730 | |
| 731 | /* --------------------------------------------------------------------- */ |
| 732 | /* Allocators and deallocators */ |
| 733 | |
| 734 | static DBObject* |
| 735 | newDBObject(DBEnvObject* arg, int flags) |
| 736 | { |
| 737 | DBObject* self; |
| 738 | DB_ENV* db_env = NULL; |
| 739 | int err; |
| 740 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 741 | self = PyObject_New(DBObject, &DB_Type); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 742 | if (self == NULL) |
| 743 | return NULL; |
| 744 | |
| 745 | self->haveStat = 0; |
| 746 | self->flags = 0; |
| 747 | self->setflags = 0; |
| 748 | self->myenvobj = NULL; |
| 749 | #if (DBVER >= 33) |
| 750 | self->associateCallback = NULL; |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 751 | self->btCompareCallback = NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 752 | self->primaryDBType = 0; |
| 753 | #endif |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 754 | #ifdef HAVE_WEAKREF |
| 755 | self->in_weakreflist = NULL; |
| 756 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 757 | |
| 758 | /* keep a reference to our python DBEnv object */ |
| 759 | if (arg) { |
| 760 | Py_INCREF(arg); |
| 761 | self->myenvobj = arg; |
| 762 | db_env = arg->db_env; |
| 763 | } |
| 764 | |
| 765 | if (self->myenvobj) |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 766 | self->moduleFlags = self->myenvobj->moduleFlags; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 767 | else |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 768 | self->moduleFlags.getReturnsNone = DEFAULT_GET_RETURNS_NONE; |
| 769 | self->moduleFlags.cursorSetReturnsNone = DEFAULT_CURSOR_SET_RETURNS_NONE; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 770 | |
| 771 | MYDB_BEGIN_ALLOW_THREADS; |
| 772 | err = db_create(&self->db, db_env, flags); |
| 773 | self->db->set_errcall(self->db, _db_errorCallback); |
| 774 | #if (DBVER >= 33) |
| 775 | self->db->app_private = (void*)self; |
| 776 | #endif |
| 777 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 778 | /* TODO add a weakref(self) to the self->myenvobj->open_child_weakrefs |
| 779 | * list so that a DBEnv can refuse to close without aborting any open |
| 780 | * open DBTxns and closing any open DBs first. */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 781 | if (makeDBError(err)) { |
| 782 | if (self->myenvobj) { |
| 783 | Py_DECREF(self->myenvobj); |
| 784 | self->myenvobj = NULL; |
| 785 | } |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 786 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 787 | self = NULL; |
| 788 | } |
| 789 | return self; |
| 790 | } |
| 791 | |
| 792 | |
| 793 | static void |
| 794 | DB_dealloc(DBObject* self) |
| 795 | { |
| 796 | if (self->db != NULL) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 797 | /* avoid closing a DB when its DBEnv has been closed out from under |
| 798 | * it */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 799 | if (!self->myenvobj || |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 800 | (self->myenvobj && self->myenvobj->db_env)) |
| 801 | { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 802 | MYDB_BEGIN_ALLOW_THREADS; |
| 803 | self->db->close(self->db, 0); |
| 804 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 805 | #ifdef HAVE_WARNINGS |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 806 | } else { |
| 807 | PyErr_Warn(PyExc_RuntimeWarning, |
| 808 | "DB could not be closed in destructor: DBEnv already closed"); |
| 809 | #endif |
| 810 | } |
| 811 | self->db = NULL; |
| 812 | } |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 813 | #ifdef HAVE_WEAKREF |
| 814 | if (self->in_weakreflist != NULL) { |
| 815 | PyObject_ClearWeakRefs((PyObject *) self); |
| 816 | } |
| 817 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 818 | if (self->myenvobj) { |
| 819 | Py_DECREF(self->myenvobj); |
| 820 | self->myenvobj = NULL; |
| 821 | } |
| 822 | #if (DBVER >= 33) |
| 823 | if (self->associateCallback != NULL) { |
| 824 | Py_DECREF(self->associateCallback); |
| 825 | self->associateCallback = NULL; |
| 826 | } |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 827 | if (self->btCompareCallback != NULL) { |
| 828 | Py_DECREF(self->btCompareCallback); |
| 829 | self->btCompareCallback = NULL; |
| 830 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 831 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 832 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | |
| 836 | static DBCursorObject* |
| 837 | newDBCursorObject(DBC* dbc, DBObject* db) |
| 838 | { |
Neal Norwitz | b4a5581 | 2004-07-09 23:30:57 +0000 | [diff] [blame] | 839 | DBCursorObject* self = PyObject_New(DBCursorObject, &DBCursor_Type); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 840 | if (self == NULL) |
| 841 | return NULL; |
| 842 | |
| 843 | self->dbc = dbc; |
| 844 | self->mydb = db; |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 845 | #ifdef HAVE_WEAKREF |
| 846 | self->in_weakreflist = NULL; |
| 847 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 848 | Py_INCREF(self->mydb); |
| 849 | return self; |
| 850 | } |
| 851 | |
| 852 | |
| 853 | static void |
| 854 | DBCursor_dealloc(DBCursorObject* self) |
| 855 | { |
| 856 | int err; |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 857 | |
| 858 | #ifdef HAVE_WEAKREF |
| 859 | if (self->in_weakreflist != NULL) { |
| 860 | PyObject_ClearWeakRefs((PyObject *) self); |
| 861 | } |
| 862 | #endif |
| 863 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 864 | if (self->dbc != NULL) { |
| 865 | MYDB_BEGIN_ALLOW_THREADS; |
Martin v. Löwis | 35c38ea | 2003-07-15 19:12:54 +0000 | [diff] [blame] | 866 | /* If the underlying database has been closed, we don't |
| 867 | need to do anything. If the environment has been closed |
| 868 | we need to leak, as BerkeleyDB will crash trying to access |
| 869 | the environment. There was an exception when the |
| 870 | user closed the environment even though there still was |
| 871 | a database open. */ |
| 872 | if (self->mydb->db && self->mydb->myenvobj && |
| 873 | !self->mydb->myenvobj->closed) |
Gregory P. Smith | b6c9f78 | 2003-01-17 08:42:50 +0000 | [diff] [blame] | 874 | err = self->dbc->c_close(self->dbc); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 875 | self->dbc = NULL; |
| 876 | MYDB_END_ALLOW_THREADS; |
| 877 | } |
| 878 | Py_XDECREF( self->mydb ); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 879 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | |
| 883 | static DBEnvObject* |
| 884 | newDBEnvObject(int flags) |
| 885 | { |
| 886 | int err; |
Neal Norwitz | b4a5581 | 2004-07-09 23:30:57 +0000 | [diff] [blame] | 887 | DBEnvObject* self = PyObject_New(DBEnvObject, &DBEnv_Type); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 888 | if (self == NULL) |
| 889 | return NULL; |
| 890 | |
| 891 | self->closed = 1; |
| 892 | self->flags = flags; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 893 | self->moduleFlags.getReturnsNone = DEFAULT_GET_RETURNS_NONE; |
| 894 | self->moduleFlags.cursorSetReturnsNone = DEFAULT_CURSOR_SET_RETURNS_NONE; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 895 | #ifdef HAVE_WEAKREF |
| 896 | self->in_weakreflist = NULL; |
| 897 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 898 | |
| 899 | MYDB_BEGIN_ALLOW_THREADS; |
| 900 | err = db_env_create(&self->db_env, flags); |
| 901 | MYDB_END_ALLOW_THREADS; |
| 902 | if (makeDBError(err)) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 903 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 904 | self = NULL; |
| 905 | } |
| 906 | else { |
| 907 | self->db_env->set_errcall(self->db_env, _db_errorCallback); |
| 908 | } |
| 909 | return self; |
| 910 | } |
| 911 | |
| 912 | |
| 913 | static void |
| 914 | DBEnv_dealloc(DBEnvObject* self) |
| 915 | { |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 916 | #ifdef HAVE_WEAKREF |
| 917 | if (self->in_weakreflist != NULL) { |
| 918 | PyObject_ClearWeakRefs((PyObject *) self); |
| 919 | } |
| 920 | #endif |
| 921 | |
Gregory P. Smith | 4e414d8 | 2006-01-24 19:55:02 +0000 | [diff] [blame] | 922 | if (self->db_env && !self->closed) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 923 | MYDB_BEGIN_ALLOW_THREADS; |
| 924 | self->db_env->close(self->db_env, 0); |
| 925 | MYDB_END_ALLOW_THREADS; |
| 926 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 927 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | |
| 931 | static DBTxnObject* |
| 932 | newDBTxnObject(DBEnvObject* myenv, DB_TXN *parent, int flags) |
| 933 | { |
| 934 | int err; |
Neal Norwitz | b4a5581 | 2004-07-09 23:30:57 +0000 | [diff] [blame] | 935 | DBTxnObject* self = PyObject_New(DBTxnObject, &DBTxn_Type); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 936 | if (self == NULL) |
| 937 | return NULL; |
Neal Norwitz | 62a2112 | 2006-01-25 05:21:55 +0000 | [diff] [blame] | 938 | Py_INCREF(myenv); |
| 939 | self->env = (PyObject*)myenv; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 940 | #ifdef HAVE_WEAKREF |
| 941 | self->in_weakreflist = NULL; |
| 942 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 943 | |
| 944 | MYDB_BEGIN_ALLOW_THREADS; |
| 945 | #if (DBVER >= 40) |
| 946 | err = myenv->db_env->txn_begin(myenv->db_env, parent, &(self->txn), flags); |
| 947 | #else |
| 948 | err = txn_begin(myenv->db_env, parent, &(self->txn), flags); |
| 949 | #endif |
| 950 | MYDB_END_ALLOW_THREADS; |
| 951 | if (makeDBError(err)) { |
Neal Norwitz | 62a2112 | 2006-01-25 05:21:55 +0000 | [diff] [blame] | 952 | Py_DECREF(self->env); |
| 953 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 954 | self = NULL; |
| 955 | } |
| 956 | return self; |
| 957 | } |
| 958 | |
| 959 | |
| 960 | static void |
| 961 | DBTxn_dealloc(DBTxnObject* self) |
| 962 | { |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 963 | #ifdef HAVE_WEAKREF |
| 964 | if (self->in_weakreflist != NULL) { |
| 965 | PyObject_ClearWeakRefs((PyObject *) self); |
| 966 | } |
| 967 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 968 | |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 969 | #ifdef HAVE_WARNINGS |
| 970 | if (self->txn) { |
| 971 | /* it hasn't been finalized, abort it! */ |
| 972 | MYDB_BEGIN_ALLOW_THREADS; |
| 973 | #if (DBVER >= 40) |
| 974 | self->txn->abort(self->txn); |
| 975 | #else |
| 976 | txn_abort(self->txn); |
| 977 | #endif |
| 978 | MYDB_END_ALLOW_THREADS; |
| 979 | PyErr_Warn(PyExc_RuntimeWarning, |
| 980 | "DBTxn aborted in destructor. No prior commit() or abort()."); |
| 981 | } |
| 982 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 983 | |
Neal Norwitz | 62a2112 | 2006-01-25 05:21:55 +0000 | [diff] [blame] | 984 | Py_DECREF(self->env); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 985 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | |
| 989 | static DBLockObject* |
| 990 | newDBLockObject(DBEnvObject* myenv, u_int32_t locker, DBT* obj, |
| 991 | db_lockmode_t lock_mode, int flags) |
| 992 | { |
| 993 | int err; |
Neal Norwitz | b4a5581 | 2004-07-09 23:30:57 +0000 | [diff] [blame] | 994 | DBLockObject* self = PyObject_New(DBLockObject, &DBLock_Type); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 995 | if (self == NULL) |
| 996 | return NULL; |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 997 | #ifdef HAVE_WEAKREF |
| 998 | self->in_weakreflist = NULL; |
| 999 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1000 | |
| 1001 | MYDB_BEGIN_ALLOW_THREADS; |
| 1002 | #if (DBVER >= 40) |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1003 | err = myenv->db_env->lock_get(myenv->db_env, locker, flags, obj, lock_mode, |
| 1004 | &self->lock); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1005 | #else |
| 1006 | err = lock_get(myenv->db_env, locker, flags, obj, lock_mode, &self->lock); |
| 1007 | #endif |
| 1008 | MYDB_END_ALLOW_THREADS; |
| 1009 | if (makeDBError(err)) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1010 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1011 | self = NULL; |
| 1012 | } |
| 1013 | |
| 1014 | return self; |
| 1015 | } |
| 1016 | |
| 1017 | |
| 1018 | static void |
| 1019 | DBLock_dealloc(DBLockObject* self) |
| 1020 | { |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 1021 | #ifdef HAVE_WEAKREF |
| 1022 | if (self->in_weakreflist != NULL) { |
| 1023 | PyObject_ClearWeakRefs((PyObject *) self); |
| 1024 | } |
| 1025 | #endif |
| 1026 | /* TODO: is this lock held? should we release it? */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1027 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1028 | PyObject_Del(self); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | |
| 1032 | /* --------------------------------------------------------------------- */ |
| 1033 | /* DB methods */ |
| 1034 | |
| 1035 | static PyObject* |
| 1036 | DB_append(DBObject* self, PyObject* args) |
| 1037 | { |
| 1038 | PyObject* txnobj = NULL; |
| 1039 | PyObject* dataobj; |
| 1040 | db_recno_t recno; |
| 1041 | DBT key, data; |
| 1042 | DB_TXN *txn = NULL; |
| 1043 | |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 1044 | if (!PyArg_UnpackTuple(args, "append", 1, 2, &dataobj, &txnobj)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1045 | return NULL; |
| 1046 | |
| 1047 | CHECK_DB_NOT_CLOSED(self); |
| 1048 | |
| 1049 | /* make a dummy key out of a recno */ |
| 1050 | recno = 0; |
| 1051 | CLEAR_DBT(key); |
| 1052 | key.data = &recno; |
| 1053 | key.size = sizeof(recno); |
| 1054 | key.ulen = key.size; |
| 1055 | key.flags = DB_DBT_USERMEM; |
| 1056 | |
| 1057 | if (!make_dbt(dataobj, &data)) return NULL; |
| 1058 | if (!checkTxnObj(txnobj, &txn)) return NULL; |
| 1059 | |
| 1060 | if (-1 == _DB_put(self, txn, &key, &data, DB_APPEND)) |
| 1061 | return NULL; |
| 1062 | |
| 1063 | return PyInt_FromLong(recno); |
| 1064 | } |
| 1065 | |
| 1066 | |
| 1067 | #if (DBVER >= 33) |
| 1068 | |
| 1069 | static int |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1070 | _db_associateCallback(DB* db, const DBT* priKey, const DBT* priData, |
| 1071 | DBT* secKey) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1072 | { |
| 1073 | int retval = DB_DONOTINDEX; |
| 1074 | DBObject* secondaryDB = (DBObject*)db->app_private; |
| 1075 | PyObject* callback = secondaryDB->associateCallback; |
| 1076 | int type = secondaryDB->primaryDBType; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1077 | PyObject* args; |
Thomas Wouters | 89ba381 | 2006-03-07 14:14:51 +0000 | [diff] [blame] | 1078 | PyObject* result = NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1079 | |
| 1080 | |
| 1081 | if (callback != NULL) { |
| 1082 | MYDB_BEGIN_BLOCK_THREADS; |
| 1083 | |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1084 | if (type == DB_RECNO || type == DB_QUEUE) |
| 1085 | args = Py_BuildValue("(ls#)", *((db_recno_t*)priKey->data), |
| 1086 | priData->data, priData->size); |
| 1087 | else |
| 1088 | args = Py_BuildValue("(s#s#)", priKey->data, priKey->size, |
| 1089 | priData->data, priData->size); |
Thomas Wouters | 098f694 | 2006-03-07 14:13:17 +0000 | [diff] [blame] | 1090 | if (args != NULL) { |
Thomas Wouters | 098f694 | 2006-03-07 14:13:17 +0000 | [diff] [blame] | 1091 | result = PyEval_CallObject(callback, args); |
| 1092 | } |
| 1093 | if (args == NULL || result == NULL) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1094 | PyErr_Print(); |
| 1095 | } |
| 1096 | else if (result == Py_None) { |
| 1097 | retval = DB_DONOTINDEX; |
| 1098 | } |
| 1099 | else if (PyInt_Check(result)) { |
| 1100 | retval = PyInt_AsLong(result); |
| 1101 | } |
| 1102 | else if (PyString_Check(result)) { |
| 1103 | char* data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1104 | Py_ssize_t size; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1105 | |
| 1106 | CLEAR_DBT(*secKey); |
| 1107 | #if PYTHON_API_VERSION <= 1007 |
| 1108 | /* 1.5 compatibility */ |
| 1109 | size = PyString_Size(result); |
| 1110 | data = PyString_AsString(result); |
| 1111 | #else |
| 1112 | PyString_AsStringAndSize(result, &data, &size); |
| 1113 | #endif |
| 1114 | secKey->flags = DB_DBT_APPMALLOC; /* DB will free */ |
| 1115 | secKey->data = malloc(size); /* TODO, check this */ |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1116 | if (secKey->data) { |
| 1117 | memcpy(secKey->data, data, size); |
| 1118 | secKey->size = size; |
| 1119 | retval = 0; |
| 1120 | } |
| 1121 | else { |
| 1122 | PyErr_SetString(PyExc_MemoryError, |
| 1123 | "malloc failed in _db_associateCallback"); |
| 1124 | PyErr_Print(); |
| 1125 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1126 | } |
| 1127 | else { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1128 | PyErr_SetString( |
| 1129 | PyExc_TypeError, |
| 1130 | "DB associate callback should return DB_DONOTINDEX or string."); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1131 | PyErr_Print(); |
| 1132 | } |
| 1133 | |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1134 | Py_XDECREF(args); |
| 1135 | Py_XDECREF(result); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1136 | |
| 1137 | MYDB_END_BLOCK_THREADS; |
| 1138 | } |
| 1139 | return retval; |
| 1140 | } |
| 1141 | |
| 1142 | |
| 1143 | static PyObject* |
| 1144 | DB_associate(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1145 | { |
| 1146 | int err, flags=0; |
| 1147 | DBObject* secondaryDB; |
| 1148 | PyObject* callback; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1149 | #if (DBVER >= 41) |
| 1150 | PyObject *txnobj = NULL; |
| 1151 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1152 | static char* kwnames[] = {"secondaryDB", "callback", "flags", "txn", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1153 | NULL}; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1154 | #else |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1155 | static char* kwnames[] = {"secondaryDB", "callback", "flags", NULL}; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1156 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1157 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1158 | #if (DBVER >= 41) |
| 1159 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|iO:associate", kwnames, |
| 1160 | &secondaryDB, &callback, &flags, |
| 1161 | &txnobj)) { |
| 1162 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1163 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|i:associate", kwnames, |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1164 | &secondaryDB, &callback, &flags)) { |
| 1165 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1166 | return NULL; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | #if (DBVER >= 41) |
| 1170 | if (!checkTxnObj(txnobj, &txn)) return NULL; |
| 1171 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1172 | |
| 1173 | CHECK_DB_NOT_CLOSED(self); |
| 1174 | if (!DBObject_Check(secondaryDB)) { |
| 1175 | makeTypeError("DB", (PyObject*)secondaryDB); |
| 1176 | return NULL; |
| 1177 | } |
Gregory P. Smith | 91116b6 | 2005-06-06 10:28:06 +0000 | [diff] [blame] | 1178 | CHECK_DB_NOT_CLOSED(secondaryDB); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1179 | if (callback == Py_None) { |
| 1180 | callback = NULL; |
| 1181 | } |
| 1182 | else if (!PyCallable_Check(callback)) { |
| 1183 | makeTypeError("Callable", callback); |
| 1184 | return NULL; |
| 1185 | } |
| 1186 | |
| 1187 | /* Save a reference to the callback in the secondary DB. */ |
Gregory P. Smith | 692ca9a | 2005-06-06 09:55:06 +0000 | [diff] [blame] | 1188 | Py_XDECREF(secondaryDB->associateCallback); |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1189 | Py_XINCREF(callback); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1190 | secondaryDB->associateCallback = callback; |
| 1191 | secondaryDB->primaryDBType = _DB_get_type(self); |
| 1192 | |
Martin v. Löwis | b2c7aff | 2002-11-23 11:26:07 +0000 | [diff] [blame] | 1193 | /* PyEval_InitThreads is called here due to a quirk in python 1.5 |
| 1194 | * - 2.2.1 (at least) according to Russell Williamson <merel@wt.net>: |
| 1195 | * The global interepreter lock is not initialized until the first |
| 1196 | * thread is created using thread.start_new_thread() or fork() is |
| 1197 | * called. that would cause the ALLOW_THREADS here to segfault due |
| 1198 | * to a null pointer reference if no threads or child processes |
| 1199 | * have been created. This works around that and is a no-op if |
| 1200 | * threads have already been initialized. |
| 1201 | * (see pybsddb-users mailing list post on 2002-08-07) |
| 1202 | */ |
Gregory P. Smith | aa71f5f | 2003-01-17 07:56:16 +0000 | [diff] [blame] | 1203 | #ifdef WITH_THREAD |
Martin v. Löwis | b2c7aff | 2002-11-23 11:26:07 +0000 | [diff] [blame] | 1204 | PyEval_InitThreads(); |
Gregory P. Smith | aa71f5f | 2003-01-17 07:56:16 +0000 | [diff] [blame] | 1205 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1206 | MYDB_BEGIN_ALLOW_THREADS; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1207 | #if (DBVER >= 41) |
| 1208 | err = self->db->associate(self->db, |
| 1209 | txn, |
| 1210 | secondaryDB->db, |
| 1211 | _db_associateCallback, |
| 1212 | flags); |
| 1213 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1214 | err = self->db->associate(self->db, |
| 1215 | secondaryDB->db, |
| 1216 | _db_associateCallback, |
| 1217 | flags); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1218 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1219 | MYDB_END_ALLOW_THREADS; |
| 1220 | |
| 1221 | if (err) { |
Gregory P. Smith | 692ca9a | 2005-06-06 09:55:06 +0000 | [diff] [blame] | 1222 | Py_XDECREF(secondaryDB->associateCallback); |
| 1223 | secondaryDB->associateCallback = NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1224 | secondaryDB->primaryDBType = 0; |
| 1225 | } |
| 1226 | |
| 1227 | RETURN_IF_ERR(); |
| 1228 | RETURN_NONE(); |
| 1229 | } |
| 1230 | |
| 1231 | |
| 1232 | #endif |
| 1233 | |
| 1234 | |
| 1235 | static PyObject* |
| 1236 | DB_close(DBObject* self, PyObject* args) |
| 1237 | { |
| 1238 | int err, flags=0; |
| 1239 | if (!PyArg_ParseTuple(args,"|i:close", &flags)) |
| 1240 | return NULL; |
| 1241 | if (self->db != NULL) { |
| 1242 | if (self->myenvobj) |
| 1243 | CHECK_ENV_NOT_CLOSED(self->myenvobj); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1244 | err = self->db->close(self->db, flags); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1245 | self->db = NULL; |
| 1246 | RETURN_IF_ERR(); |
| 1247 | } |
| 1248 | RETURN_NONE(); |
| 1249 | } |
| 1250 | |
| 1251 | |
| 1252 | #if (DBVER >= 32) |
| 1253 | static PyObject* |
| 1254 | _DB_consume(DBObject* self, PyObject* args, PyObject* kwargs, int consume_flag) |
| 1255 | { |
| 1256 | int err, flags=0, type; |
| 1257 | PyObject* txnobj = NULL; |
| 1258 | PyObject* retval = NULL; |
| 1259 | DBT key, data; |
| 1260 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1261 | static char* kwnames[] = { "txn", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1262 | |
| 1263 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|Oi:consume", kwnames, |
| 1264 | &txnobj, &flags)) |
| 1265 | return NULL; |
| 1266 | |
| 1267 | CHECK_DB_NOT_CLOSED(self); |
| 1268 | type = _DB_get_type(self); |
| 1269 | if (type == -1) |
| 1270 | return NULL; |
| 1271 | if (type != DB_QUEUE) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1272 | PyErr_SetString(PyExc_TypeError, |
| 1273 | "Consume methods only allowed for Queue DB's"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1274 | return NULL; |
| 1275 | } |
| 1276 | if (!checkTxnObj(txnobj, &txn)) |
| 1277 | return NULL; |
| 1278 | |
| 1279 | CLEAR_DBT(key); |
| 1280 | CLEAR_DBT(data); |
| 1281 | if (CHECK_DBFLAG(self, DB_THREAD)) { |
| 1282 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 1283 | data.flags = DB_DBT_MALLOC; |
| 1284 | key.flags = DB_DBT_MALLOC; |
| 1285 | } |
| 1286 | |
| 1287 | MYDB_BEGIN_ALLOW_THREADS; |
| 1288 | err = self->db->get(self->db, txn, &key, &data, flags|consume_flag); |
| 1289 | MYDB_END_ALLOW_THREADS; |
| 1290 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 1291 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 1292 | && self->moduleFlags.getReturnsNone) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1293 | err = 0; |
| 1294 | Py_INCREF(Py_None); |
| 1295 | retval = Py_None; |
| 1296 | } |
| 1297 | else if (!err) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1298 | retval = Py_BuildValue("s#s#", key.data, key.size, data.data, |
| 1299 | data.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1300 | FREE_DBT(key); |
| 1301 | FREE_DBT(data); |
| 1302 | } |
| 1303 | |
| 1304 | RETURN_IF_ERR(); |
| 1305 | return retval; |
| 1306 | } |
| 1307 | |
| 1308 | static PyObject* |
| 1309 | DB_consume(DBObject* self, PyObject* args, PyObject* kwargs, int consume_flag) |
| 1310 | { |
| 1311 | return _DB_consume(self, args, kwargs, DB_CONSUME); |
| 1312 | } |
| 1313 | |
| 1314 | static PyObject* |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1315 | DB_consume_wait(DBObject* self, PyObject* args, PyObject* kwargs, |
| 1316 | int consume_flag) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1317 | { |
| 1318 | return _DB_consume(self, args, kwargs, DB_CONSUME_WAIT); |
| 1319 | } |
| 1320 | #endif |
| 1321 | |
| 1322 | |
| 1323 | |
| 1324 | static PyObject* |
| 1325 | DB_cursor(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1326 | { |
| 1327 | int err, flags=0; |
| 1328 | DBC* dbc; |
| 1329 | PyObject* txnobj = NULL; |
| 1330 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1331 | static char* kwnames[] = { "txn", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1332 | |
| 1333 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|Oi:cursor", kwnames, |
| 1334 | &txnobj, &flags)) |
| 1335 | return NULL; |
| 1336 | CHECK_DB_NOT_CLOSED(self); |
| 1337 | if (!checkTxnObj(txnobj, &txn)) |
| 1338 | return NULL; |
| 1339 | |
| 1340 | MYDB_BEGIN_ALLOW_THREADS; |
| 1341 | err = self->db->cursor(self->db, txn, &dbc, flags); |
| 1342 | MYDB_END_ALLOW_THREADS; |
| 1343 | RETURN_IF_ERR(); |
| 1344 | return (PyObject*) newDBCursorObject(dbc, self); |
| 1345 | } |
| 1346 | |
| 1347 | |
| 1348 | static PyObject* |
| 1349 | DB_delete(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1350 | { |
| 1351 | PyObject* txnobj = NULL; |
| 1352 | int flags = 0; |
| 1353 | PyObject* keyobj; |
| 1354 | DBT key; |
| 1355 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1356 | static char* kwnames[] = { "key", "txn", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1357 | |
| 1358 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|Oi:delete", kwnames, |
| 1359 | &keyobj, &txnobj, &flags)) |
| 1360 | return NULL; |
| 1361 | CHECK_DB_NOT_CLOSED(self); |
| 1362 | if (!make_key_dbt(self, keyobj, &key, NULL)) |
| 1363 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1364 | if (!checkTxnObj(txnobj, &txn)) { |
| 1365 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1366 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1367 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1368 | |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1369 | if (-1 == _DB_delete(self, txn, &key, 0)) { |
| 1370 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1371 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1372 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1373 | |
| 1374 | FREE_DBT(key); |
| 1375 | RETURN_NONE(); |
| 1376 | } |
| 1377 | |
| 1378 | |
| 1379 | static PyObject* |
| 1380 | DB_fd(DBObject* self, PyObject* args) |
| 1381 | { |
| 1382 | int err, the_fd; |
| 1383 | |
| 1384 | if (!PyArg_ParseTuple(args,":fd")) |
| 1385 | return NULL; |
| 1386 | CHECK_DB_NOT_CLOSED(self); |
| 1387 | |
| 1388 | MYDB_BEGIN_ALLOW_THREADS; |
| 1389 | err = self->db->fd(self->db, &the_fd); |
| 1390 | MYDB_END_ALLOW_THREADS; |
| 1391 | RETURN_IF_ERR(); |
| 1392 | return PyInt_FromLong(the_fd); |
| 1393 | } |
| 1394 | |
| 1395 | |
| 1396 | static PyObject* |
| 1397 | DB_get(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1398 | { |
| 1399 | int err, flags=0; |
| 1400 | PyObject* txnobj = NULL; |
| 1401 | PyObject* keyobj; |
| 1402 | PyObject* dfltobj = NULL; |
| 1403 | PyObject* retval = NULL; |
| 1404 | int dlen = -1; |
| 1405 | int doff = -1; |
| 1406 | DBT key, data; |
| 1407 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1408 | static char* kwnames[] = {"key", "default", "txn", "flags", "dlen", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1409 | "doff", NULL}; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1410 | |
| 1411 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|OOiii:get", kwnames, |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1412 | &keyobj, &dfltobj, &txnobj, &flags, &dlen, |
| 1413 | &doff)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1414 | return NULL; |
| 1415 | |
| 1416 | CHECK_DB_NOT_CLOSED(self); |
| 1417 | if (!make_key_dbt(self, keyobj, &key, &flags)) |
| 1418 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1419 | if (!checkTxnObj(txnobj, &txn)) { |
| 1420 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1421 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1422 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1423 | |
| 1424 | CLEAR_DBT(data); |
| 1425 | if (CHECK_DBFLAG(self, DB_THREAD)) { |
| 1426 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 1427 | data.flags = DB_DBT_MALLOC; |
| 1428 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1429 | if (!add_partial_dbt(&data, dlen, doff)) { |
| 1430 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1431 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1432 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1433 | |
| 1434 | MYDB_BEGIN_ALLOW_THREADS; |
| 1435 | err = self->db->get(self->db, txn, &key, &data, flags); |
| 1436 | MYDB_END_ALLOW_THREADS; |
| 1437 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 1438 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) && (dfltobj != NULL)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1439 | err = 0; |
| 1440 | Py_INCREF(dfltobj); |
| 1441 | retval = dfltobj; |
| 1442 | } |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 1443 | else if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 1444 | && self->moduleFlags.getReturnsNone) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1445 | err = 0; |
| 1446 | Py_INCREF(Py_None); |
| 1447 | retval = Py_None; |
| 1448 | } |
| 1449 | else if (!err) { |
| 1450 | if (flags & DB_SET_RECNO) /* return both key and data */ |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1451 | retval = Py_BuildValue("s#s#", key.data, key.size, data.data, |
| 1452 | data.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1453 | else /* return just the data */ |
| 1454 | retval = PyString_FromStringAndSize((char*)data.data, data.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1455 | FREE_DBT(data); |
| 1456 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1457 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1458 | |
| 1459 | RETURN_IF_ERR(); |
| 1460 | return retval; |
| 1461 | } |
| 1462 | |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 1463 | #if (DBVER >= 33) |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1464 | static PyObject* |
| 1465 | DB_pget(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1466 | { |
| 1467 | int err, flags=0; |
| 1468 | PyObject* txnobj = NULL; |
| 1469 | PyObject* keyobj; |
| 1470 | PyObject* dfltobj = NULL; |
| 1471 | PyObject* retval = NULL; |
| 1472 | int dlen = -1; |
| 1473 | int doff = -1; |
| 1474 | DBT key, pkey, data; |
| 1475 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1476 | static char* kwnames[] = {"key", "default", "txn", "flags", "dlen", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1477 | "doff", NULL}; |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1478 | |
| 1479 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|OOiii:pget", kwnames, |
| 1480 | &keyobj, &dfltobj, &txnobj, &flags, &dlen, |
| 1481 | &doff)) |
| 1482 | return NULL; |
| 1483 | |
| 1484 | CHECK_DB_NOT_CLOSED(self); |
| 1485 | if (!make_key_dbt(self, keyobj, &key, &flags)) |
| 1486 | return NULL; |
| 1487 | if (!checkTxnObj(txnobj, &txn)) { |
| 1488 | FREE_DBT(key); |
| 1489 | return NULL; |
| 1490 | } |
| 1491 | |
| 1492 | CLEAR_DBT(data); |
| 1493 | if (CHECK_DBFLAG(self, DB_THREAD)) { |
| 1494 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 1495 | data.flags = DB_DBT_MALLOC; |
| 1496 | } |
| 1497 | if (!add_partial_dbt(&data, dlen, doff)) { |
| 1498 | FREE_DBT(key); |
| 1499 | return NULL; |
| 1500 | } |
| 1501 | |
| 1502 | CLEAR_DBT(pkey); |
| 1503 | pkey.flags = DB_DBT_MALLOC; |
| 1504 | |
| 1505 | MYDB_BEGIN_ALLOW_THREADS; |
| 1506 | err = self->db->pget(self->db, txn, &key, &pkey, &data, flags); |
| 1507 | MYDB_END_ALLOW_THREADS; |
| 1508 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 1509 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) && (dfltobj != NULL)) { |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1510 | err = 0; |
| 1511 | Py_INCREF(dfltobj); |
| 1512 | retval = dfltobj; |
| 1513 | } |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 1514 | else if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 1515 | && self->moduleFlags.getReturnsNone) { |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1516 | err = 0; |
| 1517 | Py_INCREF(Py_None); |
| 1518 | retval = Py_None; |
| 1519 | } |
| 1520 | else if (!err) { |
| 1521 | PyObject *pkeyObj; |
| 1522 | PyObject *dataObj; |
| 1523 | dataObj = PyString_FromStringAndSize(data.data, data.size); |
| 1524 | |
| 1525 | if (self->primaryDBType == DB_RECNO || |
| 1526 | self->primaryDBType == DB_QUEUE) |
Neal Norwitz | 40c6b47 | 2006-01-05 05:43:35 +0000 | [diff] [blame] | 1527 | pkeyObj = PyInt_FromLong(*(int *)pkey.data); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1528 | else |
| 1529 | pkeyObj = PyString_FromStringAndSize(pkey.data, pkey.size); |
| 1530 | |
| 1531 | if (flags & DB_SET_RECNO) /* return key , pkey and data */ |
| 1532 | { |
| 1533 | PyObject *keyObj; |
| 1534 | int type = _DB_get_type(self); |
| 1535 | if (type == DB_RECNO || type == DB_QUEUE) |
Neal Norwitz | 40c6b47 | 2006-01-05 05:43:35 +0000 | [diff] [blame] | 1536 | keyObj = PyInt_FromLong(*(int *)key.data); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1537 | else |
| 1538 | keyObj = PyString_FromStringAndSize(key.data, key.size); |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 1539 | #if (PY_VERSION_HEX >= 0x02040000) |
Gregory P. Smith | 4e414d8 | 2006-01-24 19:55:02 +0000 | [diff] [blame] | 1540 | retval = PyTuple_Pack(3, keyObj, pkeyObj, dataObj); |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 1541 | #else |
| 1542 | retval = Py_BuildValue("OOO", keyObj, pkeyObj, dataObj); |
| 1543 | #endif |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1544 | Py_DECREF(keyObj); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1545 | } |
| 1546 | else /* return just the pkey and data */ |
| 1547 | { |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 1548 | #if (PY_VERSION_HEX >= 0x02040000) |
Gregory P. Smith | 4e414d8 | 2006-01-24 19:55:02 +0000 | [diff] [blame] | 1549 | retval = PyTuple_Pack(2, pkeyObj, dataObj); |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 1550 | #else |
| 1551 | retval = Py_BuildValue("OO", pkeyObj, dataObj); |
| 1552 | #endif |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1553 | } |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1554 | Py_DECREF(dataObj); |
| 1555 | Py_DECREF(pkeyObj); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1556 | FREE_DBT(pkey); |
| 1557 | FREE_DBT(data); |
| 1558 | } |
| 1559 | FREE_DBT(key); |
| 1560 | |
| 1561 | RETURN_IF_ERR(); |
| 1562 | return retval; |
| 1563 | } |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 1564 | #endif |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 1565 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1566 | |
| 1567 | /* Return size of entry */ |
| 1568 | static PyObject* |
| 1569 | DB_get_size(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1570 | { |
| 1571 | int err, flags=0; |
| 1572 | PyObject* txnobj = NULL; |
| 1573 | PyObject* keyobj; |
| 1574 | PyObject* retval = NULL; |
| 1575 | DBT key, data; |
| 1576 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1577 | static char* kwnames[] = { "key", "txn", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1578 | |
| 1579 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|O:get_size", kwnames, |
| 1580 | &keyobj, &txnobj)) |
| 1581 | return NULL; |
| 1582 | CHECK_DB_NOT_CLOSED(self); |
| 1583 | if (!make_key_dbt(self, keyobj, &key, &flags)) |
| 1584 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1585 | if (!checkTxnObj(txnobj, &txn)) { |
| 1586 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1587 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1588 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1589 | CLEAR_DBT(data); |
| 1590 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 1591 | /* We don't allocate any memory, forcing a DB_BUFFER_SMALL error and |
| 1592 | thus getting the record size. */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1593 | data.flags = DB_DBT_USERMEM; |
| 1594 | data.ulen = 0; |
| 1595 | MYDB_BEGIN_ALLOW_THREADS; |
| 1596 | err = self->db->get(self->db, txn, &key, &data, flags); |
| 1597 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 1598 | if (err == DB_BUFFER_SMALL) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1599 | retval = PyInt_FromLong((long)data.size); |
| 1600 | err = 0; |
| 1601 | } |
| 1602 | |
| 1603 | FREE_DBT(key); |
| 1604 | FREE_DBT(data); |
| 1605 | RETURN_IF_ERR(); |
| 1606 | return retval; |
| 1607 | } |
| 1608 | |
| 1609 | |
| 1610 | static PyObject* |
| 1611 | DB_get_both(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1612 | { |
| 1613 | int err, flags=0; |
| 1614 | PyObject* txnobj = NULL; |
| 1615 | PyObject* keyobj; |
| 1616 | PyObject* dataobj; |
| 1617 | PyObject* retval = NULL; |
| 1618 | DBT key, data; |
| 1619 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1620 | static char* kwnames[] = { "key", "data", "txn", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1621 | |
| 1622 | |
| 1623 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|Oi:get_both", kwnames, |
| 1624 | &keyobj, &dataobj, &txnobj, &flags)) |
| 1625 | return NULL; |
| 1626 | |
| 1627 | CHECK_DB_NOT_CLOSED(self); |
| 1628 | if (!make_key_dbt(self, keyobj, &key, NULL)) |
| 1629 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1630 | if ( !make_dbt(dataobj, &data) || |
| 1631 | !checkTxnObj(txnobj, &txn) ) |
| 1632 | { |
| 1633 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1634 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1635 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1636 | |
| 1637 | flags |= DB_GET_BOTH; |
| 1638 | |
| 1639 | if (CHECK_DBFLAG(self, DB_THREAD)) { |
| 1640 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 1641 | data.flags = DB_DBT_MALLOC; |
| 1642 | /* TODO: Is this flag needed? We're passing a data object that should |
| 1643 | match what's in the DB, so there should be no need to malloc. |
| 1644 | We run the risk of freeing something twice! Check this. */ |
| 1645 | } |
| 1646 | |
| 1647 | MYDB_BEGIN_ALLOW_THREADS; |
| 1648 | err = self->db->get(self->db, txn, &key, &data, flags); |
| 1649 | MYDB_END_ALLOW_THREADS; |
| 1650 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 1651 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 1652 | && self->moduleFlags.getReturnsNone) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1653 | err = 0; |
| 1654 | Py_INCREF(Py_None); |
| 1655 | retval = Py_None; |
| 1656 | } |
| 1657 | else if (!err) { |
| 1658 | retval = PyString_FromStringAndSize((char*)data.data, data.size); |
| 1659 | FREE_DBT(data); /* Only if retrieval was successful */ |
| 1660 | } |
| 1661 | |
| 1662 | FREE_DBT(key); |
| 1663 | RETURN_IF_ERR(); |
| 1664 | return retval; |
| 1665 | } |
| 1666 | |
| 1667 | |
| 1668 | static PyObject* |
| 1669 | DB_get_byteswapped(DBObject* self, PyObject* args) |
| 1670 | { |
| 1671 | #if (DBVER >= 33) |
| 1672 | int err = 0; |
| 1673 | #endif |
| 1674 | int retval = -1; |
| 1675 | |
| 1676 | if (!PyArg_ParseTuple(args,":get_byteswapped")) |
| 1677 | return NULL; |
| 1678 | CHECK_DB_NOT_CLOSED(self); |
| 1679 | |
| 1680 | #if (DBVER >= 33) |
| 1681 | MYDB_BEGIN_ALLOW_THREADS; |
| 1682 | err = self->db->get_byteswapped(self->db, &retval); |
| 1683 | MYDB_END_ALLOW_THREADS; |
| 1684 | RETURN_IF_ERR(); |
| 1685 | #else |
| 1686 | MYDB_BEGIN_ALLOW_THREADS; |
| 1687 | retval = self->db->get_byteswapped(self->db); |
| 1688 | MYDB_END_ALLOW_THREADS; |
| 1689 | #endif |
| 1690 | return PyInt_FromLong(retval); |
| 1691 | } |
| 1692 | |
| 1693 | |
| 1694 | static PyObject* |
| 1695 | DB_get_type(DBObject* self, PyObject* args) |
| 1696 | { |
| 1697 | int type; |
| 1698 | |
| 1699 | if (!PyArg_ParseTuple(args,":get_type")) |
| 1700 | return NULL; |
| 1701 | CHECK_DB_NOT_CLOSED(self); |
| 1702 | |
| 1703 | MYDB_BEGIN_ALLOW_THREADS; |
| 1704 | type = _DB_get_type(self); |
| 1705 | MYDB_END_ALLOW_THREADS; |
| 1706 | if (type == -1) |
| 1707 | return NULL; |
| 1708 | return PyInt_FromLong(type); |
| 1709 | } |
| 1710 | |
| 1711 | |
| 1712 | static PyObject* |
| 1713 | DB_join(DBObject* self, PyObject* args) |
| 1714 | { |
| 1715 | int err, flags=0; |
| 1716 | int length, x; |
| 1717 | PyObject* cursorsObj; |
| 1718 | DBC** cursors; |
| 1719 | DBC* dbc; |
| 1720 | |
| 1721 | |
| 1722 | if (!PyArg_ParseTuple(args,"O|i:join", &cursorsObj, &flags)) |
| 1723 | return NULL; |
| 1724 | |
| 1725 | CHECK_DB_NOT_CLOSED(self); |
| 1726 | |
| 1727 | if (!PySequence_Check(cursorsObj)) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1728 | PyErr_SetString(PyExc_TypeError, |
| 1729 | "Sequence of DBCursor objects expected"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1730 | return NULL; |
| 1731 | } |
| 1732 | |
| 1733 | length = PyObject_Length(cursorsObj); |
| 1734 | cursors = malloc((length+1) * sizeof(DBC*)); |
| 1735 | cursors[length] = NULL; |
| 1736 | for (x=0; x<length; x++) { |
| 1737 | PyObject* item = PySequence_GetItem(cursorsObj, x); |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1738 | if (item == NULL) { |
| 1739 | free(cursors); |
| 1740 | return NULL; |
| 1741 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1742 | if (!DBCursorObject_Check(item)) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1743 | PyErr_SetString(PyExc_TypeError, |
| 1744 | "Sequence of DBCursor objects expected"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1745 | free(cursors); |
| 1746 | return NULL; |
| 1747 | } |
| 1748 | cursors[x] = ((DBCursorObject*)item)->dbc; |
Thomas Wouters | b2820ae | 2006-03-12 00:01:38 +0000 | [diff] [blame] | 1749 | Py_DECREF(item); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1750 | } |
| 1751 | |
| 1752 | MYDB_BEGIN_ALLOW_THREADS; |
| 1753 | err = self->db->join(self->db, cursors, &dbc, flags); |
| 1754 | MYDB_END_ALLOW_THREADS; |
| 1755 | free(cursors); |
| 1756 | RETURN_IF_ERR(); |
| 1757 | |
Gregory P. Smith | 7441e65 | 2003-11-03 21:35:31 +0000 | [diff] [blame] | 1758 | /* FIXME: this is a buggy interface. The returned cursor |
| 1759 | contains internal references to the passed in cursors |
| 1760 | but does not hold python references to them or prevent |
| 1761 | them from being closed prematurely. This can cause |
| 1762 | python to crash when things are done in the wrong order. */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1763 | return (PyObject*) newDBCursorObject(dbc, self); |
| 1764 | } |
| 1765 | |
| 1766 | |
| 1767 | static PyObject* |
| 1768 | DB_key_range(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1769 | { |
| 1770 | int err, flags=0; |
| 1771 | PyObject* txnobj = NULL; |
| 1772 | PyObject* keyobj; |
| 1773 | DBT key; |
| 1774 | DB_TXN *txn = NULL; |
| 1775 | DB_KEY_RANGE range; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1776 | static char* kwnames[] = { "key", "txn", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1777 | |
| 1778 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|Oi:key_range", kwnames, |
| 1779 | &keyobj, &txnobj, &flags)) |
| 1780 | return NULL; |
| 1781 | CHECK_DB_NOT_CLOSED(self); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1782 | if (!make_dbt(keyobj, &key)) |
| 1783 | /* BTree only, don't need to allow for an int key */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1784 | return NULL; |
| 1785 | if (!checkTxnObj(txnobj, &txn)) |
| 1786 | return NULL; |
| 1787 | |
| 1788 | MYDB_BEGIN_ALLOW_THREADS; |
| 1789 | err = self->db->key_range(self->db, txn, &key, &range, flags); |
| 1790 | MYDB_END_ALLOW_THREADS; |
| 1791 | |
| 1792 | RETURN_IF_ERR(); |
| 1793 | return Py_BuildValue("ddd", range.less, range.equal, range.greater); |
| 1794 | } |
| 1795 | |
| 1796 | |
| 1797 | static PyObject* |
| 1798 | DB_open(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1799 | { |
| 1800 | int err, type = DB_UNKNOWN, flags=0, mode=0660; |
| 1801 | char* filename = NULL; |
| 1802 | char* dbname = NULL; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1803 | #if (DBVER >= 41) |
| 1804 | PyObject *txnobj = NULL; |
| 1805 | DB_TXN *txn = NULL; |
| 1806 | /* with dbname */ |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1807 | static char* kwnames[] = { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1808 | "filename", "dbname", "dbtype", "flags", "mode", "txn", NULL}; |
| 1809 | /* without dbname */ |
Tim Peters | 85b1052 | 2006-02-28 18:33:35 +0000 | [diff] [blame] | 1810 | static char* kwnames_basic[] = { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1811 | "filename", "dbtype", "flags", "mode", "txn", NULL}; |
| 1812 | #else |
| 1813 | /* with dbname */ |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1814 | static char* kwnames[] = { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1815 | "filename", "dbname", "dbtype", "flags", "mode", NULL}; |
| 1816 | /* without dbname */ |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1817 | static char* kwnames_basic[] = { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1818 | "filename", "dbtype", "flags", "mode", NULL}; |
| 1819 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1820 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1821 | #if (DBVER >= 41) |
| 1822 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "z|ziiiO:open", kwnames, |
| 1823 | &filename, &dbname, &type, &flags, &mode, |
| 1824 | &txnobj)) |
| 1825 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1826 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "z|ziii:open", kwnames, |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1827 | &filename, &dbname, &type, &flags, |
| 1828 | &mode)) |
| 1829 | #endif |
| 1830 | { |
| 1831 | PyErr_Clear(); |
| 1832 | type = DB_UNKNOWN; flags = 0; mode = 0660; |
| 1833 | filename = NULL; dbname = NULL; |
| 1834 | #if (DBVER >= 41) |
| 1835 | if (!PyArg_ParseTupleAndKeywords(args, kwargs,"z|iiiO:open", |
| 1836 | kwnames_basic, |
| 1837 | &filename, &type, &flags, &mode, |
| 1838 | &txnobj)) |
| 1839 | return NULL; |
| 1840 | #else |
| 1841 | if (!PyArg_ParseTupleAndKeywords(args, kwargs,"z|iii:open", |
| 1842 | kwnames_basic, |
| 1843 | &filename, &type, &flags, &mode)) |
| 1844 | return NULL; |
| 1845 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1846 | } |
| 1847 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1848 | #if (DBVER >= 41) |
| 1849 | if (!checkTxnObj(txnobj, &txn)) return NULL; |
| 1850 | #endif |
| 1851 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1852 | if (NULL == self->db) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 1853 | PyObject *t = Py_BuildValue("(is)", 0, |
| 1854 | "Cannot call open() twice for DB object"); |
| 1855 | PyErr_SetObject(DBError, t); |
| 1856 | Py_DECREF(t); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1857 | return NULL; |
| 1858 | } |
| 1859 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1860 | #if 0 && (DBVER >= 41) |
| 1861 | if ((!txn) && (txnobj != Py_None) && self->myenvobj |
| 1862 | && (self->myenvobj->flags & DB_INIT_TXN)) |
| 1863 | { |
| 1864 | /* If no 'txn' parameter was supplied (no DbTxn object and None was not |
| 1865 | * explicitly passed) but we are in a transaction ready environment: |
| 1866 | * add DB_AUTO_COMMIT to allow for older pybsddb apps using transactions |
| 1867 | * to work on BerkeleyDB 4.1 without needing to modify their |
| 1868 | * DBEnv or DB open calls. |
| 1869 | * TODO make this behaviour of the library configurable. |
| 1870 | */ |
| 1871 | flags |= DB_AUTO_COMMIT; |
| 1872 | } |
| 1873 | #endif |
| 1874 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1875 | MYDB_BEGIN_ALLOW_THREADS; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1876 | #if (DBVER >= 41) |
| 1877 | err = self->db->open(self->db, txn, filename, dbname, type, flags, mode); |
| 1878 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1879 | err = self->db->open(self->db, filename, dbname, type, flags, mode); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1880 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1881 | MYDB_END_ALLOW_THREADS; |
| 1882 | if (makeDBError(err)) { |
Gregory P. Smith | b6c9f78 | 2003-01-17 08:42:50 +0000 | [diff] [blame] | 1883 | self->db->close(self->db, 0); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1884 | self->db = NULL; |
| 1885 | return NULL; |
| 1886 | } |
| 1887 | |
| 1888 | self->flags = flags; |
| 1889 | RETURN_NONE(); |
| 1890 | } |
| 1891 | |
| 1892 | |
| 1893 | static PyObject* |
| 1894 | DB_put(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1895 | { |
| 1896 | int flags=0; |
| 1897 | PyObject* txnobj = NULL; |
| 1898 | int dlen = -1; |
| 1899 | int doff = -1; |
| 1900 | PyObject* keyobj, *dataobj, *retval; |
| 1901 | DBT key, data; |
| 1902 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1903 | static char* kwnames[] = { "key", "data", "txn", "flags", "dlen", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1904 | "doff", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1905 | |
| 1906 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|Oiii:put", kwnames, |
| 1907 | &keyobj, &dataobj, &txnobj, &flags, &dlen, &doff)) |
| 1908 | return NULL; |
| 1909 | |
| 1910 | CHECK_DB_NOT_CLOSED(self); |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 1911 | if (!make_key_dbt(self, keyobj, &key, NULL)) |
| 1912 | return NULL; |
| 1913 | if ( !make_dbt(dataobj, &data) || |
| 1914 | !add_partial_dbt(&data, dlen, doff) || |
| 1915 | !checkTxnObj(txnobj, &txn) ) |
| 1916 | { |
| 1917 | FREE_DBT(key); |
| 1918 | return NULL; |
| 1919 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1920 | |
| 1921 | if (-1 == _DB_put(self, txn, &key, &data, flags)) { |
| 1922 | FREE_DBT(key); |
| 1923 | return NULL; |
| 1924 | } |
| 1925 | |
| 1926 | if (flags & DB_APPEND) |
| 1927 | retval = PyInt_FromLong(*((db_recno_t*)key.data)); |
| 1928 | else { |
| 1929 | retval = Py_None; |
| 1930 | Py_INCREF(retval); |
| 1931 | } |
| 1932 | FREE_DBT(key); |
| 1933 | return retval; |
| 1934 | } |
| 1935 | |
| 1936 | |
| 1937 | |
| 1938 | static PyObject* |
| 1939 | DB_remove(DBObject* self, PyObject* args, PyObject* kwargs) |
| 1940 | { |
| 1941 | char* filename; |
| 1942 | char* database = NULL; |
| 1943 | int err, flags=0; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 1944 | static char* kwnames[] = { "filename", "dbname", "flags", NULL}; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1945 | |
| 1946 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|zi:remove", kwnames, |
| 1947 | &filename, &database, &flags)) |
| 1948 | return NULL; |
| 1949 | CHECK_DB_NOT_CLOSED(self); |
| 1950 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1951 | err = self->db->remove(self->db, filename, database, flags); |
Gregory P. Smith | f655dff | 2003-05-15 00:13:18 +0000 | [diff] [blame] | 1952 | self->db = NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1953 | RETURN_IF_ERR(); |
| 1954 | RETURN_NONE(); |
| 1955 | } |
| 1956 | |
| 1957 | |
| 1958 | |
| 1959 | static PyObject* |
| 1960 | DB_rename(DBObject* self, PyObject* args) |
| 1961 | { |
| 1962 | char* filename; |
| 1963 | char* database; |
| 1964 | char* newname; |
| 1965 | int err, flags=0; |
| 1966 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 1967 | if (!PyArg_ParseTuple(args, "sss|i:rename", &filename, &database, &newname, |
| 1968 | &flags)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 1969 | return NULL; |
| 1970 | CHECK_DB_NOT_CLOSED(self); |
| 1971 | |
| 1972 | MYDB_BEGIN_ALLOW_THREADS; |
| 1973 | err = self->db->rename(self->db, filename, database, newname, flags); |
| 1974 | MYDB_END_ALLOW_THREADS; |
| 1975 | RETURN_IF_ERR(); |
| 1976 | RETURN_NONE(); |
| 1977 | } |
| 1978 | |
| 1979 | |
| 1980 | static PyObject* |
| 1981 | DB_set_bt_minkey(DBObject* self, PyObject* args) |
| 1982 | { |
| 1983 | int err, minkey; |
| 1984 | |
| 1985 | if (!PyArg_ParseTuple(args,"i:set_bt_minkey", &minkey )) |
| 1986 | return NULL; |
| 1987 | CHECK_DB_NOT_CLOSED(self); |
| 1988 | |
| 1989 | MYDB_BEGIN_ALLOW_THREADS; |
| 1990 | err = self->db->set_bt_minkey(self->db, minkey); |
| 1991 | MYDB_END_ALLOW_THREADS; |
| 1992 | RETURN_IF_ERR(); |
| 1993 | RETURN_NONE(); |
| 1994 | } |
| 1995 | |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 1996 | #if (DBVER >= 33) |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 1997 | static int |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 1998 | _default_cmp(const DBT *leftKey, |
| 1999 | const DBT *rightKey) |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2000 | { |
| 2001 | int res; |
| 2002 | int lsize = leftKey->size, rsize = rightKey->size; |
| 2003 | |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2004 | res = memcmp(leftKey->data, rightKey->data, |
| 2005 | lsize < rsize ? lsize : rsize); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2006 | |
| 2007 | if (res == 0) { |
| 2008 | if (lsize < rsize) { |
| 2009 | res = -1; |
| 2010 | } |
| 2011 | else if (lsize > rsize) { |
| 2012 | res = 1; |
| 2013 | } |
| 2014 | } |
| 2015 | return res; |
| 2016 | } |
| 2017 | |
| 2018 | static int |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2019 | _db_compareCallback(DB* db, |
| 2020 | const DBT *leftKey, |
| 2021 | const DBT *rightKey) |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2022 | { |
| 2023 | int res = 0; |
| 2024 | PyObject *args; |
Thomas Wouters | b2820ae | 2006-03-12 00:01:38 +0000 | [diff] [blame] | 2025 | PyObject *result = NULL; |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2026 | DBObject *self = (DBObject *)db->app_private; |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2027 | |
| 2028 | if (self == NULL || self->btCompareCallback == NULL) { |
| 2029 | MYDB_BEGIN_BLOCK_THREADS; |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2030 | PyErr_SetString(PyExc_TypeError, |
| 2031 | (self == 0 |
| 2032 | ? "DB_bt_compare db is NULL." |
| 2033 | : "DB_bt_compare callback is NULL.")); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2034 | /* we're in a callback within the DB code, we can't raise */ |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2035 | PyErr_Print(); |
| 2036 | res = _default_cmp(leftKey, rightKey); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2037 | MYDB_END_BLOCK_THREADS; |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2038 | } else { |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2039 | MYDB_BEGIN_BLOCK_THREADS; |
| 2040 | |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2041 | args = Py_BuildValue("s#s#", leftKey->data, leftKey->size, |
| 2042 | rightKey->data, rightKey->size); |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2043 | if (args != NULL) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2044 | /* XXX(twouters) I highly doubt this INCREF is correct */ |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2045 | Py_INCREF(self); |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2046 | result = PyEval_CallObject(self->btCompareCallback, args); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2047 | } |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2048 | if (args == NULL || result == NULL) { |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2049 | /* we're in a callback within the DB code, we can't raise */ |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2050 | PyErr_Print(); |
| 2051 | res = _default_cmp(leftKey, rightKey); |
| 2052 | } else if (PyInt_Check(result)) { |
| 2053 | res = PyInt_AsLong(result); |
| 2054 | } else { |
| 2055 | PyErr_SetString(PyExc_TypeError, |
| 2056 | "DB_bt_compare callback MUST return an int."); |
| 2057 | /* we're in a callback within the DB code, we can't raise */ |
| 2058 | PyErr_Print(); |
| 2059 | res = _default_cmp(leftKey, rightKey); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2060 | } |
| 2061 | |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2062 | Py_XDECREF(args); |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2063 | Py_XDECREF(result); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2064 | |
| 2065 | MYDB_END_BLOCK_THREADS; |
| 2066 | } |
| 2067 | return res; |
| 2068 | } |
| 2069 | |
| 2070 | static PyObject* |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2071 | DB_set_bt_compare(DBObject* self, PyObject* args) |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2072 | { |
| 2073 | int err; |
| 2074 | PyObject *comparator; |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2075 | PyObject *tuple, *result; |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2076 | |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2077 | if (!PyArg_ParseTuple(args, "O:set_bt_compare", &comparator)) |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2078 | return NULL; |
| 2079 | |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2080 | CHECK_DB_NOT_CLOSED(self); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2081 | |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2082 | if (!PyCallable_Check(comparator)) { |
| 2083 | makeTypeError("Callable", comparator); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2084 | return NULL; |
| 2085 | } |
| 2086 | |
| 2087 | /* |
| 2088 | * Perform a test call of the comparator function with two empty |
| 2089 | * string objects here. verify that it returns an int (0). |
| 2090 | * err if not. |
| 2091 | */ |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2092 | tuple = Py_BuildValue("(ss)", "", ""); |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2093 | result = PyEval_CallObject(comparator, tuple); |
| 2094 | Py_DECREF(tuple); |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2095 | if (result == NULL) |
| 2096 | return NULL; |
| 2097 | if (!PyInt_Check(result)) { |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2098 | PyErr_SetString(PyExc_TypeError, |
| 2099 | "callback MUST return an int"); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2100 | return NULL; |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2101 | } else if (PyInt_AsLong(result) != 0) { |
| 2102 | PyErr_SetString(PyExc_TypeError, |
| 2103 | "callback failed to return 0 on two empty strings"); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2104 | return NULL; |
| 2105 | } |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2106 | Py_DECREF(result); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2107 | |
| 2108 | /* We don't accept multiple set_bt_compare operations, in order to |
| 2109 | * simplify the code. This would have no real use, as one cannot |
| 2110 | * change the function once the db is opened anyway */ |
| 2111 | if (self->btCompareCallback != NULL) { |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2112 | PyErr_SetString(PyExc_RuntimeError, "set_bt_compare() cannot be called more than once"); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2113 | return NULL; |
| 2114 | } |
| 2115 | |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2116 | Py_INCREF(comparator); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2117 | self->btCompareCallback = comparator; |
| 2118 | |
| 2119 | /* This is to workaround a problem with un-initialized threads (see |
| 2120 | comment in DB_associate) */ |
| 2121 | #ifdef WITH_THREAD |
| 2122 | PyEval_InitThreads(); |
| 2123 | #endif |
| 2124 | |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2125 | err = self->db->set_bt_compare(self->db, _db_compareCallback); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2126 | |
| 2127 | if (err) { |
| 2128 | /* restore the old state in case of error */ |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2129 | Py_DECREF(comparator); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2130 | self->btCompareCallback = NULL; |
| 2131 | } |
| 2132 | |
Georg Brandl | ef1701f | 2006-03-07 14:57:48 +0000 | [diff] [blame] | 2133 | RETURN_IF_ERR(); |
| 2134 | RETURN_NONE(); |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2135 | } |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 2136 | #endif /* DBVER >= 33 */ |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 2137 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2138 | |
| 2139 | static PyObject* |
| 2140 | DB_set_cachesize(DBObject* self, PyObject* args) |
| 2141 | { |
| 2142 | int err; |
| 2143 | int gbytes = 0, bytes = 0, ncache = 0; |
| 2144 | |
| 2145 | if (!PyArg_ParseTuple(args,"ii|i:set_cachesize", |
| 2146 | &gbytes,&bytes,&ncache)) |
| 2147 | return NULL; |
| 2148 | CHECK_DB_NOT_CLOSED(self); |
| 2149 | |
| 2150 | MYDB_BEGIN_ALLOW_THREADS; |
| 2151 | err = self->db->set_cachesize(self->db, gbytes, bytes, ncache); |
| 2152 | MYDB_END_ALLOW_THREADS; |
| 2153 | RETURN_IF_ERR(); |
| 2154 | RETURN_NONE(); |
| 2155 | } |
| 2156 | |
| 2157 | |
| 2158 | static PyObject* |
| 2159 | DB_set_flags(DBObject* self, PyObject* args) |
| 2160 | { |
| 2161 | int err, flags; |
| 2162 | |
| 2163 | if (!PyArg_ParseTuple(args,"i:set_flags", &flags)) |
| 2164 | return NULL; |
| 2165 | CHECK_DB_NOT_CLOSED(self); |
| 2166 | |
| 2167 | MYDB_BEGIN_ALLOW_THREADS; |
| 2168 | err = self->db->set_flags(self->db, flags); |
| 2169 | MYDB_END_ALLOW_THREADS; |
| 2170 | RETURN_IF_ERR(); |
| 2171 | |
| 2172 | self->setflags |= flags; |
| 2173 | RETURN_NONE(); |
| 2174 | } |
| 2175 | |
| 2176 | |
| 2177 | static PyObject* |
| 2178 | DB_set_h_ffactor(DBObject* self, PyObject* args) |
| 2179 | { |
| 2180 | int err, ffactor; |
| 2181 | |
| 2182 | if (!PyArg_ParseTuple(args,"i:set_h_ffactor", &ffactor)) |
| 2183 | return NULL; |
| 2184 | CHECK_DB_NOT_CLOSED(self); |
| 2185 | |
| 2186 | MYDB_BEGIN_ALLOW_THREADS; |
| 2187 | err = self->db->set_h_ffactor(self->db, ffactor); |
| 2188 | MYDB_END_ALLOW_THREADS; |
| 2189 | RETURN_IF_ERR(); |
| 2190 | RETURN_NONE(); |
| 2191 | } |
| 2192 | |
| 2193 | |
| 2194 | static PyObject* |
| 2195 | DB_set_h_nelem(DBObject* self, PyObject* args) |
| 2196 | { |
| 2197 | int err, nelem; |
| 2198 | |
| 2199 | if (!PyArg_ParseTuple(args,"i:set_h_nelem", &nelem)) |
| 2200 | return NULL; |
| 2201 | CHECK_DB_NOT_CLOSED(self); |
| 2202 | |
| 2203 | MYDB_BEGIN_ALLOW_THREADS; |
| 2204 | err = self->db->set_h_nelem(self->db, nelem); |
| 2205 | MYDB_END_ALLOW_THREADS; |
| 2206 | RETURN_IF_ERR(); |
| 2207 | RETURN_NONE(); |
| 2208 | } |
| 2209 | |
| 2210 | |
| 2211 | static PyObject* |
| 2212 | DB_set_lorder(DBObject* self, PyObject* args) |
| 2213 | { |
| 2214 | int err, lorder; |
| 2215 | |
| 2216 | if (!PyArg_ParseTuple(args,"i:set_lorder", &lorder)) |
| 2217 | return NULL; |
| 2218 | CHECK_DB_NOT_CLOSED(self); |
| 2219 | |
| 2220 | MYDB_BEGIN_ALLOW_THREADS; |
| 2221 | err = self->db->set_lorder(self->db, lorder); |
| 2222 | MYDB_END_ALLOW_THREADS; |
| 2223 | RETURN_IF_ERR(); |
| 2224 | RETURN_NONE(); |
| 2225 | } |
| 2226 | |
| 2227 | |
| 2228 | static PyObject* |
| 2229 | DB_set_pagesize(DBObject* self, PyObject* args) |
| 2230 | { |
| 2231 | int err, pagesize; |
| 2232 | |
| 2233 | if (!PyArg_ParseTuple(args,"i:set_pagesize", &pagesize)) |
| 2234 | return NULL; |
| 2235 | CHECK_DB_NOT_CLOSED(self); |
| 2236 | |
| 2237 | MYDB_BEGIN_ALLOW_THREADS; |
| 2238 | err = self->db->set_pagesize(self->db, pagesize); |
| 2239 | MYDB_END_ALLOW_THREADS; |
| 2240 | RETURN_IF_ERR(); |
| 2241 | RETURN_NONE(); |
| 2242 | } |
| 2243 | |
| 2244 | |
| 2245 | static PyObject* |
| 2246 | DB_set_re_delim(DBObject* self, PyObject* args) |
| 2247 | { |
| 2248 | int err; |
| 2249 | char delim; |
| 2250 | |
| 2251 | if (!PyArg_ParseTuple(args,"b:set_re_delim", &delim)) { |
| 2252 | PyErr_Clear(); |
| 2253 | if (!PyArg_ParseTuple(args,"c:set_re_delim", &delim)) |
| 2254 | return NULL; |
| 2255 | } |
| 2256 | |
| 2257 | CHECK_DB_NOT_CLOSED(self); |
| 2258 | |
| 2259 | MYDB_BEGIN_ALLOW_THREADS; |
| 2260 | err = self->db->set_re_delim(self->db, delim); |
| 2261 | MYDB_END_ALLOW_THREADS; |
| 2262 | RETURN_IF_ERR(); |
| 2263 | RETURN_NONE(); |
| 2264 | } |
| 2265 | |
| 2266 | static PyObject* |
| 2267 | DB_set_re_len(DBObject* self, PyObject* args) |
| 2268 | { |
| 2269 | int err, len; |
| 2270 | |
| 2271 | if (!PyArg_ParseTuple(args,"i:set_re_len", &len)) |
| 2272 | return NULL; |
| 2273 | CHECK_DB_NOT_CLOSED(self); |
| 2274 | |
| 2275 | MYDB_BEGIN_ALLOW_THREADS; |
| 2276 | err = self->db->set_re_len(self->db, len); |
| 2277 | MYDB_END_ALLOW_THREADS; |
| 2278 | RETURN_IF_ERR(); |
| 2279 | RETURN_NONE(); |
| 2280 | } |
| 2281 | |
| 2282 | |
| 2283 | static PyObject* |
| 2284 | DB_set_re_pad(DBObject* self, PyObject* args) |
| 2285 | { |
| 2286 | int err; |
| 2287 | char pad; |
| 2288 | |
| 2289 | if (!PyArg_ParseTuple(args,"b:set_re_pad", &pad)) { |
| 2290 | PyErr_Clear(); |
| 2291 | if (!PyArg_ParseTuple(args,"c:set_re_pad", &pad)) |
| 2292 | return NULL; |
| 2293 | } |
| 2294 | CHECK_DB_NOT_CLOSED(self); |
| 2295 | |
| 2296 | MYDB_BEGIN_ALLOW_THREADS; |
| 2297 | err = self->db->set_re_pad(self->db, pad); |
| 2298 | MYDB_END_ALLOW_THREADS; |
| 2299 | RETURN_IF_ERR(); |
| 2300 | RETURN_NONE(); |
| 2301 | } |
| 2302 | |
| 2303 | |
| 2304 | static PyObject* |
| 2305 | DB_set_re_source(DBObject* self, PyObject* args) |
| 2306 | { |
| 2307 | int err; |
| 2308 | char *re_source; |
| 2309 | |
| 2310 | if (!PyArg_ParseTuple(args,"s:set_re_source", &re_source)) |
| 2311 | return NULL; |
| 2312 | CHECK_DB_NOT_CLOSED(self); |
| 2313 | |
| 2314 | MYDB_BEGIN_ALLOW_THREADS; |
| 2315 | err = self->db->set_re_source(self->db, re_source); |
| 2316 | MYDB_END_ALLOW_THREADS; |
| 2317 | RETURN_IF_ERR(); |
| 2318 | RETURN_NONE(); |
| 2319 | } |
| 2320 | |
| 2321 | |
| 2322 | #if (DBVER >= 32) |
| 2323 | static PyObject* |
| 2324 | DB_set_q_extentsize(DBObject* self, PyObject* args) |
| 2325 | { |
| 2326 | int err; |
| 2327 | int extentsize; |
| 2328 | |
| 2329 | if (!PyArg_ParseTuple(args,"i:set_q_extentsize", &extentsize)) |
| 2330 | return NULL; |
| 2331 | CHECK_DB_NOT_CLOSED(self); |
| 2332 | |
| 2333 | MYDB_BEGIN_ALLOW_THREADS; |
| 2334 | err = self->db->set_q_extentsize(self->db, extentsize); |
| 2335 | MYDB_END_ALLOW_THREADS; |
| 2336 | RETURN_IF_ERR(); |
| 2337 | RETURN_NONE(); |
| 2338 | } |
| 2339 | #endif |
| 2340 | |
| 2341 | static PyObject* |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2342 | DB_stat(DBObject* self, PyObject* args, PyObject* kwargs) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2343 | { |
| 2344 | int err, flags = 0, type; |
| 2345 | void* sp; |
| 2346 | PyObject* d; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2347 | #if (DBVER >= 43) |
| 2348 | PyObject* txnobj = NULL; |
| 2349 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 2350 | static char* kwnames[] = { "txn", "flags", NULL }; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2351 | #else |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 2352 | static char* kwnames[] = { "flags", NULL }; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2353 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2354 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2355 | #if (DBVER >= 43) |
| 2356 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|iO:stat", kwnames, |
| 2357 | &flags, &txnobj)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2358 | return NULL; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2359 | if (!checkTxnObj(txnobj, &txn)) |
| 2360 | return NULL; |
| 2361 | #else |
| 2362 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:stat", kwnames, &flags)) |
| 2363 | return NULL; |
| 2364 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2365 | CHECK_DB_NOT_CLOSED(self); |
| 2366 | |
| 2367 | MYDB_BEGIN_ALLOW_THREADS; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2368 | #if (DBVER >= 43) |
| 2369 | err = self->db->stat(self->db, txn, &sp, flags); |
| 2370 | #elif (DBVER >= 33) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2371 | err = self->db->stat(self->db, &sp, flags); |
| 2372 | #else |
| 2373 | err = self->db->stat(self->db, &sp, NULL, flags); |
| 2374 | #endif |
| 2375 | MYDB_END_ALLOW_THREADS; |
| 2376 | RETURN_IF_ERR(); |
| 2377 | |
| 2378 | self->haveStat = 1; |
| 2379 | |
| 2380 | /* Turn the stat structure into a dictionary */ |
| 2381 | type = _DB_get_type(self); |
| 2382 | if ((type == -1) || ((d = PyDict_New()) == NULL)) { |
| 2383 | free(sp); |
| 2384 | return NULL; |
| 2385 | } |
| 2386 | |
| 2387 | #define MAKE_HASH_ENTRY(name) _addIntToDict(d, #name, ((DB_HASH_STAT*)sp)->hash_##name) |
| 2388 | #define MAKE_BT_ENTRY(name) _addIntToDict(d, #name, ((DB_BTREE_STAT*)sp)->bt_##name) |
| 2389 | #define MAKE_QUEUE_ENTRY(name) _addIntToDict(d, #name, ((DB_QUEUE_STAT*)sp)->qs_##name) |
| 2390 | |
| 2391 | switch (type) { |
| 2392 | case DB_HASH: |
| 2393 | MAKE_HASH_ENTRY(magic); |
| 2394 | MAKE_HASH_ENTRY(version); |
| 2395 | MAKE_HASH_ENTRY(nkeys); |
| 2396 | MAKE_HASH_ENTRY(ndata); |
| 2397 | MAKE_HASH_ENTRY(pagesize); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2398 | #if (DBVER < 41) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2399 | MAKE_HASH_ENTRY(nelem); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2400 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2401 | MAKE_HASH_ENTRY(ffactor); |
| 2402 | MAKE_HASH_ENTRY(buckets); |
| 2403 | MAKE_HASH_ENTRY(free); |
| 2404 | MAKE_HASH_ENTRY(bfree); |
| 2405 | MAKE_HASH_ENTRY(bigpages); |
| 2406 | MAKE_HASH_ENTRY(big_bfree); |
| 2407 | MAKE_HASH_ENTRY(overflows); |
| 2408 | MAKE_HASH_ENTRY(ovfl_free); |
| 2409 | MAKE_HASH_ENTRY(dup); |
| 2410 | MAKE_HASH_ENTRY(dup_free); |
| 2411 | break; |
| 2412 | |
| 2413 | case DB_BTREE: |
| 2414 | case DB_RECNO: |
| 2415 | MAKE_BT_ENTRY(magic); |
| 2416 | MAKE_BT_ENTRY(version); |
| 2417 | MAKE_BT_ENTRY(nkeys); |
| 2418 | MAKE_BT_ENTRY(ndata); |
| 2419 | MAKE_BT_ENTRY(pagesize); |
| 2420 | MAKE_BT_ENTRY(minkey); |
| 2421 | MAKE_BT_ENTRY(re_len); |
| 2422 | MAKE_BT_ENTRY(re_pad); |
| 2423 | MAKE_BT_ENTRY(levels); |
| 2424 | MAKE_BT_ENTRY(int_pg); |
| 2425 | MAKE_BT_ENTRY(leaf_pg); |
| 2426 | MAKE_BT_ENTRY(dup_pg); |
| 2427 | MAKE_BT_ENTRY(over_pg); |
| 2428 | MAKE_BT_ENTRY(free); |
| 2429 | MAKE_BT_ENTRY(int_pgfree); |
| 2430 | MAKE_BT_ENTRY(leaf_pgfree); |
| 2431 | MAKE_BT_ENTRY(dup_pgfree); |
| 2432 | MAKE_BT_ENTRY(over_pgfree); |
| 2433 | break; |
| 2434 | |
| 2435 | case DB_QUEUE: |
| 2436 | MAKE_QUEUE_ENTRY(magic); |
| 2437 | MAKE_QUEUE_ENTRY(version); |
| 2438 | MAKE_QUEUE_ENTRY(nkeys); |
| 2439 | MAKE_QUEUE_ENTRY(ndata); |
| 2440 | MAKE_QUEUE_ENTRY(pagesize); |
| 2441 | MAKE_QUEUE_ENTRY(pages); |
| 2442 | MAKE_QUEUE_ENTRY(re_len); |
| 2443 | MAKE_QUEUE_ENTRY(re_pad); |
| 2444 | MAKE_QUEUE_ENTRY(pgfree); |
| 2445 | #if (DBVER == 31) |
| 2446 | MAKE_QUEUE_ENTRY(start); |
| 2447 | #endif |
| 2448 | MAKE_QUEUE_ENTRY(first_recno); |
| 2449 | MAKE_QUEUE_ENTRY(cur_recno); |
| 2450 | break; |
| 2451 | |
| 2452 | default: |
| 2453 | PyErr_SetString(PyExc_TypeError, "Unknown DB type, unable to stat"); |
| 2454 | Py_DECREF(d); |
| 2455 | d = NULL; |
| 2456 | } |
| 2457 | |
| 2458 | #undef MAKE_HASH_ENTRY |
| 2459 | #undef MAKE_BT_ENTRY |
| 2460 | #undef MAKE_QUEUE_ENTRY |
| 2461 | |
| 2462 | free(sp); |
| 2463 | return d; |
| 2464 | } |
| 2465 | |
| 2466 | static PyObject* |
| 2467 | DB_sync(DBObject* self, PyObject* args) |
| 2468 | { |
| 2469 | int err; |
| 2470 | int flags = 0; |
| 2471 | |
| 2472 | if (!PyArg_ParseTuple(args,"|i:sync", &flags )) |
| 2473 | return NULL; |
| 2474 | CHECK_DB_NOT_CLOSED(self); |
| 2475 | |
| 2476 | MYDB_BEGIN_ALLOW_THREADS; |
| 2477 | err = self->db->sync(self->db, flags); |
| 2478 | MYDB_END_ALLOW_THREADS; |
| 2479 | RETURN_IF_ERR(); |
| 2480 | RETURN_NONE(); |
| 2481 | } |
| 2482 | |
| 2483 | |
| 2484 | #if (DBVER >= 33) |
| 2485 | static PyObject* |
| 2486 | DB_truncate(DBObject* self, PyObject* args, PyObject* kwargs) |
| 2487 | { |
| 2488 | int err, flags=0; |
| 2489 | u_int32_t count=0; |
| 2490 | PyObject* txnobj = NULL; |
| 2491 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 2492 | static char* kwnames[] = { "txn", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2493 | |
| 2494 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|Oi:cursor", kwnames, |
| 2495 | &txnobj, &flags)) |
| 2496 | return NULL; |
| 2497 | CHECK_DB_NOT_CLOSED(self); |
| 2498 | if (!checkTxnObj(txnobj, &txn)) |
| 2499 | return NULL; |
| 2500 | |
| 2501 | MYDB_BEGIN_ALLOW_THREADS; |
| 2502 | err = self->db->truncate(self->db, txn, &count, flags); |
| 2503 | MYDB_END_ALLOW_THREADS; |
| 2504 | RETURN_IF_ERR(); |
| 2505 | return PyInt_FromLong(count); |
| 2506 | } |
| 2507 | #endif |
| 2508 | |
| 2509 | |
| 2510 | static PyObject* |
| 2511 | DB_upgrade(DBObject* self, PyObject* args) |
| 2512 | { |
| 2513 | int err, flags=0; |
| 2514 | char *filename; |
| 2515 | |
| 2516 | if (!PyArg_ParseTuple(args,"s|i:upgrade", &filename, &flags)) |
| 2517 | return NULL; |
| 2518 | CHECK_DB_NOT_CLOSED(self); |
| 2519 | |
| 2520 | MYDB_BEGIN_ALLOW_THREADS; |
| 2521 | err = self->db->upgrade(self->db, filename, flags); |
| 2522 | MYDB_END_ALLOW_THREADS; |
| 2523 | RETURN_IF_ERR(); |
| 2524 | RETURN_NONE(); |
| 2525 | } |
| 2526 | |
| 2527 | |
| 2528 | static PyObject* |
| 2529 | DB_verify(DBObject* self, PyObject* args, PyObject* kwargs) |
| 2530 | { |
| 2531 | int err, flags=0; |
| 2532 | char* fileName; |
| 2533 | char* dbName=NULL; |
| 2534 | char* outFileName=NULL; |
| 2535 | FILE* outFile=NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 2536 | static char* kwnames[] = { "filename", "dbname", "outfile", "flags", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 2537 | NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2538 | |
| 2539 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|zzi:verify", kwnames, |
| 2540 | &fileName, &dbName, &outFileName, &flags)) |
| 2541 | return NULL; |
| 2542 | |
| 2543 | CHECK_DB_NOT_CLOSED(self); |
| 2544 | if (outFileName) |
| 2545 | outFile = fopen(outFileName, "w"); |
| 2546 | |
| 2547 | MYDB_BEGIN_ALLOW_THREADS; |
| 2548 | err = self->db->verify(self->db, fileName, dbName, outFile, flags); |
| 2549 | MYDB_END_ALLOW_THREADS; |
| 2550 | if (outFileName) |
| 2551 | fclose(outFile); |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 2552 | |
| 2553 | /* DB.verify acts as a DB handle destructor (like close); this was |
| 2554 | * documented in BerkeleyDB 4.2 but had the undocumented effect |
| 2555 | * of not being safe in prior versions while still requiring an explicit |
| 2556 | * DB.close call afterwards. Lets call close for the user to emulate |
| 2557 | * the safe 4.2 behaviour. */ |
| 2558 | #if (DBVER <= 41) |
| 2559 | self->db->close(self->db, 0); |
| 2560 | #endif |
| 2561 | self->db = NULL; |
| 2562 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2563 | RETURN_IF_ERR(); |
| 2564 | RETURN_NONE(); |
| 2565 | } |
| 2566 | |
| 2567 | |
| 2568 | static PyObject* |
| 2569 | DB_set_get_returns_none(DBObject* self, PyObject* args) |
| 2570 | { |
| 2571 | int flags=0; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 2572 | int oldValue=0; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2573 | |
| 2574 | if (!PyArg_ParseTuple(args,"i:set_get_returns_none", &flags)) |
| 2575 | return NULL; |
| 2576 | CHECK_DB_NOT_CLOSED(self); |
| 2577 | |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 2578 | if (self->moduleFlags.getReturnsNone) |
| 2579 | ++oldValue; |
| 2580 | if (self->moduleFlags.cursorSetReturnsNone) |
| 2581 | ++oldValue; |
| 2582 | self->moduleFlags.getReturnsNone = (flags >= 1); |
| 2583 | self->moduleFlags.cursorSetReturnsNone = (flags >= 2); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2584 | return PyInt_FromLong(oldValue); |
| 2585 | } |
| 2586 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2587 | #if (DBVER >= 41) |
| 2588 | static PyObject* |
| 2589 | DB_set_encrypt(DBObject* self, PyObject* args, PyObject* kwargs) |
| 2590 | { |
| 2591 | int err; |
| 2592 | u_int32_t flags=0; |
| 2593 | char *passwd = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 2594 | static char* kwnames[] = { "passwd", "flags", NULL }; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2595 | |
| 2596 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|i:set_encrypt", kwnames, |
| 2597 | &passwd, &flags)) { |
| 2598 | return NULL; |
| 2599 | } |
| 2600 | |
| 2601 | MYDB_BEGIN_ALLOW_THREADS; |
| 2602 | err = self->db->set_encrypt(self->db, passwd, flags); |
| 2603 | MYDB_END_ALLOW_THREADS; |
| 2604 | |
| 2605 | RETURN_IF_ERR(); |
| 2606 | RETURN_NONE(); |
| 2607 | } |
| 2608 | #endif /* DBVER >= 41 */ |
| 2609 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2610 | |
| 2611 | /*-------------------------------------------------------------- */ |
| 2612 | /* Mapping and Dictionary-like access routines */ |
| 2613 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2614 | Py_ssize_t DB_length(DBObject* self) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2615 | { |
| 2616 | int err; |
| 2617 | long size = 0; |
| 2618 | int flags = 0; |
| 2619 | void* sp; |
| 2620 | |
| 2621 | if (self->db == NULL) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2622 | PyObject *t = Py_BuildValue("(is)", 0, "DB object has been closed"); |
| 2623 | PyErr_SetObject(DBError, t); |
| 2624 | Py_DECREF(t); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2625 | return -1; |
| 2626 | } |
| 2627 | |
| 2628 | if (self->haveStat) { /* Has the stat function been called recently? If |
| 2629 | so, we can use the cached value. */ |
| 2630 | flags = DB_CACHED_COUNTS; |
| 2631 | } |
| 2632 | |
| 2633 | MYDB_BEGIN_ALLOW_THREADS; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2634 | #if (DBVER >= 43) |
| 2635 | err = self->db->stat(self->db, /*txnid*/ NULL, &sp, flags); |
| 2636 | #elif (DBVER >= 33) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2637 | err = self->db->stat(self->db, &sp, flags); |
| 2638 | #else |
| 2639 | err = self->db->stat(self->db, &sp, NULL, flags); |
| 2640 | #endif |
| 2641 | MYDB_END_ALLOW_THREADS; |
| 2642 | |
| 2643 | if (err) |
| 2644 | return -1; |
| 2645 | |
| 2646 | self->haveStat = 1; |
| 2647 | |
| 2648 | /* All the stat structures have matching fields upto the ndata field, |
| 2649 | so we can use any of them for the type cast */ |
| 2650 | size = ((DB_BTREE_STAT*)sp)->bt_ndata; |
| 2651 | free(sp); |
| 2652 | return size; |
| 2653 | } |
| 2654 | |
| 2655 | |
| 2656 | PyObject* DB_subscript(DBObject* self, PyObject* keyobj) |
| 2657 | { |
| 2658 | int err; |
| 2659 | PyObject* retval; |
| 2660 | DBT key; |
| 2661 | DBT data; |
| 2662 | |
| 2663 | CHECK_DB_NOT_CLOSED(self); |
| 2664 | if (!make_key_dbt(self, keyobj, &key, NULL)) |
| 2665 | return NULL; |
| 2666 | |
| 2667 | CLEAR_DBT(data); |
| 2668 | if (CHECK_DBFLAG(self, DB_THREAD)) { |
| 2669 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 2670 | data.flags = DB_DBT_MALLOC; |
| 2671 | } |
| 2672 | MYDB_BEGIN_ALLOW_THREADS; |
| 2673 | err = self->db->get(self->db, NULL, &key, &data, 0); |
| 2674 | MYDB_END_ALLOW_THREADS; |
| 2675 | if (err == DB_NOTFOUND || err == DB_KEYEMPTY) { |
| 2676 | PyErr_SetObject(PyExc_KeyError, keyobj); |
| 2677 | retval = NULL; |
| 2678 | } |
| 2679 | else if (makeDBError(err)) { |
| 2680 | retval = NULL; |
| 2681 | } |
| 2682 | else { |
| 2683 | retval = PyString_FromStringAndSize((char*)data.data, data.size); |
| 2684 | FREE_DBT(data); |
| 2685 | } |
| 2686 | |
| 2687 | FREE_DBT(key); |
| 2688 | return retval; |
| 2689 | } |
| 2690 | |
| 2691 | |
| 2692 | static int |
| 2693 | DB_ass_sub(DBObject* self, PyObject* keyobj, PyObject* dataobj) |
| 2694 | { |
| 2695 | DBT key, data; |
| 2696 | int retval; |
| 2697 | int flags = 0; |
| 2698 | |
| 2699 | if (self->db == NULL) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2700 | PyObject *t = Py_BuildValue("(is)", 0, "DB object has been closed"); |
| 2701 | PyErr_SetObject(DBError, t); |
| 2702 | Py_DECREF(t); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2703 | return -1; |
| 2704 | } |
| 2705 | |
| 2706 | if (!make_key_dbt(self, keyobj, &key, NULL)) |
| 2707 | return -1; |
| 2708 | |
| 2709 | if (dataobj != NULL) { |
| 2710 | if (!make_dbt(dataobj, &data)) |
| 2711 | retval = -1; |
| 2712 | else { |
| 2713 | if (self->setflags & (DB_DUP|DB_DUPSORT)) |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2714 | /* dictionaries shouldn't have duplicate keys */ |
| 2715 | flags = DB_NOOVERWRITE; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2716 | retval = _DB_put(self, NULL, &key, &data, flags); |
| 2717 | |
| 2718 | if ((retval == -1) && (self->setflags & (DB_DUP|DB_DUPSORT))) { |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2719 | /* try deleting any old record that matches and then PUT it |
| 2720 | * again... */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2721 | _DB_delete(self, NULL, &key, 0); |
| 2722 | PyErr_Clear(); |
| 2723 | retval = _DB_put(self, NULL, &key, &data, flags); |
| 2724 | } |
| 2725 | } |
| 2726 | } |
| 2727 | else { |
| 2728 | /* dataobj == NULL, so delete the key */ |
| 2729 | retval = _DB_delete(self, NULL, &key, 0); |
| 2730 | } |
| 2731 | FREE_DBT(key); |
| 2732 | return retval; |
| 2733 | } |
| 2734 | |
| 2735 | |
| 2736 | static PyObject* |
| 2737 | DB_has_key(DBObject* self, PyObject* args) |
| 2738 | { |
| 2739 | int err; |
| 2740 | PyObject* keyobj; |
| 2741 | DBT key, data; |
| 2742 | PyObject* txnobj = NULL; |
| 2743 | DB_TXN *txn = NULL; |
| 2744 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2745 | if (!PyArg_ParseTuple(args,"O|O:has_key", &keyobj, &txnobj)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2746 | return NULL; |
| 2747 | CHECK_DB_NOT_CLOSED(self); |
| 2748 | if (!make_key_dbt(self, keyobj, &key, NULL)) |
| 2749 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 2750 | if (!checkTxnObj(txnobj, &txn)) { |
| 2751 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2752 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 2753 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2754 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 2755 | /* This causes DB_BUFFER_SMALL to be returned when the db has the key because |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2756 | it has a record but can't allocate a buffer for the data. This saves |
| 2757 | having to deal with data we won't be using. |
| 2758 | */ |
| 2759 | CLEAR_DBT(data); |
| 2760 | data.flags = DB_DBT_USERMEM; |
| 2761 | |
| 2762 | MYDB_BEGIN_ALLOW_THREADS; |
Gregory P. Smith | 0c65771 | 2004-03-16 06:56:58 +0000 | [diff] [blame] | 2763 | err = self->db->get(self->db, txn, &key, &data, 0); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2764 | MYDB_END_ALLOW_THREADS; |
| 2765 | FREE_DBT(key); |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 2766 | |
| 2767 | if (err == DB_BUFFER_SMALL || err == 0) { |
| 2768 | return PyInt_FromLong(1); |
| 2769 | } else if (err == DB_NOTFOUND || err == DB_KEYEMPTY) { |
| 2770 | return PyInt_FromLong(0); |
| 2771 | } |
| 2772 | |
| 2773 | makeDBError(err); |
| 2774 | return NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2775 | } |
| 2776 | |
| 2777 | |
| 2778 | #define _KEYS_LIST 1 |
| 2779 | #define _VALUES_LIST 2 |
| 2780 | #define _ITEMS_LIST 3 |
| 2781 | |
| 2782 | static PyObject* |
| 2783 | _DB_make_list(DBObject* self, DB_TXN* txn, int type) |
| 2784 | { |
| 2785 | int err, dbtype; |
| 2786 | DBT key; |
| 2787 | DBT data; |
| 2788 | DBC *cursor; |
| 2789 | PyObject* list; |
| 2790 | PyObject* item = NULL; |
| 2791 | |
| 2792 | CHECK_DB_NOT_CLOSED(self); |
| 2793 | CLEAR_DBT(key); |
| 2794 | CLEAR_DBT(data); |
| 2795 | |
| 2796 | dbtype = _DB_get_type(self); |
| 2797 | if (dbtype == -1) |
| 2798 | return NULL; |
| 2799 | |
| 2800 | list = PyList_New(0); |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2801 | if (list == NULL) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2802 | return NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2803 | |
| 2804 | /* get a cursor */ |
| 2805 | MYDB_BEGIN_ALLOW_THREADS; |
Gregory P. Smith | 442c9fc | 2004-09-04 01:36:59 +0000 | [diff] [blame] | 2806 | err = self->db->cursor(self->db, txn, &cursor, 0); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2807 | MYDB_END_ALLOW_THREADS; |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2808 | if (makeDBError(err)) { |
| 2809 | Py_DECREF(list); |
| 2810 | return NULL; |
| 2811 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2812 | |
| 2813 | if (CHECK_DBFLAG(self, DB_THREAD)) { |
| 2814 | key.flags = DB_DBT_REALLOC; |
| 2815 | data.flags = DB_DBT_REALLOC; |
| 2816 | } |
| 2817 | |
| 2818 | while (1) { /* use the cursor to traverse the DB, collecting items */ |
| 2819 | MYDB_BEGIN_ALLOW_THREADS; |
| 2820 | err = cursor->c_get(cursor, &key, &data, DB_NEXT); |
| 2821 | MYDB_END_ALLOW_THREADS; |
| 2822 | |
| 2823 | if (err) { |
| 2824 | /* for any error, break out of the loop */ |
| 2825 | break; |
| 2826 | } |
| 2827 | |
| 2828 | switch (type) { |
| 2829 | case _KEYS_LIST: |
| 2830 | switch(dbtype) { |
| 2831 | case DB_BTREE: |
| 2832 | case DB_HASH: |
| 2833 | default: |
| 2834 | item = PyString_FromStringAndSize((char*)key.data, key.size); |
| 2835 | break; |
| 2836 | case DB_RECNO: |
| 2837 | case DB_QUEUE: |
| 2838 | item = PyInt_FromLong(*((db_recno_t*)key.data)); |
| 2839 | break; |
| 2840 | } |
| 2841 | break; |
| 2842 | |
| 2843 | case _VALUES_LIST: |
| 2844 | item = PyString_FromStringAndSize((char*)data.data, data.size); |
| 2845 | break; |
| 2846 | |
| 2847 | case _ITEMS_LIST: |
| 2848 | switch(dbtype) { |
| 2849 | case DB_BTREE: |
| 2850 | case DB_HASH: |
| 2851 | default: |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2852 | item = Py_BuildValue("s#s#", key.data, key.size, data.data, |
| 2853 | data.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2854 | break; |
| 2855 | case DB_RECNO: |
| 2856 | case DB_QUEUE: |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 2857 | item = Py_BuildValue("is#", *((db_recno_t*)key.data), |
| 2858 | data.data, data.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2859 | break; |
| 2860 | } |
| 2861 | break; |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 2862 | default: |
| 2863 | PyErr_Format(PyExc_ValueError, "Unknown key type 0x%x", type); |
| 2864 | item = NULL; |
| 2865 | break; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2866 | } |
| 2867 | if (item == NULL) { |
| 2868 | Py_DECREF(list); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2869 | list = NULL; |
| 2870 | goto done; |
| 2871 | } |
| 2872 | PyList_Append(list, item); |
| 2873 | Py_DECREF(item); |
| 2874 | } |
| 2875 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 2876 | /* DB_NOTFOUND || DB_KEYEMPTY is okay, it means we got to the end */ |
| 2877 | if (err != DB_NOTFOUND && err != DB_KEYEMPTY && makeDBError(err)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2878 | Py_DECREF(list); |
| 2879 | list = NULL; |
| 2880 | } |
| 2881 | |
| 2882 | done: |
| 2883 | FREE_DBT(key); |
| 2884 | FREE_DBT(data); |
| 2885 | MYDB_BEGIN_ALLOW_THREADS; |
| 2886 | cursor->c_close(cursor); |
| 2887 | MYDB_END_ALLOW_THREADS; |
| 2888 | return list; |
| 2889 | } |
| 2890 | |
| 2891 | |
| 2892 | static PyObject* |
| 2893 | DB_keys(DBObject* self, PyObject* args) |
| 2894 | { |
| 2895 | PyObject* txnobj = NULL; |
| 2896 | DB_TXN *txn = NULL; |
| 2897 | |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 2898 | if (!PyArg_UnpackTuple(args, "keys", 0, 1, &txnobj)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2899 | return NULL; |
| 2900 | if (!checkTxnObj(txnobj, &txn)) |
| 2901 | return NULL; |
| 2902 | return _DB_make_list(self, txn, _KEYS_LIST); |
| 2903 | } |
| 2904 | |
| 2905 | |
| 2906 | static PyObject* |
| 2907 | DB_items(DBObject* self, PyObject* args) |
| 2908 | { |
| 2909 | PyObject* txnobj = NULL; |
| 2910 | DB_TXN *txn = NULL; |
| 2911 | |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 2912 | if (!PyArg_UnpackTuple(args, "items", 0, 1, &txnobj)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2913 | return NULL; |
| 2914 | if (!checkTxnObj(txnobj, &txn)) |
| 2915 | return NULL; |
| 2916 | return _DB_make_list(self, txn, _ITEMS_LIST); |
| 2917 | } |
| 2918 | |
| 2919 | |
| 2920 | static PyObject* |
| 2921 | DB_values(DBObject* self, PyObject* args) |
| 2922 | { |
| 2923 | PyObject* txnobj = NULL; |
| 2924 | DB_TXN *txn = NULL; |
| 2925 | |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 2926 | if (!PyArg_UnpackTuple(args, "values", 0, 1, &txnobj)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2927 | return NULL; |
| 2928 | if (!checkTxnObj(txnobj, &txn)) |
| 2929 | return NULL; |
| 2930 | return _DB_make_list(self, txn, _VALUES_LIST); |
| 2931 | } |
| 2932 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2933 | /* --------------------------------------------------------------------- */ |
| 2934 | /* DBCursor methods */ |
| 2935 | |
| 2936 | |
| 2937 | static PyObject* |
| 2938 | DBC_close(DBCursorObject* self, PyObject* args) |
| 2939 | { |
| 2940 | int err = 0; |
| 2941 | |
| 2942 | if (!PyArg_ParseTuple(args, ":close")) |
| 2943 | return NULL; |
| 2944 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 2945 | if (self->dbc != NULL) { |
| 2946 | MYDB_BEGIN_ALLOW_THREADS; |
| 2947 | err = self->dbc->c_close(self->dbc); |
| 2948 | self->dbc = NULL; |
| 2949 | MYDB_END_ALLOW_THREADS; |
| 2950 | } |
| 2951 | RETURN_IF_ERR(); |
| 2952 | RETURN_NONE(); |
| 2953 | } |
| 2954 | |
| 2955 | |
| 2956 | static PyObject* |
| 2957 | DBC_count(DBCursorObject* self, PyObject* args) |
| 2958 | { |
| 2959 | int err = 0; |
| 2960 | db_recno_t count; |
| 2961 | int flags = 0; |
| 2962 | |
| 2963 | if (!PyArg_ParseTuple(args, "|i:count", &flags)) |
| 2964 | return NULL; |
| 2965 | |
| 2966 | CHECK_CURSOR_NOT_CLOSED(self); |
| 2967 | |
| 2968 | MYDB_BEGIN_ALLOW_THREADS; |
| 2969 | err = self->dbc->c_count(self->dbc, &count, flags); |
| 2970 | MYDB_END_ALLOW_THREADS; |
| 2971 | RETURN_IF_ERR(); |
| 2972 | |
| 2973 | return PyInt_FromLong(count); |
| 2974 | } |
| 2975 | |
| 2976 | |
| 2977 | static PyObject* |
| 2978 | DBC_current(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 2979 | { |
| 2980 | return _DBCursor_get(self,DB_CURRENT,args,kwargs,"|iii:current"); |
| 2981 | } |
| 2982 | |
| 2983 | |
| 2984 | static PyObject* |
| 2985 | DBC_delete(DBCursorObject* self, PyObject* args) |
| 2986 | { |
| 2987 | int err, flags=0; |
| 2988 | |
| 2989 | if (!PyArg_ParseTuple(args, "|i:delete", &flags)) |
| 2990 | return NULL; |
| 2991 | |
| 2992 | CHECK_CURSOR_NOT_CLOSED(self); |
| 2993 | |
| 2994 | MYDB_BEGIN_ALLOW_THREADS; |
| 2995 | err = self->dbc->c_del(self->dbc, flags); |
| 2996 | MYDB_END_ALLOW_THREADS; |
| 2997 | RETURN_IF_ERR(); |
| 2998 | |
| 2999 | self->mydb->haveStat = 0; |
| 3000 | RETURN_NONE(); |
| 3001 | } |
| 3002 | |
| 3003 | |
| 3004 | static PyObject* |
| 3005 | DBC_dup(DBCursorObject* self, PyObject* args) |
| 3006 | { |
| 3007 | int err, flags =0; |
| 3008 | DBC* dbc = NULL; |
| 3009 | |
| 3010 | if (!PyArg_ParseTuple(args, "|i:dup", &flags)) |
| 3011 | return NULL; |
| 3012 | |
| 3013 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3014 | |
| 3015 | MYDB_BEGIN_ALLOW_THREADS; |
| 3016 | err = self->dbc->c_dup(self->dbc, &dbc, flags); |
| 3017 | MYDB_END_ALLOW_THREADS; |
| 3018 | RETURN_IF_ERR(); |
| 3019 | |
| 3020 | return (PyObject*) newDBCursorObject(dbc, self->mydb); |
| 3021 | } |
| 3022 | |
| 3023 | static PyObject* |
| 3024 | DBC_first(DBCursorObject* self, PyObject* args, PyObject* kwargs) |
| 3025 | { |
| 3026 | return _DBCursor_get(self,DB_FIRST,args,kwargs,"|iii:first"); |
| 3027 | } |
| 3028 | |
| 3029 | |
| 3030 | static PyObject* |
| 3031 | DBC_get(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3032 | { |
Martin v. Löwis | b2c7aff | 2002-11-23 11:26:07 +0000 | [diff] [blame] | 3033 | int err, flags=0; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3034 | PyObject* keyobj = NULL; |
| 3035 | PyObject* dataobj = NULL; |
| 3036 | PyObject* retval = NULL; |
| 3037 | int dlen = -1; |
| 3038 | int doff = -1; |
| 3039 | DBT key, data; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3040 | static char* kwnames[] = { "key","data", "flags", "dlen", "doff", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 3041 | NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3042 | |
| 3043 | CLEAR_DBT(key); |
| 3044 | CLEAR_DBT(data); |
| 3045 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|ii:get", &kwnames[2], |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3046 | &flags, &dlen, &doff)) |
| 3047 | { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3048 | PyErr_Clear(); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3049 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi|ii:get", |
| 3050 | &kwnames[1], |
| 3051 | &keyobj, &flags, &dlen, &doff)) |
| 3052 | { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3053 | PyErr_Clear(); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3054 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OOi|ii:get", |
| 3055 | kwnames, &keyobj, &dataobj, |
| 3056 | &flags, &dlen, &doff)) |
| 3057 | { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3058 | return NULL; |
| 3059 | } |
| 3060 | } |
| 3061 | } |
| 3062 | |
| 3063 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3064 | |
| 3065 | if (keyobj && !make_key_dbt(self->mydb, keyobj, &key, NULL)) |
| 3066 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3067 | if ( (dataobj && !make_dbt(dataobj, &data)) || |
| 3068 | (!add_partial_dbt(&data, dlen, doff)) ) |
| 3069 | { |
| 3070 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3071 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3072 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3073 | |
| 3074 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3075 | data.flags = DB_DBT_MALLOC; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3076 | if (!(key.flags & DB_DBT_REALLOC)) { |
| 3077 | key.flags |= DB_DBT_MALLOC; |
| 3078 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3079 | } |
| 3080 | |
| 3081 | MYDB_BEGIN_ALLOW_THREADS; |
| 3082 | err = self->dbc->c_get(self->dbc, &key, &data, flags); |
| 3083 | MYDB_END_ALLOW_THREADS; |
| 3084 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3085 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 3086 | && self->mydb->moduleFlags.getReturnsNone) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3087 | Py_INCREF(Py_None); |
| 3088 | retval = Py_None; |
| 3089 | } |
| 3090 | else if (makeDBError(err)) { |
| 3091 | retval = NULL; |
| 3092 | } |
| 3093 | else { |
| 3094 | switch (_DB_get_type(self->mydb)) { |
| 3095 | case -1: |
| 3096 | retval = NULL; |
| 3097 | break; |
| 3098 | case DB_BTREE: |
| 3099 | case DB_HASH: |
| 3100 | default: |
| 3101 | retval = Py_BuildValue("s#s#", key.data, key.size, |
| 3102 | data.data, data.size); |
| 3103 | break; |
| 3104 | case DB_RECNO: |
| 3105 | case DB_QUEUE: |
| 3106 | retval = Py_BuildValue("is#", *((db_recno_t*)key.data), |
| 3107 | data.data, data.size); |
| 3108 | break; |
| 3109 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3110 | FREE_DBT(data); |
| 3111 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3112 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3113 | return retval; |
| 3114 | } |
| 3115 | |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 3116 | #if (DBVER >= 33) |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3117 | static PyObject* |
| 3118 | DBC_pget(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3119 | { |
| 3120 | int err, flags=0; |
| 3121 | PyObject* keyobj = NULL; |
| 3122 | PyObject* dataobj = NULL; |
| 3123 | PyObject* retval = NULL; |
| 3124 | int dlen = -1; |
| 3125 | int doff = -1; |
| 3126 | DBT key, pkey, data; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3127 | static char* kwnames[] = { "key","data", "flags", "dlen", "doff", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 3128 | NULL }; |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3129 | |
| 3130 | CLEAR_DBT(key); |
| 3131 | CLEAR_DBT(data); |
| 3132 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|ii:pget", &kwnames[2], |
| 3133 | &flags, &dlen, &doff)) |
| 3134 | { |
| 3135 | PyErr_Clear(); |
| 3136 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi|ii:pget", |
| 3137 | &kwnames[1], |
| 3138 | &keyobj, &flags, &dlen, &doff)) |
| 3139 | { |
| 3140 | PyErr_Clear(); |
| 3141 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OOi|ii:pget", |
| 3142 | kwnames, &keyobj, &dataobj, |
| 3143 | &flags, &dlen, &doff)) |
| 3144 | { |
| 3145 | return NULL; |
| 3146 | } |
| 3147 | } |
| 3148 | } |
| 3149 | |
| 3150 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3151 | |
| 3152 | if (keyobj && !make_key_dbt(self->mydb, keyobj, &key, NULL)) |
| 3153 | return NULL; |
| 3154 | if ( (dataobj && !make_dbt(dataobj, &data)) || |
| 3155 | (!add_partial_dbt(&data, dlen, doff)) ) { |
| 3156 | FREE_DBT(key); |
| 3157 | return NULL; |
| 3158 | } |
| 3159 | |
| 3160 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3161 | data.flags = DB_DBT_MALLOC; |
| 3162 | if (!(key.flags & DB_DBT_REALLOC)) { |
| 3163 | key.flags |= DB_DBT_MALLOC; |
| 3164 | } |
| 3165 | } |
| 3166 | |
| 3167 | CLEAR_DBT(pkey); |
| 3168 | pkey.flags = DB_DBT_MALLOC; |
| 3169 | |
| 3170 | MYDB_BEGIN_ALLOW_THREADS; |
| 3171 | err = self->dbc->c_pget(self->dbc, &key, &pkey, &data, flags); |
| 3172 | MYDB_END_ALLOW_THREADS; |
| 3173 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3174 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 3175 | && self->mydb->moduleFlags.getReturnsNone) { |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3176 | Py_INCREF(Py_None); |
| 3177 | retval = Py_None; |
| 3178 | } |
| 3179 | else if (makeDBError(err)) { |
| 3180 | retval = NULL; |
| 3181 | } |
| 3182 | else { |
| 3183 | PyObject *pkeyObj; |
| 3184 | PyObject *dataObj; |
| 3185 | dataObj = PyString_FromStringAndSize(data.data, data.size); |
| 3186 | |
| 3187 | if (self->mydb->primaryDBType == DB_RECNO || |
| 3188 | self->mydb->primaryDBType == DB_QUEUE) |
Neal Norwitz | 40c6b47 | 2006-01-05 05:43:35 +0000 | [diff] [blame] | 3189 | pkeyObj = PyInt_FromLong(*(int *)pkey.data); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3190 | else |
| 3191 | pkeyObj = PyString_FromStringAndSize(pkey.data, pkey.size); |
| 3192 | |
Gregory P. Smith | 4e414d8 | 2006-01-24 19:55:02 +0000 | [diff] [blame] | 3193 | if (key.data && key.size) /* return key, pkey and data */ |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3194 | { |
| 3195 | PyObject *keyObj; |
| 3196 | int type = _DB_get_type(self->mydb); |
| 3197 | if (type == DB_RECNO || type == DB_QUEUE) |
Neal Norwitz | 40c6b47 | 2006-01-05 05:43:35 +0000 | [diff] [blame] | 3198 | keyObj = PyInt_FromLong(*(int *)key.data); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3199 | else |
| 3200 | keyObj = PyString_FromStringAndSize(key.data, key.size); |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 3201 | #if (PY_VERSION_HEX >= 0x02040000) |
Gregory P. Smith | 4e414d8 | 2006-01-24 19:55:02 +0000 | [diff] [blame] | 3202 | retval = PyTuple_Pack(3, keyObj, pkeyObj, dataObj); |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 3203 | #else |
| 3204 | retval = Py_BuildValue("OOO", keyObj, pkeyObj, dataObj); |
| 3205 | #endif |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 3206 | Py_DECREF(keyObj); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3207 | FREE_DBT(key); |
| 3208 | } |
| 3209 | else /* return just the pkey and data */ |
| 3210 | { |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 3211 | #if (PY_VERSION_HEX >= 0x02040000) |
Gregory P. Smith | 4e414d8 | 2006-01-24 19:55:02 +0000 | [diff] [blame] | 3212 | retval = PyTuple_Pack(2, pkeyObj, dataObj); |
Gregory P. Smith | fd049a6 | 2006-01-30 00:22:08 +0000 | [diff] [blame] | 3213 | #else |
| 3214 | retval = Py_BuildValue("OO", pkeyObj, dataObj); |
| 3215 | #endif |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3216 | } |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 3217 | Py_DECREF(dataObj); |
| 3218 | Py_DECREF(pkeyObj); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3219 | FREE_DBT(pkey); |
| 3220 | FREE_DBT(data); |
| 3221 | } |
| 3222 | /* the only time REALLOC should be set is if we used an integer |
| 3223 | * key that make_key_dbt malloc'd for us. always free these. */ |
| 3224 | if (key.flags & DB_DBT_REALLOC) { |
| 3225 | FREE_DBT(key); |
| 3226 | } |
| 3227 | return retval; |
| 3228 | } |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 3229 | #endif |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3230 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3231 | |
| 3232 | static PyObject* |
| 3233 | DBC_get_recno(DBCursorObject* self, PyObject* args) |
| 3234 | { |
| 3235 | int err; |
| 3236 | db_recno_t recno; |
| 3237 | DBT key; |
| 3238 | DBT data; |
| 3239 | |
| 3240 | if (!PyArg_ParseTuple(args, ":get_recno")) |
| 3241 | return NULL; |
| 3242 | |
| 3243 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3244 | |
| 3245 | CLEAR_DBT(key); |
| 3246 | CLEAR_DBT(data); |
| 3247 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3248 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 3249 | data.flags = DB_DBT_MALLOC; |
| 3250 | key.flags = DB_DBT_MALLOC; |
| 3251 | } |
| 3252 | |
| 3253 | MYDB_BEGIN_ALLOW_THREADS; |
| 3254 | err = self->dbc->c_get(self->dbc, &key, &data, DB_GET_RECNO); |
| 3255 | MYDB_END_ALLOW_THREADS; |
| 3256 | RETURN_IF_ERR(); |
| 3257 | |
| 3258 | recno = *((db_recno_t*)data.data); |
| 3259 | FREE_DBT(key); |
| 3260 | FREE_DBT(data); |
| 3261 | return PyInt_FromLong(recno); |
| 3262 | } |
| 3263 | |
| 3264 | |
| 3265 | static PyObject* |
| 3266 | DBC_last(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3267 | { |
| 3268 | return _DBCursor_get(self,DB_LAST,args,kwargs,"|iii:last"); |
| 3269 | } |
| 3270 | |
| 3271 | |
| 3272 | static PyObject* |
| 3273 | DBC_next(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3274 | { |
| 3275 | return _DBCursor_get(self,DB_NEXT,args,kwargs,"|iii:next"); |
| 3276 | } |
| 3277 | |
| 3278 | |
| 3279 | static PyObject* |
| 3280 | DBC_prev(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3281 | { |
| 3282 | return _DBCursor_get(self,DB_PREV,args,kwargs,"|iii:prev"); |
| 3283 | } |
| 3284 | |
| 3285 | |
| 3286 | static PyObject* |
| 3287 | DBC_put(DBCursorObject* self, PyObject* args, PyObject* kwargs) |
| 3288 | { |
| 3289 | int err, flags = 0; |
| 3290 | PyObject* keyobj, *dataobj; |
| 3291 | DBT key, data; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3292 | static char* kwnames[] = { "key", "data", "flags", "dlen", "doff", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 3293 | NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3294 | int dlen = -1; |
| 3295 | int doff = -1; |
| 3296 | |
| 3297 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|iii:put", kwnames, |
| 3298 | &keyobj, &dataobj, &flags, &dlen, &doff)) |
| 3299 | return NULL; |
| 3300 | |
| 3301 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3302 | |
| 3303 | if (!make_key_dbt(self->mydb, keyobj, &key, NULL)) |
| 3304 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3305 | if (!make_dbt(dataobj, &data) || |
| 3306 | !add_partial_dbt(&data, dlen, doff) ) |
| 3307 | { |
| 3308 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3309 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3310 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3311 | |
| 3312 | MYDB_BEGIN_ALLOW_THREADS; |
| 3313 | err = self->dbc->c_put(self->dbc, &key, &data, flags); |
| 3314 | MYDB_END_ALLOW_THREADS; |
| 3315 | FREE_DBT(key); |
| 3316 | RETURN_IF_ERR(); |
| 3317 | self->mydb->haveStat = 0; |
| 3318 | RETURN_NONE(); |
| 3319 | } |
| 3320 | |
| 3321 | |
| 3322 | static PyObject* |
| 3323 | DBC_set(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3324 | { |
| 3325 | int err, flags = 0; |
| 3326 | DBT key, data; |
| 3327 | PyObject* retval, *keyobj; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3328 | static char* kwnames[] = { "key", "flags", "dlen", "doff", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3329 | int dlen = -1; |
| 3330 | int doff = -1; |
| 3331 | |
| 3332 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|iii:set", kwnames, |
| 3333 | &keyobj, &flags, &dlen, &doff)) |
| 3334 | return NULL; |
| 3335 | |
| 3336 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3337 | |
| 3338 | if (!make_key_dbt(self->mydb, keyobj, &key, NULL)) |
| 3339 | return NULL; |
| 3340 | |
| 3341 | CLEAR_DBT(data); |
| 3342 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3343 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 3344 | data.flags = DB_DBT_MALLOC; |
| 3345 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3346 | if (!add_partial_dbt(&data, dlen, doff)) { |
| 3347 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3348 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3349 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3350 | |
| 3351 | MYDB_BEGIN_ALLOW_THREADS; |
| 3352 | err = self->dbc->c_get(self->dbc, &key, &data, flags|DB_SET); |
| 3353 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3354 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 3355 | && self->mydb->moduleFlags.cursorSetReturnsNone) { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3356 | Py_INCREF(Py_None); |
| 3357 | retval = Py_None; |
| 3358 | } |
| 3359 | else if (makeDBError(err)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3360 | retval = NULL; |
| 3361 | } |
| 3362 | else { |
| 3363 | switch (_DB_get_type(self->mydb)) { |
| 3364 | case -1: |
| 3365 | retval = NULL; |
| 3366 | break; |
| 3367 | case DB_BTREE: |
| 3368 | case DB_HASH: |
| 3369 | default: |
| 3370 | retval = Py_BuildValue("s#s#", key.data, key.size, |
| 3371 | data.data, data.size); |
| 3372 | break; |
| 3373 | case DB_RECNO: |
| 3374 | case DB_QUEUE: |
| 3375 | retval = Py_BuildValue("is#", *((db_recno_t*)key.data), |
| 3376 | data.data, data.size); |
| 3377 | break; |
| 3378 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3379 | FREE_DBT(data); |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3380 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3381 | } |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3382 | /* the only time REALLOC should be set is if we used an integer |
| 3383 | * key that make_key_dbt malloc'd for us. always free these. */ |
| 3384 | if (key.flags & DB_DBT_REALLOC) { |
| 3385 | FREE_DBT(key); |
| 3386 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3387 | |
| 3388 | return retval; |
| 3389 | } |
| 3390 | |
| 3391 | |
| 3392 | static PyObject* |
| 3393 | DBC_set_range(DBCursorObject* self, PyObject* args, PyObject* kwargs) |
| 3394 | { |
| 3395 | int err, flags = 0; |
| 3396 | DBT key, data; |
| 3397 | PyObject* retval, *keyobj; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3398 | static char* kwnames[] = { "key", "flags", "dlen", "doff", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3399 | int dlen = -1; |
| 3400 | int doff = -1; |
| 3401 | |
| 3402 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|iii:set_range", kwnames, |
| 3403 | &keyobj, &flags, &dlen, &doff)) |
| 3404 | return NULL; |
| 3405 | |
| 3406 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3407 | |
| 3408 | if (!make_key_dbt(self->mydb, keyobj, &key, NULL)) |
| 3409 | return NULL; |
| 3410 | |
| 3411 | CLEAR_DBT(data); |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3412 | if (!add_partial_dbt(&data, dlen, doff)) { |
| 3413 | FREE_DBT(key); |
| 3414 | return NULL; |
| 3415 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3416 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3417 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3418 | data.flags |= DB_DBT_MALLOC; |
| 3419 | /* only BTREE databases will return anything in the key */ |
| 3420 | if (!(key.flags & DB_DBT_REALLOC) && _DB_get_type(self->mydb) == DB_BTREE) { |
| 3421 | key.flags |= DB_DBT_MALLOC; |
| 3422 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3423 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3424 | MYDB_BEGIN_ALLOW_THREADS; |
| 3425 | err = self->dbc->c_get(self->dbc, &key, &data, flags|DB_SET_RANGE); |
| 3426 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3427 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 3428 | && self->mydb->moduleFlags.cursorSetReturnsNone) { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3429 | Py_INCREF(Py_None); |
| 3430 | retval = Py_None; |
| 3431 | } |
| 3432 | else if (makeDBError(err)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3433 | retval = NULL; |
| 3434 | } |
| 3435 | else { |
| 3436 | switch (_DB_get_type(self->mydb)) { |
| 3437 | case -1: |
| 3438 | retval = NULL; |
| 3439 | break; |
| 3440 | case DB_BTREE: |
| 3441 | case DB_HASH: |
| 3442 | default: |
| 3443 | retval = Py_BuildValue("s#s#", key.data, key.size, |
| 3444 | data.data, data.size); |
| 3445 | break; |
| 3446 | case DB_RECNO: |
| 3447 | case DB_QUEUE: |
| 3448 | retval = Py_BuildValue("is#", *((db_recno_t*)key.data), |
| 3449 | data.data, data.size); |
| 3450 | break; |
| 3451 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3452 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3453 | FREE_DBT(data); |
| 3454 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3455 | /* the only time REALLOC should be set is if we used an integer |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 3456 | * key that make_key_dbt malloc'd for us. always free these. */ |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3457 | if (key.flags & DB_DBT_REALLOC) { |
| 3458 | FREE_DBT(key); |
| 3459 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3460 | |
| 3461 | return retval; |
| 3462 | } |
| 3463 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3464 | static PyObject* |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3465 | _DBC_get_set_both(DBCursorObject* self, PyObject* keyobj, PyObject* dataobj, |
| 3466 | int flags, unsigned int returnsNone) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3467 | { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3468 | int err; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3469 | DBT key, data; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3470 | PyObject* retval; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3471 | |
Gregory P. Smith | 7441e65 | 2003-11-03 21:35:31 +0000 | [diff] [blame] | 3472 | /* the caller did this: CHECK_CURSOR_NOT_CLOSED(self); */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3473 | if (!make_key_dbt(self->mydb, keyobj, &key, NULL)) |
| 3474 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3475 | if (!make_dbt(dataobj, &data)) { |
| 3476 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3477 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3478 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3479 | |
| 3480 | MYDB_BEGIN_ALLOW_THREADS; |
| 3481 | err = self->dbc->c_get(self->dbc, &key, &data, flags|DB_GET_BOTH); |
| 3482 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3483 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) && returnsNone) { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3484 | Py_INCREF(Py_None); |
| 3485 | retval = Py_None; |
| 3486 | } |
| 3487 | else if (makeDBError(err)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3488 | retval = NULL; |
| 3489 | } |
| 3490 | else { |
| 3491 | switch (_DB_get_type(self->mydb)) { |
| 3492 | case -1: |
| 3493 | retval = NULL; |
| 3494 | break; |
| 3495 | case DB_BTREE: |
| 3496 | case DB_HASH: |
| 3497 | default: |
| 3498 | retval = Py_BuildValue("s#s#", key.data, key.size, |
| 3499 | data.data, data.size); |
| 3500 | break; |
| 3501 | case DB_RECNO: |
| 3502 | case DB_QUEUE: |
| 3503 | retval = Py_BuildValue("is#", *((db_recno_t*)key.data), |
| 3504 | data.data, data.size); |
| 3505 | break; |
| 3506 | } |
| 3507 | } |
| 3508 | |
| 3509 | FREE_DBT(key); |
| 3510 | return retval; |
| 3511 | } |
| 3512 | |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3513 | static PyObject* |
| 3514 | DBC_get_both(DBCursorObject* self, PyObject* args) |
| 3515 | { |
| 3516 | int flags=0; |
| 3517 | PyObject *keyobj, *dataobj; |
| 3518 | |
| 3519 | if (!PyArg_ParseTuple(args, "OO|i:get_both", &keyobj, &dataobj, &flags)) |
| 3520 | return NULL; |
| 3521 | |
Gregory P. Smith | 7441e65 | 2003-11-03 21:35:31 +0000 | [diff] [blame] | 3522 | /* if the cursor is closed, self->mydb may be invalid */ |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3523 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3524 | |
| 3525 | return _DBC_get_set_both(self, keyobj, dataobj, flags, |
| 3526 | self->mydb->moduleFlags.getReturnsNone); |
| 3527 | } |
| 3528 | |
Gregory P. Smith | be0db8b | 2003-10-01 06:48:51 +0000 | [diff] [blame] | 3529 | /* Return size of entry */ |
| 3530 | static PyObject* |
| 3531 | DBC_get_current_size(DBCursorObject* self, PyObject* args) |
| 3532 | { |
| 3533 | int err, flags=DB_CURRENT; |
| 3534 | PyObject* retval = NULL; |
| 3535 | DBT key, data; |
| 3536 | |
| 3537 | if (!PyArg_ParseTuple(args, ":get_current_size")) |
| 3538 | return NULL; |
| 3539 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3540 | CLEAR_DBT(key); |
| 3541 | CLEAR_DBT(data); |
| 3542 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 3543 | /* We don't allocate any memory, forcing a DB_BUFFER_SMALL error and thus |
Gregory P. Smith | be0db8b | 2003-10-01 06:48:51 +0000 | [diff] [blame] | 3544 | getting the record size. */ |
| 3545 | data.flags = DB_DBT_USERMEM; |
| 3546 | data.ulen = 0; |
| 3547 | MYDB_BEGIN_ALLOW_THREADS; |
| 3548 | err = self->dbc->c_get(self->dbc, &key, &data, flags); |
| 3549 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 3550 | if (err == DB_BUFFER_SMALL || !err) { |
| 3551 | /* DB_BUFFER_SMALL means positive size, !err means zero length value */ |
Gregory P. Smith | be0db8b | 2003-10-01 06:48:51 +0000 | [diff] [blame] | 3552 | retval = PyInt_FromLong((long)data.size); |
| 3553 | err = 0; |
| 3554 | } |
| 3555 | |
| 3556 | FREE_DBT(key); |
| 3557 | FREE_DBT(data); |
| 3558 | RETURN_IF_ERR(); |
| 3559 | return retval; |
| 3560 | } |
| 3561 | |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3562 | static PyObject* |
| 3563 | DBC_set_both(DBCursorObject* self, PyObject* args) |
| 3564 | { |
| 3565 | int flags=0; |
| 3566 | PyObject *keyobj, *dataobj; |
| 3567 | |
| 3568 | if (!PyArg_ParseTuple(args, "OO|i:set_both", &keyobj, &dataobj, &flags)) |
| 3569 | return NULL; |
| 3570 | |
Gregory P. Smith | 7441e65 | 2003-11-03 21:35:31 +0000 | [diff] [blame] | 3571 | /* if the cursor is closed, self->mydb may be invalid */ |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3572 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3573 | |
| 3574 | return _DBC_get_set_both(self, keyobj, dataobj, flags, |
| 3575 | self->mydb->moduleFlags.cursorSetReturnsNone); |
| 3576 | } |
| 3577 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3578 | |
| 3579 | static PyObject* |
| 3580 | DBC_set_recno(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3581 | { |
| 3582 | int err, irecno, flags=0; |
| 3583 | db_recno_t recno; |
| 3584 | DBT key, data; |
| 3585 | PyObject* retval; |
| 3586 | int dlen = -1; |
| 3587 | int doff = -1; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3588 | static char* kwnames[] = { "recno","flags", "dlen", "doff", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3589 | |
| 3590 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|iii:set_recno", kwnames, |
| 3591 | &irecno, &flags, &dlen, &doff)) |
| 3592 | return NULL; |
| 3593 | |
| 3594 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3595 | |
| 3596 | CLEAR_DBT(key); |
| 3597 | recno = (db_recno_t) irecno; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3598 | /* use allocated space so DB will be able to realloc room for the real |
| 3599 | * key */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3600 | key.data = malloc(sizeof(db_recno_t)); |
| 3601 | if (key.data == NULL) { |
| 3602 | PyErr_SetString(PyExc_MemoryError, "Key memory allocation failed"); |
| 3603 | return NULL; |
| 3604 | } |
| 3605 | key.size = sizeof(db_recno_t); |
| 3606 | key.ulen = key.size; |
| 3607 | memcpy(key.data, &recno, sizeof(db_recno_t)); |
| 3608 | key.flags = DB_DBT_REALLOC; |
| 3609 | |
| 3610 | CLEAR_DBT(data); |
| 3611 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3612 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 3613 | data.flags = DB_DBT_MALLOC; |
| 3614 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3615 | if (!add_partial_dbt(&data, dlen, doff)) { |
| 3616 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3617 | return NULL; |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3618 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3619 | |
| 3620 | MYDB_BEGIN_ALLOW_THREADS; |
| 3621 | err = self->dbc->c_get(self->dbc, &key, &data, flags|DB_SET_RECNO); |
| 3622 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3623 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 3624 | && self->mydb->moduleFlags.cursorSetReturnsNone) { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3625 | Py_INCREF(Py_None); |
| 3626 | retval = Py_None; |
| 3627 | } |
| 3628 | else if (makeDBError(err)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3629 | retval = NULL; |
| 3630 | } |
| 3631 | else { /* Can only be used for BTrees, so no need to return int key */ |
| 3632 | retval = Py_BuildValue("s#s#", key.data, key.size, |
| 3633 | data.data, data.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3634 | FREE_DBT(data); |
| 3635 | } |
Gregory P. Smith | dc5af70 | 2004-06-27 23:32:34 +0000 | [diff] [blame] | 3636 | FREE_DBT(key); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3637 | |
| 3638 | return retval; |
| 3639 | } |
| 3640 | |
| 3641 | |
| 3642 | static PyObject* |
| 3643 | DBC_consume(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3644 | { |
| 3645 | return _DBCursor_get(self,DB_CONSUME,args,kwargs,"|iii:consume"); |
| 3646 | } |
| 3647 | |
| 3648 | |
| 3649 | static PyObject* |
| 3650 | DBC_next_dup(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3651 | { |
| 3652 | return _DBCursor_get(self,DB_NEXT_DUP,args,kwargs,"|iii:next_dup"); |
| 3653 | } |
| 3654 | |
| 3655 | |
| 3656 | static PyObject* |
| 3657 | DBC_next_nodup(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3658 | { |
| 3659 | return _DBCursor_get(self,DB_NEXT_NODUP,args,kwargs,"|iii:next_nodup"); |
| 3660 | } |
| 3661 | |
| 3662 | |
| 3663 | static PyObject* |
| 3664 | DBC_prev_nodup(DBCursorObject* self, PyObject* args, PyObject *kwargs) |
| 3665 | { |
| 3666 | return _DBCursor_get(self,DB_PREV_NODUP,args,kwargs,"|iii:prev_nodup"); |
| 3667 | } |
| 3668 | |
| 3669 | |
| 3670 | static PyObject* |
| 3671 | DBC_join_item(DBCursorObject* self, PyObject* args) |
| 3672 | { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3673 | int err, flags=0; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3674 | DBT key, data; |
| 3675 | PyObject* retval; |
| 3676 | |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3677 | if (!PyArg_ParseTuple(args, "|i:join_item", &flags)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3678 | return NULL; |
| 3679 | |
| 3680 | CHECK_CURSOR_NOT_CLOSED(self); |
| 3681 | |
| 3682 | CLEAR_DBT(key); |
| 3683 | CLEAR_DBT(data); |
| 3684 | if (CHECK_DBFLAG(self->mydb, DB_THREAD)) { |
| 3685 | /* Tell BerkeleyDB to malloc the return value (thread safe) */ |
| 3686 | key.flags = DB_DBT_MALLOC; |
| 3687 | } |
| 3688 | |
| 3689 | MYDB_BEGIN_ALLOW_THREADS; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3690 | err = self->dbc->c_get(self->dbc, &key, &data, flags | DB_JOIN_ITEM); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3691 | MYDB_END_ALLOW_THREADS; |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3692 | if ((err == DB_NOTFOUND || err == DB_KEYEMPTY) |
| 3693 | && self->mydb->moduleFlags.getReturnsNone) { |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 3694 | Py_INCREF(Py_None); |
| 3695 | retval = Py_None; |
| 3696 | } |
| 3697 | else if (makeDBError(err)) { |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3698 | retval = NULL; |
| 3699 | } |
| 3700 | else { |
Gregory P. Smith | 84261d2 | 2003-07-07 19:06:45 +0000 | [diff] [blame] | 3701 | retval = Py_BuildValue("s#", key.data, key.size); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3702 | FREE_DBT(key); |
| 3703 | } |
| 3704 | |
| 3705 | return retval; |
| 3706 | } |
| 3707 | |
| 3708 | |
| 3709 | |
| 3710 | /* --------------------------------------------------------------------- */ |
| 3711 | /* DBEnv methods */ |
| 3712 | |
| 3713 | |
| 3714 | static PyObject* |
| 3715 | DBEnv_close(DBEnvObject* self, PyObject* args) |
| 3716 | { |
| 3717 | int err, flags = 0; |
| 3718 | |
| 3719 | if (!PyArg_ParseTuple(args, "|i:close", &flags)) |
| 3720 | return NULL; |
| 3721 | if (!self->closed) { /* Don't close more than once */ |
| 3722 | MYDB_BEGIN_ALLOW_THREADS; |
| 3723 | err = self->db_env->close(self->db_env, flags); |
| 3724 | MYDB_END_ALLOW_THREADS; |
| 3725 | /* after calling DBEnv->close, regardless of error, this DBEnv |
| 3726 | * may not be accessed again (BerkeleyDB docs). */ |
| 3727 | self->closed = 1; |
| 3728 | self->db_env = NULL; |
| 3729 | RETURN_IF_ERR(); |
| 3730 | } |
| 3731 | RETURN_NONE(); |
| 3732 | } |
| 3733 | |
| 3734 | |
| 3735 | static PyObject* |
| 3736 | DBEnv_open(DBEnvObject* self, PyObject* args) |
| 3737 | { |
| 3738 | int err, flags=0, mode=0660; |
| 3739 | char *db_home; |
| 3740 | |
| 3741 | if (!PyArg_ParseTuple(args, "z|ii:open", &db_home, &flags, &mode)) |
| 3742 | return NULL; |
| 3743 | |
| 3744 | CHECK_ENV_NOT_CLOSED(self); |
| 3745 | |
| 3746 | MYDB_BEGIN_ALLOW_THREADS; |
| 3747 | err = self->db_env->open(self->db_env, db_home, flags, mode); |
| 3748 | MYDB_END_ALLOW_THREADS; |
| 3749 | RETURN_IF_ERR(); |
| 3750 | self->closed = 0; |
| 3751 | self->flags = flags; |
| 3752 | RETURN_NONE(); |
| 3753 | } |
| 3754 | |
| 3755 | |
| 3756 | static PyObject* |
| 3757 | DBEnv_remove(DBEnvObject* self, PyObject* args) |
| 3758 | { |
| 3759 | int err, flags=0; |
| 3760 | char *db_home; |
| 3761 | |
| 3762 | if (!PyArg_ParseTuple(args, "s|i:remove", &db_home, &flags)) |
| 3763 | return NULL; |
| 3764 | CHECK_ENV_NOT_CLOSED(self); |
| 3765 | MYDB_BEGIN_ALLOW_THREADS; |
| 3766 | err = self->db_env->remove(self->db_env, db_home, flags); |
| 3767 | MYDB_END_ALLOW_THREADS; |
| 3768 | RETURN_IF_ERR(); |
| 3769 | RETURN_NONE(); |
| 3770 | } |
| 3771 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3772 | #if (DBVER >= 41) |
| 3773 | static PyObject* |
| 3774 | DBEnv_dbremove(DBEnvObject* self, PyObject* args, PyObject* kwargs) |
| 3775 | { |
| 3776 | int err; |
| 3777 | u_int32_t flags=0; |
| 3778 | char *file = NULL; |
| 3779 | char *database = NULL; |
| 3780 | PyObject *txnobj = NULL; |
| 3781 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3782 | static char* kwnames[] = { "file", "database", "txn", "flags", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 3783 | NULL }; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3784 | |
| 3785 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ss|Oi:dbremove", kwnames, |
| 3786 | &file, &database, &txnobj, &flags)) { |
| 3787 | return NULL; |
| 3788 | } |
| 3789 | if (!checkTxnObj(txnobj, &txn)) { |
| 3790 | return NULL; |
| 3791 | } |
| 3792 | CHECK_ENV_NOT_CLOSED(self); |
| 3793 | MYDB_BEGIN_ALLOW_THREADS; |
| 3794 | err = self->db_env->dbremove(self->db_env, txn, file, database, flags); |
| 3795 | MYDB_END_ALLOW_THREADS; |
| 3796 | RETURN_IF_ERR(); |
| 3797 | RETURN_NONE(); |
| 3798 | } |
| 3799 | |
| 3800 | static PyObject* |
| 3801 | DBEnv_dbrename(DBEnvObject* self, PyObject* args, PyObject* kwargs) |
| 3802 | { |
| 3803 | int err; |
| 3804 | u_int32_t flags=0; |
| 3805 | char *file = NULL; |
| 3806 | char *database = NULL; |
| 3807 | char *newname = NULL; |
| 3808 | PyObject *txnobj = NULL; |
| 3809 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3810 | static char* kwnames[] = { "file", "database", "newname", "txn", |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 3811 | "flags", NULL }; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3812 | |
| 3813 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "sss|Oi:dbrename", kwnames, |
| 3814 | &file, &database, &newname, &txnobj, &flags)) { |
| 3815 | return NULL; |
| 3816 | } |
| 3817 | if (!checkTxnObj(txnobj, &txn)) { |
| 3818 | return NULL; |
| 3819 | } |
| 3820 | CHECK_ENV_NOT_CLOSED(self); |
| 3821 | MYDB_BEGIN_ALLOW_THREADS; |
| 3822 | err = self->db_env->dbrename(self->db_env, txn, file, database, newname, |
| 3823 | flags); |
| 3824 | MYDB_END_ALLOW_THREADS; |
| 3825 | RETURN_IF_ERR(); |
| 3826 | RETURN_NONE(); |
| 3827 | } |
| 3828 | |
| 3829 | static PyObject* |
| 3830 | DBEnv_set_encrypt(DBEnvObject* self, PyObject* args, PyObject* kwargs) |
| 3831 | { |
| 3832 | int err; |
| 3833 | u_int32_t flags=0; |
| 3834 | char *passwd = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3835 | static char* kwnames[] = { "passwd", "flags", NULL }; |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 3836 | |
| 3837 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|i:set_encrypt", kwnames, |
| 3838 | &passwd, &flags)) { |
| 3839 | return NULL; |
| 3840 | } |
| 3841 | |
| 3842 | MYDB_BEGIN_ALLOW_THREADS; |
| 3843 | err = self->db_env->set_encrypt(self->db_env, passwd, flags); |
| 3844 | MYDB_END_ALLOW_THREADS; |
| 3845 | |
| 3846 | RETURN_IF_ERR(); |
| 3847 | RETURN_NONE(); |
| 3848 | } |
| 3849 | #endif /* DBVER >= 41 */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3850 | |
Gregory P. Smith | fe11d3e | 2003-03-27 17:23:29 +0000 | [diff] [blame] | 3851 | #if (DBVER >= 40) |
| 3852 | static PyObject* |
| 3853 | DBEnv_set_timeout(DBEnvObject* self, PyObject* args, PyObject* kwargs) |
| 3854 | { |
| 3855 | int err; |
| 3856 | u_int32_t flags=0; |
| 3857 | u_int32_t timeout = 0; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 3858 | static char* kwnames[] = { "timeout", "flags", NULL }; |
Gregory P. Smith | fe11d3e | 2003-03-27 17:23:29 +0000 | [diff] [blame] | 3859 | |
| 3860 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ii:set_timeout", kwnames, |
| 3861 | &timeout, &flags)) { |
| 3862 | return NULL; |
| 3863 | } |
| 3864 | |
| 3865 | MYDB_BEGIN_ALLOW_THREADS; |
| 3866 | err = self->db_env->set_timeout(self->db_env, (db_timeout_t)timeout, flags); |
| 3867 | MYDB_END_ALLOW_THREADS; |
| 3868 | |
| 3869 | RETURN_IF_ERR(); |
| 3870 | RETURN_NONE(); |
| 3871 | } |
| 3872 | #endif /* DBVER >= 40 */ |
| 3873 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3874 | static PyObject* |
Gregory P. Smith | 6676f6e | 2003-08-28 21:50:30 +0000 | [diff] [blame] | 3875 | DBEnv_set_shm_key(DBEnvObject* self, PyObject* args) |
| 3876 | { |
| 3877 | int err; |
| 3878 | long shm_key = 0; |
| 3879 | |
| 3880 | if (!PyArg_ParseTuple(args, "l:set_shm_key", &shm_key)) |
| 3881 | return NULL; |
| 3882 | CHECK_ENV_NOT_CLOSED(self); |
| 3883 | |
| 3884 | err = self->db_env->set_shm_key(self->db_env, shm_key); |
| 3885 | RETURN_IF_ERR(); |
| 3886 | RETURN_NONE(); |
| 3887 | } |
| 3888 | |
| 3889 | static PyObject* |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3890 | DBEnv_set_cachesize(DBEnvObject* self, PyObject* args) |
| 3891 | { |
| 3892 | int err, gbytes=0, bytes=0, ncache=0; |
| 3893 | |
| 3894 | if (!PyArg_ParseTuple(args, "ii|i:set_cachesize", |
| 3895 | &gbytes, &bytes, &ncache)) |
| 3896 | return NULL; |
| 3897 | CHECK_ENV_NOT_CLOSED(self); |
| 3898 | |
| 3899 | MYDB_BEGIN_ALLOW_THREADS; |
| 3900 | err = self->db_env->set_cachesize(self->db_env, gbytes, bytes, ncache); |
| 3901 | MYDB_END_ALLOW_THREADS; |
| 3902 | RETURN_IF_ERR(); |
| 3903 | RETURN_NONE(); |
| 3904 | } |
| 3905 | |
| 3906 | |
| 3907 | #if (DBVER >= 32) |
| 3908 | static PyObject* |
| 3909 | DBEnv_set_flags(DBEnvObject* self, PyObject* args) |
| 3910 | { |
| 3911 | int err, flags=0, onoff=0; |
| 3912 | |
| 3913 | if (!PyArg_ParseTuple(args, "ii:set_flags", |
| 3914 | &flags, &onoff)) |
| 3915 | return NULL; |
| 3916 | CHECK_ENV_NOT_CLOSED(self); |
| 3917 | |
| 3918 | MYDB_BEGIN_ALLOW_THREADS; |
| 3919 | err = self->db_env->set_flags(self->db_env, flags, onoff); |
| 3920 | MYDB_END_ALLOW_THREADS; |
| 3921 | RETURN_IF_ERR(); |
| 3922 | RETURN_NONE(); |
| 3923 | } |
| 3924 | #endif |
| 3925 | |
| 3926 | |
| 3927 | static PyObject* |
| 3928 | DBEnv_set_data_dir(DBEnvObject* self, PyObject* args) |
| 3929 | { |
| 3930 | int err; |
| 3931 | char *dir; |
| 3932 | |
| 3933 | if (!PyArg_ParseTuple(args, "s:set_data_dir", &dir)) |
| 3934 | return NULL; |
| 3935 | CHECK_ENV_NOT_CLOSED(self); |
| 3936 | |
| 3937 | MYDB_BEGIN_ALLOW_THREADS; |
| 3938 | err = self->db_env->set_data_dir(self->db_env, dir); |
| 3939 | MYDB_END_ALLOW_THREADS; |
| 3940 | RETURN_IF_ERR(); |
| 3941 | RETURN_NONE(); |
| 3942 | } |
| 3943 | |
| 3944 | |
| 3945 | static PyObject* |
| 3946 | DBEnv_set_lg_bsize(DBEnvObject* self, PyObject* args) |
| 3947 | { |
| 3948 | int err, lg_bsize; |
| 3949 | |
| 3950 | if (!PyArg_ParseTuple(args, "i:set_lg_bsize", &lg_bsize)) |
| 3951 | return NULL; |
| 3952 | CHECK_ENV_NOT_CLOSED(self); |
| 3953 | |
| 3954 | MYDB_BEGIN_ALLOW_THREADS; |
| 3955 | err = self->db_env->set_lg_bsize(self->db_env, lg_bsize); |
| 3956 | MYDB_END_ALLOW_THREADS; |
| 3957 | RETURN_IF_ERR(); |
| 3958 | RETURN_NONE(); |
| 3959 | } |
| 3960 | |
| 3961 | |
| 3962 | static PyObject* |
| 3963 | DBEnv_set_lg_dir(DBEnvObject* self, PyObject* args) |
| 3964 | { |
| 3965 | int err; |
| 3966 | char *dir; |
| 3967 | |
| 3968 | if (!PyArg_ParseTuple(args, "s:set_lg_dir", &dir)) |
| 3969 | return NULL; |
| 3970 | CHECK_ENV_NOT_CLOSED(self); |
| 3971 | |
| 3972 | MYDB_BEGIN_ALLOW_THREADS; |
| 3973 | err = self->db_env->set_lg_dir(self->db_env, dir); |
| 3974 | MYDB_END_ALLOW_THREADS; |
| 3975 | RETURN_IF_ERR(); |
| 3976 | RETURN_NONE(); |
| 3977 | } |
| 3978 | |
| 3979 | static PyObject* |
| 3980 | DBEnv_set_lg_max(DBEnvObject* self, PyObject* args) |
| 3981 | { |
| 3982 | int err, lg_max; |
| 3983 | |
| 3984 | if (!PyArg_ParseTuple(args, "i:set_lg_max", &lg_max)) |
| 3985 | return NULL; |
| 3986 | CHECK_ENV_NOT_CLOSED(self); |
| 3987 | |
| 3988 | MYDB_BEGIN_ALLOW_THREADS; |
| 3989 | err = self->db_env->set_lg_max(self->db_env, lg_max); |
| 3990 | MYDB_END_ALLOW_THREADS; |
| 3991 | RETURN_IF_ERR(); |
| 3992 | RETURN_NONE(); |
| 3993 | } |
| 3994 | |
| 3995 | |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 3996 | #if (DBVER >= 33) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 3997 | static PyObject* |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 3998 | DBEnv_set_lg_regionmax(DBEnvObject* self, PyObject* args) |
| 3999 | { |
| 4000 | int err, lg_max; |
| 4001 | |
| 4002 | if (!PyArg_ParseTuple(args, "i:set_lg_regionmax", &lg_max)) |
| 4003 | return NULL; |
| 4004 | CHECK_ENV_NOT_CLOSED(self); |
| 4005 | |
| 4006 | MYDB_BEGIN_ALLOW_THREADS; |
| 4007 | err = self->db_env->set_lg_regionmax(self->db_env, lg_max); |
| 4008 | MYDB_END_ALLOW_THREADS; |
| 4009 | RETURN_IF_ERR(); |
| 4010 | RETURN_NONE(); |
| 4011 | } |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 4012 | #endif |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 4013 | |
| 4014 | |
| 4015 | static PyObject* |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4016 | DBEnv_set_lk_detect(DBEnvObject* self, PyObject* args) |
| 4017 | { |
| 4018 | int err, lk_detect; |
| 4019 | |
| 4020 | if (!PyArg_ParseTuple(args, "i:set_lk_detect", &lk_detect)) |
| 4021 | return NULL; |
| 4022 | CHECK_ENV_NOT_CLOSED(self); |
| 4023 | |
| 4024 | MYDB_BEGIN_ALLOW_THREADS; |
| 4025 | err = self->db_env->set_lk_detect(self->db_env, lk_detect); |
| 4026 | MYDB_END_ALLOW_THREADS; |
| 4027 | RETURN_IF_ERR(); |
| 4028 | RETURN_NONE(); |
| 4029 | } |
| 4030 | |
| 4031 | |
| 4032 | static PyObject* |
| 4033 | DBEnv_set_lk_max(DBEnvObject* self, PyObject* args) |
| 4034 | { |
| 4035 | int err, max; |
| 4036 | |
| 4037 | if (!PyArg_ParseTuple(args, "i:set_lk_max", &max)) |
| 4038 | return NULL; |
| 4039 | CHECK_ENV_NOT_CLOSED(self); |
| 4040 | |
| 4041 | MYDB_BEGIN_ALLOW_THREADS; |
| 4042 | err = self->db_env->set_lk_max(self->db_env, max); |
| 4043 | MYDB_END_ALLOW_THREADS; |
| 4044 | RETURN_IF_ERR(); |
| 4045 | RETURN_NONE(); |
| 4046 | } |
| 4047 | |
| 4048 | |
| 4049 | #if (DBVER >= 32) |
| 4050 | |
| 4051 | static PyObject* |
| 4052 | DBEnv_set_lk_max_locks(DBEnvObject* self, PyObject* args) |
| 4053 | { |
| 4054 | int err, max; |
| 4055 | |
| 4056 | if (!PyArg_ParseTuple(args, "i:set_lk_max_locks", &max)) |
| 4057 | return NULL; |
| 4058 | CHECK_ENV_NOT_CLOSED(self); |
| 4059 | |
| 4060 | MYDB_BEGIN_ALLOW_THREADS; |
| 4061 | err = self->db_env->set_lk_max_locks(self->db_env, max); |
| 4062 | MYDB_END_ALLOW_THREADS; |
| 4063 | RETURN_IF_ERR(); |
| 4064 | RETURN_NONE(); |
| 4065 | } |
| 4066 | |
| 4067 | |
| 4068 | static PyObject* |
| 4069 | DBEnv_set_lk_max_lockers(DBEnvObject* self, PyObject* args) |
| 4070 | { |
| 4071 | int err, max; |
| 4072 | |
| 4073 | if (!PyArg_ParseTuple(args, "i:set_lk_max_lockers", &max)) |
| 4074 | return NULL; |
| 4075 | CHECK_ENV_NOT_CLOSED(self); |
| 4076 | |
| 4077 | MYDB_BEGIN_ALLOW_THREADS; |
| 4078 | err = self->db_env->set_lk_max_lockers(self->db_env, max); |
| 4079 | MYDB_END_ALLOW_THREADS; |
| 4080 | RETURN_IF_ERR(); |
| 4081 | RETURN_NONE(); |
| 4082 | } |
| 4083 | |
| 4084 | |
| 4085 | static PyObject* |
| 4086 | DBEnv_set_lk_max_objects(DBEnvObject* self, PyObject* args) |
| 4087 | { |
| 4088 | int err, max; |
| 4089 | |
| 4090 | if (!PyArg_ParseTuple(args, "i:set_lk_max_objects", &max)) |
| 4091 | return NULL; |
| 4092 | CHECK_ENV_NOT_CLOSED(self); |
| 4093 | |
| 4094 | MYDB_BEGIN_ALLOW_THREADS; |
| 4095 | err = self->db_env->set_lk_max_objects(self->db_env, max); |
| 4096 | MYDB_END_ALLOW_THREADS; |
| 4097 | RETURN_IF_ERR(); |
| 4098 | RETURN_NONE(); |
| 4099 | } |
| 4100 | |
| 4101 | #endif |
| 4102 | |
| 4103 | |
| 4104 | static PyObject* |
| 4105 | DBEnv_set_mp_mmapsize(DBEnvObject* self, PyObject* args) |
| 4106 | { |
| 4107 | int err, mp_mmapsize; |
| 4108 | |
| 4109 | if (!PyArg_ParseTuple(args, "i:set_mp_mmapsize", &mp_mmapsize)) |
| 4110 | return NULL; |
| 4111 | CHECK_ENV_NOT_CLOSED(self); |
| 4112 | |
| 4113 | MYDB_BEGIN_ALLOW_THREADS; |
| 4114 | err = self->db_env->set_mp_mmapsize(self->db_env, mp_mmapsize); |
| 4115 | MYDB_END_ALLOW_THREADS; |
| 4116 | RETURN_IF_ERR(); |
| 4117 | RETURN_NONE(); |
| 4118 | } |
| 4119 | |
| 4120 | |
| 4121 | static PyObject* |
| 4122 | DBEnv_set_tmp_dir(DBEnvObject* self, PyObject* args) |
| 4123 | { |
| 4124 | int err; |
| 4125 | char *dir; |
| 4126 | |
| 4127 | if (!PyArg_ParseTuple(args, "s:set_tmp_dir", &dir)) |
| 4128 | return NULL; |
| 4129 | CHECK_ENV_NOT_CLOSED(self); |
| 4130 | |
| 4131 | MYDB_BEGIN_ALLOW_THREADS; |
| 4132 | err = self->db_env->set_tmp_dir(self->db_env, dir); |
| 4133 | MYDB_END_ALLOW_THREADS; |
| 4134 | RETURN_IF_ERR(); |
| 4135 | RETURN_NONE(); |
| 4136 | } |
| 4137 | |
| 4138 | |
| 4139 | static PyObject* |
| 4140 | DBEnv_txn_begin(DBEnvObject* self, PyObject* args, PyObject* kwargs) |
| 4141 | { |
| 4142 | int flags = 0; |
| 4143 | PyObject* txnobj = NULL; |
| 4144 | DB_TXN *txn = NULL; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 4145 | static char* kwnames[] = { "parent", "flags", NULL }; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4146 | |
| 4147 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|Oi:txn_begin", kwnames, |
| 4148 | &txnobj, &flags)) |
| 4149 | return NULL; |
| 4150 | |
| 4151 | if (!checkTxnObj(txnobj, &txn)) |
| 4152 | return NULL; |
| 4153 | CHECK_ENV_NOT_CLOSED(self); |
| 4154 | |
| 4155 | return (PyObject*)newDBTxnObject(self, txn, flags); |
| 4156 | } |
| 4157 | |
| 4158 | |
| 4159 | static PyObject* |
| 4160 | DBEnv_txn_checkpoint(DBEnvObject* self, PyObject* args) |
| 4161 | { |
| 4162 | int err, kbyte=0, min=0, flags=0; |
| 4163 | |
| 4164 | if (!PyArg_ParseTuple(args, "|iii:txn_checkpoint", &kbyte, &min, &flags)) |
| 4165 | return NULL; |
| 4166 | CHECK_ENV_NOT_CLOSED(self); |
| 4167 | |
| 4168 | MYDB_BEGIN_ALLOW_THREADS; |
| 4169 | #if (DBVER >= 40) |
| 4170 | err = self->db_env->txn_checkpoint(self->db_env, kbyte, min, flags); |
| 4171 | #else |
| 4172 | err = txn_checkpoint(self->db_env, kbyte, min, flags); |
| 4173 | #endif |
| 4174 | MYDB_END_ALLOW_THREADS; |
| 4175 | RETURN_IF_ERR(); |
| 4176 | RETURN_NONE(); |
| 4177 | } |
| 4178 | |
| 4179 | |
| 4180 | static PyObject* |
| 4181 | DBEnv_set_tx_max(DBEnvObject* self, PyObject* args) |
| 4182 | { |
| 4183 | int err, max; |
| 4184 | |
| 4185 | if (!PyArg_ParseTuple(args, "i:set_tx_max", &max)) |
| 4186 | return NULL; |
| 4187 | CHECK_ENV_NOT_CLOSED(self); |
| 4188 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4189 | err = self->db_env->set_tx_max(self->db_env, max); |
Gregory P. Smith | 8a47404 | 2006-01-27 07:05:40 +0000 | [diff] [blame] | 4190 | RETURN_IF_ERR(); |
| 4191 | RETURN_NONE(); |
| 4192 | } |
| 4193 | |
| 4194 | |
| 4195 | static PyObject* |
| 4196 | DBEnv_set_tx_timestamp(DBEnvObject* self, PyObject* args) |
| 4197 | { |
| 4198 | int err; |
Thomas Wouters | 9d63cca | 2006-03-01 01:01:55 +0000 | [diff] [blame] | 4199 | long stamp; |
| 4200 | time_t timestamp; |
Gregory P. Smith | 8a47404 | 2006-01-27 07:05:40 +0000 | [diff] [blame] | 4201 | |
Thomas Wouters | 9d63cca | 2006-03-01 01:01:55 +0000 | [diff] [blame] | 4202 | if (!PyArg_ParseTuple(args, "l:set_tx_timestamp", &stamp)) |
Gregory P. Smith | 8a47404 | 2006-01-27 07:05:40 +0000 | [diff] [blame] | 4203 | return NULL; |
| 4204 | CHECK_ENV_NOT_CLOSED(self); |
Thomas Wouters | 9d63cca | 2006-03-01 01:01:55 +0000 | [diff] [blame] | 4205 | timestamp = (time_t)stamp; |
| 4206 | err = self->db_env->set_tx_timestamp(self->db_env, ×tamp); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4207 | RETURN_IF_ERR(); |
| 4208 | RETURN_NONE(); |
| 4209 | } |
| 4210 | |
| 4211 | |
| 4212 | static PyObject* |
| 4213 | DBEnv_lock_detect(DBEnvObject* self, PyObject* args) |
| 4214 | { |
| 4215 | int err, atype, flags=0; |
| 4216 | int aborted = 0; |
| 4217 | |
| 4218 | if (!PyArg_ParseTuple(args, "i|i:lock_detect", &atype, &flags)) |
| 4219 | return NULL; |
| 4220 | CHECK_ENV_NOT_CLOSED(self); |
| 4221 | |
| 4222 | MYDB_BEGIN_ALLOW_THREADS; |
| 4223 | #if (DBVER >= 40) |
| 4224 | err = self->db_env->lock_detect(self->db_env, flags, atype, &aborted); |
| 4225 | #else |
| 4226 | err = lock_detect(self->db_env, flags, atype, &aborted); |
| 4227 | #endif |
| 4228 | MYDB_END_ALLOW_THREADS; |
| 4229 | RETURN_IF_ERR(); |
| 4230 | return PyInt_FromLong(aborted); |
| 4231 | } |
| 4232 | |
| 4233 | |
| 4234 | static PyObject* |
| 4235 | DBEnv_lock_get(DBEnvObject* self, PyObject* args) |
| 4236 | { |
| 4237 | int flags=0; |
| 4238 | int locker, lock_mode; |
| 4239 | DBT obj; |
| 4240 | PyObject* objobj; |
| 4241 | |
| 4242 | if (!PyArg_ParseTuple(args, "iOi|i:lock_get", &locker, &objobj, &lock_mode, &flags)) |
| 4243 | return NULL; |
| 4244 | |
| 4245 | |
| 4246 | if (!make_dbt(objobj, &obj)) |
| 4247 | return NULL; |
| 4248 | |
| 4249 | return (PyObject*)newDBLockObject(self, locker, &obj, lock_mode, flags); |
| 4250 | } |
| 4251 | |
| 4252 | |
| 4253 | static PyObject* |
| 4254 | DBEnv_lock_id(DBEnvObject* self, PyObject* args) |
| 4255 | { |
| 4256 | int err; |
| 4257 | u_int32_t theID; |
| 4258 | |
| 4259 | if (!PyArg_ParseTuple(args, ":lock_id")) |
| 4260 | return NULL; |
| 4261 | |
| 4262 | CHECK_ENV_NOT_CLOSED(self); |
| 4263 | MYDB_BEGIN_ALLOW_THREADS; |
| 4264 | #if (DBVER >= 40) |
| 4265 | err = self->db_env->lock_id(self->db_env, &theID); |
| 4266 | #else |
| 4267 | err = lock_id(self->db_env, &theID); |
| 4268 | #endif |
| 4269 | MYDB_END_ALLOW_THREADS; |
| 4270 | RETURN_IF_ERR(); |
| 4271 | |
| 4272 | return PyInt_FromLong((long)theID); |
| 4273 | } |
| 4274 | |
| 4275 | |
| 4276 | static PyObject* |
| 4277 | DBEnv_lock_put(DBEnvObject* self, PyObject* args) |
| 4278 | { |
| 4279 | int err; |
| 4280 | DBLockObject* dblockobj; |
| 4281 | |
| 4282 | if (!PyArg_ParseTuple(args, "O!:lock_put", &DBLock_Type, &dblockobj)) |
| 4283 | return NULL; |
| 4284 | |
| 4285 | CHECK_ENV_NOT_CLOSED(self); |
| 4286 | MYDB_BEGIN_ALLOW_THREADS; |
| 4287 | #if (DBVER >= 40) |
| 4288 | err = self->db_env->lock_put(self->db_env, &dblockobj->lock); |
| 4289 | #else |
| 4290 | err = lock_put(self->db_env, &dblockobj->lock); |
| 4291 | #endif |
| 4292 | MYDB_END_ALLOW_THREADS; |
| 4293 | RETURN_IF_ERR(); |
| 4294 | RETURN_NONE(); |
| 4295 | } |
| 4296 | |
Gregory P. Smith | db8a807 | 2006-06-05 01:56:15 +0000 | [diff] [blame^] | 4297 | #if (DBVER >= 44) |
| 4298 | static PyObject* |
| 4299 | DBEnv_lsn_reset(DBEnvObject* self, PyObject* args, PyObject* kwargs) |
| 4300 | { |
| 4301 | int err; |
| 4302 | char *file; |
| 4303 | u_int32_t flags = 0; |
| 4304 | static char* kwnames[] = { "file", "flags", NULL}; |
| 4305 | |
| 4306 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "z|i:lsn_reset", kwnames, |
| 4307 | &file, &flags)) |
| 4308 | return NULL; |
| 4309 | CHECK_ENV_NOT_CLOSED(self); |
| 4310 | |
| 4311 | MYDB_BEGIN_ALLOW_THREADS; |
| 4312 | err = self->db_env->lsn_reset(self->db_env, file, flags); |
| 4313 | MYDB_END_ALLOW_THREADS; |
| 4314 | RETURN_IF_ERR(); |
| 4315 | RETURN_NONE(); |
| 4316 | } |
| 4317 | #endif /* DBVER >= 4.4 */ |
| 4318 | |
Gregory P. Smith | 76a82e8 | 2006-06-05 01:39:52 +0000 | [diff] [blame] | 4319 | #if (DBVER >= 40) |
| 4320 | static PyObject* |
| 4321 | DBEnv_log_stat(DBEnvObject* self, PyObject* args) |
| 4322 | { |
| 4323 | int err; |
| 4324 | DB_LOG_STAT* statp = NULL; |
| 4325 | PyObject* d = NULL; |
| 4326 | u_int32_t flags = 0; |
| 4327 | |
| 4328 | if (!PyArg_ParseTuple(args, "|i:log_stat", &flags)) |
| 4329 | return NULL; |
| 4330 | CHECK_ENV_NOT_CLOSED(self); |
| 4331 | |
| 4332 | MYDB_BEGIN_ALLOW_THREADS; |
| 4333 | err = self->db_env->log_stat(self->db_env, &statp, flags); |
| 4334 | MYDB_END_ALLOW_THREADS; |
| 4335 | RETURN_IF_ERR(); |
| 4336 | |
| 4337 | /* Turn the stat structure into a dictionary */ |
| 4338 | d = PyDict_New(); |
| 4339 | if (d == NULL) { |
| 4340 | if (statp) |
| 4341 | free(statp); |
| 4342 | return NULL; |
| 4343 | } |
| 4344 | |
| 4345 | #define MAKE_ENTRY(name) _addIntToDict(d, #name, statp->st_##name) |
| 4346 | |
| 4347 | MAKE_ENTRY(magic); |
| 4348 | MAKE_ENTRY(version); |
| 4349 | MAKE_ENTRY(mode); |
| 4350 | MAKE_ENTRY(lg_bsize); |
| 4351 | #if (DBVER >= 44) |
| 4352 | MAKE_ENTRY(lg_size); |
| 4353 | MAKE_ENTRY(record); |
| 4354 | #endif |
| 4355 | #if (DBVER <= 40) |
| 4356 | MAKE_ENTRY(lg_max); |
| 4357 | #endif |
| 4358 | MAKE_ENTRY(w_mbytes); |
| 4359 | MAKE_ENTRY(w_bytes); |
| 4360 | MAKE_ENTRY(wc_mbytes); |
| 4361 | MAKE_ENTRY(wc_bytes); |
| 4362 | MAKE_ENTRY(wcount); |
| 4363 | MAKE_ENTRY(wcount_fill); |
| 4364 | #if (DBVER >= 44) |
| 4365 | MAKE_ENTRY(rcount); |
| 4366 | #endif |
| 4367 | MAKE_ENTRY(scount); |
| 4368 | MAKE_ENTRY(cur_file); |
| 4369 | MAKE_ENTRY(cur_offset); |
| 4370 | MAKE_ENTRY(disk_file); |
| 4371 | MAKE_ENTRY(disk_offset); |
| 4372 | MAKE_ENTRY(maxcommitperflush); |
| 4373 | MAKE_ENTRY(mincommitperflush); |
| 4374 | MAKE_ENTRY(regsize); |
| 4375 | MAKE_ENTRY(region_wait); |
| 4376 | MAKE_ENTRY(region_nowait); |
| 4377 | |
| 4378 | #undef MAKE_ENTRY |
| 4379 | free(statp); |
| 4380 | return d; |
| 4381 | } /* DBEnv_log_stat */ |
| 4382 | #endif /* DBVER >= 4.0 for log_stat method */ |
| 4383 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4384 | |
| 4385 | static PyObject* |
| 4386 | DBEnv_lock_stat(DBEnvObject* self, PyObject* args) |
| 4387 | { |
| 4388 | int err; |
| 4389 | DB_LOCK_STAT* sp; |
| 4390 | PyObject* d = NULL; |
Martin v. Löwis | b2c7aff | 2002-11-23 11:26:07 +0000 | [diff] [blame] | 4391 | u_int32_t flags = 0; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4392 | |
| 4393 | if (!PyArg_ParseTuple(args, "|i:lock_stat", &flags)) |
| 4394 | return NULL; |
| 4395 | CHECK_ENV_NOT_CLOSED(self); |
| 4396 | |
| 4397 | MYDB_BEGIN_ALLOW_THREADS; |
| 4398 | #if (DBVER >= 40) |
| 4399 | err = self->db_env->lock_stat(self->db_env, &sp, flags); |
| 4400 | #else |
| 4401 | #if (DBVER >= 33) |
| 4402 | err = lock_stat(self->db_env, &sp); |
| 4403 | #else |
| 4404 | err = lock_stat(self->db_env, &sp, NULL); |
| 4405 | #endif |
| 4406 | #endif |
| 4407 | MYDB_END_ALLOW_THREADS; |
| 4408 | RETURN_IF_ERR(); |
| 4409 | |
| 4410 | /* Turn the stat structure into a dictionary */ |
| 4411 | d = PyDict_New(); |
| 4412 | if (d == NULL) { |
| 4413 | free(sp); |
| 4414 | return NULL; |
| 4415 | } |
| 4416 | |
| 4417 | #define MAKE_ENTRY(name) _addIntToDict(d, #name, sp->st_##name) |
| 4418 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 4419 | #if (DBVER < 41) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4420 | MAKE_ENTRY(lastid); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 4421 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4422 | MAKE_ENTRY(nmodes); |
| 4423 | #if (DBVER >= 32) |
| 4424 | MAKE_ENTRY(maxlocks); |
| 4425 | MAKE_ENTRY(maxlockers); |
| 4426 | MAKE_ENTRY(maxobjects); |
| 4427 | MAKE_ENTRY(nlocks); |
| 4428 | MAKE_ENTRY(maxnlocks); |
| 4429 | #endif |
| 4430 | MAKE_ENTRY(nlockers); |
| 4431 | MAKE_ENTRY(maxnlockers); |
| 4432 | #if (DBVER >= 32) |
| 4433 | MAKE_ENTRY(nobjects); |
| 4434 | MAKE_ENTRY(maxnobjects); |
| 4435 | #endif |
| 4436 | MAKE_ENTRY(nrequests); |
| 4437 | MAKE_ENTRY(nreleases); |
Gregory P. Smith | 29602d2 | 2006-01-24 09:46:48 +0000 | [diff] [blame] | 4438 | #if (DBVER < 44) |
| 4439 | MAKE_ENTRY(nnowaits); /* these were renamed in 4.4 */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4440 | MAKE_ENTRY(nconflicts); |
Gregory P. Smith | 29602d2 | 2006-01-24 09:46:48 +0000 | [diff] [blame] | 4441 | #else |
| 4442 | MAKE_ENTRY(lock_nowait); |
| 4443 | MAKE_ENTRY(lock_wait); |
| 4444 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4445 | MAKE_ENTRY(ndeadlocks); |
| 4446 | MAKE_ENTRY(regsize); |
| 4447 | MAKE_ENTRY(region_wait); |
| 4448 | MAKE_ENTRY(region_nowait); |
| 4449 | |
| 4450 | #undef MAKE_ENTRY |
| 4451 | free(sp); |
| 4452 | return d; |
| 4453 | } |
| 4454 | |
| 4455 | |
| 4456 | static PyObject* |
| 4457 | DBEnv_log_archive(DBEnvObject* self, PyObject* args) |
| 4458 | { |
| 4459 | int flags=0; |
| 4460 | int err; |
Gregory P. Smith | 3dd2002 | 2006-06-05 00:31:01 +0000 | [diff] [blame] | 4461 | char **log_list = NULL; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4462 | PyObject* list; |
| 4463 | PyObject* item = NULL; |
| 4464 | |
| 4465 | if (!PyArg_ParseTuple(args, "|i:log_archive", &flags)) |
| 4466 | return NULL; |
| 4467 | |
| 4468 | CHECK_ENV_NOT_CLOSED(self); |
| 4469 | MYDB_BEGIN_ALLOW_THREADS; |
| 4470 | #if (DBVER >= 40) |
| 4471 | err = self->db_env->log_archive(self->db_env, &log_list, flags); |
| 4472 | #elif (DBVER == 33) |
| 4473 | err = log_archive(self->db_env, &log_list, flags); |
| 4474 | #else |
| 4475 | err = log_archive(self->db_env, &log_list, flags, NULL); |
| 4476 | #endif |
| 4477 | MYDB_END_ALLOW_THREADS; |
| 4478 | RETURN_IF_ERR(); |
| 4479 | |
Gregory P. Smith | bad4745 | 2006-06-05 00:33:35 +0000 | [diff] [blame] | 4480 | list = PyList_New(0); |
| 4481 | if (list == NULL) { |
| 4482 | if (log_list) |
| 4483 | free(log_list); |
| 4484 | return NULL; |
| 4485 | } |
| 4486 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4487 | if (log_list) { |
Gregory P. Smith | 3dd2002 | 2006-06-05 00:31:01 +0000 | [diff] [blame] | 4488 | char **log_list_start; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4489 | for (log_list_start = log_list; *log_list != NULL; ++log_list) { |
| 4490 | item = PyString_FromString (*log_list); |
| 4491 | if (item == NULL) { |
| 4492 | Py_DECREF(list); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4493 | list = NULL; |
| 4494 | break; |
| 4495 | } |
| 4496 | PyList_Append(list, item); |
| 4497 | Py_DECREF(item); |
| 4498 | } |
| 4499 | free(log_list_start); |
| 4500 | } |
| 4501 | return list; |
| 4502 | } |
| 4503 | |
| 4504 | |
| 4505 | static PyObject* |
| 4506 | DBEnv_txn_stat(DBEnvObject* self, PyObject* args) |
| 4507 | { |
| 4508 | int err; |
| 4509 | DB_TXN_STAT* sp; |
| 4510 | PyObject* d = NULL; |
Martin v. Löwis | b2c7aff | 2002-11-23 11:26:07 +0000 | [diff] [blame] | 4511 | u_int32_t flags=0; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4512 | |
| 4513 | if (!PyArg_ParseTuple(args, "|i:txn_stat", &flags)) |
| 4514 | return NULL; |
| 4515 | CHECK_ENV_NOT_CLOSED(self); |
| 4516 | |
| 4517 | MYDB_BEGIN_ALLOW_THREADS; |
| 4518 | #if (DBVER >= 40) |
| 4519 | err = self->db_env->txn_stat(self->db_env, &sp, flags); |
| 4520 | #elif (DBVER == 33) |
| 4521 | err = txn_stat(self->db_env, &sp); |
| 4522 | #else |
| 4523 | err = txn_stat(self->db_env, &sp, NULL); |
| 4524 | #endif |
| 4525 | MYDB_END_ALLOW_THREADS; |
| 4526 | RETURN_IF_ERR(); |
| 4527 | |
| 4528 | /* Turn the stat structure into a dictionary */ |
| 4529 | d = PyDict_New(); |
| 4530 | if (d == NULL) { |
| 4531 | free(sp); |
| 4532 | return NULL; |
| 4533 | } |
| 4534 | |
| 4535 | #define MAKE_ENTRY(name) _addIntToDict(d, #name, sp->st_##name) |
| 4536 | |
| 4537 | MAKE_ENTRY(time_ckp); |
| 4538 | MAKE_ENTRY(last_txnid); |
| 4539 | MAKE_ENTRY(maxtxns); |
| 4540 | MAKE_ENTRY(nactive); |
| 4541 | MAKE_ENTRY(maxnactive); |
| 4542 | MAKE_ENTRY(nbegins); |
| 4543 | MAKE_ENTRY(naborts); |
| 4544 | MAKE_ENTRY(ncommits); |
| 4545 | MAKE_ENTRY(regsize); |
| 4546 | MAKE_ENTRY(region_wait); |
| 4547 | MAKE_ENTRY(region_nowait); |
| 4548 | |
| 4549 | #undef MAKE_ENTRY |
| 4550 | free(sp); |
| 4551 | return d; |
| 4552 | } |
| 4553 | |
| 4554 | |
| 4555 | static PyObject* |
| 4556 | DBEnv_set_get_returns_none(DBEnvObject* self, PyObject* args) |
| 4557 | { |
| 4558 | int flags=0; |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 4559 | int oldValue=0; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4560 | |
| 4561 | if (!PyArg_ParseTuple(args,"i:set_get_returns_none", &flags)) |
| 4562 | return NULL; |
| 4563 | CHECK_ENV_NOT_CLOSED(self); |
| 4564 | |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 4565 | if (self->moduleFlags.getReturnsNone) |
| 4566 | ++oldValue; |
| 4567 | if (self->moduleFlags.cursorSetReturnsNone) |
| 4568 | ++oldValue; |
| 4569 | self->moduleFlags.getReturnsNone = (flags >= 1); |
| 4570 | self->moduleFlags.cursorSetReturnsNone = (flags >= 2); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4571 | return PyInt_FromLong(oldValue); |
| 4572 | } |
| 4573 | |
| 4574 | |
| 4575 | /* --------------------------------------------------------------------- */ |
| 4576 | /* DBTxn methods */ |
| 4577 | |
| 4578 | |
| 4579 | static PyObject* |
| 4580 | DBTxn_commit(DBTxnObject* self, PyObject* args) |
| 4581 | { |
| 4582 | int flags=0, err; |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4583 | DB_TXN *txn; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4584 | |
| 4585 | if (!PyArg_ParseTuple(args, "|i:commit", &flags)) |
| 4586 | return NULL; |
| 4587 | |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4588 | if (!self->txn) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 4589 | PyObject *t = Py_BuildValue("(is)", 0, "DBTxn must not be used " |
| 4590 | "after txn_commit or txn_abort"); |
| 4591 | PyErr_SetObject(DBError, t); |
| 4592 | Py_DECREF(t); |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4593 | return NULL; |
| 4594 | } |
| 4595 | txn = self->txn; |
| 4596 | self->txn = NULL; /* this DB_TXN is no longer valid after this call */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4597 | MYDB_BEGIN_ALLOW_THREADS; |
| 4598 | #if (DBVER >= 40) |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4599 | err = txn->commit(txn, flags); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4600 | #else |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4601 | err = txn_commit(txn, flags); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4602 | #endif |
| 4603 | MYDB_END_ALLOW_THREADS; |
| 4604 | RETURN_IF_ERR(); |
| 4605 | RETURN_NONE(); |
| 4606 | } |
| 4607 | |
| 4608 | static PyObject* |
| 4609 | DBTxn_prepare(DBTxnObject* self, PyObject* args) |
| 4610 | { |
| 4611 | #if (DBVER >= 33) |
| 4612 | int err; |
| 4613 | char* gid=NULL; |
| 4614 | int gid_size=0; |
| 4615 | |
| 4616 | if (!PyArg_ParseTuple(args, "s#:prepare", &gid, &gid_size)) |
| 4617 | return NULL; |
| 4618 | |
| 4619 | if (gid_size != DB_XIDDATASIZE) { |
| 4620 | PyErr_SetString(PyExc_TypeError, |
| 4621 | "gid must be DB_XIDDATASIZE bytes long"); |
| 4622 | return NULL; |
| 4623 | } |
| 4624 | |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4625 | if (!self->txn) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 4626 | PyObject *t = Py_BuildValue("(is)", 0,"DBTxn must not be used " |
| 4627 | "after txn_commit or txn_abort"); |
| 4628 | PyErr_SetObject(DBError, t); |
| 4629 | Py_DECREF(t); |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4630 | return NULL; |
| 4631 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4632 | MYDB_BEGIN_ALLOW_THREADS; |
| 4633 | #if (DBVER >= 40) |
| 4634 | err = self->txn->prepare(self->txn, (u_int8_t*)gid); |
| 4635 | #else |
| 4636 | err = txn_prepare(self->txn, (u_int8_t*)gid); |
| 4637 | #endif |
| 4638 | MYDB_END_ALLOW_THREADS; |
| 4639 | RETURN_IF_ERR(); |
| 4640 | RETURN_NONE(); |
| 4641 | #else |
| 4642 | int err; |
| 4643 | |
| 4644 | if (!PyArg_ParseTuple(args, ":prepare")) |
| 4645 | return NULL; |
| 4646 | |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4647 | if (!self->txn) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 4648 | PyObject *t = Py_BuildValue("(is)", 0, "DBTxn must not be used " |
| 4649 | "after txn_commit or txn_abort"); |
| 4650 | PyErr_SetObject(DBError, t); |
| 4651 | Py_DECREF(t); |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4652 | return NULL; |
| 4653 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4654 | MYDB_BEGIN_ALLOW_THREADS; |
| 4655 | err = txn_prepare(self->txn); |
| 4656 | MYDB_END_ALLOW_THREADS; |
| 4657 | RETURN_IF_ERR(); |
| 4658 | RETURN_NONE(); |
| 4659 | #endif |
| 4660 | } |
| 4661 | |
| 4662 | |
| 4663 | static PyObject* |
| 4664 | DBTxn_abort(DBTxnObject* self, PyObject* args) |
| 4665 | { |
| 4666 | int err; |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4667 | DB_TXN *txn; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4668 | |
| 4669 | if (!PyArg_ParseTuple(args, ":abort")) |
| 4670 | return NULL; |
| 4671 | |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4672 | if (!self->txn) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 4673 | PyObject *t = Py_BuildValue("(is)", 0, "DBTxn must not be used " |
| 4674 | "after txn_commit or txn_abort"); |
| 4675 | PyErr_SetObject(DBError, t); |
| 4676 | Py_DECREF(t); |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4677 | return NULL; |
| 4678 | } |
| 4679 | txn = self->txn; |
| 4680 | self->txn = NULL; /* this DB_TXN is no longer valid after this call */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4681 | MYDB_BEGIN_ALLOW_THREADS; |
| 4682 | #if (DBVER >= 40) |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4683 | err = txn->abort(txn); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4684 | #else |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4685 | err = txn_abort(txn); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4686 | #endif |
| 4687 | MYDB_END_ALLOW_THREADS; |
| 4688 | RETURN_IF_ERR(); |
| 4689 | RETURN_NONE(); |
| 4690 | } |
| 4691 | |
| 4692 | |
| 4693 | static PyObject* |
| 4694 | DBTxn_id(DBTxnObject* self, PyObject* args) |
| 4695 | { |
| 4696 | int id; |
| 4697 | |
| 4698 | if (!PyArg_ParseTuple(args, ":id")) |
| 4699 | return NULL; |
| 4700 | |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4701 | if (!self->txn) { |
Thomas Wouters | b315383 | 2006-03-08 01:47:19 +0000 | [diff] [blame] | 4702 | PyObject *t = Py_BuildValue("(is)", 0, "DBTxn must not be used " |
| 4703 | "after txn_commit or txn_abort"); |
| 4704 | PyErr_SetObject(DBError, t); |
| 4705 | Py_DECREF(t); |
Gregory P. Smith | c25fd3f | 2003-01-17 07:52:59 +0000 | [diff] [blame] | 4706 | return NULL; |
| 4707 | } |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4708 | MYDB_BEGIN_ALLOW_THREADS; |
| 4709 | #if (DBVER >= 40) |
| 4710 | id = self->txn->id(self->txn); |
| 4711 | #else |
| 4712 | id = txn_id(self->txn); |
| 4713 | #endif |
| 4714 | MYDB_END_ALLOW_THREADS; |
| 4715 | return PyInt_FromLong(id); |
| 4716 | } |
| 4717 | |
| 4718 | /* --------------------------------------------------------------------- */ |
| 4719 | /* Method definition tables and type objects */ |
| 4720 | |
| 4721 | static PyMethodDef DB_methods[] = { |
| 4722 | {"append", (PyCFunction)DB_append, METH_VARARGS}, |
| 4723 | #if (DBVER >= 33) |
| 4724 | {"associate", (PyCFunction)DB_associate, METH_VARARGS|METH_KEYWORDS}, |
| 4725 | #endif |
| 4726 | {"close", (PyCFunction)DB_close, METH_VARARGS}, |
| 4727 | #if (DBVER >= 32) |
| 4728 | {"consume", (PyCFunction)DB_consume, METH_VARARGS|METH_KEYWORDS}, |
| 4729 | {"consume_wait", (PyCFunction)DB_consume_wait, METH_VARARGS|METH_KEYWORDS}, |
| 4730 | #endif |
| 4731 | {"cursor", (PyCFunction)DB_cursor, METH_VARARGS|METH_KEYWORDS}, |
| 4732 | {"delete", (PyCFunction)DB_delete, METH_VARARGS|METH_KEYWORDS}, |
| 4733 | {"fd", (PyCFunction)DB_fd, METH_VARARGS}, |
| 4734 | {"get", (PyCFunction)DB_get, METH_VARARGS|METH_KEYWORDS}, |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 4735 | #if (DBVER >= 33) |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 4736 | {"pget", (PyCFunction)DB_pget, METH_VARARGS|METH_KEYWORDS}, |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 4737 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4738 | {"get_both", (PyCFunction)DB_get_both, METH_VARARGS|METH_KEYWORDS}, |
| 4739 | {"get_byteswapped", (PyCFunction)DB_get_byteswapped,METH_VARARGS}, |
| 4740 | {"get_size", (PyCFunction)DB_get_size, METH_VARARGS|METH_KEYWORDS}, |
| 4741 | {"get_type", (PyCFunction)DB_get_type, METH_VARARGS}, |
| 4742 | {"join", (PyCFunction)DB_join, METH_VARARGS}, |
| 4743 | {"key_range", (PyCFunction)DB_key_range, METH_VARARGS|METH_KEYWORDS}, |
| 4744 | {"has_key", (PyCFunction)DB_has_key, METH_VARARGS}, |
| 4745 | {"items", (PyCFunction)DB_items, METH_VARARGS}, |
| 4746 | {"keys", (PyCFunction)DB_keys, METH_VARARGS}, |
| 4747 | {"open", (PyCFunction)DB_open, METH_VARARGS|METH_KEYWORDS}, |
| 4748 | {"put", (PyCFunction)DB_put, METH_VARARGS|METH_KEYWORDS}, |
| 4749 | {"remove", (PyCFunction)DB_remove, METH_VARARGS|METH_KEYWORDS}, |
| 4750 | {"rename", (PyCFunction)DB_rename, METH_VARARGS}, |
| 4751 | {"set_bt_minkey", (PyCFunction)DB_set_bt_minkey, METH_VARARGS}, |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 4752 | #if (DBVER >= 33) |
Gregory P. Smith | e4ed2de | 2005-06-03 07:03:07 +0000 | [diff] [blame] | 4753 | {"set_bt_compare", (PyCFunction)DB_set_bt_compare, METH_VARARGS}, |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 4754 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4755 | {"set_cachesize", (PyCFunction)DB_set_cachesize, METH_VARARGS}, |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 4756 | #if (DBVER >= 41) |
| 4757 | {"set_encrypt", (PyCFunction)DB_set_encrypt, METH_VARARGS|METH_KEYWORDS}, |
| 4758 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4759 | {"set_flags", (PyCFunction)DB_set_flags, METH_VARARGS}, |
| 4760 | {"set_h_ffactor", (PyCFunction)DB_set_h_ffactor, METH_VARARGS}, |
| 4761 | {"set_h_nelem", (PyCFunction)DB_set_h_nelem, METH_VARARGS}, |
| 4762 | {"set_lorder", (PyCFunction)DB_set_lorder, METH_VARARGS}, |
| 4763 | {"set_pagesize", (PyCFunction)DB_set_pagesize, METH_VARARGS}, |
| 4764 | {"set_re_delim", (PyCFunction)DB_set_re_delim, METH_VARARGS}, |
| 4765 | {"set_re_len", (PyCFunction)DB_set_re_len, METH_VARARGS}, |
| 4766 | {"set_re_pad", (PyCFunction)DB_set_re_pad, METH_VARARGS}, |
| 4767 | {"set_re_source", (PyCFunction)DB_set_re_source, METH_VARARGS}, |
| 4768 | #if (DBVER >= 32) |
| 4769 | {"set_q_extentsize",(PyCFunction)DB_set_q_extentsize,METH_VARARGS}, |
| 4770 | #endif |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 4771 | {"stat", (PyCFunction)DB_stat, METH_VARARGS|METH_KEYWORDS}, |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4772 | {"sync", (PyCFunction)DB_sync, METH_VARARGS}, |
| 4773 | #if (DBVER >= 33) |
| 4774 | {"truncate", (PyCFunction)DB_truncate, METH_VARARGS|METH_KEYWORDS}, |
| 4775 | #endif |
| 4776 | {"type", (PyCFunction)DB_get_type, METH_VARARGS}, |
| 4777 | {"upgrade", (PyCFunction)DB_upgrade, METH_VARARGS}, |
| 4778 | {"values", (PyCFunction)DB_values, METH_VARARGS}, |
| 4779 | {"verify", (PyCFunction)DB_verify, METH_VARARGS|METH_KEYWORDS}, |
| 4780 | {"set_get_returns_none",(PyCFunction)DB_set_get_returns_none, METH_VARARGS}, |
| 4781 | {NULL, NULL} /* sentinel */ |
| 4782 | }; |
| 4783 | |
| 4784 | |
| 4785 | static PyMappingMethods DB_mapping = { |
Gregory P. Smith | 7f5b6f4 | 2006-04-08 07:10:51 +0000 | [diff] [blame] | 4786 | #if (PY_VERSION_HEX < 0x02050000) |
| 4787 | (inquiry)DB_length, /*mp_length*/ |
| 4788 | #else |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 4789 | (lenfunc)DB_length, /*mp_length*/ |
Gregory P. Smith | 7f5b6f4 | 2006-04-08 07:10:51 +0000 | [diff] [blame] | 4790 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4791 | (binaryfunc)DB_subscript, /*mp_subscript*/ |
| 4792 | (objobjargproc)DB_ass_sub, /*mp_ass_subscript*/ |
| 4793 | }; |
| 4794 | |
| 4795 | |
| 4796 | static PyMethodDef DBCursor_methods[] = { |
| 4797 | {"close", (PyCFunction)DBC_close, METH_VARARGS}, |
| 4798 | {"count", (PyCFunction)DBC_count, METH_VARARGS}, |
| 4799 | {"current", (PyCFunction)DBC_current, METH_VARARGS|METH_KEYWORDS}, |
| 4800 | {"delete", (PyCFunction)DBC_delete, METH_VARARGS}, |
| 4801 | {"dup", (PyCFunction)DBC_dup, METH_VARARGS}, |
| 4802 | {"first", (PyCFunction)DBC_first, METH_VARARGS|METH_KEYWORDS}, |
| 4803 | {"get", (PyCFunction)DBC_get, METH_VARARGS|METH_KEYWORDS}, |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 4804 | #if (DBVER >= 33) |
Gregory P. Smith | 19699a9 | 2004-06-28 04:06:49 +0000 | [diff] [blame] | 4805 | {"pget", (PyCFunction)DBC_pget, METH_VARARGS|METH_KEYWORDS}, |
Gregory P. Smith | 8a6a59c | 2004-12-16 09:47:28 +0000 | [diff] [blame] | 4806 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4807 | {"get_recno", (PyCFunction)DBC_get_recno, METH_VARARGS}, |
| 4808 | {"last", (PyCFunction)DBC_last, METH_VARARGS|METH_KEYWORDS}, |
| 4809 | {"next", (PyCFunction)DBC_next, METH_VARARGS|METH_KEYWORDS}, |
| 4810 | {"prev", (PyCFunction)DBC_prev, METH_VARARGS|METH_KEYWORDS}, |
| 4811 | {"put", (PyCFunction)DBC_put, METH_VARARGS|METH_KEYWORDS}, |
| 4812 | {"set", (PyCFunction)DBC_set, METH_VARARGS|METH_KEYWORDS}, |
| 4813 | {"set_range", (PyCFunction)DBC_set_range, METH_VARARGS|METH_KEYWORDS}, |
| 4814 | {"get_both", (PyCFunction)DBC_get_both, METH_VARARGS}, |
Gregory P. Smith | be0db8b | 2003-10-01 06:48:51 +0000 | [diff] [blame] | 4815 | {"get_current_size",(PyCFunction)DBC_get_current_size, METH_VARARGS}, |
Gregory P. Smith | 455d46f | 2003-07-09 04:45:59 +0000 | [diff] [blame] | 4816 | {"set_both", (PyCFunction)DBC_set_both, METH_VARARGS}, |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4817 | {"set_recno", (PyCFunction)DBC_set_recno, METH_VARARGS|METH_KEYWORDS}, |
| 4818 | {"consume", (PyCFunction)DBC_consume, METH_VARARGS|METH_KEYWORDS}, |
| 4819 | {"next_dup", (PyCFunction)DBC_next_dup, METH_VARARGS|METH_KEYWORDS}, |
| 4820 | {"next_nodup", (PyCFunction)DBC_next_nodup, METH_VARARGS|METH_KEYWORDS}, |
| 4821 | {"prev_nodup", (PyCFunction)DBC_prev_nodup, METH_VARARGS|METH_KEYWORDS}, |
| 4822 | {"join_item", (PyCFunction)DBC_join_item, METH_VARARGS}, |
| 4823 | {NULL, NULL} /* sentinel */ |
| 4824 | }; |
| 4825 | |
| 4826 | |
| 4827 | static PyMethodDef DBEnv_methods[] = { |
| 4828 | {"close", (PyCFunction)DBEnv_close, METH_VARARGS}, |
| 4829 | {"open", (PyCFunction)DBEnv_open, METH_VARARGS}, |
| 4830 | {"remove", (PyCFunction)DBEnv_remove, METH_VARARGS}, |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 4831 | #if (DBVER >= 41) |
| 4832 | {"dbremove", (PyCFunction)DBEnv_dbremove, METH_VARARGS|METH_KEYWORDS}, |
| 4833 | {"dbrename", (PyCFunction)DBEnv_dbrename, METH_VARARGS|METH_KEYWORDS}, |
| 4834 | {"set_encrypt", (PyCFunction)DBEnv_set_encrypt, METH_VARARGS|METH_KEYWORDS}, |
| 4835 | #endif |
Gregory P. Smith | fe11d3e | 2003-03-27 17:23:29 +0000 | [diff] [blame] | 4836 | #if (DBVER >= 40) |
| 4837 | {"set_timeout", (PyCFunction)DBEnv_set_timeout, METH_VARARGS|METH_KEYWORDS}, |
| 4838 | #endif |
Gregory P. Smith | 6676f6e | 2003-08-28 21:50:30 +0000 | [diff] [blame] | 4839 | {"set_shm_key", (PyCFunction)DBEnv_set_shm_key, METH_VARARGS}, |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4840 | {"set_cachesize", (PyCFunction)DBEnv_set_cachesize, METH_VARARGS}, |
| 4841 | {"set_data_dir", (PyCFunction)DBEnv_set_data_dir, METH_VARARGS}, |
| 4842 | #if (DBVER >= 32) |
| 4843 | {"set_flags", (PyCFunction)DBEnv_set_flags, METH_VARARGS}, |
| 4844 | #endif |
| 4845 | {"set_lg_bsize", (PyCFunction)DBEnv_set_lg_bsize, METH_VARARGS}, |
| 4846 | {"set_lg_dir", (PyCFunction)DBEnv_set_lg_dir, METH_VARARGS}, |
| 4847 | {"set_lg_max", (PyCFunction)DBEnv_set_lg_max, METH_VARARGS}, |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 4848 | #if (DBVER >= 33) |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 4849 | {"set_lg_regionmax",(PyCFunction)DBEnv_set_lg_regionmax, METH_VARARGS}, |
Neal Norwitz | 8456235 | 2005-10-20 04:30:15 +0000 | [diff] [blame] | 4850 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4851 | {"set_lk_detect", (PyCFunction)DBEnv_set_lk_detect, METH_VARARGS}, |
| 4852 | {"set_lk_max", (PyCFunction)DBEnv_set_lk_max, METH_VARARGS}, |
| 4853 | #if (DBVER >= 32) |
| 4854 | {"set_lk_max_locks", (PyCFunction)DBEnv_set_lk_max_locks, METH_VARARGS}, |
| 4855 | {"set_lk_max_lockers", (PyCFunction)DBEnv_set_lk_max_lockers, METH_VARARGS}, |
| 4856 | {"set_lk_max_objects", (PyCFunction)DBEnv_set_lk_max_objects, METH_VARARGS}, |
| 4857 | #endif |
| 4858 | {"set_mp_mmapsize", (PyCFunction)DBEnv_set_mp_mmapsize, METH_VARARGS}, |
| 4859 | {"set_tmp_dir", (PyCFunction)DBEnv_set_tmp_dir, METH_VARARGS}, |
| 4860 | {"txn_begin", (PyCFunction)DBEnv_txn_begin, METH_VARARGS|METH_KEYWORDS}, |
| 4861 | {"txn_checkpoint", (PyCFunction)DBEnv_txn_checkpoint, METH_VARARGS}, |
| 4862 | {"txn_stat", (PyCFunction)DBEnv_txn_stat, METH_VARARGS}, |
| 4863 | {"set_tx_max", (PyCFunction)DBEnv_set_tx_max, METH_VARARGS}, |
Gregory P. Smith | 8a47404 | 2006-01-27 07:05:40 +0000 | [diff] [blame] | 4864 | {"set_tx_timestamp", (PyCFunction)DBEnv_set_tx_timestamp, METH_VARARGS}, |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4865 | {"lock_detect", (PyCFunction)DBEnv_lock_detect, METH_VARARGS}, |
| 4866 | {"lock_get", (PyCFunction)DBEnv_lock_get, METH_VARARGS}, |
| 4867 | {"lock_id", (PyCFunction)DBEnv_lock_id, METH_VARARGS}, |
| 4868 | {"lock_put", (PyCFunction)DBEnv_lock_put, METH_VARARGS}, |
| 4869 | {"lock_stat", (PyCFunction)DBEnv_lock_stat, METH_VARARGS}, |
| 4870 | {"log_archive", (PyCFunction)DBEnv_log_archive, METH_VARARGS}, |
Gregory P. Smith | 76a82e8 | 2006-06-05 01:39:52 +0000 | [diff] [blame] | 4871 | #if (DBVER >= 40) |
| 4872 | {"log_stat", (PyCFunction)DBEnv_log_stat, METH_VARARGS}, |
| 4873 | #endif |
Gregory P. Smith | db8a807 | 2006-06-05 01:56:15 +0000 | [diff] [blame^] | 4874 | #if (DBVER >= 44) |
| 4875 | {"lsn_reset", (PyCFunction)DBEnv_lsn_reset, METH_VARARGS|METH_KEYWORDS}, |
| 4876 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4877 | {"set_get_returns_none",(PyCFunction)DBEnv_set_get_returns_none, METH_VARARGS}, |
| 4878 | {NULL, NULL} /* sentinel */ |
| 4879 | }; |
| 4880 | |
| 4881 | |
| 4882 | static PyMethodDef DBTxn_methods[] = { |
| 4883 | {"commit", (PyCFunction)DBTxn_commit, METH_VARARGS}, |
| 4884 | {"prepare", (PyCFunction)DBTxn_prepare, METH_VARARGS}, |
| 4885 | {"abort", (PyCFunction)DBTxn_abort, METH_VARARGS}, |
| 4886 | {"id", (PyCFunction)DBTxn_id, METH_VARARGS}, |
| 4887 | {NULL, NULL} /* sentinel */ |
| 4888 | }; |
| 4889 | |
| 4890 | |
| 4891 | static PyObject* |
| 4892 | DB_getattr(DBObject* self, char *name) |
| 4893 | { |
| 4894 | return Py_FindMethod(DB_methods, (PyObject* )self, name); |
| 4895 | } |
| 4896 | |
| 4897 | |
| 4898 | static PyObject* |
| 4899 | DBEnv_getattr(DBEnvObject* self, char *name) |
| 4900 | { |
| 4901 | if (!strcmp(name, "db_home")) { |
| 4902 | CHECK_ENV_NOT_CLOSED(self); |
| 4903 | if (self->db_env->db_home == NULL) { |
| 4904 | RETURN_NONE(); |
| 4905 | } |
| 4906 | return PyString_FromString(self->db_env->db_home); |
| 4907 | } |
| 4908 | |
| 4909 | return Py_FindMethod(DBEnv_methods, (PyObject* )self, name); |
| 4910 | } |
| 4911 | |
| 4912 | |
| 4913 | static PyObject* |
| 4914 | DBCursor_getattr(DBCursorObject* self, char *name) |
| 4915 | { |
| 4916 | return Py_FindMethod(DBCursor_methods, (PyObject* )self, name); |
| 4917 | } |
| 4918 | |
| 4919 | static PyObject* |
| 4920 | DBTxn_getattr(DBTxnObject* self, char *name) |
| 4921 | { |
| 4922 | return Py_FindMethod(DBTxn_methods, (PyObject* )self, name); |
| 4923 | } |
| 4924 | |
| 4925 | static PyObject* |
| 4926 | DBLock_getattr(DBLockObject* self, char *name) |
| 4927 | { |
| 4928 | return NULL; |
| 4929 | } |
| 4930 | |
| 4931 | statichere PyTypeObject DB_Type = { |
| 4932 | PyObject_HEAD_INIT(NULL) |
| 4933 | 0, /*ob_size*/ |
| 4934 | "DB", /*tp_name*/ |
| 4935 | sizeof(DBObject), /*tp_basicsize*/ |
| 4936 | 0, /*tp_itemsize*/ |
| 4937 | /* methods */ |
| 4938 | (destructor)DB_dealloc, /*tp_dealloc*/ |
| 4939 | 0, /*tp_print*/ |
| 4940 | (getattrfunc)DB_getattr, /*tp_getattr*/ |
| 4941 | 0, /*tp_setattr*/ |
| 4942 | 0, /*tp_compare*/ |
| 4943 | 0, /*tp_repr*/ |
| 4944 | 0, /*tp_as_number*/ |
| 4945 | 0, /*tp_as_sequence*/ |
| 4946 | &DB_mapping,/*tp_as_mapping*/ |
| 4947 | 0, /*tp_hash*/ |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 4948 | #ifdef HAVE_WEAKREF |
| 4949 | 0, /* tp_call */ |
| 4950 | 0, /* tp_str */ |
| 4951 | 0, /* tp_getattro */ |
| 4952 | 0, /* tp_setattro */ |
| 4953 | 0, /* tp_as_buffer */ |
| 4954 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */ |
| 4955 | 0, /* tp_doc */ |
| 4956 | 0, /* tp_traverse */ |
| 4957 | 0, /* tp_clear */ |
| 4958 | 0, /* tp_richcompare */ |
| 4959 | offsetof(DBObject, in_weakreflist), /* tp_weaklistoffset */ |
| 4960 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4961 | }; |
| 4962 | |
| 4963 | |
| 4964 | statichere PyTypeObject DBCursor_Type = { |
| 4965 | PyObject_HEAD_INIT(NULL) |
| 4966 | 0, /*ob_size*/ |
| 4967 | "DBCursor", /*tp_name*/ |
| 4968 | sizeof(DBCursorObject), /*tp_basicsize*/ |
| 4969 | 0, /*tp_itemsize*/ |
| 4970 | /* methods */ |
| 4971 | (destructor)DBCursor_dealloc,/*tp_dealloc*/ |
| 4972 | 0, /*tp_print*/ |
| 4973 | (getattrfunc)DBCursor_getattr, /*tp_getattr*/ |
| 4974 | 0, /*tp_setattr*/ |
| 4975 | 0, /*tp_compare*/ |
| 4976 | 0, /*tp_repr*/ |
| 4977 | 0, /*tp_as_number*/ |
| 4978 | 0, /*tp_as_sequence*/ |
| 4979 | 0, /*tp_as_mapping*/ |
| 4980 | 0, /*tp_hash*/ |
Gregory P. Smith | a703a21 | 2003-11-03 01:04:41 +0000 | [diff] [blame] | 4981 | #ifdef HAVE_WEAKREF |
| 4982 | 0, /* tp_call */ |
| 4983 | 0, /* tp_str */ |
| 4984 | 0, /* tp_getattro */ |
| 4985 | 0, /* tp_setattro */ |
| 4986 | 0, /* tp_as_buffer */ |
| 4987 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */ |
| 4988 | 0, /* tp_doc */ |
| 4989 | 0, /* tp_traverse */ |
| 4990 | 0, /* tp_clear */ |
| 4991 | 0, /* tp_richcompare */ |
| 4992 | offsetof(DBCursorObject, in_weakreflist), /* tp_weaklistoffset */ |
| 4993 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 4994 | }; |
| 4995 | |
| 4996 | |
| 4997 | statichere PyTypeObject DBEnv_Type = { |
| 4998 | PyObject_HEAD_INIT(NULL) |
| 4999 | 0, /*ob_size*/ |
| 5000 | "DBEnv", /*tp_name*/ |
| 5001 | sizeof(DBEnvObject), /*tp_basicsize*/ |
| 5002 | 0, /*tp_itemsize*/ |
| 5003 | /* methods */ |
| 5004 | (destructor)DBEnv_dealloc, /*tp_dealloc*/ |
| 5005 | 0, /*tp_print*/ |
| 5006 | (getattrfunc)DBEnv_getattr, /*tp_getattr*/ |
| 5007 | 0, /*tp_setattr*/ |
| 5008 | 0, /*tp_compare*/ |
| 5009 | 0, /*tp_repr*/ |
| 5010 | 0, /*tp_as_number*/ |
| 5011 | 0, /*tp_as_sequence*/ |
| 5012 | 0, /*tp_as_mapping*/ |
| 5013 | 0, /*tp_hash*/ |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 5014 | #ifdef HAVE_WEAKREF |
| 5015 | 0, /* tp_call */ |
| 5016 | 0, /* tp_str */ |
| 5017 | 0, /* tp_getattro */ |
| 5018 | 0, /* tp_setattro */ |
| 5019 | 0, /* tp_as_buffer */ |
| 5020 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */ |
| 5021 | 0, /* tp_doc */ |
| 5022 | 0, /* tp_traverse */ |
| 5023 | 0, /* tp_clear */ |
| 5024 | 0, /* tp_richcompare */ |
| 5025 | offsetof(DBEnvObject, in_weakreflist), /* tp_weaklistoffset */ |
| 5026 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5027 | }; |
| 5028 | |
| 5029 | statichere PyTypeObject DBTxn_Type = { |
| 5030 | PyObject_HEAD_INIT(NULL) |
| 5031 | 0, /*ob_size*/ |
| 5032 | "DBTxn", /*tp_name*/ |
| 5033 | sizeof(DBTxnObject), /*tp_basicsize*/ |
| 5034 | 0, /*tp_itemsize*/ |
| 5035 | /* methods */ |
| 5036 | (destructor)DBTxn_dealloc, /*tp_dealloc*/ |
| 5037 | 0, /*tp_print*/ |
| 5038 | (getattrfunc)DBTxn_getattr, /*tp_getattr*/ |
| 5039 | 0, /*tp_setattr*/ |
| 5040 | 0, /*tp_compare*/ |
| 5041 | 0, /*tp_repr*/ |
| 5042 | 0, /*tp_as_number*/ |
| 5043 | 0, /*tp_as_sequence*/ |
| 5044 | 0, /*tp_as_mapping*/ |
| 5045 | 0, /*tp_hash*/ |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 5046 | #ifdef HAVE_WEAKREF |
| 5047 | 0, /* tp_call */ |
| 5048 | 0, /* tp_str */ |
| 5049 | 0, /* tp_getattro */ |
| 5050 | 0, /* tp_setattro */ |
| 5051 | 0, /* tp_as_buffer */ |
| 5052 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */ |
| 5053 | 0, /* tp_doc */ |
| 5054 | 0, /* tp_traverse */ |
| 5055 | 0, /* tp_clear */ |
| 5056 | 0, /* tp_richcompare */ |
| 5057 | offsetof(DBTxnObject, in_weakreflist), /* tp_weaklistoffset */ |
| 5058 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5059 | }; |
| 5060 | |
| 5061 | |
| 5062 | statichere PyTypeObject DBLock_Type = { |
| 5063 | PyObject_HEAD_INIT(NULL) |
| 5064 | 0, /*ob_size*/ |
| 5065 | "DBLock", /*tp_name*/ |
| 5066 | sizeof(DBLockObject), /*tp_basicsize*/ |
| 5067 | 0, /*tp_itemsize*/ |
| 5068 | /* methods */ |
| 5069 | (destructor)DBLock_dealloc, /*tp_dealloc*/ |
| 5070 | 0, /*tp_print*/ |
| 5071 | (getattrfunc)DBLock_getattr, /*tp_getattr*/ |
| 5072 | 0, /*tp_setattr*/ |
| 5073 | 0, /*tp_compare*/ |
| 5074 | 0, /*tp_repr*/ |
| 5075 | 0, /*tp_as_number*/ |
| 5076 | 0, /*tp_as_sequence*/ |
| 5077 | 0, /*tp_as_mapping*/ |
| 5078 | 0, /*tp_hash*/ |
Gregory P. Smith | 31c5065 | 2004-06-28 01:20:40 +0000 | [diff] [blame] | 5079 | #ifdef HAVE_WEAKREF |
| 5080 | 0, /* tp_call */ |
| 5081 | 0, /* tp_str */ |
| 5082 | 0, /* tp_getattro */ |
| 5083 | 0, /* tp_setattro */ |
| 5084 | 0, /* tp_as_buffer */ |
| 5085 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */ |
| 5086 | 0, /* tp_doc */ |
| 5087 | 0, /* tp_traverse */ |
| 5088 | 0, /* tp_clear */ |
| 5089 | 0, /* tp_richcompare */ |
| 5090 | offsetof(DBLockObject, in_weakreflist), /* tp_weaklistoffset */ |
| 5091 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5092 | }; |
| 5093 | |
| 5094 | |
| 5095 | /* --------------------------------------------------------------------- */ |
| 5096 | /* Module-level functions */ |
| 5097 | |
| 5098 | static PyObject* |
| 5099 | DB_construct(PyObject* self, PyObject* args, PyObject* kwargs) |
| 5100 | { |
| 5101 | PyObject* dbenvobj = NULL; |
| 5102 | int flags = 0; |
Martin v. Löwis | 02cbf4a | 2006-02-27 17:20:04 +0000 | [diff] [blame] | 5103 | static char* kwnames[] = { "dbEnv", "flags", NULL}; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5104 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5105 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|Oi:DB", kwnames, |
| 5106 | &dbenvobj, &flags)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5107 | return NULL; |
| 5108 | if (dbenvobj == Py_None) |
| 5109 | dbenvobj = NULL; |
| 5110 | else if (dbenvobj && !DBEnvObject_Check(dbenvobj)) { |
| 5111 | makeTypeError("DBEnv", dbenvobj); |
| 5112 | return NULL; |
| 5113 | } |
| 5114 | |
| 5115 | return (PyObject* )newDBObject((DBEnvObject*)dbenvobj, flags); |
| 5116 | } |
| 5117 | |
| 5118 | |
| 5119 | static PyObject* |
| 5120 | DBEnv_construct(PyObject* self, PyObject* args) |
| 5121 | { |
| 5122 | int flags = 0; |
| 5123 | if (!PyArg_ParseTuple(args, "|i:DbEnv", &flags)) return NULL; |
| 5124 | return (PyObject* )newDBEnvObject(flags); |
| 5125 | } |
| 5126 | |
| 5127 | |
| 5128 | static char bsddb_version_doc[] = |
| 5129 | "Returns a tuple of major, minor, and patch release numbers of the\n\ |
| 5130 | underlying DB library."; |
| 5131 | |
| 5132 | static PyObject* |
| 5133 | bsddb_version(PyObject* self, PyObject* args) |
| 5134 | { |
| 5135 | int major, minor, patch; |
| 5136 | |
| 5137 | if (!PyArg_ParseTuple(args, ":version")) |
| 5138 | return NULL; |
| 5139 | db_version(&major, &minor, &patch); |
| 5140 | return Py_BuildValue("(iii)", major, minor, patch); |
| 5141 | } |
| 5142 | |
| 5143 | |
| 5144 | /* List of functions defined in the module */ |
| 5145 | |
| 5146 | static PyMethodDef bsddb_methods[] = { |
| 5147 | {"DB", (PyCFunction)DB_construct, METH_VARARGS | METH_KEYWORDS }, |
| 5148 | {"DBEnv", (PyCFunction)DBEnv_construct, METH_VARARGS}, |
| 5149 | {"version", (PyCFunction)bsddb_version, METH_VARARGS, bsddb_version_doc}, |
| 5150 | {NULL, NULL} /* sentinel */ |
| 5151 | }; |
| 5152 | |
| 5153 | |
| 5154 | /* --------------------------------------------------------------------- */ |
| 5155 | /* Module initialization */ |
| 5156 | |
| 5157 | |
| 5158 | /* Convenience routine to export an integer value. |
| 5159 | * Errors are silently ignored, for better or for worse... |
| 5160 | */ |
| 5161 | #define ADD_INT(dict, NAME) _addIntToDict(dict, #NAME, NAME) |
| 5162 | |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5163 | #define MODULE_NAME_MAX_LEN 11 |
| 5164 | static char _bsddbModuleName[MODULE_NAME_MAX_LEN+1] = "_bsddb"; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5165 | |
| 5166 | DL_EXPORT(void) init_bsddb(void) |
| 5167 | { |
| 5168 | PyObject* m; |
| 5169 | PyObject* d; |
| 5170 | PyObject* pybsddb_version_s = PyString_FromString( PY_BSDDB_VERSION ); |
| 5171 | PyObject* db_version_s = PyString_FromString( DB_VERSION_STRING ); |
| 5172 | PyObject* cvsid_s = PyString_FromString( rcs_id ); |
| 5173 | |
| 5174 | /* Initialize the type of the new type objects here; doing it here |
| 5175 | is required for portability to Windows without requiring C++. */ |
| 5176 | DB_Type.ob_type = &PyType_Type; |
| 5177 | DBCursor_Type.ob_type = &PyType_Type; |
| 5178 | DBEnv_Type.ob_type = &PyType_Type; |
| 5179 | DBTxn_Type.ob_type = &PyType_Type; |
| 5180 | DBLock_Type.ob_type = &PyType_Type; |
| 5181 | |
| 5182 | |
Mark Hammond | a69d409 | 2003-04-22 23:13:27 +0000 | [diff] [blame] | 5183 | #if defined(WITH_THREAD) && !defined(MYDB_USE_GILSTATE) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5184 | /* Save the current interpreter, so callbacks can do the right thing. */ |
Nicholas Bastin | 2786d90 | 2004-03-25 02:16:23 +0000 | [diff] [blame] | 5185 | _db_interpreterState = PyThreadState_GET()->interp; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5186 | #endif |
| 5187 | |
| 5188 | /* Create the module and add the functions */ |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5189 | m = Py_InitModule(_bsddbModuleName, bsddb_methods); |
Neal Norwitz | 1ac754f | 2006-01-19 06:09:39 +0000 | [diff] [blame] | 5190 | if (m == NULL) |
| 5191 | return; |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5192 | |
| 5193 | /* Add some symbolic constants to the module */ |
| 5194 | d = PyModule_GetDict(m); |
| 5195 | PyDict_SetItemString(d, "__version__", pybsddb_version_s); |
| 5196 | PyDict_SetItemString(d, "cvsid", cvsid_s); |
| 5197 | PyDict_SetItemString(d, "DB_VERSION_STRING", db_version_s); |
| 5198 | Py_DECREF(pybsddb_version_s); |
| 5199 | pybsddb_version_s = NULL; |
| 5200 | Py_DECREF(cvsid_s); |
| 5201 | cvsid_s = NULL; |
| 5202 | Py_DECREF(db_version_s); |
| 5203 | db_version_s = NULL; |
| 5204 | |
| 5205 | ADD_INT(d, DB_VERSION_MAJOR); |
| 5206 | ADD_INT(d, DB_VERSION_MINOR); |
| 5207 | ADD_INT(d, DB_VERSION_PATCH); |
| 5208 | |
| 5209 | ADD_INT(d, DB_MAX_PAGES); |
| 5210 | ADD_INT(d, DB_MAX_RECORDS); |
| 5211 | |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5212 | #if (DBVER >= 42) |
| 5213 | ADD_INT(d, DB_RPCCLIENT); |
| 5214 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5215 | ADD_INT(d, DB_CLIENT); |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5216 | /* allow apps to be written using DB_RPCCLIENT on older BerkeleyDB */ |
| 5217 | _addIntToDict(d, "DB_RPCCLIENT", DB_CLIENT); |
| 5218 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5219 | ADD_INT(d, DB_XA_CREATE); |
| 5220 | |
| 5221 | ADD_INT(d, DB_CREATE); |
| 5222 | ADD_INT(d, DB_NOMMAP); |
| 5223 | ADD_INT(d, DB_THREAD); |
| 5224 | |
| 5225 | ADD_INT(d, DB_FORCE); |
| 5226 | ADD_INT(d, DB_INIT_CDB); |
| 5227 | ADD_INT(d, DB_INIT_LOCK); |
| 5228 | ADD_INT(d, DB_INIT_LOG); |
| 5229 | ADD_INT(d, DB_INIT_MPOOL); |
| 5230 | ADD_INT(d, DB_INIT_TXN); |
| 5231 | #if (DBVER >= 32) |
| 5232 | ADD_INT(d, DB_JOINENV); |
| 5233 | #endif |
| 5234 | |
| 5235 | ADD_INT(d, DB_RECOVER); |
| 5236 | ADD_INT(d, DB_RECOVER_FATAL); |
| 5237 | ADD_INT(d, DB_TXN_NOSYNC); |
| 5238 | ADD_INT(d, DB_USE_ENVIRON); |
| 5239 | ADD_INT(d, DB_USE_ENVIRON_ROOT); |
| 5240 | |
| 5241 | ADD_INT(d, DB_LOCKDOWN); |
| 5242 | ADD_INT(d, DB_PRIVATE); |
| 5243 | ADD_INT(d, DB_SYSTEM_MEM); |
| 5244 | |
| 5245 | ADD_INT(d, DB_TXN_SYNC); |
| 5246 | ADD_INT(d, DB_TXN_NOWAIT); |
| 5247 | |
| 5248 | ADD_INT(d, DB_EXCL); |
| 5249 | ADD_INT(d, DB_FCNTL_LOCKING); |
| 5250 | ADD_INT(d, DB_ODDFILESIZE); |
| 5251 | ADD_INT(d, DB_RDWRMASTER); |
| 5252 | ADD_INT(d, DB_RDONLY); |
| 5253 | ADD_INT(d, DB_TRUNCATE); |
| 5254 | #if (DBVER >= 32) |
| 5255 | ADD_INT(d, DB_EXTENT); |
| 5256 | ADD_INT(d, DB_CDB_ALLDB); |
| 5257 | ADD_INT(d, DB_VERIFY); |
| 5258 | #endif |
| 5259 | ADD_INT(d, DB_UPGRADE); |
| 5260 | |
| 5261 | ADD_INT(d, DB_AGGRESSIVE); |
| 5262 | ADD_INT(d, DB_NOORDERCHK); |
| 5263 | ADD_INT(d, DB_ORDERCHKONLY); |
| 5264 | ADD_INT(d, DB_PR_PAGE); |
| 5265 | #if ! (DBVER >= 33) |
| 5266 | ADD_INT(d, DB_VRFY_FLAGMASK); |
| 5267 | ADD_INT(d, DB_PR_HEADERS); |
| 5268 | #endif |
| 5269 | ADD_INT(d, DB_PR_RECOVERYTEST); |
| 5270 | ADD_INT(d, DB_SALVAGE); |
| 5271 | |
| 5272 | ADD_INT(d, DB_LOCK_NORUN); |
| 5273 | ADD_INT(d, DB_LOCK_DEFAULT); |
| 5274 | ADD_INT(d, DB_LOCK_OLDEST); |
| 5275 | ADD_INT(d, DB_LOCK_RANDOM); |
| 5276 | ADD_INT(d, DB_LOCK_YOUNGEST); |
| 5277 | #if (DBVER >= 33) |
| 5278 | ADD_INT(d, DB_LOCK_MAXLOCKS); |
| 5279 | ADD_INT(d, DB_LOCK_MINLOCKS); |
| 5280 | ADD_INT(d, DB_LOCK_MINWRITE); |
| 5281 | #endif |
| 5282 | |
| 5283 | |
| 5284 | #if (DBVER >= 33) |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5285 | /* docs say to use zero instead */ |
| 5286 | _addIntToDict(d, "DB_LOCK_CONFLICT", 0); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5287 | #else |
| 5288 | ADD_INT(d, DB_LOCK_CONFLICT); |
| 5289 | #endif |
| 5290 | |
| 5291 | ADD_INT(d, DB_LOCK_DUMP); |
| 5292 | ADD_INT(d, DB_LOCK_GET); |
| 5293 | ADD_INT(d, DB_LOCK_INHERIT); |
| 5294 | ADD_INT(d, DB_LOCK_PUT); |
| 5295 | ADD_INT(d, DB_LOCK_PUT_ALL); |
| 5296 | ADD_INT(d, DB_LOCK_PUT_OBJ); |
| 5297 | |
| 5298 | ADD_INT(d, DB_LOCK_NG); |
| 5299 | ADD_INT(d, DB_LOCK_READ); |
| 5300 | ADD_INT(d, DB_LOCK_WRITE); |
| 5301 | ADD_INT(d, DB_LOCK_NOWAIT); |
| 5302 | #if (DBVER >= 32) |
| 5303 | ADD_INT(d, DB_LOCK_WAIT); |
| 5304 | #endif |
| 5305 | ADD_INT(d, DB_LOCK_IWRITE); |
| 5306 | ADD_INT(d, DB_LOCK_IREAD); |
| 5307 | ADD_INT(d, DB_LOCK_IWR); |
| 5308 | #if (DBVER >= 33) |
Gregory P. Smith | 29602d2 | 2006-01-24 09:46:48 +0000 | [diff] [blame] | 5309 | #if (DBVER < 44) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5310 | ADD_INT(d, DB_LOCK_DIRTY); |
Gregory P. Smith | 29602d2 | 2006-01-24 09:46:48 +0000 | [diff] [blame] | 5311 | #else |
| 5312 | ADD_INT(d, DB_LOCK_READ_UNCOMMITTED); /* renamed in 4.4 */ |
| 5313 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5314 | ADD_INT(d, DB_LOCK_WWRITE); |
| 5315 | #endif |
| 5316 | |
| 5317 | ADD_INT(d, DB_LOCK_RECORD); |
| 5318 | ADD_INT(d, DB_LOCK_UPGRADE); |
| 5319 | #if (DBVER >= 32) |
| 5320 | ADD_INT(d, DB_LOCK_SWITCH); |
| 5321 | #endif |
| 5322 | #if (DBVER >= 33) |
| 5323 | ADD_INT(d, DB_LOCK_UPGRADE_WRITE); |
| 5324 | #endif |
| 5325 | |
| 5326 | ADD_INT(d, DB_LOCK_NOWAIT); |
| 5327 | ADD_INT(d, DB_LOCK_RECORD); |
| 5328 | ADD_INT(d, DB_LOCK_UPGRADE); |
| 5329 | |
| 5330 | #if (DBVER >= 33) |
| 5331 | ADD_INT(d, DB_LSTAT_ABORTED); |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 5332 | #if (DBVER < 43) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5333 | ADD_INT(d, DB_LSTAT_ERR); |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 5334 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5335 | ADD_INT(d, DB_LSTAT_FREE); |
| 5336 | ADD_INT(d, DB_LSTAT_HELD); |
| 5337 | #if (DBVER == 33) |
| 5338 | ADD_INT(d, DB_LSTAT_NOGRANT); |
| 5339 | #endif |
| 5340 | ADD_INT(d, DB_LSTAT_PENDING); |
| 5341 | ADD_INT(d, DB_LSTAT_WAITING); |
| 5342 | #endif |
| 5343 | |
| 5344 | ADD_INT(d, DB_ARCH_ABS); |
| 5345 | ADD_INT(d, DB_ARCH_DATA); |
| 5346 | ADD_INT(d, DB_ARCH_LOG); |
Gregory P. Smith | 3dd2002 | 2006-06-05 00:31:01 +0000 | [diff] [blame] | 5347 | #if (DBVER >= 42) |
| 5348 | ADD_INT(d, DB_ARCH_REMOVE); |
| 5349 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5350 | |
| 5351 | ADD_INT(d, DB_BTREE); |
| 5352 | ADD_INT(d, DB_HASH); |
| 5353 | ADD_INT(d, DB_RECNO); |
| 5354 | ADD_INT(d, DB_QUEUE); |
| 5355 | ADD_INT(d, DB_UNKNOWN); |
| 5356 | |
| 5357 | ADD_INT(d, DB_DUP); |
| 5358 | ADD_INT(d, DB_DUPSORT); |
| 5359 | ADD_INT(d, DB_RECNUM); |
| 5360 | ADD_INT(d, DB_RENUMBER); |
| 5361 | ADD_INT(d, DB_REVSPLITOFF); |
| 5362 | ADD_INT(d, DB_SNAPSHOT); |
| 5363 | |
| 5364 | ADD_INT(d, DB_JOIN_NOSORT); |
| 5365 | |
| 5366 | ADD_INT(d, DB_AFTER); |
| 5367 | ADD_INT(d, DB_APPEND); |
| 5368 | ADD_INT(d, DB_BEFORE); |
| 5369 | ADD_INT(d, DB_CACHED_COUNTS); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5370 | #if (DBVER >= 41) |
| 5371 | _addIntToDict(d, "DB_CHECKPOINT", 0); |
| 5372 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5373 | ADD_INT(d, DB_CHECKPOINT); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5374 | ADD_INT(d, DB_CURLSN); |
| 5375 | #endif |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5376 | #if ((DBVER >= 33) && (DBVER <= 41)) |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5377 | ADD_INT(d, DB_COMMIT); |
| 5378 | #endif |
| 5379 | ADD_INT(d, DB_CONSUME); |
| 5380 | #if (DBVER >= 32) |
| 5381 | ADD_INT(d, DB_CONSUME_WAIT); |
| 5382 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5383 | ADD_INT(d, DB_CURRENT); |
| 5384 | #if (DBVER >= 33) |
| 5385 | ADD_INT(d, DB_FAST_STAT); |
| 5386 | #endif |
| 5387 | ADD_INT(d, DB_FIRST); |
| 5388 | ADD_INT(d, DB_FLUSH); |
| 5389 | ADD_INT(d, DB_GET_BOTH); |
| 5390 | ADD_INT(d, DB_GET_RECNO); |
| 5391 | ADD_INT(d, DB_JOIN_ITEM); |
| 5392 | ADD_INT(d, DB_KEYFIRST); |
| 5393 | ADD_INT(d, DB_KEYLAST); |
| 5394 | ADD_INT(d, DB_LAST); |
| 5395 | ADD_INT(d, DB_NEXT); |
| 5396 | ADD_INT(d, DB_NEXT_DUP); |
| 5397 | ADD_INT(d, DB_NEXT_NODUP); |
| 5398 | ADD_INT(d, DB_NODUPDATA); |
| 5399 | ADD_INT(d, DB_NOOVERWRITE); |
| 5400 | ADD_INT(d, DB_NOSYNC); |
| 5401 | ADD_INT(d, DB_POSITION); |
| 5402 | ADD_INT(d, DB_PREV); |
| 5403 | ADD_INT(d, DB_PREV_NODUP); |
| 5404 | ADD_INT(d, DB_RECORDCOUNT); |
| 5405 | ADD_INT(d, DB_SET); |
| 5406 | ADD_INT(d, DB_SET_RANGE); |
| 5407 | ADD_INT(d, DB_SET_RECNO); |
| 5408 | ADD_INT(d, DB_WRITECURSOR); |
| 5409 | |
| 5410 | ADD_INT(d, DB_OPFLAGS_MASK); |
| 5411 | ADD_INT(d, DB_RMW); |
| 5412 | #if (DBVER >= 33) |
| 5413 | ADD_INT(d, DB_DIRTY_READ); |
| 5414 | ADD_INT(d, DB_MULTIPLE); |
| 5415 | ADD_INT(d, DB_MULTIPLE_KEY); |
| 5416 | #endif |
| 5417 | |
Gregory P. Smith | 29602d2 | 2006-01-24 09:46:48 +0000 | [diff] [blame] | 5418 | #if (DBVER >= 44) |
| 5419 | ADD_INT(d, DB_READ_UNCOMMITTED); /* replaces DB_DIRTY_READ in 4.4 */ |
| 5420 | ADD_INT(d, DB_READ_COMMITTED); |
| 5421 | #endif |
| 5422 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5423 | #if (DBVER >= 33) |
| 5424 | ADD_INT(d, DB_DONOTINDEX); |
| 5425 | #endif |
| 5426 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5427 | #if (DBVER >= 41) |
| 5428 | _addIntToDict(d, "DB_INCOMPLETE", 0); |
| 5429 | #else |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5430 | ADD_INT(d, DB_INCOMPLETE); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5431 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5432 | ADD_INT(d, DB_KEYEMPTY); |
| 5433 | ADD_INT(d, DB_KEYEXIST); |
| 5434 | ADD_INT(d, DB_LOCK_DEADLOCK); |
| 5435 | ADD_INT(d, DB_LOCK_NOTGRANTED); |
| 5436 | ADD_INT(d, DB_NOSERVER); |
| 5437 | ADD_INT(d, DB_NOSERVER_HOME); |
| 5438 | ADD_INT(d, DB_NOSERVER_ID); |
| 5439 | ADD_INT(d, DB_NOTFOUND); |
| 5440 | ADD_INT(d, DB_OLD_VERSION); |
| 5441 | ADD_INT(d, DB_RUNRECOVERY); |
| 5442 | ADD_INT(d, DB_VERIFY_BAD); |
| 5443 | #if (DBVER >= 33) |
| 5444 | ADD_INT(d, DB_PAGE_NOTFOUND); |
| 5445 | ADD_INT(d, DB_SECONDARY_BAD); |
| 5446 | #endif |
| 5447 | #if (DBVER >= 40) |
| 5448 | ADD_INT(d, DB_STAT_CLEAR); |
| 5449 | ADD_INT(d, DB_REGION_INIT); |
| 5450 | ADD_INT(d, DB_NOLOCKING); |
| 5451 | ADD_INT(d, DB_YIELDCPU); |
| 5452 | ADD_INT(d, DB_PANIC_ENVIRONMENT); |
| 5453 | ADD_INT(d, DB_NOPANIC); |
| 5454 | #endif |
| 5455 | |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5456 | #if (DBVER >= 42) |
| 5457 | ADD_INT(d, DB_TIME_NOTGRANTED); |
| 5458 | ADD_INT(d, DB_TXN_NOT_DURABLE); |
| 5459 | ADD_INT(d, DB_TXN_WRITE_NOSYNC); |
| 5460 | ADD_INT(d, DB_LOG_AUTOREMOVE); |
| 5461 | ADD_INT(d, DB_DIRECT_LOG); |
| 5462 | ADD_INT(d, DB_DIRECT_DB); |
| 5463 | ADD_INT(d, DB_INIT_REP); |
| 5464 | ADD_INT(d, DB_ENCRYPT); |
| 5465 | ADD_INT(d, DB_CHKSUM); |
| 5466 | #endif |
| 5467 | |
Gregory P. Smith | 8b7e917 | 2004-12-13 09:51:23 +0000 | [diff] [blame] | 5468 | #if (DBVER >= 43) |
| 5469 | ADD_INT(d, DB_LOG_INMEMORY); |
| 5470 | ADD_INT(d, DB_BUFFER_SMALL); |
| 5471 | #endif |
| 5472 | |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5473 | #if (DBVER >= 41) |
| 5474 | ADD_INT(d, DB_ENCRYPT_AES); |
| 5475 | ADD_INT(d, DB_AUTO_COMMIT); |
| 5476 | #else |
| 5477 | /* allow berkeleydb 4.1 aware apps to run on older versions */ |
| 5478 | _addIntToDict(d, "DB_AUTO_COMMIT", 0); |
| 5479 | #endif |
| 5480 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5481 | ADD_INT(d, EINVAL); |
| 5482 | ADD_INT(d, EACCES); |
| 5483 | ADD_INT(d, ENOSPC); |
| 5484 | ADD_INT(d, ENOMEM); |
| 5485 | ADD_INT(d, EAGAIN); |
| 5486 | ADD_INT(d, EBUSY); |
| 5487 | ADD_INT(d, EEXIST); |
| 5488 | ADD_INT(d, ENOENT); |
| 5489 | ADD_INT(d, EPERM); |
| 5490 | |
Barry Warsaw | 1baa982 | 2003-03-31 19:51:29 +0000 | [diff] [blame] | 5491 | #if (DBVER >= 40) |
| 5492 | ADD_INT(d, DB_SET_LOCK_TIMEOUT); |
| 5493 | ADD_INT(d, DB_SET_TXN_TIMEOUT); |
| 5494 | #endif |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5495 | |
Gregory P. Smith | 7f5b6f4 | 2006-04-08 07:10:51 +0000 | [diff] [blame] | 5496 | /* The exception name must be correct for pickled exception * |
| 5497 | * objects to unpickle properly. */ |
| 5498 | #ifdef PYBSDDB_STANDALONE /* different value needed for standalone pybsddb */ |
| 5499 | #define PYBSDDB_EXCEPTION_BASE "bsddb3.db." |
| 5500 | #else |
| 5501 | #define PYBSDDB_EXCEPTION_BASE "bsddb.db." |
| 5502 | #endif |
| 5503 | |
| 5504 | /* All the rest of the exceptions derive only from DBError */ |
| 5505 | #define MAKE_EX(name) name = PyErr_NewException(PYBSDDB_EXCEPTION_BASE #name, DBError, NULL); \ |
| 5506 | PyDict_SetItemString(d, #name, name) |
| 5507 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5508 | /* The base exception class is DBError */ |
Gregory P. Smith | 7f5b6f4 | 2006-04-08 07:10:51 +0000 | [diff] [blame] | 5509 | DBError = NULL; /* used in MAKE_EX so that it derives from nothing */ |
| 5510 | MAKE_EX(DBError); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5511 | |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 5512 | /* Some magic to make DBNotFoundError and DBKeyEmptyError derive |
| 5513 | * from both DBError and KeyError, since the API only supports |
| 5514 | * using one base class. */ |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5515 | PyDict_SetItemString(d, "KeyError", PyExc_KeyError); |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 5516 | PyRun_String("class DBNotFoundError(DBError, KeyError): pass\n" |
| 5517 | "class DBKeyEmptyError(DBError, KeyError): pass", |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5518 | Py_file_input, d, d); |
| 5519 | DBNotFoundError = PyDict_GetItemString(d, "DBNotFoundError"); |
Gregory P. Smith | e947706 | 2005-06-04 06:46:59 +0000 | [diff] [blame] | 5520 | DBKeyEmptyError = PyDict_GetItemString(d, "DBKeyEmptyError"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5521 | PyDict_DelItemString(d, "KeyError"); |
| 5522 | |
| 5523 | |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5524 | #if !INCOMPLETE_IS_WARNING |
| 5525 | MAKE_EX(DBIncompleteError); |
| 5526 | #endif |
Gregory P. Smith | e276717 | 2003-11-02 08:06:29 +0000 | [diff] [blame] | 5527 | MAKE_EX(DBCursorClosedError); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5528 | MAKE_EX(DBKeyEmptyError); |
| 5529 | MAKE_EX(DBKeyExistError); |
| 5530 | MAKE_EX(DBLockDeadlockError); |
| 5531 | MAKE_EX(DBLockNotGrantedError); |
| 5532 | MAKE_EX(DBOldVersionError); |
| 5533 | MAKE_EX(DBRunRecoveryError); |
| 5534 | MAKE_EX(DBVerifyBadError); |
| 5535 | MAKE_EX(DBNoServerError); |
| 5536 | MAKE_EX(DBNoServerHomeError); |
| 5537 | MAKE_EX(DBNoServerIDError); |
| 5538 | #if (DBVER >= 33) |
| 5539 | MAKE_EX(DBPageNotFoundError); |
| 5540 | MAKE_EX(DBSecondaryBadError); |
| 5541 | #endif |
| 5542 | |
| 5543 | MAKE_EX(DBInvalidArgError); |
| 5544 | MAKE_EX(DBAccessError); |
| 5545 | MAKE_EX(DBNoSpaceError); |
| 5546 | MAKE_EX(DBNoMemoryError); |
| 5547 | MAKE_EX(DBAgainError); |
| 5548 | MAKE_EX(DBBusyError); |
| 5549 | MAKE_EX(DBFileExistsError); |
| 5550 | MAKE_EX(DBNoSuchFileError); |
| 5551 | MAKE_EX(DBPermissionsError); |
| 5552 | |
| 5553 | #undef MAKE_EX |
| 5554 | |
| 5555 | /* Check for errors */ |
| 5556 | if (PyErr_Occurred()) { |
| 5557 | PyErr_Print(); |
Barry Warsaw | 9a0d779 | 2002-12-30 20:53:52 +0000 | [diff] [blame] | 5558 | Py_FatalError("can't initialize module _bsddb"); |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 5559 | } |
| 5560 | } |
Gregory P. Smith | 41631e8 | 2003-09-21 00:08:14 +0000 | [diff] [blame] | 5561 | |
| 5562 | /* allow this module to be named _pybsddb so that it can be installed |
| 5563 | * and imported on top of python >= 2.3 that includes its own older |
| 5564 | * copy of the library named _bsddb without importing the old version. */ |
| 5565 | DL_EXPORT(void) init_pybsddb(void) |
| 5566 | { |
| 5567 | strncpy(_bsddbModuleName, "_pybsddb", MODULE_NAME_MAX_LEN); |
| 5568 | init_bsddb(); |
| 5569 | } |