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 | |
| 13 | import shelve |
Guido van Rossum | 256cbd7 | 1995-02-16 16:30:50 +0000 | [diff] [blame] | 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 | |
| 16 | d[key] = data # store data at key (overwrites old data if |
| 17 | # using an existing key) |
| 18 | data = d[key] # retrieve data at key (raise KeyError if no |
| 19 | # such key) |
| 20 | del d[key] # delete data stored at key (raises KeyError |
| 21 | # if no such key) |
| 22 | flag = d.has_key(key) # true if the key exists |
| 23 | list = d.keys() # a list of all existing keys (slow!) |
| 24 | |
| 25 | d.close() # close it |
| 26 | |
| 27 | Dependent on the implementation, closing a persistent dictionary may |
| 28 | or may not be necessary to flush changes to disk. |
| 29 | """ |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 30 | |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 31 | # Try using cPickle and cStringIO if available. |
| 32 | |
| 33 | try: |
| 34 | from cPickle import Pickler, Unpickler |
| 35 | except ImportError: |
| 36 | from pickle import Pickler, Unpickler |
| 37 | |
| 38 | try: |
| 39 | from cStringIO import StringIO |
| 40 | except ImportError: |
| 41 | from StringIO import StringIO |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 42 | |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 43 | |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 44 | class Shelf: |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 45 | """Base class for shelf implementations. |
| 46 | |
| 47 | This is initialized with a dictionary-like object. |
| 48 | See the module's __doc__ string for an overview of the interface. |
| 49 | """ |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 50 | |
| 51 | def __init__(self, dict): |
| 52 | self.dict = dict |
| 53 | |
| 54 | def keys(self): |
| 55 | return self.dict.keys() |
| 56 | |
| 57 | def __len__(self): |
Guido van Rossum | 5f8ea10 | 1996-09-10 17:39:56 +0000 | [diff] [blame] | 58 | return len(self.dict) |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 59 | |
| 60 | def has_key(self, key): |
| 61 | return self.dict.has_key(key) |
| 62 | |
| 63 | def __getitem__(self, key): |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 64 | f = StringIO(self.dict[key]) |
| 65 | return Unpickler(f).load() |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 66 | |
| 67 | def __setitem__(self, key, value): |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 68 | f = StringIO() |
| 69 | p = Pickler(f) |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 70 | p.dump(value) |
| 71 | self.dict[key] = f.getvalue() |
| 72 | |
| 73 | def __delitem__(self, key): |
| 74 | del self.dict[key] |
| 75 | |
| 76 | def close(self): |
Guido van Rossum | cebfa70 | 1995-02-27 13:15:29 +0000 | [diff] [blame] | 77 | if hasattr(self.dict, 'close'): |
| 78 | self.dict.close() |
| 79 | self.dict = None |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 80 | |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 81 | def __del__(self): |
| 82 | self.close() |
Guido van Rossum | a48061a | 1995-01-10 00:31:14 +0000 | [diff] [blame] | 83 | |
Roger E. Masse | 4fc7067 | 1997-03-25 16:06:03 +0000 | [diff] [blame] | 84 | def sync(self): |
| 85 | if hasattr(self.dict, 'sync'): |
| 86 | self.dict.sync() |
| 87 | |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 88 | |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 89 | class BsdDbShelf(Shelf): |
| 90 | """Shelf implementation using the "BSD" db interface. |
| 91 | |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 92 | This adds methods first(), next(), previous(), last() and |
| 93 | set_location() that have no counterpart in [g]dbm databases. |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 94 | |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 95 | The actual database must be opened using one of the "bsddb" |
| 96 | modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or |
| 97 | bsddb.rnopen) and passed to the constructor. |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 98 | |
| 99 | See the module's __doc__ string for an overview of the interface. |
| 100 | """ |
| 101 | |
| 102 | def __init__(self, dict): |
| 103 | Shelf.__init__(self, dict) |
| 104 | |
| 105 | def set_location(self, key): |
| 106 | (key, value) = self.dict.set_location(key) |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 107 | f = StringIO(value) |
| 108 | return (key, Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 109 | |
| 110 | def next(self): |
| 111 | (key, value) = self.dict.next() |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 112 | f = StringIO(value) |
| 113 | return (key, Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 114 | |
| 115 | def previous(self): |
| 116 | (key, value) = self.dict.previous() |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 117 | f = StringIO(value) |
| 118 | return (key, Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 119 | |
| 120 | def first(self): |
| 121 | (key, value) = self.dict.first() |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 122 | f = StringIO(value) |
| 123 | return (key, Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 124 | |
| 125 | def last(self): |
| 126 | (key, value) = self.dict.last() |
Guido van Rossum | 914c938 | 1997-06-06 21:12:45 +0000 | [diff] [blame] | 127 | f = StringIO(value) |
| 128 | return (key, Unpickler(f).load()) |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 129 | |
| 130 | |
| 131 | class DbfilenameShelf(Shelf): |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 132 | """Shelf implementation using the "anydbm" generic dbm interface. |
| 133 | |
| 134 | This is initialized with the filename for the dbm database. |
| 135 | See the module's __doc__ string for an overview of the interface. |
| 136 | """ |
| 137 | |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 138 | def __init__(self, filename, flag='c'): |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 139 | import anydbm |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 140 | Shelf.__init__(self, anydbm.open(filename, flag)) |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 141 | |
| 142 | |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 143 | def open(filename, flag='c'): |
Guido van Rossum | cc6764c | 1995-02-09 17:18:10 +0000 | [diff] [blame] | 144 | """Open a persistent dictionary for reading and writing. |
| 145 | |
| 146 | Argument is the filename for the dbm database. |
| 147 | See the module's __doc__ string for an overview of the interface. |
| 148 | """ |
| 149 | |
Guido van Rossum | abad1cc | 1995-08-11 14:19:16 +0000 | [diff] [blame] | 150 | return DbfilenameShelf(filename, flag) |