X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=roundup%2Fbackends%2Fback_bsddb.py;h=6e14a6e5ee24882b50ddcc7effee56f6e0354ad9;hb=f63b5d2c48743164c014f4f12259aa57e95d9058;hp=530a691a80a6d135933c3c4bca0f276d97ebbe2f;hpb=15a5ffa06710ead2fbf5136caf16545961899b70;p=roundup.git diff --git a/roundup/backends/back_bsddb.py b/roundup/backends/back_bsddb.py index 530a691..6e14a6e 100644 --- a/roundup/backends/back_bsddb.py +++ b/roundup/backends/back_bsddb.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -#$Id: back_bsddb.py,v 1.19 2002-07-14 02:05:53 richard Exp $ +#$Id: back_bsddb.py,v 1.20 2002-07-19 03:36:34 richard Exp $ ''' This module defines a backend that saves the hyperdatabase in BSDDB. ''' @@ -51,22 +51,22 @@ class Database(Database): else: return bsddb.btopen(path, 'n') - def _opendb(self, name, mode): + def opendb(self, name, mode): '''Low-level database opener that gets around anydbm/dbm eccentricities. ''' if __debug__: - print >>hyperdb.DEBUG, self, '_opendb', (self, name, mode) + print >>hyperdb.DEBUG, self, 'opendb', (self, name, mode) # determine which DB wrote the class file path = os.path.join(os.getcwd(), self.dir, name) if not os.path.exists(path): if __debug__: - print >>hyperdb.DEBUG, "_opendb bsddb.open(%r, 'n')"%path + print >>hyperdb.DEBUG, "opendb bsddb.open(%r, 'n')"%path return bsddb.btopen(path, 'n') # open the database with the correct module if __debug__: - print >>hyperdb.DEBUG, "_opendb bsddb.open(%r, %r)"%(path, mode) + print >>hyperdb.DEBUG, "opendb bsddb.open(%r, %r)"%(path, mode) return bsddb.btopen(path, mode) # @@ -82,9 +82,10 @@ class Database(Database): 'r') except bsddb.error, error: if error.args[0] != 2: raise - return [] - # mor handling of bad journals - if not db.has_key(nodeid): return [] + raise IndexError, 'no such %s %s'%(classname, nodeid) + # more handling of bad journals + if not db.has_key(nodeid): + raise IndexError, 'no such %s %s'%(classname, nodeid) journal = marshal.loads(db[nodeid]) res = [] for entry in journal: @@ -94,7 +95,19 @@ class Database(Database): db.close() return res - def _doSaveJournal(self, classname, nodeid, action, params): + def getCachedJournalDB(self, classname): + ''' get the journal db, looking in our cache of databases for commit + ''' + # get the database handle + db_name = 'journals.%s'%classname + if self.databases.has_key(db_name): + return self.databases[db_name] + else: + db = bsddb.btopen(os.path.join(self.dir, db_name), 'c') + self.databases[db_name] = db + return db + + def doSaveJournal(self, classname, nodeid, action, params): # serialise first if action in ('set', 'create'): params = self.serialise(classname, params) @@ -103,9 +116,9 @@ class Database(Database): params) if __debug__: - print >>hyperdb.DEBUG, '_doSaveJournal', entry + print >>hyperdb.DEBUG, 'doSaveJournal', entry - db = bsddb.btopen(os.path.join(self.dir, 'journals.%s'%classname), 'c') + db = self.getCachedJournalDB(classname) if db.has_key(nodeid): s = db[nodeid] @@ -115,10 +128,12 @@ class Database(Database): l = [entry] db[nodeid] = marshal.dumps(l) - db.close() # #$Log: not supported by cvs2svn $ +#Revision 1.19 2002/07/14 02:05:53 richard +#. all storage-specific code (ie. backend) is now implemented by the backends +# #Revision 1.18 2002/05/15 06:21:21 richard # . node caching now works, and gives a small boost in performance #