summaryrefslogtreecommitdiffstats
path: root/Modules/dbhashmodule.c
blob: a8df0279d36b7b2a9409f81ad57296ef1f3b3192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/***********************************************************
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in 
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission.

STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM 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.

******************************************************************/

/* Berkeley DB hash interface.
   Author: Michael McLay
   Hacked: Guido van Rossum

   XXX To do:
   - provide interface to the B-tree and record libraries too
   - provide a way to access the various hash functions
   - support more open flags
 */

#include "allobjects.h"
#include "modsupport.h"

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <db.h>
/* Please don't include internal header files of the Berkeley db package
   (it messes up the info required in the Setup file) */

typedef struct {
    OB_HEAD
    DB *di_dbhash;
    int di_size;	/* -1 means recompute */
} dbhashobject;

staticforward typeobject Dbhashtype;

#define is_dbhashobject(v) ((v)->ob_type == &Dbhashtype)

static object *DbhashError;

static object *
newdbhashobject(file, flags, mode,
		bsize, ffactor, nelem, cachesize, hash, lorder)
    char *file;
    int flags;
    int mode;
    int bsize;
    int ffactor;
    int nelem;
    int cachesize;
    int hash; /* XXX ignored */
    int lorder;
{
    dbhashobject *dp;
    HASHINFO info;

    if ((dp = NEWOBJ(dbhashobject, &Dbhashtype)) == NULL)
	return NULL;

    info.bsize = bsize;
    info.ffactor = ffactor;
    info.nelem = nelem;
    info.cachesize = cachesize;
    info.hash = NULL; /* XXX should derive from hash argument */
    info.lorder = lorder;

    if ((dp->di_dbhash = dbopen(file, flags, mode, DB_HASH, &info)) == NULL) {
	err_errno(DbhashError);
	DECREF(dp);
	return NULL;
    }

    dp->di_size = -1;

    return (object *)dp;
}

static void
dbhash_dealloc(dp)
    dbhashobject *dp;
{
    if (dp->di_dbhash != NULL) {
	if ((dp->di_dbhash->close)(dp->di_dbhash) != 0)
	    fprintf(stderr,
		    "Python dbhash: close errno %s in dealloc\n", errno);
    }
    DEL(dp);
}

static int
dbhash_length(dp)
    dbhashobject *dp;
{
    if (dp->di_size < 0) {
	DBT krec, drec;
	int status;
	int size = 0;
	for (status = (dp->di_dbhash->seq)(dp->di_dbhash, &krec, &drec,R_FIRST);
	     status == 0;
	     status = (dp->di_dbhash->seq)(dp->di_dbhash, &krec, &drec, R_NEXT))
	    size++;
	if (status < 0) {
	    err_errno(DbhashError);
	    return -1;
	}
	dp->di_size = size;
    }
    return dp->di_size;
}

static object *
dbhash_subscript(dp, key)
    dbhashobject *dp;
    object *key;
{
    int status;
    object *v;
    DBT krec, drec;
    char *data;
    int size;

    if (!getargs(key, "s#", &data, &size))
	return NULL;
    krec.data = data;
    krec.size = size;

    status = (dp->di_dbhash->get)(dp->di_dbhash, &krec, &drec, 0);
    if (status != 0) {
	if (status < 0)
	    err_errno(DbhashError);
	else
	    err_setval(KeyError, key);
	return NULL;
    }

    return newsizedstringobject((char *)drec.data, (int)drec.size);
}

static int
dbhash_ass_sub(dp, key, value)
    dbhashobject *dp;
    object *key, *value;
{
    int status;
    DBT krec, drec;
    char *data;
    int size;

    if (!getargs(key, "s#", &data, &size)) {
	err_setstr(TypeError, "dbhash key type must be string");
	return -1;
    }
    krec.data = data;
    krec.size = size;
    dp->di_size = -1;
    if (value == NULL) {
	status = (dp->di_dbhash->del)(dp->di_dbhash, &krec, 0);
    }
    else {
	if (!getargs(value, "s#", &data, &size)) {
	    err_setstr(TypeError, "dbhash value type must be string");
	    return -1;
	}
	drec.data = data;
	drec.size = size;
	status = (dp->di_dbhash->put)(dp->di_dbhash, &krec, &drec, 0);
    }
    if (status != 0) {
	if (status < 0)
	    err_errno(DbhashError);
	else
	    err_setval(KeyError, key);
	return -1;
    }
    return 0;
}

static mapping_methods dbhash_as_mapping = {
    (inquiry)dbhash_length,		/*mp_length*/
    (binaryfunc)dbhash_subscript,	/*mp_subscript*/
    (objobjargproc)dbhash_ass_sub,	/*mp_ass_subscript*/
};

