forked from scantailor/scantailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BackgroundExecutor.cpp
155 lines (124 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
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 "OutOfMemoryHandler.h"
#include <QCoreApplication>
#include <QObject>
#include <QThread>
#include <QEvent>
#include <new>
#include <assert.h>
class BackgroundExecutor::Dispatcher : public QObject
{
public:
Dispatcher(Impl& owner);
protected:
virtual void customEvent(QEvent* event);
private:
Impl& m_rOwner;
};
class BackgroundExecutor::Impl : public QThread
{
public:
Impl(BackgroundExecutor& owner);
~Impl();
void enqueueTask(TaskPtr const& task);
protected:
virtual void run();
virtual void customEvent(QEvent* event);
private:
BackgroundExecutor& m_rOwner;
Dispatcher m_dispatcher;
bool m_threadStarted;
};
/*============================ BackgroundExecutor ==========================*/
BackgroundExecutor::BackgroundExecutor()
: m_ptrImpl(new Impl(*this))
{
}
BackgroundExecutor::~BackgroundExecutor()
{
}
void
BackgroundExecutor::shutdown()
{
m_ptrImpl.reset();
}
void
BackgroundExecutor::enqueueTask(TaskPtr const& task)
{
if (m_ptrImpl.get()) {
m_ptrImpl->enqueueTask(task);
}
}
/*===================== BackgroundExecutor::Dispatcher =====================*/
BackgroundExecutor::Dispatcher::Dispatcher(Impl& owner)
: m_rOwner(owner)
{
}
void
BackgroundExecutor::Dispatcher::customEvent(QEvent* event)
{
try {
TaskEvent* evt = dynamic_cast<TaskEvent*>(event);
assert(evt);
TaskPtr const& task = evt->payload();
assert(task);
TaskResultPtr const result((*task)());
if (result) {
QCoreApplication::postEvent(
&m_rOwner, new ResultEvent(result)
);
}
} catch (std::bad_alloc const&) {
OutOfMemoryHandler::instance().handleOutOfMemorySituation();
}
}
/*======================= BackgroundExecutor::Impl =========================*/
BackgroundExecutor::Impl::Impl(BackgroundExecutor& owner)
: m_rOwner(owner),
m_dispatcher(*this),
m_threadStarted(false)
{
m_dispatcher.moveToThread(this);
}
BackgroundExecutor::Impl::~Impl()
{
exit();
wait();
}
void
BackgroundExecutor::Impl::enqueueTask(TaskPtr const& 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)
{
ResultEvent* evt = dynamic_cast<ResultEvent*>(event);
assert(evt);
TaskResultPtr const& result = evt->payload();
assert(result);
(*result)();
}