##// END OF EJS Templates
fix warnings from pychecker (unused variables and shadowing)
fix warnings from pychecker (unused variables and shadowing)

File last commit:

r1559:59b3639d default
r1749:d457fec7 default
Show More
lock.py
52 lines | 1.2 KiB | text/x-python | PythonLexer
mpm@selenic.com
Simply repository locking...
r161 # lock.py - simple locking scheme for mercurial
#
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
import os, time
mpm@selenic.com
[PATCH] Enables lock work under the other 'OS'...
r422 import util
mpm@selenic.com
Simply repository locking...
r161
class LockHeld(Exception):
pass
Eric Hopper
Convert all classes to new-style classes by deriving them from object.
r1559 class lock(object):
Benoit Boissinot
add a releasefn keyword to lock.lock...
r1530 def __init__(self, file, wait=1, releasefn=None):
mpm@selenic.com
Simply repository locking...
r161 self.f = file
self.held = 0
self.wait = wait
Benoit Boissinot
add a releasefn keyword to lock.lock...
r1530 self.releasefn = releasefn
mpm@selenic.com
Simply repository locking...
r161 self.lock()
def __del__(self):
self.release()
def lock(self):
while 1:
try:
self.trylock()
return 1
except LockHeld, inst:
if self.wait:
time.sleep(1)
continue
raise inst
mpm@selenic.com
Whitespace cleanups...
r515
mpm@selenic.com
Simply repository locking...
r161 def trylock(self):
pid = os.getpid()
try:
mpm@selenic.com
[PATCH] Enables lock work under the other 'OS'...
r422 util.makelock(str(pid), self.f)
mpm@selenic.com
Simply repository locking...
r161 self.held = 1
Thomas Arendsen Hein
Make makelock and readlock work on filesystems without symlink support....
r704 except (OSError, IOError):
mpm@selenic.com
[PATCH] Enables lock work under the other 'OS'...
r422 raise LockHeld(util.readlock(self.f))
mpm@selenic.com
Simply repository locking...
r161
def release(self):
if self.held:
self.held = 0
Benoit Boissinot
add a releasefn keyword to lock.lock...
r1530 if self.releasefn:
self.releasefn()
mpm@selenic.com
Fix troubles with clone and exception handling...
r503 try:
os.unlink(self.f)
except: pass
mpm@selenic.com
Simply repository locking...
r161