Adds basic support for BerkeleyDB 4.2.x. Compiles and passes tests; new
features in BerkeleyDB not exposed. notably: the DB_MPOOLFILE interface has not yet been wrapped in an object. Adds support for building and installing bsddb3 in python2.3 that has an older version of this module installed as bsddb without conflicts. The pybsddb.sf.net build/packaged version of the module uses a dynamicly loadable module called _pybsddb rather than _bsddb.
This commit is contained in:
parent
cec1b3f6a7
commit
41631e8f66
|
@ -33,11 +33,18 @@
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
"""Support for BerkeleyDB 3.1 through 4.1.
|
"""Support for BerkeleyDB 3.2 through 4.2.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import _bsddb
|
if __name__ == 'bsddb3':
|
||||||
|
# import _pybsddb binary as it should be the more recent version from
|
||||||
|
# a standalone pybsddb addon package than the version included with
|
||||||
|
# python as bsddb._bsddb.
|
||||||
|
import _pybsddb
|
||||||
|
_bsddb = _pybsddb
|
||||||
|
else:
|
||||||
|
import _bsddb
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# Remove ourselves from sys.modules
|
# Remove ourselves from sys.modules
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -37,8 +37,15 @@
|
||||||
# case we ever want to augment the stuff in _db in any way. For now
|
# case we ever want to augment the stuff in _db in any way. For now
|
||||||
# it just simply imports everything from _db.
|
# it just simply imports everything from _db.
|
||||||
|
|
||||||
from _bsddb import *
|
if __name__[:len('bsddb3.')] == 'bsddb3.':
|
||||||
from _bsddb import __version__
|
# import _pybsddb binary as it should be the more recent version from
|
||||||
|
# a standalone pybsddb addon package than the version included with
|
||||||
|
# python as bsddb._bsddb.
|
||||||
|
from _pybsddb import *
|
||||||
|
from _pybsddb import __version__
|
||||||
|
else:
|
||||||
|
from _bsddb import *
|
||||||
|
from _bsddb import __version__
|
||||||
|
|
||||||
if version() < (3, 1, 0):
|
if version() < (3, 2, 0):
|
||||||
raise ImportError, "BerkeleyDB 3.x symbols not found. Perhaps python was statically linked with an older version?"
|
raise ImportError, "correct BerkeleyDB symbols not found. Perhaps python was statically linked with an older version?"
|
||||||
|
|
|
@ -35,12 +35,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# DictMixin is new in Python 2.3
|
# DictMixin is new in Python 2.3
|
||||||
class DictMixin: pass
|
class DictMixin: pass
|
||||||
try:
|
import db
|
||||||
# For Python 2.3
|
|
||||||
from bsddb import db
|
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -26,11 +26,11 @@ from types import ListType, StringType
|
||||||
import cPickle as pickle
|
import cPickle as pickle
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3.db import *
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb.db import *
|
from bsddb.db import *
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3.db import *
|
|
||||||
|
|
||||||
|
|
||||||
class TableDBError(StandardError):
|
class TableDBError(StandardError):
|
||||||
|
|
|
@ -26,12 +26,7 @@
|
||||||
#
|
#
|
||||||
from time import sleep as _sleep
|
from time import sleep as _sleep
|
||||||
|
|
||||||
try:
|
import db
|
||||||
# For Python 2.3
|
|
||||||
from bsddb import db
|
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
# always sleep at least N seconds between retrys
|
# always sleep at least N seconds between retrys
|
||||||
_deadlock_MinSleepTime = 1.0/64
|
_deadlock_MinSleepTime = 1.0/64
|
||||||
|
|
|
@ -17,11 +17,11 @@ if 'silent' in sys.argv: # take care of old flag, just in case
|
||||||
|
|
||||||
def print_versions():
|
def print_versions():
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
print
|
print
|
||||||
print '-=' * 38
|
print '-=' * 38
|
||||||
print db.DB_VERSION_STRING
|
print db.DB_VERSION_STRING
|
||||||
|
|
|
@ -17,11 +17,11 @@ import unittest
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbshelve
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbshelve
|
from bsddb import db, dbshelve
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbshelve
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
|
@ -13,11 +13,11 @@ from pprint import pprint
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,11 @@ import tempfile
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, hashopen, btopen, rnopen
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, hashopen, btopen, rnopen
|
from bsddb import db, hashopen, btopen, rnopen
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, hashopen, btopen, rnopen
|
|
||||||
|
|
||||||
|
|
||||||
class CompatibilityTestCase(unittest.TestCase):
|
class CompatibilityTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -4,11 +4,11 @@ import unittest
|
||||||
import glob
|
import glob
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbobj
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbobj
|
from bsddb import db, dbobj
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbobj
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
|
@ -9,11 +9,11 @@ from types import *
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbshelve
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbshelve
|
from bsddb import db, dbshelve
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbshelve
|
|
||||||
|
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
|
|
|
@ -31,11 +31,11 @@ import unittest
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbtables
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbtables
|
from bsddb import db, dbtables
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbtables
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,11 @@ import glob
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
|
|
|
@ -8,11 +8,11 @@ from pprint import pprint
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
|
|
|
@ -16,11 +16,11 @@ import unittest
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbshelve
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbshelve
|
from bsddb import db, dbshelve
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbshelve
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
|
@ -19,11 +19,11 @@ import unittest
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
|
@ -6,11 +6,11 @@ import sys
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbshelve
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbshelve
|
from bsddb import db, dbshelve
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbshelve
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -8,11 +8,11 @@ from pprint import pprint
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
|
|
|
@ -11,11 +11,11 @@ import unittest
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db
|
from bsddb import db
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db
|
|
||||||
|
|
||||||
letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||||
|
|
||||||
|
|
|
@ -28,11 +28,11 @@ import unittest
|
||||||
from test_all import verbose
|
from test_all import verbose
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# For Pythons w/distutils pybsddb
|
||||||
|
from bsddb3 import db, dbutils
|
||||||
|
except ImportError:
|
||||||
# For Python 2.3
|
# For Python 2.3
|
||||||
from bsddb import db, dbutils
|
from bsddb import db, dbutils
|
||||||
except ImportError:
|
|
||||||
# For earlier Pythons w/distutils pybsddb
|
|
||||||
from bsddb3 import db, dbutils
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
/*
|
/*
|
||||||
* Handwritten code to wrap version 3.x of the Berkeley DB library,
|
* Handwritten code to wrap version 3.x of the Berkeley DB library,
|
||||||
* written to replace a SWIG-generated file. It has since been updated
|
* written to replace a SWIG-generated file. It has since been updated
|
||||||
* to compile with BerkeleyDB versions 3.2 through 4.1.
|
* to compile with BerkeleyDB versions 3.2 through 4.2.
|
||||||
*
|
*
|
||||||
* This module was started by Andrew Kuchling to remove the dependency
|
* This module was started by Andrew Kuchling to remove the dependency
|
||||||
* on SWIG in a package by Gregory P. Smith <greg@electricrain.com> who
|
* on SWIG in a package by Gregory P. Smith <greg@electricrain.com> who
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
/* 40 = 4.0, 33 = 3.3; this will break if the second number is > 9 */
|
/* 40 = 4.0, 33 = 3.3; this will break if the second number is > 9 */
|
||||||
#define DBVER (DB_VERSION_MAJOR * 10 + DB_VERSION_MINOR)
|
#define DBVER (DB_VERSION_MAJOR * 10 + DB_VERSION_MINOR)
|
||||||
|
|
||||||
#define PY_BSDDB_VERSION "4.1.6"
|
#define PY_BSDDB_VERSION "4.2.0"
|
||||||
static char *rcs_id = "$Id$";
|
static char *rcs_id = "$Id$";
|
||||||
|
|
||||||
|
|
||||||
|
@ -2167,6 +2167,17 @@ DB_verify(DBObject* self, PyObject* args, PyObject* kwargs)
|
||||||
MYDB_END_ALLOW_THREADS;
|
MYDB_END_ALLOW_THREADS;
|
||||||
if (outFileName)
|
if (outFileName)
|
||||||
fclose(outFile);
|
fclose(outFile);
|
||||||
|
|
||||||
|
/* DB.verify acts as a DB handle destructor (like close); this was
|
||||||
|
* documented in BerkeleyDB 4.2 but had the undocumented effect
|
||||||
|
* of not being safe in prior versions while still requiring an explicit
|
||||||
|
* DB.close call afterwards. Lets call close for the user to emulate
|
||||||
|
* the safe 4.2 behaviour. */
|
||||||
|
#if (DBVER <= 41)
|
||||||
|
self->db->close(self->db, 0);
|
||||||
|
#endif
|
||||||
|
self->db = NULL;
|
||||||
|
|
||||||
RETURN_IF_ERR();
|
RETURN_IF_ERR();
|
||||||
RETURN_NONE();
|
RETURN_NONE();
|
||||||
}
|
}
|
||||||
|
@ -4340,7 +4351,8 @@ static PyMethodDef bsddb_methods[] = {
|
||||||
*/
|
*/
|
||||||
#define ADD_INT(dict, NAME) _addIntToDict(dict, #NAME, NAME)
|
#define ADD_INT(dict, NAME) _addIntToDict(dict, #NAME, NAME)
|
||||||
|
|
||||||
|
#define MODULE_NAME_MAX_LEN 11
|
||||||
|
static char _bsddbModuleName[MODULE_NAME_MAX_LEN+1] = "_bsddb";
|
||||||
|
|
||||||
DL_EXPORT(void) init_bsddb(void)
|
DL_EXPORT(void) init_bsddb(void)
|
||||||
{
|
{
|
||||||
|
@ -4365,7 +4377,7 @@ DL_EXPORT(void) init_bsddb(void)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Create the module and add the functions */
|
/* Create the module and add the functions */
|
||||||
m = Py_InitModule("_bsddb", bsddb_methods);
|
m = Py_InitModule(_bsddbModuleName, bsddb_methods);
|
||||||
|
|
||||||
/* Add some symbolic constants to the module */
|
/* Add some symbolic constants to the module */
|
||||||
d = PyModule_GetDict(m);
|
d = PyModule_GetDict(m);
|
||||||
|
@ -4386,7 +4398,13 @@ DL_EXPORT(void) init_bsddb(void)
|
||||||
ADD_INT(d, DB_MAX_PAGES);
|
ADD_INT(d, DB_MAX_PAGES);
|
||||||
ADD_INT(d, DB_MAX_RECORDS);
|
ADD_INT(d, DB_MAX_RECORDS);
|
||||||
|
|
||||||
|
#if (DBVER >= 42)
|
||||||
|
ADD_INT(d, DB_RPCCLIENT);
|
||||||
|
#else
|
||||||
ADD_INT(d, DB_CLIENT);
|
ADD_INT(d, DB_CLIENT);
|
||||||
|
/* allow apps to be written using DB_RPCCLIENT on older BerkeleyDB */
|
||||||
|
_addIntToDict(d, "DB_RPCCLIENT", DB_CLIENT);
|
||||||
|
#endif
|
||||||
ADD_INT(d, DB_XA_CREATE);
|
ADD_INT(d, DB_XA_CREATE);
|
||||||
|
|
||||||
ADD_INT(d, DB_CREATE);
|
ADD_INT(d, DB_CREATE);
|
||||||
|
@ -4535,7 +4553,7 @@ DL_EXPORT(void) init_bsddb(void)
|
||||||
ADD_INT(d, DB_CHECKPOINT);
|
ADD_INT(d, DB_CHECKPOINT);
|
||||||
ADD_INT(d, DB_CURLSN);
|
ADD_INT(d, DB_CURLSN);
|
||||||
#endif
|
#endif
|
||||||
#if (DBVER >= 33)
|
#if ((DBVER >= 33) && (DBVER <= 41))
|
||||||
ADD_INT(d, DB_COMMIT);
|
ADD_INT(d, DB_COMMIT);
|
||||||
#endif
|
#endif
|
||||||
ADD_INT(d, DB_CONSUME);
|
ADD_INT(d, DB_CONSUME);
|
||||||
|
@ -4610,6 +4628,18 @@ DL_EXPORT(void) init_bsddb(void)
|
||||||
ADD_INT(d, DB_NOPANIC);
|
ADD_INT(d, DB_NOPANIC);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (DBVER >= 42)
|
||||||
|
ADD_INT(d, DB_TIME_NOTGRANTED);
|
||||||
|
ADD_INT(d, DB_TXN_NOT_DURABLE);
|
||||||
|
ADD_INT(d, DB_TXN_WRITE_NOSYNC);
|
||||||
|
ADD_INT(d, DB_LOG_AUTOREMOVE);
|
||||||
|
ADD_INT(d, DB_DIRECT_LOG);
|
||||||
|
ADD_INT(d, DB_DIRECT_DB);
|
||||||
|
ADD_INT(d, DB_INIT_REP);
|
||||||
|
ADD_INT(d, DB_ENCRYPT);
|
||||||
|
ADD_INT(d, DB_CHKSUM);
|
||||||
|
#endif
|
||||||
|
|
||||||
#if (DBVER >= 41)
|
#if (DBVER >= 41)
|
||||||
ADD_INT(d, DB_ENCRYPT_AES);
|
ADD_INT(d, DB_ENCRYPT_AES);
|
||||||
ADD_INT(d, DB_AUTO_COMMIT);
|
ADD_INT(d, DB_AUTO_COMMIT);
|
||||||
|
@ -4686,3 +4716,12 @@ DL_EXPORT(void) init_bsddb(void)
|
||||||
Py_FatalError("can't initialize module _bsddb");
|
Py_FatalError("can't initialize module _bsddb");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* allow this module to be named _pybsddb so that it can be installed
|
||||||
|
* and imported on top of python >= 2.3 that includes its own older
|
||||||
|
* copy of the library named _bsddb without importing the old version. */
|
||||||
|
DL_EXPORT(void) init_pybsddb(void)
|
||||||
|
{
|
||||||
|
strncpy(_bsddbModuleName, "_pybsddb", MODULE_NAME_MAX_LEN);
|
||||||
|
init_bsddb();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue