blob: 52e471ac863a31708d9ead4cd5ea8cf233326531 [file] [log] [blame]
Guido van Rossumcc6764c1995-02-09 17:18:10 +00001"""Manage shelves of pickled objects.
2
3A "shelf" is a persistent, dictionary-like object. The difference
4with dbm databases is that the values (not the keys!) in a shelf can
5be essentially arbitrary Python objects -- anything that the "pickle"
6module can handle. This includes most class instances, recursive data
7types, and objects containing lots of shared sub-objects. The keys
8are ordinary strings.
9
10To summarize the interface (key is a string, data is an arbitrary
11object):
12
Fred Drake13a2c272000-02-10 17:17:14 +000013 import shelve
14 d = shelve.open(filename) # open, with (g)dbm filename -- no suffix
Guido van Rossumcc6764c1995-02-09 17:18:10 +000015
Fred Drake13a2c272000-02-10 17:17:14 +000016 d[key] = data # store data at key (overwrites old data if
17 # using an existing key)
Tim Peters0eadaac2003-04-24 16:02:54 +000018 data = d[key] # retrieve a COPY of the data at key (raise
Martin v. Löwis153c9e42003-04-19 20:59:03 +000019 # KeyError if no such key) -- NOTE that this
20 # access returns a *copy* of the entry!
Fred Drake13a2c272000-02-10 17:17:14 +000021 del d[key] # delete data stored at key (raises KeyError
22 # if no such key)
Guido van Rossume2b70bc2006-08-18 22:13:04 +000023 flag = key in d # true if the key exists
Fred Drake13a2c272000-02-10 17:17:14 +000024 list = d.keys() # a list of all existing keys (slow!)
Guido van Rossumcc6764c1995-02-09 17:18:10 +000025
Fred Drake13a2c272000-02-10 17:17:14 +000026 d.close() # close it
Guido van Rossumcc6764c1995-02-09 17:18:10 +000027
28Dependent on the implementation, closing a persistent dictionary may
29or may not be necessary to flush changes to disk.
Martin v. Löwis153c9e42003-04-19 20:59:03 +000030
31Normally, d[key] returns a COPY of the entry. This needs care when
32mutable entries are mutated: for example, if d[key] is a list,
33 d[key].append(anitem)
34does NOT modify the entry d[key] itself, as stored in the persistent
35mapping -- it only modifies the copy, which is then immediately
36discarded, so that the append has NO effect whatsoever. To append an
37item to d[key] in a way that will affect the persistent mapping, use:
38 data = d[key]
39 data.append(anitem)
40 d[key] = data
41
42To avoid the problem with mutable entries, you may pass the keyword
43argument writeback=True in the call to shelve.open. When you use:
44 d = shelve.open(filename, writeback=True)
45then d keeps a cache of all entries you access, and writes them all back
46to the persistent mapping when you call d.close(). This ensures that
47such usage as d[key].append(anitem) works as intended.
48
49However, using keyword argument writeback=True may consume vast amount
50of memory for the cache, and it may make d.close() very slow, if you
51access many of d's entries after opening it in this way: d has no way to
52check which of the entries you access are mutable and/or which ones you
53actually mutate, so it must cache, and write back at close, all of the
54entries that you access. You can call d.sync() to write back all the
55entries in the cache, and empty the cache (d.sync() also synchronizes
56the persistent dictionary on disk, if feasible).
Guido van Rossumcc6764c1995-02-09 17:18:10 +000057"""
Guido van Rossuma48061a1995-01-10 00:31:14 +000058
Guido van Rossum68937b42007-05-18 00:51:22 +000059from pickle import Pickler, Unpickler
Brett Cannond24fffe2007-07-26 03:07:02 +000060from io import BytesIO
Guido van Rossuma48061a1995-01-10 00:31:14 +000061
Raymond Hettingerb9da9bc2008-02-04 20:44:31 +000062import collections
Raymond Hettinger79947162002-11-15 06:46:14 +000063
Skip Montanaro0de65802001-02-15 22:15:14 +000064__all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
Guido van Rossumcc6764c1995-02-09 17:18:10 +000065
Benjamin Petersond6313712008-07-31 16:23:04 +000066class _ClosedDict(collections.MutableMapping):
67 'Marker for a closed dict. Access attempts raise a ValueError.'
68
69 def closed(self, *args):
70 raise ValueError('invalid operation on closed shelf')
71 __iter__ = __len__ = __getitem__ = __setitem__ = __delitem__ = keys = closed
72
73 def __repr__(self):
74 return '<Closed Dictionary>'
75
Raymond Hettingerb9da9bc2008-02-04 20:44:31 +000076class Shelf(collections.MutableMapping):
Tim Peters495ad3c2001-01-15 01:36:40 +000077 """Base class for shelf implementations.
Guido van Rossumcc6764c1995-02-09 17:18:10 +000078
Tim Peters495ad3c2001-01-15 01:36:40 +000079 This is initialized with a dictionary-like object.
80 See the module's __doc__ string for an overview of the interface.
81 """
Guido van Rossuma48061a1995-01-10 00:31:14 +000082
Martin v. Löwis79c32082007-08-11 06:57:14 +000083 def __init__(self, dict, protocol=None, writeback=False,
84 keyencoding="utf-8"):
Tim Peters495ad3c2001-01-15 01:36:40 +000085 self.dict = dict
Martin v. Löwis153c9e42003-04-19 20:59:03 +000086 if protocol is None:
Raymond Hettinger85602262009-02-03 04:19:10 +000087 protocol = 3
Martin v. Löwis153c9e42003-04-19 20:59:03 +000088 self._protocol = protocol
89 self.writeback = writeback
90 self.cache = {}
Martin v. Löwis79c32082007-08-11 06:57:14 +000091 self.keyencoding = "utf-8"
Guido van Rossum2f7df121999-08-11 01:54:05 +000092
Raymond Hettingerb9da9bc2008-02-04 20:44:31 +000093 def __iter__(self):
Martin v. Löwis79c32082007-08-11 06:57:14 +000094 for k in self.dict.keys():
95 yield k.decode(self.keyencoding)
Guido van Rossuma48061a1995-01-10 00:31:14 +000096
Tim Peters495ad3c2001-01-15 01:36:40 +000097 def __len__(self):
98 return len(self.dict)
Guido van Rossuma48061a1995-01-10 00:31:14 +000099
Martin v. Löwise4913c92002-10-18 08:58:14 +0000100 def __contains__(self, key):
Martin v. Löwis79c32082007-08-11 06:57:14 +0000101 return key.encode(self.keyencoding) in self.dict
Martin v. Löwise4913c92002-10-18 08:58:14 +0000102
Tim Peters495ad3c2001-01-15 01:36:40 +0000103 def get(self, key, default=None):
Martin v. Löwis79c32082007-08-11 06:57:14 +0000104 if key.encode(self.keyencoding) in self.dict:
Tim Peters495ad3c2001-01-15 01:36:40 +0000105 return self[key]
106 return default
107
108 def __getitem__(self, key):
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000109 try:
110 value = self.cache[key]
111 except KeyError:
Martin v. Löwis79c32082007-08-11 06:57:14 +0000112 f = BytesIO(self.dict[key.encode(self.keyencoding)])
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000113 value = Unpickler(f).load()
114 if self.writeback:
115 self.cache[key] = value
116 return value
Tim Peters495ad3c2001-01-15 01:36:40 +0000117
118 def __setitem__(self, key, value):
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000119 if self.writeback:
120 self.cache[key] = value
Brett Cannond24fffe2007-07-26 03:07:02 +0000121 f = BytesIO()
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000122 p = Pickler(f, self._protocol)
Tim Peters495ad3c2001-01-15 01:36:40 +0000123 p.dump(value)
Martin v. Löwis79c32082007-08-11 06:57:14 +0000124 self.dict[key.encode(self.keyencoding)] = f.getvalue()
Tim Peters495ad3c2001-01-15 01:36:40 +0000125
126 def __delitem__(self, key):
Martin v. Löwis79c32082007-08-11 06:57:14 +0000127 del self.dict[key.encode(self.keyencoding)]
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000128 try:
129 del self.cache[key]
130 except KeyError:
131 pass
Tim Peters495ad3c2001-01-15 01:36:40 +0000132
133 def close(self):
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000134 self.sync()
Tim Peters495ad3c2001-01-15 01:36:40 +0000135 try:
136 self.dict.close()
Raymond Hettinger68dcd342003-05-27 06:30:52 +0000137 except AttributeError:
Tim Peters495ad3c2001-01-15 01:36:40 +0000138 pass
R. David Murray733ecdc2010-02-11 03:06:51 +0000139 # Catch errors that may happen when close is called from __del__
140 # because CPython is in interpreter shutdown.
141 try:
R. David Murray709b4c32010-02-11 00:25:17 +0000142 self.dict = _ClosedDict()
R. David Murray733ecdc2010-02-11 03:06:51 +0000143 except (NameError, TypeError):
144 self.dict = None
Tim Peters495ad3c2001-01-15 01:36:40 +0000145
146 def __del__(self):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000147 if not hasattr(self, 'writeback'):
148 # __init__ didn't succeed, so don't bother closing
149 return
Tim Peters495ad3c2001-01-15 01:36:40 +0000150 self.close()
151
152 def sync(self):
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000153 if self.writeback and self.cache:
154 self.writeback = False
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000155 for key, entry in self.cache.items():
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000156 self[key] = entry
157 self.writeback = True
158 self.cache = {}
Tim Peters495ad3c2001-01-15 01:36:40 +0000159 if hasattr(self.dict, 'sync'):
160 self.dict.sync()
161
Guido van Rossumcc6764c1995-02-09 17:18:10 +0000162
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000163class BsdDbShelf(Shelf):
Tim Peters495ad3c2001-01-15 01:36:40 +0000164 """Shelf implementation using the "BSD" db interface.
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000165
Tim Peters495ad3c2001-01-15 01:36:40 +0000166 This adds methods first(), next(), previous(), last() and
167 set_location() that have no counterpart in [g]dbm databases.
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000168
Tim Peters495ad3c2001-01-15 01:36:40 +0000169 The actual database must be opened using one of the "bsddb"
170 modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
171 bsddb.rnopen) and passed to the constructor.
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000172
Tim Peters495ad3c2001-01-15 01:36:40 +0000173 See the module's __doc__ string for an overview of the interface.
174 """
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000175
Martin v. Löwis79c32082007-08-11 06:57:14 +0000176 def __init__(self, dict, protocol=None, writeback=False,
177 keyencoding="utf-8"):
178 Shelf.__init__(self, dict, protocol, writeback, keyencoding)
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000179
Tim Peters495ad3c2001-01-15 01:36:40 +0000180 def set_location(self, key):
181 (key, value) = self.dict.set_location(key)
Brett Cannond24fffe2007-07-26 03:07:02 +0000182 f = BytesIO(value)
Martin v. Löwis79c32082007-08-11 06:57:14 +0000183 return (key.decode(self.keyencoding), Unpickler(f).load())
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000184
Tim Peters495ad3c2001-01-15 01:36:40 +0000185 def next(self):
Georg Brandla18af4e2007-04-21 15:47:16 +0000186 (key, value) = next(self.dict)
Brett Cannond24fffe2007-07-26 03:07:02 +0000187 f = BytesIO(value)
Martin v. Löwis79c32082007-08-11 06:57:14 +0000188 return (key.decode(self.keyencoding), Unpickler(f).load())
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000189
Tim Peters495ad3c2001-01-15 01:36:40 +0000190 def previous(self):
191 (key, value) = self.dict.previous()
Brett Cannond24fffe2007-07-26 03:07:02 +0000192 f = BytesIO(value)
Martin v. Löwis79c32082007-08-11 06:57:14 +0000193 return (key.decode(self.keyencoding), Unpickler(f).load())
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000194
Tim Peters495ad3c2001-01-15 01:36:40 +0000195 def first(self):
196 (key, value) = self.dict.first()
Brett Cannond24fffe2007-07-26 03:07:02 +0000197 f = BytesIO(value)
Martin v. Löwis79c32082007-08-11 06:57:14 +0000198 return (key.decode(self.keyencoding), Unpickler(f).load())
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000199
Tim Peters495ad3c2001-01-15 01:36:40 +0000200 def last(self):
201 (key, value) = self.dict.last()
Brett Cannond24fffe2007-07-26 03:07:02 +0000202 f = BytesIO(value)
Martin v. Löwis79c32082007-08-11 06:57:14 +0000203 return (key.decode(self.keyencoding), Unpickler(f).load())
Guido van Rossumabad1cc1995-08-11 14:19:16 +0000204
205
206class DbfilenameShelf(Shelf):
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000207 """Shelf implementation using the "dbm" generic dbm interface.
Guido van Rossumcc6764c1995-02-09 17:18:10 +0000208
Tim Peters495ad3c2001-01-15 01:36:40 +0000209 This is initialized with the filename for the dbm database.
210 See the module's __doc__ string for an overview of the interface.
211 """
212
Raymond Hettinger1bc82f82004-12-05 03:58:17 +0000213 def __init__(self, filename, flag='c', protocol=None, writeback=False):
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000214 import dbm
215 Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
Guido van Rossumcc6764c1995-02-09 17:18:10 +0000216
217
Raymond Hettinger1bc82f82004-12-05 03:58:17 +0000218def open(filename, flag='c', protocol=None, writeback=False):
Tim Peters495ad3c2001-01-15 01:36:40 +0000219 """Open a persistent dictionary for reading and writing.
Guido van Rossumcc6764c1995-02-09 17:18:10 +0000220
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000221 The filename parameter is the base filename for the underlying
222 database. As a side-effect, an extension may be added to the
223 filename and more than one file may be created. The optional flag
224 parameter has the same interpretation as the flag parameter of
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000225 dbm.open(). The optional protocol parameter specifies the
Martin v. Löwis153c9e42003-04-19 20:59:03 +0000226 version of the pickle protocol (0, 1, or 2).
227
Tim Peters495ad3c2001-01-15 01:36:40 +0000228 See the module's __doc__ string for an overview of the interface.
229 """
230
Raymond Hettinger1bc82f82004-12-05 03:58:17 +0000231 return DbfilenameShelf(filename, flag, protocol, writeback)