| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* DBM module using dictionary interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							| 
									
										
										
										
											2000-09-14 15:48:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Some Linux systems install gdbm/ndbm.h, but not ndbm.h.  This supports
 | 
					
						
							|  |  |  |  * whichever configure was able to locate. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #if defined(HAVE_NDBM_H)
 | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | #include <ndbm.h>
 | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | static char *which_dbm = "ndbm"; | 
					
						
							| 
									
										
										
										
											2000-09-15 03:38:12 +00:00
										 |  |  | #elif defined(HAVE_DB1_NDBM_H)
 | 
					
						
							|  |  |  | #include <db1/ndbm.h>
 | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | static char *which_dbm = "BSD db"; | 
					
						
							| 
									
										
										
										
											2000-09-14 15:48:06 +00:00
										 |  |  | #elif defined(HAVE_GDBM_NDBM_H)
 | 
					
						
							|  |  |  | #include <gdbm/ndbm.h>
 | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | static char *which_dbm = "GNU gdbm"; | 
					
						
							| 
									
										
										
										
											2000-09-14 15:48:06 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #error "No ndbm.h available!"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	PyObject_HEAD | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	int di_size;	/* -1 means recompute */ | 
					
						
							|  |  |  | 	DBM *di_dbm; | 
					
						
							|  |  |  | } dbmobject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | staticforward PyTypeObject Dbmtype; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define is_dbmobject(v) ((v)->ob_type == &Dbmtype)
 | 
					
						
							| 
									
										
										
										
											1997-07-17 22:56:01 +00:00
										 |  |  | #define check_dbmobject_open(v) if ((v)->di_dbm == NULL) \
 | 
					
						
							|  |  |  |                { PyErr_SetString(DbmError, "DBM object has already been closed"); \ | 
					
						
							|  |  |  |                  return NULL; } | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject *DbmError; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | newdbmobject(char *file, int flags, int mode) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         dbmobject *dp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	dp = PyObject_New(dbmobject, &Dbmtype); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	if (dp == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	dp->di_size = -1; | 
					
						
							|  |  |  | 	if ( (dp->di_dbm = dbm_open(file, flags, mode)) == 0 ) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		PyErr_SetFromErrno(DbmError); | 
					
						
							|  |  |  | 		Py_DECREF(dp); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	return (PyObject *)dp; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Methods */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_dealloc(register dbmobject *dp) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         if ( dp->di_dbm ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		dbm_close(dp->di_dbm); | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	PyObject_Del(dp); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_length(dbmobject *dp) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-07-17 22:56:01 +00:00
										 |  |  |         if (dp->di_dbm == NULL) { | 
					
						
							|  |  |  |                  PyErr_SetString(DbmError, "DBM object has already been closed");  | 
					
						
							|  |  |  |                  return -1;  | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  |         if ( dp->di_size < 0 ) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		datum key; | 
					
						
							|  |  |  | 		int size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		size = 0; | 
					
						
							|  |  |  | 		for ( key=dbm_firstkey(dp->di_dbm); key.dptr; | 
					
						
							|  |  |  | 		      key = dbm_nextkey(dp->di_dbm)) | 
					
						
							|  |  |  | 			size++; | 
					
						
							|  |  |  | 		dp->di_size = size; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return dp->di_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_subscript(dbmobject *dp, register PyObject *key) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	datum drec, krec; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	if (!PyArg_Parse(key, "s#", &krec.dptr, &krec.dsize) ) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1997-07-17 22:56:01 +00:00
										 |  |  |         check_dbmobject_open(dp); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	drec = dbm_fetch(dp->di_dbm, krec); | 
					
						
							|  |  |  | 	if ( drec.dptr == 0 ) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		PyErr_SetString(PyExc_KeyError, | 
					
						
							|  |  |  | 				PyString_AS_STRING((PyStringObject *)key)); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if ( dbm_error(dp->di_dbm) ) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		dbm_clearerr(dp->di_dbm); | 
					
						
							|  |  |  | 		PyErr_SetString(DbmError, ""); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	return PyString_FromStringAndSize(drec.dptr, drec.dsize); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_ass_sub(dbmobject *dp, PyObject *v, PyObject *w) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         datum krec, drec; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  |         if ( !PyArg_Parse(v, "s#", &krec.dptr, &krec.dsize) ) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"dbm mappings have string indices only"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-07-17 22:56:01 +00:00
										 |  |  |         if (dp->di_dbm == NULL) { | 
					
						
							|  |  |  |                  PyErr_SetString(DbmError, "DBM object has already been closed");  | 
					
						
							|  |  |  |                  return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	dp->di_size = -1; | 
					
						
							|  |  |  | 	if (w == NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		if ( dbm_delete(dp->di_dbm, krec) < 0 ) { | 
					
						
							|  |  |  | 			dbm_clearerr(dp->di_dbm); | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_KeyError, | 
					
						
							| 
									
										
										
										
											1996-12-13 15:59:22 +00:00
										 |  |  | 				      PyString_AS_STRING((PyStringObject *)v)); | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		if ( !PyArg_Parse(w, "s#", &drec.dptr, &drec.dsize) ) { | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											1996-12-13 15:59:22 +00:00
										 |  |  | 				     "dbm mappings have string elements only"); | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if ( dbm_store(dp->di_dbm, krec, drec, DBM_REPLACE) < 0 ) { | 
					
						
							|  |  |  | 			dbm_clearerr(dp->di_dbm); | 
					
						
							| 
									
										
										
										
											1996-12-13 15:59:22 +00:00
										 |  |  | 			PyErr_SetString(DbmError, | 
					
						
							| 
									
										
										
										
											2000-10-24 19:57:45 +00:00
										 |  |  | 					"cannot add item to database"); | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if ( dbm_error(dp->di_dbm) ) { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		dbm_clearerr(dp->di_dbm); | 
					
						
							|  |  |  | 		PyErr_SetString(DbmError, ""); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyMappingMethods dbm_as_mapping = { | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(inquiry)dbm_length,		/*mp_length*/ | 
					
						
							|  |  |  | 	(binaryfunc)dbm_subscript,	/*mp_subscript*/ | 
					
						
							|  |  |  | 	(objobjargproc)dbm_ass_sub,	/*mp_ass_subscript*/ | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm__close(register dbmobject *dp, PyObject *args) | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	if (!PyArg_ParseTuple(args, ":close")) | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  |         if (dp->di_dbm) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		dbm_close(dp->di_dbm); | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 	dp->di_dbm = NULL; | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_keys(register dbmobject *dp, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	register PyObject *v, *item; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	datum key; | 
					
						
							| 
									
										
										
										
											1995-01-30 12:45:38 +00:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	if (!PyArg_ParseTuple(args, ":keys")) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-07-17 22:56:01 +00:00
										 |  |  |         check_dbmobject_open(dp); | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	v = PyList_New(0); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	if (v == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	for (key = dbm_firstkey(dp->di_dbm); key.dptr; | 
					
						
							| 
									
										
										
										
											1995-01-30 12:45:38 +00:00
										 |  |  | 	     key = dbm_nextkey(dp->di_dbm)) { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 		item = PyString_FromStringAndSize(key.dptr, key.dsize); | 
					
						
							| 
									
										
										
										
											1995-01-30 12:45:38 +00:00
										 |  |  | 		if (item == NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 			Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1995-01-30 12:45:38 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 		err = PyList_Append(v, item); | 
					
						
							|  |  |  | 		Py_DECREF(item); | 
					
						
							| 
									
										
										
										
											1995-01-30 12:45:38 +00:00
										 |  |  | 		if (err != 0) { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 			Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1995-01-30 12:45:38 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_has_key(register dbmobject *dp, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	datum key, val; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	if (!PyArg_ParseTuple(args, "s#:has_key", &key.dptr, &key.dsize)) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-07-17 22:56:01 +00:00
										 |  |  |         check_dbmobject_open(dp); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	val = dbm_fetch(dp->di_dbm, key); | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	return PyInt_FromLong(val.dptr != NULL); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | dbm_get(register dbmobject *dp, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	datum key, val; | 
					
						
							|  |  |  | 	PyObject *defvalue = Py_None; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_ParseTuple(args, "s#|O:get", | 
					
						
							|  |  |  |                               &key.dptr, &key.dsize, &defvalue)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  |         check_dbmobject_open(dp); | 
					
						
							|  |  |  | 	val = dbm_fetch(dp->di_dbm, key); | 
					
						
							|  |  |  | 	if (val.dptr != NULL) | 
					
						
							|  |  |  | 		return PyString_FromStringAndSize(val.dptr, val.dsize); | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		Py_INCREF(defvalue); | 
					
						
							|  |  |  | 		return defvalue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | dbm_setdefault(register dbmobject *dp, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	datum key, val; | 
					
						
							|  |  |  | 	PyObject *defvalue = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_ParseTuple(args, "s#|S:setdefault", | 
					
						
							|  |  |  |                               &key.dptr, &key.dsize, &defvalue)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  |         check_dbmobject_open(dp); | 
					
						
							|  |  |  | 	val = dbm_fetch(dp->di_dbm, key); | 
					
						
							|  |  |  | 	if (val.dptr != NULL) | 
					
						
							|  |  |  | 		return PyString_FromStringAndSize(val.dptr, val.dsize); | 
					
						
							|  |  |  | 	if (defvalue == NULL) { | 
					
						
							|  |  |  | 		defvalue = PyString_FromStringAndSize(NULL, 0); | 
					
						
							|  |  |  | 		if (defvalue == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		Py_INCREF(defvalue); | 
					
						
							|  |  |  | 	val.dptr = PyString_AS_STRING(defvalue); | 
					
						
							|  |  |  | 	val.dsize = PyString_GET_SIZE(defvalue); | 
					
						
							|  |  |  | 	if (dbm_store(dp->di_dbm, key, val, DBM_INSERT) < 0) { | 
					
						
							|  |  |  | 		dbm_clearerr(dp->di_dbm); | 
					
						
							| 
									
										
										
										
											2000-10-24 19:57:45 +00:00
										 |  |  | 		PyErr_SetString(DbmError, "cannot add item to database"); | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return defvalue; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyMethodDef dbm_methods[] = { | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	{"close",	(PyCFunction)dbm__close,	METH_VARARGS, | 
					
						
							|  |  |  | 	 "close()\nClose the database."}, | 
					
						
							|  |  |  | 	{"keys",	(PyCFunction)dbm_keys,		METH_VARARGS, | 
					
						
							|  |  |  | 	 "keys() -> list\nReturn a list of all keys in the database."}, | 
					
						
							|  |  |  | 	{"has_key",	(PyCFunction)dbm_has_key,	METH_VARARGS, | 
					
						
							|  |  |  | 	 "has_key(key} -> boolean\nReturn true iff key is in the database."}, | 
					
						
							|  |  |  | 	{"get",		(PyCFunction)dbm_get,		METH_VARARGS, | 
					
						
							|  |  |  | 	 "get(key[, default]) -> value\n" | 
					
						
							|  |  |  | 	 "Return the value for key if present, otherwise default."}, | 
					
						
							|  |  |  | 	{"setdefault",	(PyCFunction)dbm_setdefault,	METH_VARARGS, | 
					
						
							|  |  |  | 	 "setdefault(key[, default]) -> value\n" | 
					
						
							|  |  |  | 	 "Return the value for key if present, otherwise default.  If key\n" | 
					
						
							|  |  |  | 	 "is not in the database, it is inserted with default as the value."}, | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbm_getattr(dbmobject *dp, char *name) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	return Py_FindMethod(dbm_methods, (PyObject *)dp, name); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyTypeObject Dbmtype = { | 
					
						
							| 
									
										
										
										
											2001-01-22 15:29:14 +00:00
										 |  |  | 	PyObject_HEAD_INIT(NULL) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 	"dbm", | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	sizeof(dbmobject), | 
					
						
							|  |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	(destructor)dbm_dealloc,  /*tp_dealloc*/ | 
					
						
							|  |  |  | 	0,			  /*tp_print*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(getattrfunc)dbm_getattr, /*tp_getattr*/ | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	0,			  /*tp_setattr*/ | 
					
						
							|  |  |  | 	0,			  /*tp_compare*/ | 
					
						
							|  |  |  | 	0,			  /*tp_repr*/ | 
					
						
							|  |  |  | 	0,			  /*tp_as_number*/ | 
					
						
							|  |  |  | 	0,			  /*tp_as_sequence*/ | 
					
						
							|  |  |  | 	&dbm_as_mapping,	  /*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ----------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:06:38 +00:00
										 |  |  | dbmopen(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 	char *name; | 
					
						
							|  |  |  | 	char *flags = "r"; | 
					
						
							|  |  |  | 	int iflags; | 
					
						
							|  |  |  | 	int mode = 0666; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |         if ( !PyArg_ParseTuple(args, "s|si:open", &name, &flags, &mode) ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	if ( strcmp(flags, "r") == 0 ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		iflags = O_RDONLY; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	else if ( strcmp(flags, "w") == 0 ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		iflags = O_RDWR; | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 	else if ( strcmp(flags, "rw") == 0 ) /* B/W compat */ | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		iflags = O_RDWR|O_CREAT;  | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 	else if ( strcmp(flags, "c") == 0 ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		iflags = O_RDWR|O_CREAT; | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 	else if ( strcmp(flags, "n") == 0 ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		iflags = O_RDWR|O_CREAT|O_TRUNC; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		PyErr_SetString(DbmError, | 
					
						
							| 
									
										
										
										
											2000-10-24 19:57:45 +00:00
										 |  |  | 				"arg 2 to open should be 'r', 'w', 'c', or 'n'"); | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |         return newdbmobject(name, iflags, mode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyMethodDef dbmmodule_methods[] = { | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	{ "open", (PyCFunction)dbmopen, METH_VARARGS, | 
					
						
							|  |  |  | 	  "open(path[, flag[, mode]]) -> mapping\n" | 
					
						
							|  |  |  | 	  "Return a database object."}, | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	{ 0, 0 }, | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:50:17 +00:00
										 |  |  | DL_EXPORT(void) | 
					
						
							| 
									
										
										
										
											2000-07-24 14:43:35 +00:00
										 |  |  | initdbm(void) { | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	PyObject *m, *d, *s; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-22 15:29:14 +00:00
										 |  |  | 	Dbmtype.ob_type = &PyType_Type; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	m = Py_InitModule("dbm", dbmmodule_methods); | 
					
						
							|  |  |  | 	d = PyModule_GetDict(m); | 
					
						
							| 
									
										
										
										
											2000-09-15 21:35:14 +00:00
										 |  |  | 	if (DbmError == NULL) | 
					
						
							|  |  |  | 		DbmError = PyErr_NewException("dbm.error", NULL, NULL); | 
					
						
							|  |  |  | 	s = PyString_FromString(which_dbm); | 
					
						
							|  |  |  | 	if (s != NULL) { | 
					
						
							|  |  |  | 		PyDict_SetItemString(d, "library", s); | 
					
						
							|  |  |  | 		Py_DECREF(s); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-10-01 04:29:29 +00:00
										 |  |  | 	if (DbmError != NULL) | 
					
						
							|  |  |  | 		PyDict_SetItemString(d, "error", DbmError); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } |