apenwarr-redo/redo/helpers.py

37 lines
877 B
Python
Raw Permalink Normal View History

"""Some helper functions that don't fit anywhere else."""
import os, errno, fcntl
class ImmediateReturn(Exception):
def __init__(self, rv):
Exception.__init__(self, "immediate return with exit code %d" % rv)
self.rv = rv
def unlink(f):
"""Delete a file at path 'f' if it currently exists.
Unlike os.unlink(), does not throw an exception if the file didn't already
exist.
"""
try:
os.unlink(f)
2019-10-27 14:19:50 +01:00
except OSError as e:
if e.errno == errno.ENOENT:
pass # it doesn't exist, that's what you asked for
def close_on_exec(fd, yes):
fl = fcntl.fcntl(fd, fcntl.F_GETFD)
fl &= ~fcntl.FD_CLOEXEC
if yes:
fl |= fcntl.FD_CLOEXEC
fcntl.fcntl(fd, fcntl.F_SETFD, fl)
def fd_exists(fd):
try:
fcntl.fcntl(fd, fcntl.F_GETFD)
except IOError:
return False
return True