This repository was archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathWorker.cpp
More file actions
142 lines (126 loc) · 3.55 KB
/
Worker.cpp
File metadata and controls
142 lines (126 loc) · 3.55 KB
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
/*
This file is part of cpp-ethereum.
cpp-ethereum 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.
cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file Worker.cpp
* @author Gav Wood <i@gavwood.com>
* @date 2014
*/
#include "Worker.h"
#include <chrono>
#include <thread>
#include "Log.h"
using namespace std;
using namespace dev;
void Worker::startWorking()
{
// cnote << "startWorking for thread" << m_name;
std::unique_lock<std::mutex> l(x_work);
if (m_work)
{
WorkerState ex = WorkerState::Stopped;
m_state.compare_exchange_strong(ex, WorkerState::Starting);
m_state_notifier.notify_all();
}
else
{
m_state = WorkerState::Starting;
m_state_notifier.notify_all();
m_work.reset(new thread([&]()
{
setThreadName(m_name.c_str());
// cnote << "Thread begins";
while (m_state != WorkerState::Killing)
{
WorkerState ex = WorkerState::Starting;
{
// the condition variable-related lock
unique_lock<mutex> l(x_work);
m_state = WorkerState::Started;
}
// cnote << "Trying to set Started: Thread was" << (unsigned)ex << "; " << ok;
m_state_notifier.notify_all();
try
{
startedWorking();
workLoop();
doneWorking();
}
catch (std::exception const& _e)
{
clog(WarnChannel) << "Exception thrown in Worker thread: " << _e.what();
}
// ex = WorkerState::Stopping;
// m_state.compare_exchange_strong(ex, WorkerState::Stopped);
{
// the condition variable-related lock
unique_lock<mutex> l(x_work);
ex = m_state.exchange(WorkerState::Stopped);
// cnote << "State: Stopped: Thread was" << (unsigned)ex;
if (ex == WorkerState::Killing || ex == WorkerState::Starting)
m_state.exchange(ex);
}
m_state_notifier.notify_all();
// cnote << "Waiting until not Stopped...";
{
unique_lock<mutex> l(x_work);
DEV_TIMED_ABOVE("Worker stopping", 100)
while (m_state == WorkerState::Stopped)
m_state_notifier.wait(l);
}
}
}));
// cnote << "Spawning" << m_name;
}
DEV_TIMED_ABOVE("Start worker", 100)
while (m_state == WorkerState::Starting)
m_state_notifier.wait(l);
}
void Worker::stopWorking()
{
std::unique_lock<Mutex> l(x_work);
if (m_work)
{
WorkerState ex = WorkerState::Started;
if (!m_state.compare_exchange_strong(ex, WorkerState::Stopping))
return;
m_state_notifier.notify_all();
DEV_TIMED_ABOVE("Stop worker", 100)
while (m_state != WorkerState::Stopped)
m_state_notifier.wait(l); // but yes who can wake this up, when the mutex is taken.
}
}
void Worker::terminate()
{
// cnote << "stopWorking for thread" << m_name;
std::unique_lock<Mutex> l(x_work);
if (m_work)
{
if (m_state.exchange(WorkerState::Killing) == WorkerState::Killing)
return; // Somebody else is doing this
l.unlock();
m_state_notifier.notify_all();
DEV_TIMED_ABOVE("Terminate worker", 100)
m_work->join();
l.lock();
m_work.reset();
}
}
void Worker::workLoop()
{
while (m_state == WorkerState::Started)
{
if (m_idleWaitMs)
this_thread::sleep_for(chrono::milliseconds(m_idleWaitMs));
doWork();
}
}