2019-04-19 16:07:01 +10:00
|
|
|
# Copyright 2019 miruka
|
|
|
|
# This file is part of harmonyqml, licensed under GPLv3.
|
|
|
|
|
|
|
|
import functools
|
2019-05-09 00:22:52 +10:00
|
|
|
import logging as log
|
2019-04-19 16:07:01 +10:00
|
|
|
import sys
|
2019-05-09 00:22:52 +10:00
|
|
|
import time
|
2019-04-19 16:07:01 +10:00
|
|
|
import traceback
|
2019-04-20 08:21:19 +10:00
|
|
|
from concurrent.futures import Executor, Future
|
2019-05-09 00:22:52 +10:00
|
|
|
from typing import Callable, Deque, Optional, Tuple, Union
|
2019-04-19 16:07:01 +10:00
|
|
|
|
|
|
|
from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot
|
|
|
|
|
|
|
|
|
|
|
|
class PyQtFuture(QObject):
|
2019-04-22 06:30:56 +10:00
|
|
|
gotResult = pyqtSignal("QVariant")
|
2019-04-19 16:07:01 +10:00
|
|
|
|
|
|
|
def __init__(self, future: Future, parent: QObject) -> None:
|
|
|
|
super().__init__(parent)
|
|
|
|
self.future = future
|
|
|
|
self._result = None
|
|
|
|
|
2019-04-22 06:30:56 +10:00
|
|
|
self.future.add_done_callback(
|
|
|
|
lambda future: self.gotResult.emit(future.result())
|
|
|
|
)
|
2019-04-19 16:07:01 +10:00
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self) -> str:
|
|
|
|
return "%s(%s)" % (type(self).__name__, repr(self.future))
|
|
|
|
|
|
|
|
|
|
|
|
@pyqtSlot()
|
|
|
|
def cancel(self):
|
|
|
|
self.future.cancel()
|
|
|
|
|
|
|
|
|
|
|
|
@pyqtProperty(bool)
|
|
|
|
def cancelled(self):
|
|
|
|
return self.future.cancelled()
|
|
|
|
|
|
|
|
|
|
|
|
@pyqtProperty(bool)
|
|
|
|
def running(self):
|
|
|
|
return self.future.running()
|
|
|
|
|
|
|
|
|
|
|
|
@pyqtProperty(bool)
|
|
|
|
def done(self):
|
|
|
|
return self.future.done()
|
|
|
|
|
|
|
|
|
|
|
|
@pyqtSlot(result="QVariant")
|
|
|
|
@pyqtSlot(int, result="QVariant")
|
|
|
|
@pyqtSlot(float, result="QVariant")
|
|
|
|
def result(self, timeout: Optional[Union[int, float]] = None):
|
|
|
|
return self.future.result(timeout)
|
|
|
|
|
|
|
|
|
|
|
|
@pyqtProperty("QVariant", notify=gotResult)
|
|
|
|
def value(self):
|
|
|
|
return self.future.result() if self.done else None
|
|
|
|
|
|
|
|
|
|
|
|
def add_done_callback(self, fn: Callable[[Future], None]) -> None:
|
|
|
|
self.future.add_done_callback(fn)
|
|
|
|
|
|
|
|
|
2019-05-09 00:22:52 +10:00
|
|
|
_Task = Tuple[Executor, Callable, Optional[tuple], Optional[dict]]
|
|
|
|
_RUNNING: Deque[_Task] = Deque()
|
|
|
|
_PENDING: Deque[_Task] = Deque()
|
2019-04-20 08:21:19 +10:00
|
|
|
|
|
|
|
|
2019-05-09 00:22:52 +10:00
|
|
|
def futurize(max_running: Optional[int] = None,
|
|
|
|
consider_args: bool = False,
|
|
|
|
discard_if_max_running: bool = False,
|
|
|
|
pyqt: bool = True) -> Callable:
|
2019-04-20 08:21:19 +10:00
|
|
|
|
|
|
|
def decorator(func: Callable) -> Callable:
|
|
|
|
|
|
|
|
@functools.wraps(func)
|
|
|
|
def wrapper(self, *args, **kws) -> Optional[PyQtFuture]:
|
2019-05-09 00:22:52 +10:00
|
|
|
task: _Task = (
|
|
|
|
self.pool,
|
|
|
|
func,
|
|
|
|
args if consider_args else None,
|
|
|
|
kws if consider_args else None,
|
|
|
|
)
|
|
|
|
|
|
|
|
def can_run_now() -> bool:
|
|
|
|
if max_running is not None and \
|
|
|
|
_RUNNING.count(task) >= max_running:
|
|
|
|
log.debug("!! Max %d tasks of this kind running: %r",
|
|
|
|
max_running, task[1:])
|
|
|
|
return False
|
|
|
|
|
|
|
|
if not consider_args or not _PENDING:
|
|
|
|
return True
|
|
|
|
|
|
|
|
log.debug(".. Pending: %r\n Queue: %r", task[1:], _PENDING)
|
|
|
|
candidate_task = next((
|
|
|
|
pending for pending in _PENDING
|
|
|
|
if pending[0] == self.pool and pending[1] == func
|
|
|
|
), None)
|
|
|
|
|
|
|
|
if candidate_task is None:
|
|
|
|
log.debug(">> No other candidate, starting: %r", task[1:])
|
|
|
|
return True
|
|
|
|
|
|
|
|
if candidate_task[2] == args and candidate_task[3] == kws:
|
|
|
|
log.debug(">> Candidate is us: %r", candidate_task[1:])
|
|
|
|
return True
|
|
|
|
|
|
|
|
log.debug("XX Other candidate: %r", candidate_task[1:])
|
|
|
|
return False
|
|
|
|
|
|
|
|
if not can_run_now() and discard_if_max_running:
|
|
|
|
log.debug("\\/ Discarding task: %r", task[1:])
|
|
|
|
return None
|
|
|
|
|
2019-04-20 08:21:19 +10:00
|
|
|
def run_and_catch_errs():
|
2019-05-09 00:22:52 +10:00
|
|
|
if not can_run_now():
|
|
|
|
log.debug("~~ Can't start now: %r", task[1:])
|
|
|
|
_PENDING.append(task)
|
|
|
|
|
|
|
|
while not can_run_now():
|
|
|
|
time.sleep(0.05)
|
|
|
|
|
|
|
|
_RUNNING.append(task)
|
|
|
|
log.debug("Starting: %r", task[1:])
|
|
|
|
|
2019-04-20 08:21:19 +10:00
|
|
|
# Without this, exceptions are silently ignored
|
|
|
|
try:
|
|
|
|
return func(self, *args, **kws)
|
|
|
|
except Exception:
|
|
|
|
traceback.print_exc()
|
2019-05-09 00:22:52 +10:00
|
|
|
log.error("Exiting thread/process due to exception.")
|
2019-04-20 08:21:19 +10:00
|
|
|
sys.exit(1)
|
|
|
|
finally:
|
2019-05-09 00:22:52 +10:00
|
|
|
del _RUNNING[_RUNNING.index(task)]
|
2019-04-20 08:21:19 +10:00
|
|
|
|
2019-04-27 08:47:25 +10:00
|
|
|
future = self.pool.submit(run_and_catch_errs)
|
|
|
|
return PyQtFuture(future, self) if pyqt else future
|
2019-04-20 08:21:19 +10:00
|
|
|
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
return decorator
|