bored-art-40741
03/23/2016, 10:04 PMwitty-crayon-22786
03/23/2016, 10:04 PMbored-art-40741
03/23/2016, 10:04 PMbored-art-40741
03/23/2016, 10:10 PMbored-art-40741
03/23/2016, 10:10 PM@contextmanager
def owner_printing_file_lock(path, blocking=True, timeout=None):
lock = InterProcessLock(path)
@contextmanager
def pid_message():
with open(lock.path, 'wb') as f:
current_process = psutil.Process()
message = '{} ({})'.format(current_process.pid, ' '.join(current_process.cmdline()))
f.write(message.encode('utf-8'))
yield
with open(lock.path, 'w'): pass
if not lock.acquire(blocking=False):
with open(lock.path, 'rb') as f:
lockfile_contents = f.read().decode('utf-8', 'replace')
print('Waiting on pants process to complete: {}'.format(lockfile_contents), file=sys.stderr)
with lock.acquire(blocking=blocking, timeout=timeout):
with pid_message():
yield lock
else:
with pid_message():
yield lock
bored-art-40741
03/23/2016, 10:10 PMbored-art-40741
03/23/2016, 10:11 PMwitty-crayon-22786
03/23/2016, 10:11 PMwitty-crayon-22786
03/23/2016, 10:12 PMbored-art-40741
03/23/2016, 10:12 PMbored-art-40741
03/23/2016, 10:12 PMbored-art-40741
03/23/2016, 10:12 PMwitty-crayon-22786
03/23/2016, 10:12 PMbored-art-40741
03/23/2016, 10:13 PMbored-art-40741
03/23/2016, 10:17 PMbored-art-40741
03/23/2016, 10:17 PMwitty-crayon-22786
03/23/2016, 10:17 PM@contextmanager
def owner_printing_file_lock(path, blocking=True, timeout=None):
lock = InterProcessLock(path)
deadline = time.time() + (timeout or 0)
@contextmanager
def attempt(attempt_blocking):
with lock.acquire(blocking=attempt_blocking, timeout=(deadline - time.time())) as lock:
if lock:
yield lock
else:
... print a message then retry ...
yield attempt(blocking=blocking)
yield attempt(attempt_blocking=False)
bored-art-40741
03/23/2016, 10:18 PMbored-art-40741
03/23/2016, 10:18 PMbored-art-40741
03/23/2016, 10:18 PMwitty-crayon-22786
03/23/2016, 10:19 PMbored-art-40741
03/23/2016, 10:19 PMwitty-crayon-22786
03/23/2016, 10:19 PMwitty-crayon-22786
03/23/2016, 10:19 PMbored-art-40741
03/23/2016, 10:19 PMbored-art-40741
03/23/2016, 10:20 PMbored-art-40741
03/23/2016, 10:20 PMwitty-crayon-22786
03/23/2016, 10:21 PMbored-art-40741
03/23/2016, 10:21 PMbored-art-40741
03/23/2016, 10:21 PM