Mercurial > templog
view web/atomicfile.py @ 267:08c3cf3d0ded
fix wrong date format. how'd that slip in.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 11 Aug 2015 22:19:29 +0800 |
parents | 6dd157a12035 |
children | 87c20b8c5472 |
line wrap: on
line source
import os import time import fcntl import sys class AtomicFile(object): DELAY = 0.5 def __init__(self, name): self.name = name def write(self, data, timeout = 5): try: end = time.time() + timeout with open(self.name, "r+") as f: while timeout == 0 or time.time() < end: try: fcntl.lockf(f, fcntl.LOCK_EX | fcntl.LOCK_NB) except IOError: time.sleep(DELAY) continue os.ftruncate(f.fileno(), 0) f.write(data) return True except IOError, e: print>>sys.stderr, e return False def read(self, timeout = 5): try: end = time.time() + timeout with open(self.name, "r") as f: while timeout == 0 or time.time() < end: try: fcntl.lockf(f, fcntl.LOCK_SH | fcntl.LOCK_NB) except IOError: time.sleep(DELAY) continue return f.read() except IOError, e: print>>sys.stderr, e return None