blob: 891c7f2d584b40545701b692d102afa351b71a35 [file] [log] [blame]
Benjamin Peterson651bc322010-03-11 21:53:25 +00001#!/usr/bin/env python
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +00002#------------------------------------------------------------------------
3# Copyright (c) 1997-2001 by Total Control Software
4# All Rights Reserved
5#------------------------------------------------------------------------
6#
7# Module Name: dbShelve.py
8#
9# Description: A reimplementation of the standard shelve.py that
10# forces the use of cPickle, and DB.
11#
12# Creation Date: 11/3/97 3:39:04PM
13#
14# License: This is free software. You may use this software for any
15# purpose including modification/redistribution, so long as
16# this header remains intact and that you do not claim any
17# rights of ownership or authorship of this software. This
18# software has been tested, but no warranty is expressed or
19# implied.
20#
21# 13-Dec-2000: Updated to be used with the new bsddb3 package.
22# Added DBShelfCursor class.
23#
24#------------------------------------------------------------------------
25
Barry Warsaw9a0d7792002-12-30 20:53:52 +000026"""Manage shelves of pickled objects using bsddb database files for the
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +000027storage.
28"""
29
30#------------------------------------------------------------------------
31
32import cPickle
Gregory P. Smithb7de61b2007-10-09 07:19:11 +000033import sys
34
Jesus Ceac5a11fa2008-07-23 11:38:42 +000035import sys
36absolute_import = (sys.version_info[0] >= 3)
37if absolute_import :
38 # Because this syntaxis is not valid before Python 2.5
39 exec("from . import db")
40else :
41 import db
42
43#At version 2.3 cPickle switched to using protocol instead of bin
Gregory P. Smithb7de61b2007-10-09 07:19:11 +000044if sys.version_info[:3] >= (2, 3, 0):
45 HIGHEST_PROTOCOL = cPickle.HIGHEST_PROTOCOL
Jesus Cea18eb1fa2008-05-13 20:57:59 +000046# In python 2.3.*, "cPickle.dumps" accepts no
47# named parameters. "pickle.dumps" accepts them,
48# so this seems a bug.
49 if sys.version_info[:3] < (2, 4, 0):
50 def _dumps(object, protocol):
51 return cPickle.dumps(object, protocol)
52 else :
53 def _dumps(object, protocol):
54 return cPickle.dumps(object, protocol=protocol)
55
Gregory P. Smithb7de61b2007-10-09 07:19:11 +000056else:
57 HIGHEST_PROTOCOL = None
58 def _dumps(object, protocol):
59 return cPickle.dumps(object, bin=protocol)
Jesus Ceac5a11fa2008-07-23 11:38:42 +000060
61
R. David Murray48605be2010-02-24 02:31:27 +000062try:
63 from UserDict import DictMixin
64except ImportError:
65 # DictMixin is new in Python 2.3
66 class DictMixin: pass
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +000067
68#------------------------------------------------------------------------
69
70
71def open(filename, flags=db.DB_CREATE, mode=0660, filetype=db.DB_HASH,
72 dbenv=None, dbname=None):
73 """
74 A simple factory function for compatibility with the standard
75 shleve.py module. It can be used like this, where key is a string
76 and data is a pickleable object:
77
Barry Warsaw9a0d7792002-12-30 20:53:52 +000078 from bsddb import dbshelve
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +000079 db = dbshelve.open(filename)
80
81 db[key] = data
82
83 db.close()
84 """
85 if type(flags) == type(''):
86 sflag = flags
87 if sflag == 'r':
88 flags = db.DB_RDONLY
89 elif sflag == 'rw':
90 flags = 0
91 elif sflag == 'w':
92 flags = db.DB_CREATE
93 elif sflag == 'c':
94 flags = db.DB_CREATE
95 elif sflag == 'n':
96 flags = db.DB_TRUNCATE | db.DB_CREATE
97 else:
Gregory P. Smith1281f762004-03-16 18:50:26 +000098 raise db.DBError, "flags should be one of 'r', 'w', 'c' or 'n' or use the bsddb.db.DB_* flags"
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +000099
100 d = DBShelf(dbenv)
101 d.open(filename, dbname, filetype, flags, mode)
102 return d
103
104#---------------------------------------------------------------------------
105
Gregory P. Smithd40f1262007-10-12 18:44:06 +0000106class DBShelveError(db.DBError): pass
107
108
R. David Murray48605be2010-02-24 02:31:27 +0000109class DBShelf(DictMixin):
Barry Warsaw99142272003-02-08 03:18:58 +0000110 """A shelf to hold pickled objects, built upon a bsddb DB object. It
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000111 automatically pickles/unpickles data objects going to/from the DB.
112 """
113 def __init__(self, dbenv=None):
114 self.db = db.DB(dbenv)
Gregory P. Smith5d743fd2007-10-13 23:02:05 +0000115 self._closed = True
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000116 if HIGHEST_PROTOCOL:
117 self.protocol = HIGHEST_PROTOCOL
118 else:
119 self.protocol = 1
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000120
121
122 def __del__(self):
123 self.close()
124
125
126 def __getattr__(self, name):
Barry Warsaw99142272003-02-08 03:18:58 +0000127 """Many methods we can just pass through to the DB object.
128 (See below)
129 """
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000130 return getattr(self.db, name)
131
132
133 #-----------------------------------
134 # Dictionary access methods
135
136 def __len__(self):
137 return len(self.db)
138
139
140 def __getitem__(self, key):
141 data = self.db[key]
142 return cPickle.loads(data)
143
144
145 def __setitem__(self, key, value):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000146 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000147 self.db[key] = data
148
149
150 def __delitem__(self, key):
151 del self.db[key]
152
153
154 def keys(self, txn=None):
Ezio Melotti8d3f1302010-02-02 15:57:45 +0000155 if txn is not None:
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000156 return self.db.keys(txn)
157 else:
158 return self.db.keys()
159
160
Gregory P. Smith5d743fd2007-10-13 23:02:05 +0000161 def open(self, *args, **kwargs):
162 self.db.open(*args, **kwargs)
163 self._closed = False
164
165
166 def close(self, *args, **kwargs):
167 self.db.close(*args, **kwargs)
168 self._closed = True
169
170
171 def __repr__(self):
172 if self._closed:
173 return '<DBShelf @ 0x%x - closed>' % (id(self))
174 else:
175 return repr(dict(self.iteritems()))
176
177
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000178 def items(self, txn=None):
Ezio Melotti8d3f1302010-02-02 15:57:45 +0000179 if txn is not None:
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000180 items = self.db.items(txn)
181 else:
182 items = self.db.items()
183 newitems = []
184
185 for k, v in items:
186 newitems.append( (k, cPickle.loads(v)) )
187 return newitems
188
189 def values(self, txn=None):
Ezio Melotti8d3f1302010-02-02 15:57:45 +0000190 if txn is not None:
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000191 values = self.db.values(txn)
192 else:
193 values = self.db.values()
194
195 return map(cPickle.loads, values)
196
197 #-----------------------------------
198 # Other methods
199
Gregory P. Smith1281f762004-03-16 18:50:26 +0000200 def __append(self, value, txn=None):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000201 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000202 return self.db.append(data, txn)
203
Gregory P. Smith1281f762004-03-16 18:50:26 +0000204 def append(self, value, txn=None):
Gregory P. Smithd40f1262007-10-12 18:44:06 +0000205 if self.get_type() == db.DB_RECNO:
Gregory P. Smith5d743fd2007-10-13 23:02:05 +0000206 return self.__append(value, txn=txn)
Gregory P. Smithd40f1262007-10-12 18:44:06 +0000207 raise DBShelveError, "append() only supported when dbshelve opened with filetype=dbshelve.db.DB_RECNO"
Gregory P. Smith1281f762004-03-16 18:50:26 +0000208
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000209
210 def associate(self, secondaryDB, callback, flags=0):
211 def _shelf_callback(priKey, priData, realCallback=callback):
Jesus Cea4907d272008-08-31 14:00:51 +0000212 # Safe in Python 2.x because expresion short circuit
213 if sys.version_info[0] < 3 or isinstance(priData, bytes) :
214 data = cPickle.loads(priData)
215 else :
216 data = cPickle.loads(bytes(priData, "iso8859-1")) # 8 bits
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000217 return realCallback(priKey, data)
Jesus Cea4907d272008-08-31 14:00:51 +0000218
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000219 return self.db.associate(secondaryDB, _shelf_callback, flags)
220
221
222 #def get(self, key, default=None, txn=None, flags=0):
223 def get(self, *args, **kw):
224 # We do it with *args and **kw so if the default value wasn't
225 # given nothing is passed to the extension module. That way
226 # an exception can be raised if set_get_returns_none is turned
227 # off.
Antoine Pitrou63b0cb22009-10-14 18:01:33 +0000228 data = self.db.get(*args, **kw)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000229 try:
230 return cPickle.loads(data)
Jesus Cea4907d272008-08-31 14:00:51 +0000231 except (EOFError, TypeError, cPickle.UnpicklingError):
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000232 return data # we may be getting the default value, or None,
233 # so it doesn't need unpickled.
234
235 def get_both(self, key, value, txn=None, flags=0):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000236 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000237 data = self.db.get(key, data, txn, flags)
238 return cPickle.loads(data)
239
240
241 def cursor(self, txn=None, flags=0):
242 c = DBShelfCursor(self.db.cursor(txn, flags))
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000243 c.protocol = self.protocol
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000244 return c
245
246
247 def put(self, key, value, txn=None, flags=0):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000248 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000249 return self.db.put(key, data, txn, flags)
250
251
252 def join(self, cursorList, flags=0):
253 raise NotImplementedError
254
255
256 #----------------------------------------------
257 # Methods allowed to pass-through to self.db
258 #
259 # close, delete, fd, get_byteswapped, get_type, has_key,
260 # key_range, open, remove, rename, stat, sync,
261 # upgrade, verify, and all set_* methods.
262
263
264#---------------------------------------------------------------------------
265
266class DBShelfCursor:
267 """
268 """
269 def __init__(self, cursor):
270 self.dbc = cursor
271
272 def __del__(self):
273 self.close()
274
275
276 def __getattr__(self, name):
277 """Some methods we can just pass through to the cursor object. (See below)"""
278 return getattr(self.dbc, name)
279
280
281 #----------------------------------------------
282
283 def dup(self, flags=0):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000284 c = DBShelfCursor(self.dbc.dup(flags))
285 c.protocol = self.protocol
286 return c
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000287
288
289 def put(self, key, value, flags=0):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000290 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000291 return self.dbc.put(key, data, flags)
292
293
294 def get(self, *args):
295 count = len(args) # a method overloading hack
296 method = getattr(self, 'get_%d' % count)
Antoine Pitrou63b0cb22009-10-14 18:01:33 +0000297 method(*args)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000298
299 def get_1(self, flags):
300 rec = self.dbc.get(flags)
301 return self._extract(rec)
302
303 def get_2(self, key, flags):
304 rec = self.dbc.get(key, flags)
305 return self._extract(rec)
306
307 def get_3(self, key, value, flags):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000308 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000309 rec = self.dbc.get(key, flags)
310 return self._extract(rec)
311
312
313 def current(self, flags=0): return self.get_1(flags|db.DB_CURRENT)
314 def first(self, flags=0): return self.get_1(flags|db.DB_FIRST)
315 def last(self, flags=0): return self.get_1(flags|db.DB_LAST)
316 def next(self, flags=0): return self.get_1(flags|db.DB_NEXT)
317 def prev(self, flags=0): return self.get_1(flags|db.DB_PREV)
318 def consume(self, flags=0): return self.get_1(flags|db.DB_CONSUME)
319 def next_dup(self, flags=0): return self.get_1(flags|db.DB_NEXT_DUP)
320 def next_nodup(self, flags=0): return self.get_1(flags|db.DB_NEXT_NODUP)
321 def prev_nodup(self, flags=0): return self.get_1(flags|db.DB_PREV_NODUP)
322
323
324 def get_both(self, key, value, flags=0):
Gregory P. Smithb7de61b2007-10-09 07:19:11 +0000325 data = _dumps(value, self.protocol)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000326 rec = self.dbc.get_both(key, flags)
327 return self._extract(rec)
328
329
330 def set(self, key, flags=0):
331 rec = self.dbc.set(key, flags)
332 return self._extract(rec)
333
334 def set_range(self, key, flags=0):
335 rec = self.dbc.set_range(key, flags)
336 return self._extract(rec)
337
338 def set_recno(self, recno, flags=0):
339 rec = self.dbc.set_recno(recno, flags)
340 return self._extract(rec)
341
342 set_both = get_both
343
344 def _extract(self, rec):
345 if rec is None:
346 return None
347 else:
348 key, data = rec
Jesus Cea4907d272008-08-31 14:00:51 +0000349 # Safe in Python 2.x because expresion short circuit
350 if sys.version_info[0] < 3 or isinstance(data, bytes) :
351 return key, cPickle.loads(data)
352 else :
353 return key, cPickle.loads(bytes(data, "iso8859-1")) # 8 bits
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000354
355 #----------------------------------------------
356 # Methods allowed to pass-through to self.dbc
357 #
358 # close, count, delete, get_recno, join_item
359
360
361#---------------------------------------------------------------------------