1995-08-10 16:29:28 -03:00
|
|
|
"""A dumb and slow but simple dbm clone.
|
|
|
|
|
|
|
|
For database spam, spam.dir contains the index (a text file),
|
|
|
|
spam.bak *may* contain a backup of the index (also a text file),
|
|
|
|
while spam.dat contains the data (a binary file).
|
|
|
|
|
|
|
|
XXX TO DO:
|
|
|
|
|
|
|
|
- seems to contain a bug when updating...
|
|
|
|
|
|
|
|
- reclaim free space (currently, space once occupied by deleted or expanded
|
|
|
|
items is never reused)
|
|
|
|
|
|
|
|
- support concurrent access (currently, if two processes take turns making
|
|
|
|
updates, they can mess up the index)
|
|
|
|
|
|
|
|
- support efficient access to large databases (currently, the whole index
|
|
|
|
is read when the database is opened, and some updates rewrite the whole index)
|
|
|
|
|
|
|
|
- support opening for read-only (flag = 'm')
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2001-07-19 07:06:39 -03:00
|
|
|
import os as _os
|
1995-08-10 16:29:28 -03:00
|
|
|
import __builtin__
|
|
|
|
|
|
|
|
_open = __builtin__.open
|
|
|
|
|
|
|
|
_BLOCKSIZE = 512
|
|
|
|
|
2001-01-14 19:36:06 -04:00
|
|
|
error = IOError # For anydbm
|
1996-05-28 19:58:40 -03:00
|
|
|
|
1995-08-10 16:29:28 -03:00
|
|
|
class _Database:
|
|
|
|
|
2001-12-07 17:54:46 -04:00
|
|
|
def __init__(self, file, mode):
|
|
|
|
self._mode = mode
|
2001-10-24 17:42:55 -03:00
|
|
|
self._dirfile = file + _os.extsep + 'dir'
|
|
|
|
self._datfile = file + _os.extsep + 'dat'
|
|
|
|
self._bakfile = file + _os.extsep + 'bak'
|
2001-01-14 19:36:06 -04:00
|
|
|
# Mod by Jack: create data file if needed
|
|
|
|
try:
|
|
|
|
f = _open(self._datfile, 'r')
|
|
|
|
except IOError:
|
2001-12-07 17:54:46 -04:00
|
|
|
f = _open(self._datfile, 'w', self._mode)
|
2001-01-14 19:36:06 -04:00
|
|
|
f.close()
|
|
|
|
self._update()
|
|
|
|
|
|
|
|
def _update(self):
|
|
|
|
self._index = {}
|
|
|
|
try:
|
|
|
|
f = _open(self._dirfile)
|
|
|
|
except IOError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
while 1:
|
|
|
|
line = f.readline().rstrip()
|
|
|
|
if not line: break
|
|
|
|
key, (pos, siz) = eval(line)
|
|
|
|
self._index[key] = (pos, siz)
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def _commit(self):
|
|
|
|
try: _os.unlink(self._bakfile)
|
|
|
|
except _os.error: pass
|
|
|
|
try: _os.rename(self._dirfile, self._bakfile)
|
|
|
|
except _os.error: pass
|
2001-12-07 17:54:46 -04:00
|
|
|
f = _open(self._dirfile, 'w', self._mode)
|
2001-01-14 19:36:06 -04:00
|
|
|
for key, (pos, siz) in self._index.items():
|
|
|
|
f.write("%s, (%s, %s)\n" % (`key`, `pos`, `siz`))
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
pos, siz = self._index[key] # may raise KeyError
|
|
|
|
f = _open(self._datfile, 'rb')
|
|
|
|
f.seek(pos)
|
|
|
|
dat = f.read(siz)
|
|
|
|
f.close()
|
|
|
|
return dat
|
|
|
|
|
|
|
|
def _addval(self, val):
|
|
|
|
f = _open(self._datfile, 'rb+')
|
|
|
|
f.seek(0, 2)
|
|
|
|
pos = int(f.tell())
|
1995-08-10 16:29:28 -03:00
|
|
|
## Does not work under MW compiler
|
2001-01-14 19:36:06 -04:00
|
|
|
## pos = ((pos + _BLOCKSIZE - 1) / _BLOCKSIZE) * _BLOCKSIZE
|
|
|
|
## f.seek(pos)
|
2001-09-04 16:14:14 -03:00
|
|
|
npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
|
2001-01-14 19:36:06 -04:00
|
|
|
f.write('\0'*(npos-pos))
|
|
|
|
pos = npos
|
|
|
|
|
|
|
|
f.write(val)
|
|
|
|
f.close()
|
|
|
|
return (pos, len(val))
|
|
|
|
|
|
|
|
def _setval(self, pos, val):
|
|
|
|
f = _open(self._datfile, 'rb+')
|
|
|
|
f.seek(pos)
|
|
|
|
f.write(val)
|
|
|
|
f.close()
|
|
|
|
return (pos, len(val))
|
|
|
|
|
|
|
|
def _addkey(self, key, (pos, siz)):
|
|
|
|
self._index[key] = (pos, siz)
|
2001-12-07 17:54:46 -04:00
|
|
|
f = _open(self._dirfile, 'a', self._mode)
|
2001-01-14 19:36:06 -04:00
|
|
|
f.write("%s, (%s, %s)\n" % (`key`, `pos`, `siz`))
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def __setitem__(self, key, val):
|
|
|
|
if not type(key) == type('') == type(val):
|
|
|
|
raise TypeError, "keys and values must be strings"
|
|
|
|
if not self._index.has_key(key):
|
|
|
|
(pos, siz) = self._addval(val)
|
|
|
|
self._addkey(key, (pos, siz))
|
|
|
|
else:
|
|
|
|
pos, siz = self._index[key]
|
|
|
|
oldblocks = (siz + _BLOCKSIZE - 1) / _BLOCKSIZE
|
|
|
|
newblocks = (len(val) + _BLOCKSIZE - 1) / _BLOCKSIZE
|
|
|
|
if newblocks <= oldblocks:
|
|
|
|
pos, siz = self._setval(pos, val)
|
|
|
|
self._index[key] = pos, siz
|
|
|
|
else:
|
|
|
|
pos, siz = self._addval(val)
|
|
|
|
self._index[key] = pos, siz
|
|
|
|
|
|
|
|
def __delitem__(self, key):
|
|
|
|
del self._index[key]
|
|
|
|
self._commit()
|
|
|
|
|
|
|
|
def keys(self):
|
|
|
|
return self._index.keys()
|
|
|
|
|
|
|
|
def has_key(self, key):
|
|
|
|
return self._index.has_key(key)
|
|
|
|
|
2001-05-03 01:55:47 -03:00
|
|
|
def __contains__(self, key):
|
|
|
|
return self._index.has_key(key)
|
|
|
|
|
|
|
|
def iterkeys(self):
|
|
|
|
return self._index.iterkeys()
|
|
|
|
__iter__ = iterkeys
|
|
|
|
|
2001-01-14 19:36:06 -04:00
|
|
|
def __len__(self):
|
|
|
|
return len(self._index)
|
|
|
|
|
|
|
|
def close(self):
|
2001-12-21 01:13:37 -04:00
|
|
|
self._commit()
|
2001-01-14 19:36:06 -04:00
|
|
|
self._index = None
|
|
|
|
self._datfile = self._dirfile = self._bakfile = None
|
1995-08-10 16:29:28 -03:00
|
|
|
|
2001-12-21 01:13:37 -04:00
|
|
|
def __del__(self):
|
|
|
|
if self._index is not None:
|
|
|
|
self._commit()
|
|
|
|
|
|
|
|
|
1995-08-10 16:29:28 -03:00
|
|
|
|
2001-12-07 17:54:46 -04:00
|
|
|
def open(file, flag=None, mode=0666):
|
2001-01-14 19:36:06 -04:00
|
|
|
# flag, mode arguments are currently ignored
|
2001-12-07 17:54:46 -04:00
|
|
|
return _Database(file, mode)
|