# system import logging import os import subprocess def is_executable(filename): if filename is None: return False return os.path.isfile(filename) and os.access(filename, os.X_OK) def find_exe_file(exe_name): for path in os.environ['PATH'].split(os.pathsep): exe_file = os.path.join(path, exe_name) if is_executable(exe_file): return exe_file raise FileNotFoundError(f"Executable '{exe_name}' not found in $PATH!") class Executable: class __Executable: __exe_path = None def __init__(self, exe_name, requires_root=False): self.__exe_path = find_exe_file(exe_name) def __build_cmd(self, args, requires_root=False, **kwargs): cmd = [self.__exe_path, *args] if requires_root: self.__exe_path = [find_exe_file("sudo"), self.__exe_path] logging.debug(f"Executable cmd{cmd}, kwargs{kwargs}") return cmd def run(self, args, requires_root=False, **kwargs): return subprocess.run( self.__build_cmd(args, requires_root, **kwargs), **kwargs ) def Popen(self, args, requires_root=False, **kwargs): return subprocess.Popen( self.__build_cmd(args, requires_root, **kwargs), **kwargs ) __exe_name = None __instances = {} def __init__(self, exe_name, requires_root=False): self.__exe_name = exe_name if exe_name not in Executable.__instances: Executable.__instances[exe_name] = Executable.__Executable(exe_name, requires_root) def __getattr__(self, item): return getattr(self.__instances[self.__exe_name], item)