X-Git-Url: http://dolda2000.com/gitweb/?p=didex.git;a=blobdiff_plain;f=didex%2Fdb.py;h=33eb0d8c7198b4b0a076a8b920fb58f14e4d523f;hp=75aee02bddf37ca71c7c993a86f491e4957ddb86;hb=d6d41a45b2882bf919cd7702d7590ead03e9d590;hpb=8950191cebfc907b7ec9a643b71d6734d90f4e9b diff --git a/didex/db.py b/didex/db.py index 75aee02..33eb0d8 100644 --- a/didex/db.py +++ b/didex/db.py @@ -2,6 +2,8 @@ import time, threading, struct from . import lib from bsddb3 import db as bd +__all__ = ["environment", "database"] + deadlock = bd.DBLockDeadlockError class environment(lib.closable): @@ -64,10 +66,18 @@ class txn(object): def __init__(self, env, flags=bd.DB_TXN_WRITE_NOSYNC): self.tx = env.txn_begin(None, flags) self.done = False + self.pcommit = set() def commit(self): self.done = True self.tx.commit(0) + def run1(list): + if len(list) > 0: + try: + list[0]() + finally: + run1(list[1:]) + run1(list(self.pcommit)) def abort(self): self.done = True @@ -81,6 +91,18 @@ class txn(object): self.abort() return False + def postcommit(self, fun): + self.pcommit.add(fun) + +def dloopfun(fun): + def wrapper(self, *args, **kwargs): + while True: + try: + return fun(self, *args, **kwargs) + except deadlock: + continue + return wrapper + def txnfun(envfun): def fxf(fun): def wrapper(self, *args, tx=None, **kwargs):