1995-08-30 20:43:03 -03:00
|
|
|
/***********************************************************
|
2000-06-30 20:50:40 -03:00
|
|
|
Copyright (c) 2000, BeOpen.com.
|
|
|
|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|
|
|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See the file "Misc/COPYRIGHT" for information on usage and
|
|
|
|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
1995-08-30 20:43:03 -03:00
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* Berkeley DB interface.
|
|
|
|
Author: Michael McLay
|
|
|
|
Hacked: Guido van Rossum
|
|
|
|
Btree and Recno additions plus sequence methods: David Ely
|
|
|
|
|
|
|
|
XXX To do:
|
|
|
|
- provide interface to the B-tree and record libraries too
|
|
|
|
- provide a way to access the various hash functions
|
|
|
|
- support more open flags
|
1999-09-20 10:28:18 -03:00
|
|
|
|
|
|
|
The windows port of the Berkeley DB code is hard to find on the web:
|
|
|
|
www.nightmare.com/software.html
|
|
|
|
*/
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
#include "Python.h"
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-10-01 17:42:43 -03:00
|
|
|
#include "pythread.h"
|
1998-04-09 17:56:35 -03:00
|
|
|
#endif
|
1995-08-30 20:43:03 -03:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2000-06-30 01:17:11 -03:00
|
|
|
/* If using Berkeley DB 2.0 or newer, change this include to <db_185.h>: */
|
1995-08-30 20:43:03 -03:00
|
|
|
#include <db.h>
|
|
|
|
/* Please don't include internal header files of the Berkeley db package
|
|
|
|
(it messes up the info required in the Setup file) */
|
|
|
|
|
|
|
|
typedef struct {
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject_HEAD
|
|
|
|
DB *di_bsddb;
|
|
|
|
int di_size; /* -1 means recompute */
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-12-21 15:32:43 -04:00
|
|
|
PyThread_type_lock di_lock;
|
1998-04-09 17:56:35 -03:00
|
|
|
#endif
|
1995-08-30 20:43:03 -03:00
|
|
|
} bsddbobject;
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
staticforward PyTypeObject Bsddbtype;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
|
|
|
#define is_bsddbobject(v) ((v)->ob_type == &Bsddbtype)
|
1997-07-17 19:56:01 -03:00
|
|
|
#define check_bsddbobject_open(v) if ((v)->di_bsddb == NULL) \
|
|
|
|
{ PyErr_SetString(BsddbError, "BSDDB object has already been closed"); \
|
|
|
|
return NULL; }
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *BsddbError;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
newdbhashobject(file, flags, mode,
|
|
|
|
bsize, ffactor, nelem, cachesize, hash, lorder)
|
1997-01-16 18:05:33 -04:00
|
|
|
char *file;
|
|
|
|
int flags;
|
|
|
|
int mode;
|
|
|
|
int bsize;
|
|
|
|
int ffactor;
|
|
|
|
int nelem;
|
|
|
|
int cachesize;
|
|
|
|
int hash; /* XXX ignored */
|
|
|
|
int lorder;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
HASHINFO info;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
if ((dp = PyObject_New(bsddbobject, &Bsddbtype)) == NULL)
|
1997-01-16 18:05:33 -04:00
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
info.bsize = bsize;
|
|
|
|
info.ffactor = ffactor;
|
|
|
|
info.nelem = nelem;
|
|
|
|
info.cachesize = cachesize;
|
|
|
|
info.hash = NULL; /* XXX should derive from hash argument */
|
|
|
|
info.lorder = lorder;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1996-09-11 20:22:25 -03:00
|
|
|
#ifdef O_BINARY
|
1997-01-16 18:05:33 -04:00
|
|
|
flags |= O_BINARY;
|
1996-09-11 20:22:25 -03:00
|
|
|
#endif
|
1998-04-09 17:56:35 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
dp->di_bsddb = dbopen(file, flags, mode, DB_HASH, &info);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (dp->di_bsddb == NULL) {
|
1997-01-16 18:05:33 -04:00
|
|
|
PyErr_SetFromErrno(BsddbError);
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
|
|
|
dp->di_lock = NULL;
|
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
Py_DECREF(dp);
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
dp->di_size = -1;
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-12-21 15:32:43 -04:00
|
|
|
dp->di_lock = PyThread_allocate_lock();
|
1998-04-09 17:56:35 -03:00
|
|
|
if (dp->di_lock == NULL) {
|
|
|
|
PyErr_SetString(BsddbError, "can't allocate lock");
|
|
|
|
Py_DECREF(dp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
return (PyObject *)dp;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
newdbbtobject(file, flags, mode,
|
1997-01-16 18:05:33 -04:00
|
|
|
btflags, cachesize, maxkeypage, minkeypage, psize, lorder)
|
|
|
|
char *file;
|
|
|
|
int flags;
|
|
|
|
int mode;
|
|
|
|
int btflags;
|
|
|
|
int cachesize;
|
|
|
|
int maxkeypage;
|
|
|
|
int minkeypage;
|
|
|
|
int psize;
|
|
|
|
int lorder;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
BTREEINFO info;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
if ((dp = PyObject_New(bsddbobject, &Bsddbtype)) == NULL)
|
1997-01-16 18:05:33 -04:00
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
info.flags = btflags;
|
|
|
|
info.cachesize = cachesize;
|
|
|
|
info.maxkeypage = maxkeypage;
|
|
|
|
info.minkeypage = minkeypage;
|
|
|
|
info.psize = psize;
|
|
|
|
info.lorder = lorder;
|
|
|
|
info.compare = 0; /* Use default comparison functions, for now..*/
|
|
|
|
info.prefix = 0;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1996-09-11 20:22:25 -03:00
|
|
|
#ifdef O_BINARY
|
1997-01-16 18:05:33 -04:00
|
|
|
flags |= O_BINARY;
|
1996-09-11 20:22:25 -03:00
|
|
|
#endif
|
1998-04-09 17:56:35 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
dp->di_bsddb = dbopen(file, flags, mode, DB_BTREE, &info);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (dp->di_bsddb == NULL) {
|
1997-01-16 18:05:33 -04:00
|
|
|
PyErr_SetFromErrno(BsddbError);
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
|
|
|
dp->di_lock = NULL;
|
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
Py_DECREF(dp);
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
dp->di_size = -1;
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-12-21 15:32:43 -04:00
|
|
|
dp->di_lock = PyThread_allocate_lock();
|
1998-04-09 17:56:35 -03:00
|
|
|
if (dp->di_lock == NULL) {
|
|
|
|
PyErr_SetString(BsddbError, "can't allocate lock");
|
|
|
|
Py_DECREF(dp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
return (PyObject *)dp;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
newdbrnobject(file, flags, mode,
|
1997-01-16 18:05:33 -04:00
|
|
|
rnflags, cachesize, psize, lorder, reclen, bval, bfname)
|
|
|
|
char *file;
|
|
|
|
int flags;
|
|
|
|
int mode;
|
|
|
|
int rnflags;
|
|
|
|
int cachesize;
|
|
|
|
int psize;
|
|
|
|
int lorder;
|
|
|
|
size_t reclen;
|
|
|
|
u_char bval;
|
|
|
|
char *bfname;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
RECNOINFO info;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
if ((dp = PyObject_New(bsddbobject, &Bsddbtype)) == NULL)
|
1997-01-16 18:05:33 -04:00
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
info.flags = rnflags;
|
|
|
|
info.cachesize = cachesize;
|
|
|
|
info.psize = psize;
|
|
|
|
info.lorder = lorder;
|
|
|
|
info.reclen = reclen;
|
|
|
|
info.bval = bval;
|
|
|
|
info.bfname = bfname;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1996-09-11 20:22:25 -03:00
|
|
|
#ifdef O_BINARY
|
1997-01-16 18:05:33 -04:00
|
|
|
flags |= O_BINARY;
|
1996-09-11 20:22:25 -03:00
|
|
|
#endif
|
1998-04-09 17:56:35 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
dp->di_bsddb = dbopen(file, flags, mode, DB_RECNO, &info);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (dp->di_bsddb == NULL) {
|
1997-01-16 18:05:33 -04:00
|
|
|
PyErr_SetFromErrno(BsddbError);
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
|
|
|
dp->di_lock = NULL;
|
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
Py_DECREF(dp);
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
dp->di_size = -1;
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-12-21 15:32:43 -04:00
|
|
|
dp->di_lock = PyThread_allocate_lock();
|
1998-04-09 17:56:35 -03:00
|
|
|
if (dp->di_lock == NULL) {
|
|
|
|
PyErr_SetString(BsddbError, "can't allocate lock");
|
|
|
|
Py_DECREF(dp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
return (PyObject *)dp;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bsddb_dealloc(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
|
|
|
if (dp->di_lock) {
|
1998-12-21 15:32:43 -04:00
|
|
|
PyThread_acquire_lock(dp->di_lock, 0);
|
|
|
|
PyThread_release_lock(dp->di_lock);
|
|
|
|
PyThread_free_lock(dp->di_lock);
|
1998-04-09 17:56:35 -03:00
|
|
|
dp->di_lock = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
if (dp->di_bsddb != NULL) {
|
1998-04-09 17:56:35 -03:00
|
|
|
int status;
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
status = (dp->di_bsddb->close)(dp->di_bsddb);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (status != 0)
|
1997-01-16 18:05:33 -04:00
|
|
|
fprintf(stderr,
|
|
|
|
"Python bsddb: close errno %d in dealloc\n",
|
|
|
|
errno);
|
|
|
|
}
|
2000-05-03 20:44:39 -03:00
|
|
|
PyObject_Del(dp);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-12-21 15:32:43 -04:00
|
|
|
#define BSDDB_BGN_SAVE(_dp) Py_BEGIN_ALLOW_THREADS PyThread_acquire_lock(_dp->di_lock,1);
|
|
|
|
#define BSDDB_END_SAVE(_dp) PyThread_release_lock(_dp->di_lock); Py_END_ALLOW_THREADS
|
1998-04-09 17:56:35 -03:00
|
|
|
#else
|
|
|
|
#define BSDDB_BGN_SAVE(_dp) Py_BEGIN_ALLOW_THREADS
|
|
|
|
#define BSDDB_END_SAVE(_dp) Py_END_ALLOW_THREADS
|
|
|
|
#endif
|
|
|
|
|
1995-08-30 20:43:03 -03:00
|
|
|
static int
|
|
|
|
bsddb_length(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-07-17 19:56:01 -03:00
|
|
|
if (dp->di_bsddb == NULL) {
|
|
|
|
PyErr_SetString(BsddbError, "BSDDB object has already been closed");
|
|
|
|
return -1;
|
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
if (dp->di_size < 0) {
|
|
|
|
DBT krec, drec;
|
|
|
|
int status;
|
|
|
|
int size = 0;
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
for (status = (dp->di_bsddb->seq)(dp->di_bsddb,
|
|
|
|
&krec, &drec,R_FIRST);
|
|
|
|
status == 0;
|
|
|
|
status = (dp->di_bsddb->seq)(dp->di_bsddb,
|
|
|
|
&krec, &drec, R_NEXT))
|
|
|
|
size++;
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status < 0) {
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
dp->di_size = size;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
return dp->di_size;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_subscript(dp, key)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
int status;
|
|
|
|
DBT krec, drec;
|
1998-04-09 17:56:35 -03:00
|
|
|
char *data,buf[4096];
|
1997-01-16 18:05:33 -04:00
|
|
|
int size;
|
1998-04-09 17:56:35 -03:00
|
|
|
PyObject *result;
|
1997-01-16 18:05:33 -04:00
|
|
|
|
|
|
|
if (!PyArg_Parse(key, "s#", &data, &size))
|
|
|
|
return NULL;
|
1997-07-17 19:56:01 -03:00
|
|
|
check_bsddbobject_open(dp);
|
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
krec.data = data;
|
|
|
|
krec.size = size;
|
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->get)(dp->di_bsddb, &krec, &drec, 0);
|
1998-04-09 17:56:35 -03:00
|
|
|
if (status == 0) {
|
|
|
|
if (drec.size > sizeof(buf)) data = malloc(drec.size);
|
|
|
|
else data = buf;
|
|
|
|
memcpy(data,drec.data,drec.size);
|
|
|
|
}
|
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status != 0) {
|
|
|
|
if (status < 0)
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
else
|
|
|
|
PyErr_SetObject(PyExc_KeyError, key);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
result = PyString_FromStringAndSize(data, (int)drec.size);
|
|
|
|
if (data != buf) free(data);
|
|
|
|
return result;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bsddb_ass_sub(dp, key, value)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key, *value;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
int status;
|
|
|
|
DBT krec, drec;
|
|
|
|
char *data;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
if (!PyArg_Parse(key, "s#", &data, &size)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"bsddb key type must be string");
|
|
|
|
return -1;
|
|
|
|
}
|
1997-07-17 19:56:01 -03:00
|
|
|
if (dp->di_bsddb == NULL) {
|
|
|
|
PyErr_SetString(BsddbError, "BSDDB object has already been closed");
|
|
|
|
return -1;
|
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
krec.data = data;
|
|
|
|
krec.size = size;
|
|
|
|
dp->di_size = -1;
|
|
|
|
if (value == NULL) {
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->del)(dp->di_bsddb, &krec, 0);
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!PyArg_Parse(value, "s#", &data, &size)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"bsddb value type must be string");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
drec.data = data;
|
|
|
|
drec.size = size;
|
|
|
|
#if 0
|
|
|
|
/* For RECNO, put fails with 'No space left on device'
|
|
|
|
after a few short records are added?? Looks fine
|
|
|
|
to this point... linked with 1.85 on Solaris Intel
|
|
|
|
Roger E. Masse 1/16/97
|
|
|
|
*/
|
|
|
|
printf("before put data: '%s', size: %d\n",
|
|
|
|
drec.data, drec.size);
|
|
|
|
printf("before put key= '%s', size= %d\n",
|
|
|
|
krec.data, krec.size);
|
|
|
|
#endif
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->put)(dp->di_bsddb, &krec, &drec, 0);
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_END_SAVE(dp)
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status != 0) {
|
|
|
|
if (status < 0)
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
else
|
|
|
|
PyErr_SetObject(PyExc_KeyError, key);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyMappingMethods bsddb_as_mapping = {
|
1997-01-16 18:05:33 -04:00
|
|
|
(inquiry)bsddb_length, /*mp_length*/
|
|
|
|
(binaryfunc)bsddb_subscript, /*mp_subscript*/
|
|
|
|
(objobjargproc)bsddb_ass_sub, /*mp_ass_subscript*/
|
1995-08-30 20:43:03 -03:00
|
|
|
};
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_close(dp, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
if (!PyArg_NoArgs(args))
|
|
|
|
return NULL;
|
|
|
|
if (dp->di_bsddb != NULL) {
|
1998-04-09 17:56:35 -03:00
|
|
|
int status;
|
|
|
|
BSDDB_BGN_SAVE(dp)
|
|
|
|
status = (dp->di_bsddb->close)(dp->di_bsddb);
|
|
|
|
BSDDB_END_SAVE(dp)
|
|
|
|
if (status != 0) {
|
1997-01-16 18:05:33 -04:00
|
|
|
dp->di_bsddb = NULL;
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
dp->di_bsddb = NULL;
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_keys(dp, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject *list, *item;
|
|
|
|
DBT krec, drec;
|
1998-04-10 19:27:42 -03:00
|
|
|
char *data=NULL,buf[4096];
|
1997-01-16 18:05:33 -04:00
|
|
|
int status;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!PyArg_NoArgs(args))
|
|
|
|
return NULL;
|
1997-07-17 19:56:01 -03:00
|
|
|
check_bsddbobject_open(dp);
|
1997-01-16 18:05:33 -04:00
|
|
|
list = PyList_New(0);
|
|
|
|
if (list == NULL)
|
|
|
|
return NULL;
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
|
|
|
status = (dp->di_bsddb->seq)(dp->di_bsddb, &krec, &drec, R_FIRST);
|
|
|
|
if (status == 0) {
|
|
|
|
if (krec.size > sizeof(buf)) data = malloc(krec.size);
|
|
|
|
else data = buf;
|
|
|
|
memcpy(data,krec.data,krec.size);
|
|
|
|
}
|
|
|
|
BSDDB_END_SAVE(dp)
|
|
|
|
while (status == 0) {
|
|
|
|
item = PyString_FromStringAndSize(data, (int)krec.size);
|
|
|
|
if (data != buf) free(data);
|
1997-01-16 18:05:33 -04:00
|
|
|
if (item == NULL) {
|
|
|
|
Py_DECREF(list);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
err = PyList_Append(list, item);
|
|
|
|
Py_DECREF(item);
|
|
|
|
if (err != 0) {
|
|
|
|
Py_DECREF(list);
|
|
|
|
return NULL;
|
|
|
|
}
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
|
|
|
status = (dp->di_bsddb->seq)(dp->di_bsddb, &krec, &drec, R_NEXT);
|
|
|
|
if (status == 0) {
|
|
|
|
if (krec.size > sizeof(buf)) data = malloc(krec.size);
|
|
|
|
else data = buf;
|
|
|
|
memcpy(data,krec.data,krec.size);
|
|
|
|
}
|
|
|
|
BSDDB_END_SAVE(dp)
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status < 0) {
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
Py_DECREF(list);
|
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
if (dp->di_size < 0)
|
|
|
|
dp->di_size = PyList_Size(list); /* We just did the work */
|
|
|
|
return list;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_has_key(dp, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
DBT krec, drec;
|
|
|
|
int status;
|
|
|
|
char *data;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
if (!PyArg_Parse(args, "s#", &data, &size))
|
|
|
|
return NULL;
|
1997-07-17 19:56:01 -03:00
|
|
|
check_bsddbobject_open(dp);
|
1997-01-16 18:05:33 -04:00
|
|
|
krec.data = data;
|
|
|
|
krec.size = size;
|
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->get)(dp->di_bsddb, &krec, &drec, 0);
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status < 0) {
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PyInt_FromLong(status == 0);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_set_location(dp, key)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
int status;
|
|
|
|
DBT krec, drec;
|
1998-04-09 17:56:35 -03:00
|
|
|
char *data,buf[4096];
|
1997-01-16 18:05:33 -04:00
|
|
|
int size;
|
1998-04-09 17:56:35 -03:00
|
|
|
PyObject *result;
|
1997-01-16 18:05:33 -04:00
|
|
|
|
|
|
|
if (!PyArg_Parse(key, "s#", &data, &size))
|
|
|
|
return NULL;
|
1997-07-17 19:56:01 -03:00
|
|
|
check_bsddbobject_open(dp);
|
1997-01-16 18:05:33 -04:00
|
|
|
krec.data = data;
|
|
|
|
krec.size = size;
|
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->seq)(dp->di_bsddb, &krec, &drec, R_CURSOR);
|
1998-04-09 17:56:35 -03:00
|
|
|
if (status == 0) {
|
|
|
|
if (drec.size > sizeof(buf)) data = malloc(drec.size);
|
|
|
|
else data = buf;
|
|
|
|
memcpy(data,drec.data,drec.size);
|
|
|
|
}
|
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status != 0) {
|
|
|
|
if (status < 0)
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
else
|
|
|
|
PyErr_SetObject(PyExc_KeyError, key);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
result = Py_BuildValue("s#s#", krec.data, krec.size, data, drec.size);
|
|
|
|
if (data != buf) free(data);
|
|
|
|
return result;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_seq(dp, args, sequence_request)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *args;
|
|
|
|
int sequence_request;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
int status;
|
|
|
|
DBT krec, drec;
|
1998-04-10 19:27:42 -03:00
|
|
|
char *kdata=NULL,kbuf[4096];
|
|
|
|
char *ddata=NULL,dbuf[4096];
|
1998-04-09 17:56:35 -03:00
|
|
|
PyObject *result;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-01-16 18:05:33 -04:00
|
|
|
if (!PyArg_NoArgs(args))
|
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1997-07-17 19:56:01 -03:00
|
|
|
check_bsddbobject_open(dp);
|
1997-01-16 18:05:33 -04:00
|
|
|
krec.data = 0;
|
|
|
|
krec.size = 0;
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->seq)(dp->di_bsddb, &krec,
|
|
|
|
&drec, sequence_request);
|
1998-04-09 17:56:35 -03:00
|
|
|
if (status == 0) {
|
|
|
|
if (krec.size > sizeof(kbuf)) kdata = malloc(krec.size);
|
|
|
|
else kdata = kbuf;
|
|
|
|
memcpy(kdata,krec.data,krec.size);
|
|
|
|
if (drec.size > sizeof(dbuf)) ddata = malloc(drec.size);
|
|
|
|
else ddata = dbuf;
|
|
|
|
memcpy(ddata,drec.data,drec.size);
|
|
|
|
}
|
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status != 0) {
|
|
|
|
if (status < 0)
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
else
|
|
|
|
PyErr_SetObject(PyExc_KeyError, args);
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
|
1998-04-09 17:56:35 -03:00
|
|
|
result = Py_BuildValue("s#s#", kdata, krec.size, ddata, drec.size);
|
|
|
|
if (kdata != kbuf) free(kdata);
|
|
|
|
if (ddata != dbuf) free(ddata);
|
|
|
|
return result;
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_next(dp, key)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
return bsddb_seq(dp, key, R_NEXT);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_previous(dp, key)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
return bsddb_seq(dp, key, R_PREV);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_first(dp, key)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
return bsddb_seq(dp, key, R_FIRST);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_last(dp, key)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *key;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
return bsddb_seq(dp, key, R_LAST);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_sync(dp, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
bsddbobject *dp;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
int status;
|
|
|
|
|
1997-07-17 19:56:01 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
|
|
|
return NULL;
|
|
|
|
check_bsddbobject_open(dp);
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_BGN_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
status = (dp->di_bsddb->sync)(dp->di_bsddb, 0);
|
1998-04-09 17:56:35 -03:00
|
|
|
BSDDB_END_SAVE(dp)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (status != 0) {
|
|
|
|
PyErr_SetFromErrno(BsddbError);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return PyInt_FromLong(status = 0);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyMethodDef bsddb_methods[] = {
|
1997-01-16 18:05:33 -04:00
|
|
|
{"close", (PyCFunction)bsddb_close},
|
|
|
|
{"keys", (PyCFunction)bsddb_keys},
|
|
|
|
{"has_key", (PyCFunction)bsddb_has_key},
|
|
|
|
{"set_location", (PyCFunction)bsddb_set_location},
|
|
|
|
{"next", (PyCFunction)bsddb_next},
|
|
|
|
{"previous", (PyCFunction)bsddb_previous},
|
|
|
|
{"first", (PyCFunction)bsddb_first},
|
|
|
|
{"last", (PyCFunction)bsddb_last},
|
|
|
|
{"sync", (PyCFunction)bsddb_sync},
|
|
|
|
{NULL, NULL} /* sentinel */
|
1995-08-30 20:43:03 -03:00
|
|
|
};
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsddb_getattr(dp, name)
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject *dp;
|
|
|
|
char *name;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
return Py_FindMethod(bsddb_methods, dp, name);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyTypeObject Bsddbtype = {
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject_HEAD_INIT(NULL)
|
|
|
|
0,
|
|
|
|
"bsddb",
|
|
|
|
sizeof(bsddbobject),
|
|
|
|
0,
|
|
|
|
(destructor)bsddb_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
|
|
|
(getattrfunc)bsddb_getattr, /*tp_getattr*/
|
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
&bsddb_as_mapping, /*tp_as_mapping*/
|
1995-08-30 20:43:03 -03:00
|
|
|
};
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsdhashopen(self, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject *self;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
char *file;
|
|
|
|
char *flag = NULL;
|
|
|
|
int flags = O_RDONLY;
|
|
|
|
int mode = 0666;
|
|
|
|
int bsize = 0;
|
|
|
|
int ffactor = 0;
|
|
|
|
int nelem = 0;
|
|
|
|
int cachesize = 0;
|
|
|
|
int hash = 0; /* XXX currently ignored */
|
|
|
|
int lorder = 0;
|
|
|
|
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "s|siiiiiii:hashopen",
|
1997-01-16 18:05:33 -04:00
|
|
|
&file, &flag, &mode,
|
|
|
|
&bsize, &ffactor, &nelem, &cachesize,
|
|
|
|
&hash, &lorder))
|
|
|
|
return NULL;
|
|
|
|
if (flag != NULL) {
|
|
|
|
/* XXX need to pass O_EXCL, O_EXLOCK, O_NONBLOCK, O_SHLOCK */
|
|
|
|
if (flag[0] == 'r')
|
|
|
|
flags = O_RDONLY;
|
|
|
|
else if (flag[0] == 'w')
|
|
|
|
flags = O_RDWR;
|
|
|
|
else if (flag[0] == 'c')
|
|
|
|
flags = O_RDWR|O_CREAT;
|
|
|
|
else if (flag[0] == 'n')
|
|
|
|
flags = O_RDWR|O_CREAT|O_TRUNC;
|
|
|
|
else {
|
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"Flag should begin with 'r', 'w', 'c' or 'n'");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (flag[1] == 'l') {
|
1995-08-30 20:43:03 -03:00
|
|
|
#if defined(O_EXLOCK) && defined(O_SHLOCK)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (flag[0] == 'r')
|
|
|
|
flags |= O_SHLOCK;
|
|
|
|
else
|
|
|
|
flags |= O_EXLOCK;
|
1995-08-30 20:43:03 -03:00
|
|
|
#else
|
1997-01-16 18:05:33 -04:00
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"locking not supported on this platform");
|
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
return newdbhashobject(file, flags, mode,
|
|
|
|
bsize, ffactor, nelem, cachesize, hash, lorder);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsdbtopen(self, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject *self;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
char *file;
|
|
|
|
char *flag = NULL;
|
|
|
|
int flags = O_RDONLY;
|
|
|
|
int mode = 0666;
|
|
|
|
int cachesize = 0;
|
|
|
|
int maxkeypage = 0;
|
|
|
|
int minkeypage = 0;
|
|
|
|
int btflags = 0;
|
|
|
|
unsigned int psize = 0;
|
|
|
|
int lorder = 0;
|
|
|
|
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "s|siiiiiii:btopen",
|
1997-01-16 18:05:33 -04:00
|
|
|
&file, &flag, &mode,
|
|
|
|
&btflags, &cachesize, &maxkeypage, &minkeypage,
|
|
|
|
&psize, &lorder))
|
|
|
|
return NULL;
|
|
|
|
if (flag != NULL) {
|
|
|
|
/* XXX need to pass O_EXCL, O_EXLOCK, O_NONBLOCK, O_SHLOCK */
|
|
|
|
if (flag[0] == 'r')
|
|
|
|
flags = O_RDONLY;
|
|
|
|
else if (flag[0] == 'w')
|
|
|
|
flags = O_RDWR;
|
|
|
|
else if (flag[0] == 'c')
|
|
|
|
flags = O_RDWR|O_CREAT;
|
|
|
|
else if (flag[0] == 'n')
|
|
|
|
flags = O_RDWR|O_CREAT|O_TRUNC;
|
|
|
|
else {
|
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"Flag should begin with 'r', 'w', 'c' or 'n'");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (flag[1] == 'l') {
|
1995-08-30 20:43:03 -03:00
|
|
|
#if defined(O_EXLOCK) && defined(O_SHLOCK)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (flag[0] == 'r')
|
|
|
|
flags |= O_SHLOCK;
|
|
|
|
else
|
|
|
|
flags |= O_EXLOCK;
|
1995-08-30 20:43:03 -03:00
|
|
|
#else
|
1997-01-16 18:05:33 -04:00
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"locking not supported on this platform");
|
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
return newdbbtobject(file, flags, mode,
|
|
|
|
btflags, cachesize, maxkeypage, minkeypage,
|
|
|
|
psize, lorder);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1996-05-23 19:57:54 -03:00
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyObject *
|
1995-08-30 20:43:03 -03:00
|
|
|
bsdrnopen(self, args)
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject *self;
|
|
|
|
PyObject *args;
|
1995-08-30 20:43:03 -03:00
|
|
|
{
|
1997-01-16 18:05:33 -04:00
|
|
|
char *file;
|
|
|
|
char *flag = NULL;
|
|
|
|
int flags = O_RDONLY;
|
|
|
|
int mode = 0666;
|
|
|
|
int cachesize = 0;
|
|
|
|
int rnflags = 0;
|
|
|
|
unsigned int psize = 0;
|
|
|
|
int lorder = 0;
|
|
|
|
size_t reclen = 0;
|
|
|
|
char *bval = "";
|
|
|
|
char *bfname = NULL;
|
|
|
|
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "s|siiiiiiss:rnopen",
|
1997-01-16 18:05:33 -04:00
|
|
|
&file, &flag, &mode,
|
|
|
|
&rnflags, &cachesize, &psize, &lorder,
|
|
|
|
&reclen, &bval, &bfname))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
# if 0
|
|
|
|
printf("file: %s\n", file);
|
|
|
|
printf("flag: %s\n", flag);
|
|
|
|
printf("mode: %d\n", mode);
|
|
|
|
printf("rnflags: 0x%x\n", rnflags);
|
|
|
|
printf("cachesize: %d\n", cachesize);
|
|
|
|
printf("psize: %d\n", psize);
|
|
|
|
printf("lorder: %d\n", 0);
|
|
|
|
printf("reclen: %d\n", reclen);
|
|
|
|
printf("bval: %c\n", bval[0]);
|
|
|
|
printf("bfname %s\n", bfname);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (flag != NULL) {
|
|
|
|
/* XXX need to pass O_EXCL, O_EXLOCK, O_NONBLOCK, O_SHLOCK */
|
|
|
|
if (flag[0] == 'r')
|
|
|
|
flags = O_RDONLY;
|
|
|
|
else if (flag[0] == 'w')
|
|
|
|
flags = O_RDWR;
|
|
|
|
else if (flag[0] == 'c')
|
|
|
|
flags = O_RDWR|O_CREAT;
|
|
|
|
else if (flag[0] == 'n')
|
|
|
|
flags = O_RDWR|O_CREAT|O_TRUNC;
|
|
|
|
else {
|
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"Flag should begin with 'r', 'w', 'c' or 'n'");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (flag[1] == 'l') {
|
1995-08-30 20:43:03 -03:00
|
|
|
#if defined(O_EXLOCK) && defined(O_SHLOCK)
|
1997-01-16 18:05:33 -04:00
|
|
|
if (flag[0] == 'r')
|
|
|
|
flags |= O_SHLOCK;
|
|
|
|
else
|
|
|
|
flags |= O_EXLOCK;
|
1995-08-30 20:43:03 -03:00
|
|
|
#else
|
1997-01-16 18:05:33 -04:00
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"locking not supported on this platform");
|
|
|
|
return NULL;
|
1995-08-30 20:43:03 -03:00
|
|
|
#endif
|
1997-01-16 18:05:33 -04:00
|
|
|
}
|
|
|
|
else if (flag[1] != '\0') {
|
|
|
|
PyErr_SetString(BsddbError,
|
|
|
|
"Flag char 2 should be 'l' or absent");
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
1997-01-16 18:05:33 -04:00
|
|
|
return newdbrnobject(file, flags, mode, rnflags, cachesize,
|
|
|
|
psize, lorder, reclen, bval[0], bfname);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|
|
|
|
|
1996-07-23 21:51:20 -03:00
|
|
|
static PyMethodDef bsddbmodule_methods[] = {
|
1997-01-16 18:05:33 -04:00
|
|
|
{"hashopen", (PyCFunction)bsdhashopen, 1},
|
|
|
|
{"btopen", (PyCFunction)bsdbtopen, 1},
|
|
|
|
{"rnopen", (PyCFunction)bsdrnopen, 1},
|
|
|
|
{0, 0},
|
1995-08-30 20:43:03 -03:00
|
|
|
};
|
|
|
|
|
1998-12-04 14:50:17 -04:00
|
|
|
DL_EXPORT(void)
|
1995-08-30 20:43:03 -03:00
|
|
|
initbsddb() {
|
1997-01-16 18:05:33 -04:00
|
|
|
PyObject *m, *d;
|
|
|
|
|
|
|
|
Bsddbtype.ob_type = &PyType_Type;
|
|
|
|
m = Py_InitModule("bsddb", bsddbmodule_methods);
|
|
|
|
d = PyModule_GetDict(m);
|
1997-10-01 01:29:29 -03:00
|
|
|
BsddbError = PyErr_NewException("bsddb.error", NULL, NULL);
|
|
|
|
if (BsddbError != NULL)
|
|
|
|
PyDict_SetItemString(d, "error", BsddbError);
|
1995-08-30 20:43:03 -03:00
|
|
|
}
|