static object *
dbhash_close(dp, args)
    dbhashobject *dp;
    object *args;
{
    if (!getnoarg(args))
	return NULL;
    if (dp->di_dbhash != NULL) {
	if ((dp->di_dbhash->close)(dp->di_dbhash) != 0) {
		dp->di_dbhash = NULL;
	    err_errno(DbhashError);
	    return NULL;
	}
    }
    dp->di_dbhash = NULL;
    INCREF(None);
    return None;
}

static object *
dbhash_keys(dp, args)
    dbhashobject *dp;
    object *args;
{
    object *list, *item;
    DBT krec, drec;
    int status;
    int err;

    if (!getnoarg(args))
	return NULL;
    list = newlistobject(0);
    if (list == NULL)
	return NULL;
    for (status = (dp->di_dbhash->seq)(dp->di_dbhash, &krec, &drec, R_FIRST);
	 status == 0;
	 status = (dp->di_dbhash->seq)(dp->di_dbhash, &krec, &drec, R_NEXT)) {
	item = newsizedstringobject((char *)krec.data, (int)krec.size);
	if (item == NULL) {
	    DECREF(list);
	    return NULL;
	}
	err = addlistitem(list, item);
	DECREF(item);
	if (err != 0) {
	    DECREF(list);
	    return NULL;
	}
    }
    if (status < 0) {
	err_errno(DbhashError);
	DECREF(list);
	return NULL;
    }
    if (dp->di_size < 0)
	dp->di_size = getlistsize(list); /* We just did the work for this... */
    return list;
}

static object *
dbhash_has_key(dp, args)
    dbhashobject *dp;
    object *args;
{
    DBT krec, drec;
    int status;
    char *data;
    int size;

    if (!getargs(args, "s#", &data, &size))
	return NULL;
    krec.data = data;
    krec.size = size;

    status = (dp->di_dbhash->get)(dp->di_dbhash, &krec, &drec, 0);
    if (status < 0) {
	err_errno(DbhashError);
	return NULL;
    }

    return newintobject(status == 0);
}

static struct methodlist dbhash_methods[] = {
    {"close",		(method)dbhash_close},
    {"keys",		(method)dbhash_keys},
    {"has_key",		(method)dbhash_has_key},
    {NULL,	       	NULL}		/* sentinel */
};

static object *
dbhash_getattr(dp, name)
    object *dp;
    char *name;
{
    return findmethod(dbhash_methods, dp, name);
}

static typeobject Dbhashtype = {
    OB_HEAD_INIT(&Typetype)
    0,
    "dbhash",
    sizeof(dbhashobject),
    0,
    (destructor)dbhash_dealloc, /*tp_dealloc*/
    0,			/*tp_print*/
    (getattrfunc)dbhash_getattr, /*tp_getattr*/
    0,			/*tp_setattr*/
    0,			/*tp_compare*/
    0,			/*tp_repr*/
    0,			/*tp_as_number*/
    0,			/*tp_as_sequence*/
    &dbhash_as_mapping,	/*tp_as_mapping*/
};

static object *
dbhashopen(self, args)
    object *self;
    object *args;
{
    char *file;
    char *flag = NULL;
    int flags = O_RDONLY;
    int mode = 0666;
    int bsize = 0;
    int ffactor = 0;
    int nelem = 0;
    int cachesize = 0;
    int hash = 0; /* XXX currently ignored */
    int lorder = 0;

    if (!newgetargs(args, "s|siiiiiii",
		 &file, &flag, &mode,
		 &bsize, &ffactor, &nelem, &cachesize, &hash, &lorder))
	  return NULL;
    if (flag != NULL) {
	/* XXX need a way to pass O_EXCL, O_EXLOCK, O_NONBLOCK, O_SHLOCK */
	if (flag[0] == 'r')
	    flags = O_RDONLY;
	else if (flag[0] == 'w')
	    flags = O_RDWR;
	else if (flag[0] == 'c')
	    flags = O_RDWR|O_CREAT;
	else if (flag[0] == 'n')
	    flags = O_RDWR|O_CREAT|O_TRUNC;
	else {
	    err_setstr(DbhashError,
		       "Flag should begin with 'r', 'w', 'c' or 'n'");
	    return NULL;
	}
	if (flag[1] == 'l') {
#if defined(O_EXLOCK) && defined(O_SHLOCK)
	    if (flag[0] == 'r')
	        flags |= O_SHLOCK;
	    else
		flags |= O_EXLOCK;
#else
	    err_setstr(DbhashError, "locking not supported on this platform");
	    return NULL;
#endif
	}
    }
    return newdbhashobject(file, flags, mode,
			   bsize, ffactor, nelem, cachesize, hash, lorder);
}

static struct methodlist dbhashmodule_methods[] = {
    {"open",	(method)dbhashopen, 1},
    {0,		0},
};

void
initdbhash() {
    object *m, *d;

    m = initmodule("dbhash", dbhashmodule_methods);
    d = getmoduledict(m);
    DbhashError = newstringobject("dbhash.error");
    if (DbhashError == NULL || dictinsert(d, "error", DbhashError))
	fatal("can't define dbhash.error");
}