-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadPool.hpp
executable file
·141 lines (121 loc) · 2.4 KB
/
ThreadPool.hpp
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
#ifndef __THREADPOOL_HPP__
#define __THREADPOOL_HPP__
#include<iostream>
#include<queue>
#include<pthread.h>
typedef void (*handler_t)(int);
class Task
{
private:
int sock;
handler_t handler;
public:
Task(int sock_, handler_t handler_):sock(sock_), handler(handler_)
{}
void Run()
{
handler(sock);
}
~Task()
{}
};
class ThreadPool{
private:
int num;
int idle_num;
std::queue<Task> task_queue;
pthread_mutex_t lock;
pthread_cond_t cond;
public:
ThreadPool(int num_):num(num_), idle_num(0)
{
pthread_mutex_init(&lock, NULL);
pthread_cond_init(&cond, NULL);
}
void InitThreadPool()
{
pthread_t tid;
for(auto i = 0; i < num; i++)
{
pthread_create(&tid, NULL, ThreadRoutine, (void *)this);
}
}
bool IsTaskQueueEmpty()
{
return task_queue.size() == 0 ? true : false;
}
void LockQueue()
{
pthread_mutex_unlock(&lock);
}
void UnlockQueue()
{
pthread_mutex_unlock(&lock);
}
void Idle()
{
idle_num++;
pthread_cond_wait(&cond, &lock);
idle_num--;
}
Task PopTask()
{
Task t = task_queue.front();
task_queue.pop();
return t;
}
void Wakeup()
{
pthread_cond_signal(&cond);
}
void PushTask(Task &t)
{
LockQueue();
task_queue.push(t);
UnlockQueue();
Wakeup();
}
static void *ThreadRoutine(void *arg)
{
pthread_detach(pthread_self());
ThreadPool *tp = (ThreadPool *)arg;
for(;;){
tp->LockQueue();
while(tp->IsTaskQueueEmpty()){
tp->Idle();
}
Task t = tp->PopTask();
tp->UnlockQueue();
std::cout << "task is handler by: " << pthread_self() << std::endl;
t.Run();
}
}
~ThreadPool()
{
pthread_mutex_destroy(&lock);
pthread_cond_destroy(&cond);
}
};
class singleton{
private:
static ThreadPool *p;
static pthread_mutex_t lock;
public:
static ThreadPool *GetInstance()
{
if(NULL == p)
{
pthread_mutex_lock(&lock);
if(NULL == p)
{
p = new ThreadPool(5);
p->InitThreadPool();
}
pthread_mutex_lock(&lock);
}
return p;
}
};
ThreadPool *singleton::p = NULL;
pthread_mutex_t singleton::lock = PTHREAD_MUTEX_INITIALIZER;
#endif