kiwi-scp/src/kiwi/subcommands/utils/executable.py

62 lines
1.7 KiB
Python
Raw Normal View History

2020-08-12 15:46:50 +00:00
# system
import logging
2020-08-12 15:46:50 +00:00
import os
import subprocess
2020-08-12 14:43:13 +00:00
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:
2020-08-12 15:39:55 +00:00
__exe_path = None
def __init__(self, exe_name, requires_root=False):
2020-08-12 15:39:55 +00:00
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:
2020-08-12 15:39:55 +00:00
self.__exe_path = [find_exe_file("sudo"), self.__exe_path]
logging.debug(f"Executable cmd{cmd}, kwargs{kwargs}")
return cmd
2020-08-12 15:39:55 +00:00
def run(self, args, requires_root=False, **kwargs):
return subprocess.run(
2020-08-12 15:39:55 +00:00
self.__build_cmd(args, requires_root, **kwargs),
**kwargs
)
2020-08-12 15:39:55 +00:00
def Popen(self, args, requires_root=False, **kwargs):
return subprocess.Popen(
2020-08-12 15:39:55 +00:00
self.__build_cmd(args, requires_root, **kwargs),
**kwargs
)
2020-08-12 15:39:55 +00:00
__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)