2
# Copyright (C) 2006 Robey Pointer <robey@lag.net>
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
from loggerhead import util
26
with_lock = util.with_lock('_tlock', 'LockFile')
28
MAX_STALE_TIME = 5 * 60
31
class LockFile (object):
33
simple lockfile implementation that mimics the API of threading.Lock, so
34
it can be used interchangably. it's actually a reentrant lock, so the
35
lock may be acquired multiple times by the same thread, as long as it's
36
released an equal number of times. unlike threading.Lock, this lock can
37
be used across processes.
39
this uses os.open(O_CREAT|O_EXCL), which apparently works even on windows,
40
but will not work over NFS, if anyone still uses that. so don't put the
41
cache folder on an NFS server...
44
def __init__(self, filename):
45
self._filename = filename
46
# thread lock to maintain internal consistency
47
self._tlock = threading.Lock()
49
if os.path.exists(filename):
50
# remove stale locks left over from a previous run
51
if time.time() - os.stat(filename).st_mtime > MAX_STALE_TIME:
55
def _try_acquire(self):
60
fd = os.open(self._filename, os.O_WRONLY | os.O_CREAT | os.O_EXCL, 0600)
68
# try over and over, sleeping on exponential backoff with an upper limit of about 5 seconds
73
if self._try_acquire():
76
pause = min(pause * 2.0, max_pause)
82
os.remove(self._filename)