-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThread.hpp
More file actions
161 lines (126 loc) · 2.4 KB
/
Thread.hpp
File metadata and controls
161 lines (126 loc) · 2.4 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#ifndef _Simple_TC_THREAD_H_
#define _Simple_TC_THREAD_H_
#include <thread>
#include <stdexcept>
#include <string>
#include <cstring>
#include <sstream>
#include <condition_variable>
#include <mutex>
#include <memory>
namespace TC
{
using std::string;
using std::thread;
using std::exception;
class TC_Exception : public exception
{
public:
explicit TC_Exception(const string &buffer)
{
_buffer = buffer;
_code = 0;
}
TC_Exception(const string &buffer, int err)
{
_buffer = buffer + " :" + strerror(err);
_code = err;
}
virtual ~TC_Exception() throw() {}
virtual const char* what() const throw()
{
return _buffer.c_str();
}
private:
int _code;
string _buffer;
};
class TC_Thread
{
public:
TC_Thread()
{
_running = false;
}
virtual ~TC_Thread()
{
_running = false;
}
void join()
{
if (!_th) {
throw TC_Exception("thread join nullptr");
}
if (std::this_thread::get_id() == _th->get_id()) {
throw TC_Exception("can't be called in the same thread");
}
if (_th->joinable()) {
_th->join();
}
else {
throw TC_Exception("thread join error ");
}
}
void detach()
{
if (std::this_thread::get_id() == _th->get_id()) {
throw TC_Exception("can't be called in the same thread");
}
_th->detach();
}
static void sleep(int64_t millsecond)
{
std::this_thread::sleep_for(std::chrono::milliseconds(millsecond));
}
static void yield()
{
std::this_thread::yield();
}
bool isAlive() const
{
return _running;
}
std::thread::id id()
{
return _th->get_id();
}
std::thread* getThread()
{
return _th;
}
static size_t CURRENT_THREADID()
{
std::stringstream sin;
sin << std::this_thread::get_id();
return std::stoull(sin.str());
}
void start()
{
if (_running)
{
throw TC_Exception("[TC_Thread::start] thread has start");
}
_th = new std::thread(threadEntry, this);
}
protected:
static void threadEntry(TC_Thread *pThread)
{
pThread->_running = true;
try
{
pThread->run();
}
catch (...)
{
pThread->_running = false;
throw;
}
pThread->_running = false;
}
virtual void run() = 0;
protected:
bool _running;
std::thread *_th;
};
} // namespace TC
#endif //_Simple_TC_THREAD_H_