mirror of https://github.com/bmaltais/kohya_ss
52 lines
1.8 KiB
Python
52 lines
1.8 KiB
Python
import subprocess
|
|
import psutil
|
|
from .custom_logging import setup_logging
|
|
|
|
# Set up logging
|
|
log = setup_logging()
|
|
|
|
class CommandExecutor:
|
|
"""
|
|
A class to execute and manage commands.
|
|
"""
|
|
|
|
def __init__(self):
|
|
"""
|
|
Initialize the CommandExecutor.
|
|
"""
|
|
self.process = None
|
|
|
|
def execute_command(self, run_cmd: str, **kwargs):
|
|
"""
|
|
Execute a command if no other command is currently running.
|
|
|
|
Parameters:
|
|
- run_cmd (str): The command to execute.
|
|
- **kwargs: Additional keyword arguments to pass to subprocess.Popen.
|
|
"""
|
|
if self.process and self.process.poll() is None:
|
|
log.info("The command is already running. Please wait for it to finish.")
|
|
else:
|
|
self.process = subprocess.Popen(run_cmd, shell=True, **kwargs)
|
|
|
|
def kill_command(self):
|
|
"""
|
|
Kill the currently running command and its child processes.
|
|
"""
|
|
if self.process and self.process.poll() is None:
|
|
try:
|
|
# Get the parent process and kill all its children
|
|
parent = psutil.Process(self.process.pid)
|
|
for child in parent.children(recursive=True):
|
|
child.kill()
|
|
parent.kill()
|
|
log.info("The running process has been terminated.")
|
|
except psutil.NoSuchProcess:
|
|
# Explicitly handle the case where the process does not exist
|
|
log.info("The process does not exist. It might have terminated before the kill command was issued.")
|
|
except Exception as e:
|
|
# General exception handling for any other errors
|
|
log.info(f"Error when terminating process: {e}")
|
|
else:
|
|
log.info("There is no running process to kill.")
|