home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / System / dumbdbm.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2005-11-09  |  5.8 KB  |  197 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """A dumb and slow but simple dbm clone.
  5.  
  6. For database spam, spam.dir contains the index (a text file),
  7. spam.bak *may* contain a backup of the index (also a text file),
  8. while spam.dat contains the data (a binary file).
  9.  
  10. XXX TO DO:
  11.  
  12. - seems to contain a bug when updating...
  13.  
  14. - reclaim free space (currently, space once occupied by deleted or expanded
  15. items is never reused)
  16.  
  17. - support concurrent access (currently, if two processes take turns making
  18. updates, they can mess up the index)
  19.  
  20. - support efficient access to large databases (currently, the whole index
  21. is read when the database is opened, and some updates rewrite the whole index)
  22.  
  23. - support opening for read-only (flag = 'm')
  24.  
  25. """
  26. import os as _os
  27. import __builtin__
  28. import UserDict
  29. _open = __builtin__.open
  30. _BLOCKSIZE = 512
  31. error = IOError
  32.  
  33. class _Database(UserDict.DictMixin):
  34.     _os = _os
  35.     _open = _open
  36.     
  37.     def __init__(self, filebasename, mode):
  38.         self._mode = mode
  39.         self._dirfile = filebasename + _os.extsep + 'dir'
  40.         self._datfile = filebasename + _os.extsep + 'dat'
  41.         self._bakfile = filebasename + _os.extsep + 'bak'
  42.         self._index = None
  43.         
  44.         try:
  45.             f = _open(self._datfile, 'r')
  46.         except IOError:
  47.             f = _open(self._datfile, 'w', self._mode)
  48.  
  49.         f.close()
  50.         self._update()
  51.  
  52.     
  53.     def _update(self):
  54.         self._index = { }
  55.         
  56.         try:
  57.             f = _open(self._dirfile)
  58.         except IOError:
  59.             pass
  60.  
  61.         for line in f:
  62.             (key, pos_and_siz_pair) = eval(line)
  63.             self._index[key] = pos_and_siz_pair
  64.         
  65.         f.close()
  66.  
  67.     
  68.     def _commit(self):
  69.         if self._index is None:
  70.             return None
  71.         
  72.         
  73.         try:
  74.             self._os.unlink(self._bakfile)
  75.         except self._os.error:
  76.             pass
  77.  
  78.         
  79.         try:
  80.             self._os.rename(self._dirfile, self._bakfile)
  81.         except self._os.error:
  82.             pass
  83.  
  84.         f = self._open(self._dirfile, 'w', self._mode)
  85.         for key, pos_and_siz_pair in self._index.iteritems():
  86.             f.write('%r, %r\n' % (key, pos_and_siz_pair))
  87.         
  88.         f.close()
  89.  
  90.     sync = _commit
  91.     
  92.     def __getitem__(self, key):
  93.         (pos, siz) = self._index[key]
  94.         f = _open(self._datfile, 'rb')
  95.         f.seek(pos)
  96.         dat = f.read(siz)
  97.         f.close()
  98.         return dat
  99.  
  100.     
  101.     def _addval(self, val):
  102.         f = _open(self._datfile, 'rb+')
  103.         f.seek(0, 2)
  104.         pos = int(f.tell())
  105.         npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
  106.         f.write('\x00' * (npos - pos))
  107.         pos = npos
  108.         f.write(val)
  109.         f.close()
  110.         return (pos, len(val))
  111.  
  112.     
  113.     def _setval(self, pos, val):
  114.         f = _open(self._datfile, 'rb+')
  115.         f.seek(pos)
  116.         f.write(val)
  117.         f.close()
  118.         return (pos, len(val))
  119.  
  120.     
  121.     def _addkey(self, key, pos_and_siz_pair):
  122.         self._index[key] = pos_and_siz_pair
  123.         f = _open(self._dirfile, 'a', self._mode)
  124.         f.write('%r, %r\n' % (key, pos_and_siz_pair))
  125.         f.close()
  126.  
  127.     
  128.     def __setitem__(self, key, val):
  129.         if type('') == type(''):
  130.             pass
  131.         elif not type('') == type(val):
  132.             raise TypeError, 'keys and values must be strings'
  133.         
  134.         if key not in self._index:
  135.             self._addkey(key, self._addval(val))
  136.         else:
  137.             (pos, siz) = self._index[key]
  138.             oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
  139.             newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
  140.             if newblocks <= oldblocks:
  141.                 self._index[key] = self._setval(pos, val)
  142.             else:
  143.                 self._index[key] = self._addval(val)
  144.  
  145.     
  146.     def __delitem__(self, key):
  147.         del self._index[key]
  148.         self._commit()
  149.  
  150.     
  151.     def keys(self):
  152.         return self._index.keys()
  153.  
  154.     
  155.     def has_key(self, key):
  156.         return key in self._index
  157.  
  158.     
  159.     def __contains__(self, key):
  160.         return key in self._index
  161.  
  162.     
  163.     def iterkeys(self):
  164.         return self._index.iterkeys()
  165.  
  166.     __iter__ = iterkeys
  167.     
  168.     def __len__(self):
  169.         return len(self._index)
  170.  
  171.     
  172.     def close(self):
  173.         self._commit()
  174.         self._index = None
  175.         self._datfile = None
  176.         self._dirfile = None
  177.         self._bakfile = None
  178.  
  179.     __del__ = close
  180.  
  181.  
  182. def open(file, flag = None, mode = 438):
  183.     '''Open the database file, filename, and return corresponding object.
  184.  
  185.     The flag argument, used to control how the database is opened in the
  186.     other DBM implementations, is ignored in the dumbdbm module; the
  187.     database is always opened for update, and will be created if it does
  188.     not exist.
  189.  
  190.     The optional mode argument is the UNIX mode of the file, used only when
  191.     the database has to be created.  It defaults to octal code 0666 (and
  192.     will be modified by the prevailing umask).
  193.  
  194.     '''
  195.     return _Database(file, mode)
  196.  
  197.