-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWorker.cpp
More file actions
126 lines (112 loc) · 2.97 KB
/
Worker.cpp
File metadata and controls
126 lines (112 loc) · 2.97 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
// Aleth: Ethereum C++ client, tools and libraries.
// Copyright 2013-2019 Aleth Authors.
// Licensed under the GNU General Public License, Version 3.
#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)
{
cwarn << "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();
}
}