mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
dd15f6c315
svn+ssh://pythondev@svn.python.org/python/trunk ........ r61239 | andrew.kuchling | 2008-03-05 01:44:41 +0100 (Wed, 05 Mar 2008) | 1 line Add more items; add fragmentary notes ........ r61240 | amaury.forgeotdarc | 2008-03-05 02:50:33 +0100 (Wed, 05 Mar 2008) | 13 lines Issue#2238: some syntax errors from *args or **kwargs expressions would give bogus error messages, because of untested exceptions:: >>> f(**g(1=2)) XXX undetected error Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'int' object is not iterable instead of the expected SyntaxError: keyword can't be an expression Will backport. ........ r61241 | neal.norwitz | 2008-03-05 06:10:48 +0100 (Wed, 05 Mar 2008) | 3 lines Remove the files/dirs after closing the DB so the tests work on Windows. Patch from Trent Nelson. Also simplified removing a file by using test_support. ........ r61242 | neal.norwitz | 2008-03-05 06:14:18 +0100 (Wed, 05 Mar 2008) | 3 lines Get this test to pass even when there is no sound card in the system. Patch from Trent Nelson. (I can't test this.) ........ r61243 | neal.norwitz | 2008-03-05 06:20:44 +0100 (Wed, 05 Mar 2008) | 3 lines Catch OSError when trying to remove a file in case removal fails. This should prevent a failure in tearDown masking any real test failure. ........ r61244 | neal.norwitz | 2008-03-05 06:38:06 +0100 (Wed, 05 Mar 2008) | 5 lines Make the timeout longer to give slow machines a chance to pass the test before timing out. This doesn't change the duration of the test under normal circumstances. This is targetted at fixing the spurious failures on the FreeBSD buildbot primarily. ........ r61245 | neal.norwitz | 2008-03-05 06:49:03 +0100 (Wed, 05 Mar 2008) | 1 line Tabs -> spaces ........ r61246 | neal.norwitz | 2008-03-05 06:50:20 +0100 (Wed, 05 Mar 2008) | 1 line Use -u urlfetch to run more tests ........ r61247 | neal.norwitz | 2008-03-05 06:51:20 +0100 (Wed, 05 Mar 2008) | 1 line test_smtplib sometimes reports leaks too, suppress it ........ r61248 | jeffrey.yasskin | 2008-03-05 07:19:56 +0100 (Wed, 05 Mar 2008) | 5 lines Fix test_socketserver on Windows after r61099 added several signal.alarm() calls (which don't exist on non-Unix platforms). Thanks to Trent Nelson for the report and patch. ........ r61249 | georg.brandl | 2008-03-05 08:10:35 +0100 (Wed, 05 Mar 2008) | 2 lines Fix some rst. ........ r61252 | thomas.heller | 2008-03-05 15:53:39 +0100 (Wed, 05 Mar 2008) | 2 lines News entry for yesterdays commit. ........ r61253 | thomas.heller | 2008-03-05 16:34:29 +0100 (Wed, 05 Mar 2008) | 3 lines Issue 1872: Changed the struct module typecode from 't' to '?', for compatibility with PEP3118. ........ r61254 | skip.montanaro | 2008-03-05 17:41:09 +0100 (Wed, 05 Mar 2008) | 4 lines Elaborate on the role of the altinstall target when installing multiple versions. ........ r61255 | georg.brandl | 2008-03-05 20:31:44 +0100 (Wed, 05 Mar 2008) | 2 lines #2239: PYTHONPATH delimiter is os.pathsep. ........ r61256 | raymond.hettinger | 2008-03-05 21:59:58 +0100 (Wed, 05 Mar 2008) | 1 line C implementation of itertools.permutations(). ........ r61257 | raymond.hettinger | 2008-03-05 22:04:32 +0100 (Wed, 05 Mar 2008) | 1 line Small code cleanup. ........ r61260 | martin.v.loewis | 2008-03-05 23:24:31 +0100 (Wed, 05 Mar 2008) | 2 lines cd PCbuild only after deleting all pyc files. ........ r61261 | raymond.hettinger | 2008-03-06 02:15:52 +0100 (Thu, 06 Mar 2008) | 1 line Add examples. ........ r61262 | andrew.kuchling | 2008-03-06 02:36:27 +0100 (Thu, 06 Mar 2008) | 1 line Add two items ........ r61263 | georg.brandl | 2008-03-06 07:47:18 +0100 (Thu, 06 Mar 2008) | 2 lines #1725737: ignore other VC directories other than CVS and SVN's too. ........ r61264 | martin.v.loewis | 2008-03-06 07:55:22 +0100 (Thu, 06 Mar 2008) | 4 lines Patch #2232: os.tmpfile might fail on Windows if the user has no permission to create files in the root directory. Will backport to 2.5. ........ r61269 | georg.brandl | 2008-03-06 08:19:15 +0100 (Thu, 06 Mar 2008) | 2 lines Expand on re.split behavior with captured expressions. ........ r61270 | georg.brandl | 2008-03-06 08:22:09 +0100 (Thu, 06 Mar 2008) | 2 lines Little clarification of assignments. ........ r61271 | georg.brandl | 2008-03-06 08:31:34 +0100 (Thu, 06 Mar 2008) | 2 lines Add isinstance/issubclass to tutorial. ........ r61272 | georg.brandl | 2008-03-06 08:34:52 +0100 (Thu, 06 Mar 2008) | 2 lines Add missing NEWS entry for r61263. ........ r61273 | georg.brandl | 2008-03-06 08:41:16 +0100 (Thu, 06 Mar 2008) | 2 lines #2225: return nonzero status code from py_compile if not all files could be compiled. ........ r61274 | georg.brandl | 2008-03-06 08:43:02 +0100 (Thu, 06 Mar 2008) | 2 lines #2220: handle matching failure more gracefully. ........ r61275 | georg.brandl | 2008-03-06 08:45:52 +0100 (Thu, 06 Mar 2008) | 2 lines Bug #2220: handle rlcompleter attribute match failure more gracefully. ........ r61278 | martin.v.loewis | 2008-03-06 14:49:47 +0100 (Thu, 06 Mar 2008) | 1 line Rely on x64 platform configuration when building _bsddb on AMD64. ........ r61279 | martin.v.loewis | 2008-03-06 14:50:28 +0100 (Thu, 06 Mar 2008) | 1 line Update db-4.4.20 build procedure. ........ r61285 | raymond.hettinger | 2008-03-06 21:52:01 +0100 (Thu, 06 Mar 2008) | 1 line More tests. ........ r61286 | raymond.hettinger | 2008-03-06 23:51:36 +0100 (Thu, 06 Mar 2008) | 1 line Issue 2246: itertools grouper object did not participate in GC (should be backported). ........ r61288 | raymond.hettinger | 2008-03-07 02:33:20 +0100 (Fri, 07 Mar 2008) | 1 line Tweak recipes and tests ........ r61289 | jeffrey.yasskin | 2008-03-07 07:22:15 +0100 (Fri, 07 Mar 2008) | 5 lines Progress on issue #1193577 by adding a polling .shutdown() method to SocketServers. The core of the patch was written by Pedro Werneck, but any bugs are mine. I've also rearranged the code for timeouts in order to avoid interfering with the shutdown poll. ........ r61290 | nick.coghlan | 2008-03-07 15:13:28 +0100 (Fri, 07 Mar 2008) | 1 line Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) ........ r61298 | andrew.kuchling | 2008-03-07 22:09:23 +0100 (Fri, 07 Mar 2008) | 1 line Grammar fix ........ r61303 | georg.brandl | 2008-03-08 10:54:06 +0100 (Sat, 08 Mar 2008) | 2 lines #2253: fix continue vs. finally docs. ........ r61304 | marc-andre.lemburg | 2008-03-08 11:01:43 +0100 (Sat, 08 Mar 2008) | 3 lines Add new name for Mandrake: Mandriva. ........ r61305 | georg.brandl | 2008-03-08 11:05:24 +0100 (Sat, 08 Mar 2008) | 2 lines #1533486: fix types in refcount intro. ........ r61312 | facundo.batista | 2008-03-08 17:50:27 +0100 (Sat, 08 Mar 2008) | 5 lines Issue 1106316. post_mortem()'s parameter, traceback, is now optional: it defaults to the traceback of the exception that is currently being handled. ........ r61313 | jeffrey.yasskin | 2008-03-08 19:26:54 +0100 (Sat, 08 Mar 2008) | 2 lines Add tests for with and finally performance to pybench. ........ r61314 | jeffrey.yasskin | 2008-03-08 21:08:21 +0100 (Sat, 08 Mar 2008) | 2 lines Fix pybench for pythons < 2.6, tested back to 2.3. ........ r61317 | jeffrey.yasskin | 2008-03-08 22:35:15 +0100 (Sat, 08 Mar 2008) | 3 lines Well that was dumb. platform.python_implementation returns a function, not a string. ........ r61329 | georg.brandl | 2008-03-09 16:11:39 +0100 (Sun, 09 Mar 2008) | 2 lines #2249: document assertTrue and assertFalse. ........ r61332 | neal.norwitz | 2008-03-09 20:03:42 +0100 (Sun, 09 Mar 2008) | 4 lines Introduce a lock to fix a race condition which caused an exception in the test. Some buildbots were consistently failing (e.g., amd64). Also remove a couple of semi-colons. ........ r61344 | raymond.hettinger | 2008-03-11 01:19:07 +0100 (Tue, 11 Mar 2008) | 1 line Add recipe to docs. ........ r61350 | guido.van.rossum | 2008-03-11 22:18:06 +0100 (Tue, 11 Mar 2008) | 3 lines Fix the overflows in expandtabs(). "This time for sure!" (Exploit at request.) ........ r61351 | raymond.hettinger | 2008-03-11 22:37:46 +0100 (Tue, 11 Mar 2008) | 1 line Improve docs for itemgetter(). Show that it works with slices. ........ r61363 | georg.brandl | 2008-03-13 08:15:56 +0100 (Thu, 13 Mar 2008) | 2 lines #2265: fix example. ........ r61364 | georg.brandl | 2008-03-13 08:17:14 +0100 (Thu, 13 Mar 2008) | 2 lines #2270: fix typo. ........ r61365 | georg.brandl | 2008-03-13 08:21:41 +0100 (Thu, 13 Mar 2008) | 2 lines #1720705: add docs about import/threading interaction, wording by Nick. ........ r61366 | andrew.kuchling | 2008-03-13 12:07:35 +0100 (Thu, 13 Mar 2008) | 1 line Add class decorators ........ r61367 | raymond.hettinger | 2008-03-13 17:43:17 +0100 (Thu, 13 Mar 2008) | 1 line Add 2-to-3 support for the itertools moved to builtins or renamed. ........ r61368 | raymond.hettinger | 2008-03-13 17:43:59 +0100 (Thu, 13 Mar 2008) | 1 line Consistent tense. ........ r61369 | raymond.hettinger | 2008-03-13 20:03:51 +0100 (Thu, 13 Mar 2008) | 1 line Issue 2274: Add heapq.heappushpop(). ........ r61370 | raymond.hettinger | 2008-03-13 20:33:34 +0100 (Thu, 13 Mar 2008) | 1 line Simplify the nlargest() code using heappushpop(). ........ r61371 | brett.cannon | 2008-03-13 21:27:00 +0100 (Thu, 13 Mar 2008) | 4 lines Move test_thread over to unittest. Commits GHOP 237. Thanks Benjamin Peterson for the patch. ........ r61372 | brett.cannon | 2008-03-13 21:33:10 +0100 (Thu, 13 Mar 2008) | 4 lines Move test_tokenize to doctest. Done as GHOP 238 by Josip Dzolonga. ........ r61373 | brett.cannon | 2008-03-13 21:47:41 +0100 (Thu, 13 Mar 2008) | 4 lines Convert test_contains, test_crypt, and test_select to unittest. Patch from GHOP 294 by David Marek. ........ r61374 | brett.cannon | 2008-03-13 22:02:16 +0100 (Thu, 13 Mar 2008) | 4 lines Move test_gdbm to use unittest. Closes issue #1960. Thanks Giampaolo Rodola. ........ r61375 | brett.cannon | 2008-03-13 22:09:28 +0100 (Thu, 13 Mar 2008) | 4 lines Convert test_fcntl to unittest. Closes issue #2055. Thanks Giampaolo Rodola. ........ r61376 | raymond.hettinger | 2008-03-14 06:03:44 +0100 (Fri, 14 Mar 2008) | 1 line Leave heapreplace() unchanged. ........ r61378 | martin.v.loewis | 2008-03-14 14:56:09 +0100 (Fri, 14 Mar 2008) | 2 lines Patch #2284: add -x64 option to rt.bat. ........ r61379 | martin.v.loewis | 2008-03-14 14:57:59 +0100 (Fri, 14 Mar 2008) | 2 lines Use -x64 flag. ........ r61382 | brett.cannon | 2008-03-14 15:03:10 +0100 (Fri, 14 Mar 2008) | 2 lines Remove a bad test. ........ r61383 | mark.dickinson | 2008-03-14 15:23:37 +0100 (Fri, 14 Mar 2008) | 9 lines Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently across platforms: it should now raise OverflowError on all platforms. (Previously it raised OverflowError only on non IEEE 754 platforms.) Also fix the (already existing) test for this behaviour so that it actually raises TestFailed instead of just referencing it. ........ r61387 | thomas.heller | 2008-03-14 22:06:21 +0100 (Fri, 14 Mar 2008) | 1 line Remove unneeded initializer. ........ r61388 | martin.v.loewis | 2008-03-14 22:19:28 +0100 (Fri, 14 Mar 2008) | 2 lines Run debug version, cd to PCbuild. ........ r61392 | georg.brandl | 2008-03-15 00:10:34 +0100 (Sat, 15 Mar 2008) | 2 lines Remove obsolete paragraph. #2288. ........ r61395 | georg.brandl | 2008-03-15 01:20:19 +0100 (Sat, 15 Mar 2008) | 2 lines Fix lots of broken links in the docs, found by Sphinx' external link checker. ........ r61396 | skip.montanaro | 2008-03-15 03:32:49 +0100 (Sat, 15 Mar 2008) | 1 line note that fork and forkpty raise OSError on failure ........ r61402 | skip.montanaro | 2008-03-15 17:04:45 +0100 (Sat, 15 Mar 2008) | 1 line add %f format to datetime - issue 1158 ........ r61403 | skip.montanaro | 2008-03-15 17:07:11 +0100 (Sat, 15 Mar 2008) | 2 lines . ........
534 lines
15 KiB
C
534 lines
15 KiB
C
|
|
/* DBM module using dictionary interface */
|
|
/* Author: Anthony Baxter, after dbmmodule.c */
|
|
/* Doc strings: Mitch Chapman */
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include "gdbm.h"
|
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
#include "gdbmerrno.h"
|
|
extern const char * gdbm_strerror(gdbm_error);
|
|
#endif
|
|
|
|
PyDoc_STRVAR(gdbmmodule__doc__,
|
|
"This module provides an interface to the GNU DBM (GDBM) library.\n\
|
|
\n\
|
|
This module is quite similar to the dbm module, but uses GDBM instead to\n\
|
|
provide some additional functionality. Please note that the file formats\n\
|
|
created by GDBM and dbm are incompatible. \n\
|
|
\n\
|
|
GDBM objects behave like mappings (dictionaries), except that keys and\n\
|
|
values are always strings. Printing a GDBM object doesn't print the\n\
|
|
keys and values, and the items() and values() methods are not\n\
|
|
supported.");
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
int di_size; /* -1 means recompute */
|
|
GDBM_FILE di_dbm;
|
|
} dbmobject;
|
|
|
|
static PyTypeObject Dbmtype;
|
|
|
|
#define is_dbmobject(v) (Py_TYPE(v) == &Dbmtype)
|
|
#define check_dbmobject_open(v) if ((v)->di_dbm == NULL) \
|
|
{ PyErr_SetString(DbmError, "GDBM object has already been closed"); \
|
|
return NULL; }
|
|
|
|
|
|
|
|
static PyObject *DbmError;
|
|
|
|
PyDoc_STRVAR(gdbm_object__doc__,
|
|
"This object represents a GDBM database.\n\
|
|
GDBM objects behave like mappings (dictionaries), except that keys and\n\
|
|
values are always strings. Printing a GDBM object doesn't print the\n\
|
|
keys and values, and the items() and values() methods are not\n\
|
|
supported.\n\
|
|
\n\
|
|
GDBM objects also support additional operations such as firstkey,\n\
|
|
nextkey, reorganize, and sync.");
|
|
|
|
static PyObject *
|
|
newdbmobject(char *file, int flags, int mode)
|
|
{
|
|
dbmobject *dp;
|
|
|
|
dp = PyObject_New(dbmobject, &Dbmtype);
|
|
if (dp == NULL)
|
|
return NULL;
|
|
dp->di_size = -1;
|
|
errno = 0;
|
|
if ((dp->di_dbm = gdbm_open(file, 0, flags, mode, NULL)) == 0) {
|
|
if (errno != 0)
|
|
PyErr_SetFromErrno(DbmError);
|
|
else
|
|
PyErr_SetString(DbmError, gdbm_strerror(gdbm_errno));
|
|
Py_DECREF(dp);
|
|
return NULL;
|
|
}
|
|
return (PyObject *)dp;
|
|
}
|
|
|
|
/* Methods */
|
|
|
|
static void
|
|
dbm_dealloc(register dbmobject *dp)
|
|
{
|
|
if (dp->di_dbm)
|
|
gdbm_close(dp->di_dbm);
|
|
PyObject_Del(dp);
|
|
}
|
|
|
|
static Py_ssize_t
|
|
dbm_length(dbmobject *dp)
|
|
{
|
|
if (dp->di_dbm == NULL) {
|
|
PyErr_SetString(DbmError, "GDBM object has already been closed");
|
|
return -1;
|
|
}
|
|
if (dp->di_size < 0) {
|
|
datum key,okey;
|
|
int size;
|
|
okey.dsize=0;
|
|
okey.dptr=NULL;
|
|
|
|
size = 0;
|
|
for (key=gdbm_firstkey(dp->di_dbm); key.dptr;
|
|
key = gdbm_nextkey(dp->di_dbm,okey)) {
|
|
size++;
|
|
if(okey.dsize) free(okey.dptr);
|
|
okey=key;
|
|
}
|
|
dp->di_size = size;
|
|
}
|
|
return dp->di_size;
|
|
}
|
|
|
|
static PyObject *
|
|
dbm_subscript(dbmobject *dp, register PyObject *key)
|
|
{
|
|
PyObject *v;
|
|
datum drec, krec;
|
|
|
|
if (!PyArg_Parse(key, "s#", &krec.dptr, &krec.dsize) )
|
|
return NULL;
|
|
|
|
if (dp->di_dbm == NULL) {
|
|
PyErr_SetString(DbmError,
|
|
"GDBM object has already been closed");
|
|
return NULL;
|
|
}
|
|
drec = gdbm_fetch(dp->di_dbm, krec);
|
|
if (drec.dptr == 0) {
|
|
PyErr_SetObject(PyExc_KeyError, key);
|
|
return NULL;
|
|
}
|
|
v = PyString_FromStringAndSize(drec.dptr, drec.dsize);
|
|
free(drec.dptr);
|
|
return v;
|
|
}
|
|
|
|
static int
|
|
dbm_ass_sub(dbmobject *dp, PyObject *v, PyObject *w)
|
|
{
|
|
datum krec, drec;
|
|
|
|
if (!PyArg_Parse(v, "s#", &krec.dptr, &krec.dsize) ) {
|
|
PyErr_SetString(PyExc_TypeError,
|
|
"gdbm mappings have string indices only");
|
|
return -1;
|
|
}
|
|
if (dp->di_dbm == NULL) {
|
|
PyErr_SetString(DbmError,
|
|
"GDBM object has already been closed");
|
|
return -1;
|
|
}
|
|
dp->di_size = -1;
|
|
if (w == NULL) {
|
|
if (gdbm_delete(dp->di_dbm, krec) < 0) {
|
|
PyErr_SetObject(PyExc_KeyError, v);
|
|
return -1;
|
|
}
|
|
}
|
|
else {
|
|
if (!PyArg_Parse(w, "s#", &drec.dptr, &drec.dsize)) {
|
|
PyErr_SetString(PyExc_TypeError,
|
|
"gdbm mappings have byte string elements only");
|
|
return -1;
|
|
}
|
|
errno = 0;
|
|
if (gdbm_store(dp->di_dbm, krec, drec, GDBM_REPLACE) < 0) {
|
|
if (errno != 0)
|
|
PyErr_SetFromErrno(DbmError);
|
|
else
|
|
PyErr_SetString(DbmError,
|
|
gdbm_strerror(gdbm_errno));
|
|
return -1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static PyMappingMethods dbm_as_mapping = {
|
|
(lenfunc)dbm_length, /*mp_length*/
|
|
(binaryfunc)dbm_subscript, /*mp_subscript*/
|
|
(objobjargproc)dbm_ass_sub, /*mp_ass_subscript*/
|
|
};
|
|
|
|
PyDoc_STRVAR(dbm_close__doc__,
|
|
"close() -> None\n\
|
|
Closes the database.");
|
|
|
|
static PyObject *
|
|
dbm_close(register dbmobject *dp, PyObject *unused)
|
|
{
|
|
if (dp->di_dbm)
|
|
gdbm_close(dp->di_dbm);
|
|
dp->di_dbm = NULL;
|
|
Py_INCREF(Py_None);
|
|
return Py_None;
|
|
}
|
|
|
|
/* XXX Should return a set or a set view */
|
|
PyDoc_STRVAR(dbm_keys__doc__,
|
|
"keys() -> list_of_keys\n\
|
|
Get a list of all keys in the database.");
|
|
|
|
static PyObject *
|
|
dbm_keys(register dbmobject *dp, PyObject *unused)
|
|
{
|
|
register PyObject *v, *item;
|
|
datum key, nextkey;
|
|
int err;
|
|
|
|
if (dp == NULL || !is_dbmobject(dp)) {
|
|
PyErr_BadInternalCall();
|
|
return NULL;
|
|
}
|
|
check_dbmobject_open(dp);
|
|
|
|
v = PyList_New(0);
|
|
if (v == NULL)
|
|
return NULL;
|
|
|
|
key = gdbm_firstkey(dp->di_dbm);
|
|
while (key.dptr) {
|
|
item = PyString_FromStringAndSize(key.dptr, key.dsize);
|
|
if (item == NULL) {
|
|
free(key.dptr);
|
|
Py_DECREF(v);
|
|
return NULL;
|
|
}
|
|
err = PyList_Append(v, item);
|
|
Py_DECREF(item);
|
|
if (err != 0) {
|
|
free(key.dptr);
|
|
Py_DECREF(v);
|
|
return NULL;
|
|
}
|
|
nextkey = gdbm_nextkey(dp->di_dbm, key);
|
|
free(key.dptr);
|
|
key = nextkey;
|
|
}
|
|
return v;
|
|
}
|
|
|
|
static int
|
|
dbm_contains(PyObject *self, PyObject *arg)
|
|
{
|
|
dbmobject *dp = (dbmobject *)self;
|
|
datum key;
|
|
|
|
if ((dp)->di_dbm == NULL) {
|
|
PyErr_SetString(DbmError,
|
|
"GDBM object has already been closed");
|
|
return -1;
|
|
}
|
|
if (!PyString_Check(arg)) {
|
|
PyErr_Format(PyExc_TypeError,
|
|
"gdbm key must be bytes, not %.100s",
|
|
arg->ob_type->tp_name);
|
|
return -1;
|
|
}
|
|
key.dptr = PyString_AS_STRING(arg);
|
|
key.dsize = PyString_GET_SIZE(arg);
|
|
return gdbm_exists(dp->di_dbm, key);
|
|
}
|
|
|
|
static PySequenceMethods dbm_as_sequence = {
|
|
0, /* sq_length */
|
|
0, /* sq_concat */
|
|
0, /* sq_repeat */
|
|
0, /* sq_item */
|
|
0, /* sq_slice */
|
|
0, /* sq_ass_item */
|
|
0, /* sq_ass_slice */
|
|
dbm_contains, /* sq_contains */
|
|
0, /* sq_inplace_concat */
|
|
0, /* sq_inplace_repeat */
|
|
};
|
|
|
|
PyDoc_STRVAR(dbm_firstkey__doc__,
|
|
"firstkey() -> key\n\
|
|
It's possible to loop over every key in the database using this method\n\
|
|
and the nextkey() method. The traversal is ordered by GDBM's internal\n\
|
|
hash values, and won't be sorted by the key values. This method\n\
|
|
returns the starting key.");
|
|
|
|
static PyObject *
|
|
dbm_firstkey(register dbmobject *dp, PyObject *unused)
|
|
{
|
|
register PyObject *v;
|
|
datum key;
|
|
|
|
check_dbmobject_open(dp);
|
|
key = gdbm_firstkey(dp->di_dbm);
|
|
if (key.dptr) {
|
|
v = PyString_FromStringAndSize(key.dptr, key.dsize);
|
|
free(key.dptr);
|
|
return v;
|
|
}
|
|
else {
|
|
Py_INCREF(Py_None);
|
|
return Py_None;
|
|
}
|
|
}
|
|
|
|
PyDoc_STRVAR(dbm_nextkey__doc__,
|
|
"nextkey(key) -> next_key\n\
|
|
Returns the key that follows key in the traversal.\n\
|
|
The following code prints every key in the database db, without having\n\
|
|
to create a list in memory that contains them all:\n\
|
|
\n\
|
|
k = db.firstkey()\n\
|
|
while k != None:\n\
|
|
print k\n\
|
|
k = db.nextkey(k)");
|
|
|
|
static PyObject *
|
|
dbm_nextkey(register dbmobject *dp, PyObject *args)
|
|
{
|
|
register PyObject *v;
|
|
datum key, nextkey;
|
|
|
|
if (!PyArg_ParseTuple(args, "s#:nextkey", &key.dptr, &key.dsize))
|
|
return NULL;
|
|
check_dbmobject_open(dp);
|
|
nextkey = gdbm_nextkey(dp->di_dbm, key);
|
|
if (nextkey.dptr) {
|
|
v = PyString_FromStringAndSize(nextkey.dptr, nextkey.dsize);
|
|
free(nextkey.dptr);
|
|
return v;
|
|
}
|
|
else {
|
|
Py_INCREF(Py_None);
|
|
return Py_None;
|
|
}
|
|
}
|
|
|
|
PyDoc_STRVAR(dbm_reorganize__doc__,
|
|
"reorganize() -> None\n\
|
|
If you have carried out a lot of deletions and would like to shrink\n\
|
|
the space used by the GDBM file, this routine will reorganize the\n\
|
|
database. GDBM will not shorten the length of a database file except\n\
|
|
by using this reorganization; otherwise, deleted file space will be\n\
|
|
kept and reused as new (key,value) pairs are added.");
|
|
|
|
static PyObject *
|
|
dbm_reorganize(register dbmobject *dp, PyObject *unused)
|
|
{
|
|
check_dbmobject_open(dp);
|
|
errno = 0;
|
|
if (gdbm_reorganize(dp->di_dbm) < 0) {
|
|
if (errno != 0)
|
|
PyErr_SetFromErrno(DbmError);
|
|
else
|
|
PyErr_SetString(DbmError, gdbm_strerror(gdbm_errno));
|
|
return NULL;
|
|
}
|
|
Py_INCREF(Py_None);
|
|
return Py_None;
|
|
}
|
|
|
|
PyDoc_STRVAR(dbm_sync__doc__,
|
|
"sync() -> None\n\
|
|
When the database has been opened in fast mode, this method forces\n\
|
|
any unwritten data to be written to the disk.");
|
|
|
|
static PyObject *
|
|
dbm_sync(register dbmobject *dp, PyObject *unused)
|
|
{
|
|
check_dbmobject_open(dp);
|
|
gdbm_sync(dp->di_dbm);
|
|
Py_INCREF(Py_None);
|
|
return Py_None;
|
|
}
|
|
|
|
static PyMethodDef dbm_methods[] = {
|
|
{"close", (PyCFunction)dbm_close, METH_NOARGS, dbm_close__doc__},
|
|
{"keys", (PyCFunction)dbm_keys, METH_NOARGS, dbm_keys__doc__},
|
|
{"firstkey", (PyCFunction)dbm_firstkey,METH_NOARGS, dbm_firstkey__doc__},
|
|
{"nextkey", (PyCFunction)dbm_nextkey, METH_VARARGS, dbm_nextkey__doc__},
|
|
{"reorganize",(PyCFunction)dbm_reorganize,METH_NOARGS, dbm_reorganize__doc__},
|
|
{"sync", (PyCFunction)dbm_sync, METH_NOARGS, dbm_sync__doc__},
|
|
{NULL, NULL} /* sentinel */
|
|
};
|
|
|
|
static PyObject *
|
|
dbm_getattr(dbmobject *dp, char *name)
|
|
{
|
|
return Py_FindMethod(dbm_methods, (PyObject *)dp, name);
|
|
}
|
|
|
|
static PyTypeObject Dbmtype = {
|
|
PyVarObject_HEAD_INIT(0, 0)
|
|
"gdbm.gdbm",
|
|
sizeof(dbmobject),
|
|
0,
|
|
(destructor)dbm_dealloc, /*tp_dealloc*/
|
|
0, /*tp_print*/
|
|
(getattrfunc)dbm_getattr, /*tp_getattr*/
|
|
0, /*tp_setattr*/
|
|
0, /*tp_compare*/
|
|
0, /*tp_repr*/
|
|
0, /*tp_as_number*/
|
|
&dbm_as_sequence, /*tp_as_sequence*/
|
|
&dbm_as_mapping, /*tp_as_mapping*/
|
|
0, /*tp_hash*/
|
|
0, /*tp_call*/
|
|
0, /*tp_str*/
|
|
0, /*tp_getattro*/
|
|
0, /*tp_setattro*/
|
|
0, /*tp_as_buffer*/
|
|
Py_TPFLAGS_DEFAULT, /*tp_xxx4*/
|
|
gdbm_object__doc__, /*tp_doc*/
|
|
};
|
|
|
|
/* ----------------------------------------------------------------- */
|
|
|
|
PyDoc_STRVAR(dbmopen__doc__,
|
|
"open(filename, [flags, [mode]]) -> dbm_object\n\
|
|
Open a dbm database and return a dbm object. The filename argument is\n\
|
|
the name of the database file.\n\
|
|
\n\
|
|
The optional flags argument can be 'r' (to open an existing database\n\
|
|
for reading only -- default), 'w' (to open an existing database for\n\
|
|
reading and writing), 'c' (which creates the database if it doesn't\n\
|
|
exist), or 'n' (which always creates a new empty database).\n\
|
|
\n\
|
|
Some versions of gdbm support additional flags which must be\n\
|
|
appended to one of the flags described above. The module constant\n\
|
|
'open_flags' is a string of valid additional flags. The 'f' flag\n\
|
|
opens the database in fast mode; altered data will not automatically\n\
|
|
be written to the disk after every change. This results in faster\n\
|
|
writes to the database, but may result in an inconsistent database\n\
|
|
if the program crashes while the database is still open. Use the\n\
|
|
sync() method to force any unwritten data to be written to the disk.\n\
|
|
The 's' flag causes all database operations to be synchronized to\n\
|
|
disk. The 'u' flag disables locking of the database file.\n\
|
|
\n\
|
|
The optional mode argument is the Unix mode of the file, used only\n\
|
|
when the database has to be created. It defaults to octal 0666. ");
|
|
|
|
static PyObject *
|
|
dbmopen(PyObject *self, PyObject *args)
|
|
{
|
|
char *name;
|
|
char *flags = "r";
|
|
int iflags;
|
|
int mode = 0666;
|
|
|
|
if (!PyArg_ParseTuple(args, "s|si:open", &name, &flags, &mode))
|
|
return NULL;
|
|
switch (flags[0]) {
|
|
case 'r':
|
|
iflags = GDBM_READER;
|
|
break;
|
|
case 'w':
|
|
iflags = GDBM_WRITER;
|
|
break;
|
|
case 'c':
|
|
iflags = GDBM_WRCREAT;
|
|
break;
|
|
case 'n':
|
|
iflags = GDBM_NEWDB;
|
|
break;
|
|
default:
|
|
PyErr_SetString(DbmError,
|
|
"First flag must be one of 'r', 'w', 'c' or 'n'");
|
|
return NULL;
|
|
}
|
|
for (flags++; *flags != '\0'; flags++) {
|
|
char buf[40];
|
|
switch (*flags) {
|
|
#ifdef GDBM_FAST
|
|
case 'f':
|
|
iflags |= GDBM_FAST;
|
|
break;
|
|
#endif
|
|
#ifdef GDBM_SYNC
|
|
case 's':
|
|
iflags |= GDBM_SYNC;
|
|
break;
|
|
#endif
|
|
#ifdef GDBM_NOLOCK
|
|
case 'u':
|
|
iflags |= GDBM_NOLOCK;
|
|
break;
|
|
#endif
|
|
default:
|
|
PyOS_snprintf(buf, sizeof(buf), "Flag '%c' is not supported.",
|
|
*flags);
|
|
PyErr_SetString(DbmError, buf);
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
return newdbmobject(name, iflags, mode);
|
|
}
|
|
|
|
static char dbmmodule_open_flags[] = "rwcn"
|
|
#ifdef GDBM_FAST
|
|
"f"
|
|
#endif
|
|
#ifdef GDBM_SYNC
|
|
"s"
|
|
#endif
|
|
#ifdef GDBM_NOLOCK
|
|
"u"
|
|
#endif
|
|
;
|
|
|
|
static PyMethodDef dbmmodule_methods[] = {
|
|
{ "open", (PyCFunction)dbmopen, METH_VARARGS, dbmopen__doc__},
|
|
{ 0, 0 },
|
|
};
|
|
|
|
PyMODINIT_FUNC
|
|
initgdbm(void) {
|
|
PyObject *m, *d, *s;
|
|
|
|
if (PyType_Ready(&Dbmtype) < 0)
|
|
return;
|
|
m = Py_InitModule4("gdbm", dbmmodule_methods,
|
|
gdbmmodule__doc__, (PyObject *)NULL,
|
|
PYTHON_API_VERSION);
|
|
if (m == NULL)
|
|
return;
|
|
d = PyModule_GetDict(m);
|
|
DbmError = PyErr_NewException("gdbm.error", NULL, NULL);
|
|
if (DbmError != NULL) {
|
|
PyDict_SetItemString(d, "error", DbmError);
|
|
s = PyUnicode_FromString(dbmmodule_open_flags);
|
|
PyDict_SetItemString(d, "open_flags", s);
|
|
Py_DECREF(s);
|
|
}
|
|
}
|