| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:10:35 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											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>
 | 
					
						
							|  |  |  | #include <ndbm.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 * | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | newdbmobject(file, flags, mode) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	char *file; | 
					
						
							|  |  |  | int flags; | 
					
						
							|  |  |  | int mode; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         dbmobject *dp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +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 | 
					
						
							|  |  |  | dbm_dealloc(dp) | 
					
						
							|  |  |  | 	register dbmobject *dp; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         if ( dp->di_dbm ) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 		dbm_close(dp->di_dbm); | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	PyMem_DEL(dp); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | dbm_length(dp) | 
					
						
							|  |  |  | 	dbmobject *dp; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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 * | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | dbm_subscript(dp, key) | 
					
						
							|  |  |  | 	dbmobject *dp; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 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 | 
					
						
							|  |  |  | dbm_ass_sub(dp, v, w) | 
					
						
							|  |  |  | 	dbmobject *dp; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | PyObject *v, *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, | 
					
						
							|  |  |  | 					"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 * | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | dbm__close(dp, args) | 
					
						
							|  |  |  | 	register dbmobject *dp; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | PyObject *args; | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	if ( !PyArg_NoArgs(args) ) | 
					
						
							| 
									
										
										
										
											1995-07-07 22:37:11 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  |         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 * | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | dbm_keys(dp, args) | 
					
						
							|  |  |  | 	register dbmobject *dp; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	if (!PyArg_NoArgs(args)) | 
					
						
							| 
									
										
										
										
											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 * | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | dbm_has_key(dp, args) | 
					
						
							|  |  |  | 	register dbmobject *dp; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | PyObject *args; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	datum key, val; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "s#", &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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyMethodDef dbm_methods[] = { | 
					
						
							|  |  |  | 	{"close",	(PyCFunction)dbm__close}, | 
					
						
							|  |  |  | 	{"keys",	(PyCFunction)dbm_keys}, | 
					
						
							|  |  |  | 	{"has_key",	(PyCFunction)dbm_has_key}, | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | dbm_getattr(dp, name) | 
					
						
							|  |  |  | 	dbmobject *dp; | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 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 = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											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 * | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | dbmopen(self, args) | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 00:07:00 +00:00
										 |  |  |         if ( !PyArg_ParseTuple(args, "s|si", &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, | 
					
						
							|  |  |  | 				"Flags should be one of 'r', 'w', 'c' or 'n'"); | 
					
						
							|  |  |  | 		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[] = { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	{ "open", (PyCFunction)dbmopen, 1 }, | 
					
						
							|  |  |  | 	{ 0, 0 }, | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | initdbm() { | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	PyObject *m, *d; | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 15:55:22 +00:00
										 |  |  | 	m = Py_InitModule("dbm", dbmmodule_methods); | 
					
						
							|  |  |  | 	d = PyModule_GetDict(m); | 
					
						
							|  |  |  | 	DbmError = PyString_FromString("dbm.error"); | 
					
						
							|  |  |  | 	if ( DbmError == NULL || PyDict_SetItemString(d, "error", DbmError) ) | 
					
						
							|  |  |  | 		Py_FatalError("can't define dbm.error"); | 
					
						
							| 
									
										
										
										
											1992-06-29 17:10:40 +00:00
										 |  |  | } |