aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/utils.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2007-11-24 18:15:49 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2007-11-24 18:15:49 +0000
commitea8030bcd70b57dbb7b34247c70670b2c249b85a (patch)
tree57a8ff8ac15aaa00fc7e57e2a6ec83187224cb25 /lib/bb/utils.py
parent6ab4071912b1e6e93147d4ba538f6780986e0683 (diff)
downloadbitbake-ea8030bcd70b57dbb7b34247c70670b2c249b85a.tar.gz
Add bb.utils.lockfile() and bb.utils.unlockfile() from Poky. Use these functions in the fetcher code
Diffstat (limited to 'lib/bb/utils.py')
-rw-r--r--lib/bb/utils.py37
1 files changed, 36 insertions, 1 deletions
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index c2884f263..c27dafd61 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -22,7 +22,7 @@ BitBake Utility Functions
digits = "0123456789"
ascii_letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
-import re
+import re, fcntl, os
def explode_version(s):
r = []
@@ -202,3 +202,38 @@ def Enum(*names):
constants = tuple(constants)
EnumType = EnumClass()
return EnumType
+
+def lockfile(name):
+ """
+ Use the file fn as a lock file, return when the lock has been aquired.
+ Returns a variable to pass to unlockfile().
+ """
+ while True:
+ # If we leave the lockfiles lying around there is no problem
+ # but we should clean up after ourselves. This gives potential
+ # for races though. To work around this, when we aquire the lock
+ # we check the file we locked was still the lock file on disk.
+ # by comparing inode numbers. If they don't match or the lockfile
+ # no longer exists, we start again.
+
+ # This implementation is unfair since the last person to request the
+ # lock is the most likely to win it.
+
+ lf = open(name, "a+")
+ fcntl.flock(lf.fileno(), fcntl.LOCK_EX)
+ statinfo = os.fstat(lf.fileno())
+ if os.path.exists(lf.name):
+ statinfo2 = os.stat(lf.name)
+ if statinfo.st_ino == statinfo2.st_ino:
+ return lf
+ # File no longer exists or changed, retry
+ lf.close
+
+def unlockfile(lf):
+ """
+ Unlock a file locked using lockfile()
+ """
+ os.unlink(lf.name)
+ fcntl.flock(lf.fileno(), fcntl.LOCK_UN)
+ lf.close
+