mirror of
https://github.com/LorenEteval/Furious.git
synced 2026-09-25 08:18:07 +03:00
289 lines
8.2 KiB
Python
289 lines
8.2 KiB
Python
# Copyright (C) 2024 Loren Eteval <loren.eteval@proton.me>
|
|
#
|
|
# This file is part of Furious.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
from __future__ import annotations
|
|
|
|
from Furious.Interface import *
|
|
from Furious.Utility import *
|
|
|
|
from PySide6 import QtCore
|
|
|
|
from abc import ABC
|
|
from typing import Callable, Union
|
|
|
|
import os
|
|
import sys
|
|
import time
|
|
import uuid
|
|
import logging
|
|
import threading
|
|
import multiprocessing
|
|
import multiprocessing.queues
|
|
|
|
__all__ = ['CoreProcess', 'MsgQueue', 'StdoutRedirectHelper']
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class CoreProcessDaemon(CoreFactory, ABC):
|
|
def __init__(self, **kwargs):
|
|
exitCallback = kwargs.pop('exitCallback', None)
|
|
|
|
super().__init__(exitCallback)
|
|
|
|
self._process = None
|
|
|
|
self._daemon = QtCore.QTimer()
|
|
self._daemon.timeout.connect(self.queryIsAlive)
|
|
|
|
@property
|
|
def process(self) -> Union[multiprocessing.Process, None]:
|
|
return self._process
|
|
|
|
@process.setter
|
|
def process(self, process: Union[multiprocessing.Process, None]):
|
|
self._process = process
|
|
|
|
@property
|
|
def daemon(self) -> QtCore.QTimer:
|
|
return self._daemon
|
|
|
|
def isAlive(self) -> bool:
|
|
if isinstance(self.process, multiprocessing.Process):
|
|
return self.process.is_alive()
|
|
else:
|
|
return False
|
|
|
|
def queryIsAlive(self):
|
|
if isinstance(self.process, multiprocessing.Process):
|
|
if self.process.is_alive():
|
|
return True
|
|
else:
|
|
self.handleInteralProcessStopped()
|
|
|
|
return False
|
|
else:
|
|
return False
|
|
|
|
def handleInteralProcessStopped(self, *args, **kwargs):
|
|
raise NotImplementedError
|
|
|
|
|
|
class MsgQueue(multiprocessing.queues.Queue):
|
|
MSG_PRODUCE_THRESHOLD = 1024
|
|
OPTIMIZER_MIN_FREQ = 2
|
|
OPTIMIZER_MAX_FREQ = 256
|
|
|
|
def __init__(self, **kwargs):
|
|
msgCallback = kwargs.pop('msgCallback', None)
|
|
backgroundOptimizer = kwargs.pop('backgroundOptimizer', None)
|
|
|
|
super().__init__(**kwargs, ctx=multiprocessing.get_context())
|
|
|
|
self.timer = QtCore.QTimer()
|
|
self.timer.timeout.connect(self.processMsg)
|
|
self.timeout = MsgQueue.MSG_PRODUCE_THRESHOLD
|
|
self.callback = msgCallback
|
|
self.backgroundOptimizer = backgroundOptimizer
|
|
|
|
def getNoWait(self) -> str:
|
|
try:
|
|
return self.get_nowait()
|
|
except Exception:
|
|
# Any non-exit exceptions
|
|
|
|
return ''
|
|
|
|
def getTimeout(self) -> int:
|
|
return self.timeout
|
|
|
|
def setTimeout(self, timeout: int):
|
|
self.timeout = timeout
|
|
|
|
def startTimer(self):
|
|
self.timer.start(self.getTimeout())
|
|
|
|
def stopTimer(self):
|
|
self.timer.stop()
|
|
|
|
@property
|
|
def optimizer(self):
|
|
try:
|
|
return self.backgroundOptimizer()
|
|
except Exception:
|
|
# Any non-exit exceptions
|
|
|
|
return None
|
|
|
|
def processMsg(self):
|
|
msg = self.getNoWait()
|
|
|
|
if not callable(self.callback):
|
|
# Nothing to do
|
|
return
|
|
|
|
if msg and not msg.isspace():
|
|
# Call message callback
|
|
self.callback(msg)
|
|
|
|
if self.optimizer is not None and self.optimizer.isVisible():
|
|
# Logger window is visible: maximum loading speed for user
|
|
|
|
# 1024, 512, 256, 128, 64, 32, 16, 8, 4, 2, 2, 2, ...
|
|
# For timeout value 2 Furious can handle at about 500 messages per second
|
|
self.setTimeout(
|
|
max(MsgQueue.OPTIMIZER_MIN_FREQ, self.getTimeout() // 2)
|
|
)
|
|
self.startTimer()
|
|
else:
|
|
# Logger window does not exist or is not visible: low speed in background
|
|
# to avoid consuming too much CPU resources
|
|
|
|
# 1024, 512, 256, 256, 256, ...
|
|
# For timeout value 256 Furious can handle at about 4 messages per second
|
|
self.setTimeout(
|
|
max(MsgQueue.OPTIMIZER_MAX_FREQ, self.getTimeout() // 2)
|
|
)
|
|
self.startTimer()
|
|
else:
|
|
# Reset timeout value
|
|
self.setTimeout(MsgQueue.MSG_PRODUCE_THRESHOLD)
|
|
self.startTimer()
|
|
|
|
|
|
class CoreProcess(CoreProcessDaemon):
|
|
def __init__(self, **kwargs):
|
|
msgCallback = kwargs.pop('msgCallback', None)
|
|
# Optimizer is loggerCore window
|
|
backgroundOptimizer = kwargs.pop('backgroundOptimizer', loggerCore)
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
self.msgQueue = MsgQueue(
|
|
msgCallback=msgCallback, backgroundOptimizer=backgroundOptimizer
|
|
)
|
|
|
|
def handleInteralProcessStopped(self):
|
|
logger.error(
|
|
f'{self.name()} stopped unexpectedly with exitcode {self.process.exitcode}'
|
|
)
|
|
|
|
self.msgQueue.stopTimer()
|
|
self.daemon.stop()
|
|
|
|
self.callExitCallback(self.process.exitcode)
|
|
|
|
# Reset internal process
|
|
self.process = None
|
|
|
|
def start(self, **kwargs) -> bool:
|
|
daemon = kwargs.pop('daemon', True)
|
|
waitCore = kwargs.pop('waitCore', True)
|
|
waitTime = kwargs.pop('waitTime', 2500)
|
|
|
|
self.process = multiprocessing.Process(**kwargs, daemon=daemon)
|
|
self.process.start()
|
|
|
|
logger.info(f'{self.name()} {self.version()} started')
|
|
|
|
self.msgQueue.setTimeout(MsgQueue.MSG_PRODUCE_THRESHOLD)
|
|
self.msgQueue.startTimer()
|
|
|
|
if waitCore:
|
|
# Wait for the core to start up completely
|
|
PySide6LegacyEventLoopWait(waitTime)
|
|
|
|
if self.queryIsAlive():
|
|
# Start core daemon
|
|
self.daemon.start(CORE_CHECK_ALIVE_INTERVAL)
|
|
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
def stop(self):
|
|
if self.isAlive():
|
|
self.msgQueue.stopTimer()
|
|
self.daemon.stop()
|
|
|
|
self.process.terminate()
|
|
self.process.join()
|
|
|
|
logger.info(
|
|
f'{self.name()} terminated with exitcode {self.process.exitcode}'
|
|
)
|
|
else:
|
|
# Do nothing
|
|
pass
|
|
|
|
|
|
class StdoutRedirectHelper:
|
|
TemporaryDir = QtCore.QTemporaryDir()
|
|
|
|
@staticmethod
|
|
def launch(
|
|
msgQueue: multiprocessing.Queue, entrypoint: Callable[[], None], redirect: bool
|
|
):
|
|
if not callable(entrypoint):
|
|
return
|
|
|
|
if (
|
|
not StdoutRedirectHelper.TemporaryDir.isValid()
|
|
or not redirect
|
|
# pythonw.exe
|
|
or isPythonw()
|
|
):
|
|
# Call entrypoint directly
|
|
entrypoint()
|
|
|
|
return
|
|
|
|
temporaryFile = StdoutRedirectHelper.TemporaryDir.filePath(str(uuid.uuid4()))
|
|
tmpFileStream = open(temporaryFile, 'w+b')
|
|
stdoutFileno_ = sys.stdout.fileno()
|
|
stderrFileno_ = sys.stderr.fileno()
|
|
|
|
sys.stdout.close()
|
|
sys.stderr.close()
|
|
|
|
# Redirect
|
|
os.dup2(tmpFileStream.fileno(), stdoutFileno_)
|
|
os.dup2(tmpFileStream.fileno(), stderrFileno_)
|
|
|
|
sys.stdout = tmpFileStream
|
|
sys.stderr = tmpFileStream
|
|
|
|
def produceMsg():
|
|
with open(temporaryFile, 'rb') as file:
|
|
while True:
|
|
for line in iter(file.readline, b''):
|
|
if line and not line.isspace():
|
|
try:
|
|
msgQueue.put_nowait(line.decode('utf-8', 'replace'))
|
|
except Exception:
|
|
# Any non-exit exceptions
|
|
|
|
pass
|
|
|
|
time.sleep(MsgQueue.MSG_PRODUCE_THRESHOLD / 1000)
|
|
|
|
msgThread = threading.Thread(target=produceMsg, daemon=True)
|
|
msgThread.start()
|
|
|
|
with tmpFileStream:
|
|
entrypoint()
|