1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
# -*- coding: utf-8 -*-
#
# This file is part of the qpageview package.
#
# Copyright (c) 2019 - 2019 by Wilbert Berendsen
#
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
"""
Run jobs in the background using QThread.
"""
from PyQt6.QtCore import QThread
# as soon as a Job start()s, it is saved here, to prevent it being
# destroyed while running
_runningJobs = set()
_pendingJobs = []
maxjobs = 12
class Job(QThread):
"""A simple wrapper around QThread.
Before calling start() you should put the work function in the work
attribute, and an optional finalize function (which will be called with the
result) in the finalize attribute.
Or alternatively, inherit from this class and implement work() and finish()
yourself. The result of the work function is stored in the result attribute.
"""
finalize = None
running = False
done = False
result = None
def __init__(self, parent=None):
"""Init ourselves; the parent can be a QObject which will be our parent."""
super().__init__(parent)
self.finished.connect(self._slotFinished)
def start(self):
self.result = None
self.running = True # this is more robust than isRunning()
self.done = False
if len(_runningJobs) < maxjobs:
_runningJobs.add(self)
super().start()
else:
_pendingJobs.append(self)
def run(self):
"""Call the work function in the background thread."""
self.result = self.work()
def work(self):
"""Implement this to get the work done.
If you have long tasks you can Qt's isInterruptionRequested()
functionality.
Instead of implementing this method, you can put the work function in
the work instance attribute.
"""
pass
def finish(self):
"""This slot is called in the main thread when the work is done.
The default implementation calls the finalize function with the result.
"""
if self.finalize:
self.finalize(self.result)
def _slotFinished(self):
_runningJobs.discard(self)
if _pendingJobs:
_pendingJobs.pop().start()
self.running = False
self.done = True
self.finish()
class SingleRun:
"""Run a function in a background thread.
The outcome is silently discarded if another function is called before the
old one finishes.
"""
def __init__(self):
self._job = None
def cancel(self):
"""Forgets the running job.
The job is not terminated but the callback is not called.
"""
j = self._job
if j:
j.finalize = None
self._job = None
def __call__(self, func, callback=None):
self.cancel()
j = self._job = Job()
j.work = func
def finalize(result):
self.cancel()
if callback:
callback(result)
j.finalize = finalize
j.start()
def run(func, callback=None):
"""Run specified function in a background thread.
The thread is immediately started. If a callback is specified, it is called
in the main thread with the result when the function is ready.
"""
j = Job()
j.work = func
j.finalize = callback
j.start()
|