forked from 4lex4/scantailor-advanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackgroundExecutor.cpp
126 lines (93 loc) · 3.14 KB
/
BackgroundExecutor.cpp
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
/*
Scan Tailor - Interactive post-processing tool for scanned pages.
Copyright (C) Joseph Artsimovich <[email protected]>
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 <http://www.gnu.org/licenses/>.
*/
#include "BackgroundExecutor.h"
#include <QCoreApplication>
#include <QThread>
#include <cassert>
#include "OutOfMemoryHandler.h"
class BackgroundExecutor::Dispatcher : public QObject {
public:
explicit Dispatcher(Impl& owner);
protected:
void customEvent(QEvent* event) override;
private:
Impl& m_owner;
};
class BackgroundExecutor::Impl : public QThread {
public:
explicit Impl(BackgroundExecutor& owner);
~Impl() override;
void enqueueTask(const TaskPtr& task);
protected:
void run() override;
void customEvent(QEvent* event) override;
private:
BackgroundExecutor& m_owner;
Dispatcher m_dispatcher;
bool m_threadStarted;
};
/*============================ BackgroundExecutor ==========================*/
BackgroundExecutor::BackgroundExecutor() : m_impl(new Impl(*this)) {}
BackgroundExecutor::~BackgroundExecutor() = default;
void BackgroundExecutor::shutdown() {
m_impl.reset();
}
void BackgroundExecutor::enqueueTask(const TaskPtr& task) {
if (m_impl) {
m_impl->enqueueTask(task);
}
}
/*===================== BackgroundExecutor::Dispatcher =====================*/
BackgroundExecutor::Dispatcher::Dispatcher(Impl& owner) : m_owner(owner) {}
void BackgroundExecutor::Dispatcher::customEvent(QEvent* event) {
try {
auto* evt = dynamic_cast<TaskEvent*>(event);
assert(evt);
const TaskPtr& task = evt->payload();
assert(task);
const TaskResultPtr result((*task)());
if (result) {
QCoreApplication::postEvent(&m_owner, new ResultEvent(result));
}
} catch (const std::bad_alloc&) {
OutOfMemoryHandler::instance().handleOutOfMemorySituation();
}
}
/*======================= BackgroundExecutor::Impl =========================*/
BackgroundExecutor::Impl::Impl(BackgroundExecutor& owner)
: m_owner(owner), m_dispatcher(*this), m_threadStarted(false) {
m_dispatcher.moveToThread(this);
}
BackgroundExecutor::Impl::~Impl() {
exit();
wait();
}
void BackgroundExecutor::Impl::enqueueTask(const TaskPtr& task) {
QCoreApplication::postEvent(&m_dispatcher, new TaskEvent(task));
if (!m_threadStarted) {
start();
m_threadStarted = true;
}
}
void BackgroundExecutor::Impl::run() {
exec();
}
void BackgroundExecutor::Impl::customEvent(QEvent* event) {
auto* evt = dynamic_cast<ResultEvent*>(event);
assert(evt);
const TaskResultPtr& result = evt->payload();
assert(result);
(*result)();
}