home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Lib / anydbm.py < prev    next >
Text File  |  2000-12-21  |  2KB  |  87 lines

  1. """Generic interface to all dbm clones.
  2.  
  3. Instead of
  4.  
  5.     import dbm
  6.     d = dbm.open(file, 'w', 0666)
  7.  
  8. use
  9.  
  10.     import anydbm
  11.     d = anydbm.open(file, 'w')
  12.  
  13. The returned object is a dbhash, gdbm, dbm or dumbdbm object,
  14. dependent on the type of database being opened (determined by whichdb
  15. module) in the case of an existing dbm. If the dbm does not exist and
  16. the create or new flag ('c' or 'n') was specified, the dbm type will
  17. be determined by the availability of the modules (tested in the above
  18. order).
  19.  
  20. It has the following interface (key and data are strings):
  21.  
  22.     d[key] = data    # store data at key (may override data at
  23.             # existing key)
  24.     data = d[key]    # retrieve data at key (raise KeyError if no
  25.             # such key)
  26.     del d[key]    # delete data stored at key (raises KeyError
  27.             # if no such key)
  28.     flag = d.has_key(key)    # true if the key exists
  29.     list = d.keys()    # return a list of all existing keys (slow!)
  30.  
  31. Future versions may change the order in which implementations are
  32. tested for existence, add interfaces to other dbm-like
  33. implementations.
  34.  
  35. The open function has an optional second argument.  This can be 'r',
  36. for read-only access, 'w', for read-write access of an existing
  37. database, 'c' for read-write access to a new or existing database, and
  38. 'n' for read-write access to a new database.  The default is 'r'.
  39.  
  40. Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
  41. only if it doesn't exist; and 'n' always creates a new database.
  42.  
  43. """
  44.  
  45. try:
  46.     class error(Exception):
  47.         pass
  48. except:
  49.     error = "anydbm.error"
  50.  
  51. _names = ['dbhash', 'gdbm', 'dbm', 'dumbdbm']
  52. _errors = [error]
  53. _defaultmod = None
  54.  
  55. for _name in _names:
  56.     try:
  57.         _mod = __import__(_name)
  58.     except ImportError:
  59.         continue
  60.     if not _defaultmod:
  61.         _defaultmod = _mod
  62.     _errors.append(_mod.error)
  63.  
  64. if not _defaultmod:
  65.     raise ImportError, "no dbm clone found; tried %s" % _names
  66.  
  67. error = tuple(_errors)
  68.  
  69. def open(file, flag = 'r', mode = 0666):
  70.     # guess the type of an existing database
  71.     from whichdb import whichdb
  72.     result=whichdb(file)
  73.     if result is None:
  74.         # db doesn't exist
  75.         if 'c' in flag or 'n' in flag:
  76.             # file doesn't exist and the new
  77.             # flag was used so use default type
  78.             mod = _defaultmod
  79.         else:
  80.             raise error, "need 'c' or 'n' flag to open new db"
  81.     elif result == "":
  82.         # db type cannot be determined
  83.         raise error, "db type could not be determined"
  84.     else:
  85.         mod = __import__(result)
  86.     return mod.open(file, flag, mode)
  87.