-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththreadPool.h
111 lines (104 loc) · 2.69 KB
/
threadPool.h
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
#ifndef THREADPOOL_H
#define THREADPOOL_H
#include <iostream>
#include <stdio.h>
#include <pthread.h>
#include "Utils.h"
#include <vector>
#include <list>
static int maxThreadNum = 10;
static int maxRequestNum = 10000;
template<typename T>
class MyThreadPool{
public:
MyThreadPool(int threadNum,int requestNum);
MyThreadPool();
~MyThreadPool();
bool append(T* request);
void run();
private:
static void * work(void * arg);
private:
MyMutex myMutex;
std::vector<pthread_t*> myThreads;
std::list<T*> myWorks;
MySem myRequestSem;
bool stop;
};
template<typename T>
MyThreadPool<T>::MyThreadPool(int threadNum,int requestNum){
if(threadNum <= 0 || threadNum > maxThreadNum ){
cout<<"threadNum is not correct!!!"<<endl;
throw std::exception();
}
if(requestNum <= 0 || requestNum > maxRequestNum ){
cout<<"RequestNum is not correct!!!"<<endl;
throw std::exception();
}
stop = false;
myThreads.resize(threadNum);
for(int i =0;i < threadNum;i++){
if(pthread_create(&myThreads[i],nullptr,&work,this) != 0){
cout<<"threadPool::create thead num :"<< i << "failure!!!"<<endl;
throw std::exception();
};
if(pthread_detach(&myThreads[i]) != 0){
cout<<"threadPool::detach thead num :"<< i << "failure!!!"<<endl;
throw std::exception();
};
}
};
template<typename T>
MyThreadPool<T>::MyThreadPool(){
stop = false;
myThreads.resize(8);
for(int i =0;i < 8;i++){
if(pthread_create(&myThreads[i],nullptr,&work,nullptr) != 0){
cout<<"threadPool::create thead num :"<< i << "failure!!!"<<endl;
throw std::exception();
};
}
};
template<typename T>
MyThreadPool<T>::~MyThreadPool(){
stop = true;
};
template<typename T>
bool MyThreadPool<T>::append(T* request){
myMutex.lock();
if(myWorks.size() >= maxRequestNum){
myMutex.unlock();
cout<<"threadPool::append queue has full!!"<<endl;
return false;
}
myWorks.insert(request);
myMutex.unlock();
myRequestSem.post();
return true;
};
template<typename T>
void * MyThreadPool<T>::work(void * arg){
MyThreadPool * myThreadPool = (MyThreadPool *) arg;
myThreadPool->run();
return myThreadPool;
};
template<typename T>
void MyThreadPool<T>::run(){
while (!stop)
{
myRequestSem.wait();
myMutex.lock();
if(myWorks.size() == 0){
myMutex.unlock();
continue;
}
T* request = myWorks.front();
myWorks.pop_front();
myMutex.unlock();
if(!request){
continue;
}
request->process();
}
};
#endif