Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 1 | """Manage shelves of pickled objects. |
| 2 | |
| 3 | A "shelf" is a persistent, dictionary-like object. The difference |
| 4 | with dbm databases is that the values (not the keys!) in a shelf can |
| 5 | be essentially arbitrary Python objects -- anything that the "pickle" |
| 6 | module can handle. This includes most class instances, recursive data |
| 7 | types, and objects containing lots of shared sub-objects. The keys |
| 8 | are ordinary strings. |
| 9 | |
| 10 | To summarize the interface (key is a string, data is an arbitrary |
| 11 | object): |
| 12 | |
Fred Drake | 13a2c27 | 2000-02-10 17:17:14 +0000 | [diff] [blame] | 13 | import shelve |
| 14 | d = shelve.open(filename) # open, with (g)dbm filename -- no suffix |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 15 | |
Fred Drake | 13a2c27 | 2000-02-10 17:17:14 +0000 | [diff] [blame] | 16 | d[key] = data # store data at key (overwrites old data if |
| 17 | # using an existing key) |
Tim Peters | 0eadaac | 2003-04-24 16:02:54 +0000 | [diff] [blame] | 18 | data = d[key] # retrieve a COPY of the data at key (raise |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 19 | # KeyError if no such key) -- NOTE that this |
| 20 | # access returns a *copy* of the entry! |
Fred Drake | 13a2c27 | 2000-02-10 17:17:14 +0000 | [diff] [blame] | 21 | del d[key] # delete data stored at key (raises KeyError |
| 22 | # if no such key) |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 23 | flag = key in d # true if the key exists |
Fred Drake | 13a2c27 | 2000-02-10 17:17:14 +0000 | [diff] [blame] | 24 | list = d.keys() # a list of all existing keys (slow!) |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 25 | |
Fred Drake | 13a2c27 | 2000-02-10 17:17:14 +0000 | [diff] [blame] | 26 | d.close() # close it |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 27 | |
| 28 | Dependent on the implementation, closing a persistent dictionary may |
| 29 | or may not be necessary to flush changes to disk. |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 30 | |
| 31 | Normally, d[key] returns a COPY of the entry. This needs care when |
| 32 | mutable entries are mutated: for example, if d[key] is a list, |
| 33 | d[key].append(anitem) |
| 34 | does NOT modify the entry d[key] itself, as stored in the persistent |
| 35 | mapping -- it only modifies the copy, which is then immediately |
| 36 | discarded, so that the append has NO effect whatsoever. To append an |
| 37 | item 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 | |
| 42 | To avoid the problem with mutable entries, you may pass the keyword |
| 43 | argument writeback=True in the call to shelve.open. When you use: |
| 44 | d = shelve.open(filename, writeback=True) |
| 45 | then d keeps a cache of all entries you access, and writes them all back |
| 46 | to the persistent mapping when you call d.close(). This ensures that |
| 47 | such usage as d[key].append(anitem) works as intended. |
| 48 | |
| 49 | However, using keyword argument writeback=True may consume vast amount |
| 50 | of memory for the cache, and it may make d.close() very slow, if you |
| 51 | access many of d's entries after opening it in this way: d has no way to |
| 52 | check which of the entries you access are mutable and/or which ones you |
| 53 | actually mutate, so it must cache, and write back at close, all of the |
| 54 | entries that you access. You can call d.sync() to write back all the |
| 55 | entries in the cache, and empty the cache (d.sync() also synchronizes |
| 56 | the persistent dictionary on disk, if feasible). |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 57 | """ |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 58 | |
Guido van Rossum | 68937b4 | 2007-05-18 00:51:22 +0000 | [diff] [blame] | 59 | from pickle import Pickler, Unpickler |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 60 | from io import BytesIO |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 61 | |
Raymond Hettinger | b9da9bc | 2008-02-04 20:44:31 +0000 | [diff] [blame] | 62 | import collections |
Raymond Hettinger | 7994716 | 2002-11-15 06:46:14 +0000 | [diff] [blame] | 63 | |
Andrew Svetlov | ac0f965 | 2012-10-06 18:38:30 +0300 | [diff] [blame] | 64 | __all__ = ["Shelf", "BsdDbShelf", "DbfilenameShelf", "open"] |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 65 | |
Benjamin Peterson | d631371 | 2008-07-31 16:23:04 +0000 | [diff] [blame] | 66 | class _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 | |
Georg Brandl | 732324a | 2010-12-04 11:12:43 +0000 | [diff] [blame] | 76 | |
Raymond Hettinger | b9da9bc | 2008-02-04 20:44:31 +0000 | [diff] [blame] | 77 | class Shelf(collections.MutableMapping): |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 78 | """Base class for shelf implementations. |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 79 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 80 | This is initialized with a dictionary-like object. |
| 81 | See the module's __doc__ string for an overview of the interface. |
| 82 | """ |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 83 | |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 84 | def __init__(self, dict, protocol=None, writeback=False, |
| 85 | keyencoding="utf-8"): |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 86 | self.dict = dict |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 87 | if protocol is None: |
Raymond Hettinger | 8560226 | 2009-02-03 04:19:10 +0000 | [diff] [blame] | 88 | protocol = 3 |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 89 | self._protocol = protocol |
| 90 | self.writeback = writeback |
| 91 | self.cache = {} |
Georg Brandl | 732324a | 2010-12-04 11:12:43 +0000 | [diff] [blame] | 92 | self.keyencoding = keyencoding |
Guido van Rossum | 2f7df12 | 1999-08-11 01:54:05 +0000 | [diff] [blame] | 93 | |
Raymond Hettinger | b9da9bc | 2008-02-04 20:44:31 +0000 | [diff] [blame] | 94 | def __iter__(self): |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 95 | for k in self.dict.keys(): |
| 96 | yield k.decode(self.keyencoding) |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 97 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 98 | def __len__(self): |
| 99 | return len(self.dict) |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 100 | |
Martin v. Löwis | e4913c9 | 2002-10-18 08:58:14 +0000 | [diff] [blame] | 101 | def __contains__(self, key): |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 102 | return key.encode(self.keyencoding) in self.dict |
Martin v. Löwis | e4913c9 | 2002-10-18 08:58:14 +0000 | [diff] [blame] | 103 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 104 | def get(self, key, default=None): |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 105 | if key.encode(self.keyencoding) in self.dict: |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 106 | return self[key] |
| 107 | return default |
| 108 | |
| 109 | def __getitem__(self, key): |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 110 | try: |
| 111 | value = self.cache[key] |
| 112 | except KeyError: |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 113 | f = BytesIO(self.dict[key.encode(self.keyencoding)]) |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 114 | value = Unpickler(f).load() |
| 115 | if self.writeback: |
| 116 | self.cache[key] = value |
| 117 | return value |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 118 | |
| 119 | def __setitem__(self, key, value): |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 120 | if self.writeback: |
| 121 | self.cache[key] = value |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 122 | f = BytesIO() |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 123 | p = Pickler(f, self._protocol) |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 124 | p.dump(value) |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 125 | self.dict[key.encode(self.keyencoding)] = f.getvalue() |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 126 | |
| 127 | def __delitem__(self, key): |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 128 | del self.dict[key.encode(self.keyencoding)] |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 129 | try: |
| 130 | del self.cache[key] |
| 131 | except KeyError: |
| 132 | pass |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 133 | |
Andrew Svetlov | ef08fb1 | 2012-10-06 13:52:19 +0300 | [diff] [blame] | 134 | def __enter__(self): |
| 135 | return self |
| 136 | |
| 137 | def __exit__(self, type, value, traceback): |
| 138 | self.close() |
| 139 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 140 | def close(self): |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 141 | if self.dict is None: |
| 142 | return |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 143 | try: |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 144 | self.sync() |
| 145 | try: |
| 146 | self.dict.close() |
| 147 | except AttributeError: |
| 148 | pass |
| 149 | finally: |
| 150 | # Catch errors that may happen when close is called from __del__ |
| 151 | # because CPython is in interpreter shutdown. |
| 152 | try: |
| 153 | self.dict = _ClosedDict() |
| 154 | except: |
| 155 | self.dict = None |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 156 | |
| 157 | def __del__(self): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 158 | if not hasattr(self, 'writeback'): |
| 159 | # __init__ didn't succeed, so don't bother closing |
Andrew Svetlov | ef08fb1 | 2012-10-06 13:52:19 +0300 | [diff] [blame] | 160 | # see http://bugs.python.org/issue1339007 for details |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 161 | return |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 162 | self.close() |
| 163 | |
| 164 | def sync(self): |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 165 | if self.writeback and self.cache: |
| 166 | self.writeback = False |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 167 | for key, entry in self.cache.items(): |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 168 | self[key] = entry |
| 169 | self.writeback = True |
| 170 | self.cache = {} |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 171 | if hasattr(self.dict, 'sync'): |
| 172 | self.dict.sync() |
| 173 | |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 174 | |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 175 | class BsdDbShelf(Shelf): |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 176 | """Shelf implementation using the "BSD" db interface. |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 177 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 178 | This adds methods first(), next(), previous(), last() and |
| 179 | set_location() that have no counterpart in [g]dbm databases. |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 180 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 181 | The actual database must be opened using one of the "bsddb" |
| 182 | modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or |
| 183 | bsddb.rnopen) and passed to the constructor. |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 184 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 185 | See the module's __doc__ string for an overview of the interface. |
| 186 | """ |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 187 | |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 188 | def __init__(self, dict, protocol=None, writeback=False, |
| 189 | keyencoding="utf-8"): |
| 190 | Shelf.__init__(self, dict, protocol, writeback, keyencoding) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 191 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 192 | def set_location(self, key): |
| 193 | (key, value) = self.dict.set_location(key) |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 194 | f = BytesIO(value) |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 195 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 196 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 197 | def next(self): |
Georg Brandl | a18af4e | 2007-04-21 15:47:16 +0000 | [diff] [blame] | 198 | (key, value) = next(self.dict) |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 199 | f = BytesIO(value) |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 200 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 201 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 202 | def previous(self): |
| 203 | (key, value) = self.dict.previous() |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 204 | f = BytesIO(value) |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 205 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 206 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 207 | def first(self): |
| 208 | (key, value) = self.dict.first() |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 209 | f = BytesIO(value) |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 210 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 211 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 212 | def last(self): |
| 213 | (key, value) = self.dict.last() |
Brett Cannon | d24fffe | 2007-07-26 03:07:02 +0000 | [diff] [blame] | 214 | f = BytesIO(value) |
Martin v. Löwis | 79c3208 | 2007-08-11 06:57:14 +0000 | [diff] [blame] | 215 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 216 | |
| 217 | |
| 218 | class DbfilenameShelf(Shelf): |
Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 219 | """Shelf implementation using the "dbm" generic dbm interface. |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 220 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 221 | This is initialized with the filename for the dbm database. |
| 222 | See the module's __doc__ string for an overview of the interface. |
| 223 | """ |
| 224 | |
Raymond Hettinger | 1bc82f8 | 2004-12-05 03:58:17 +0000 | [diff] [blame] | 225 | def __init__(self, filename, flag='c', protocol=None, writeback=False): |
Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 226 | import dbm |
| 227 | Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback) |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 228 | |
| 229 | |
Raymond Hettinger | 1bc82f8 | 2004-12-05 03:58:17 +0000 | [diff] [blame] | 230 | def open(filename, flag='c', protocol=None, writeback=False): |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 231 | """Open a persistent dictionary for reading and writing. |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 232 | |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 233 | The filename parameter is the base filename for the underlying |
| 234 | database. As a side-effect, an extension may be added to the |
| 235 | filename and more than one file may be created. The optional flag |
| 236 | parameter has the same interpretation as the flag parameter of |
Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 237 | dbm.open(). The optional protocol parameter specifies the |
Martin v. Löwis | 153c9e4 | 2003-04-19 20:59:03 +0000 | [diff] [blame] | 238 | version of the pickle protocol (0, 1, or 2). |
| 239 | |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 240 | See the module's __doc__ string for an overview of the interface. |
| 241 | """ |
| 242 | |
Raymond Hettinger | 1bc82f8 | 2004-12-05 03:58:17 +0000 | [diff] [blame] | 243 | return DbfilenameShelf(filename, flag, protocol, writeback) |