首页 > 编程 > C++ > 正文

c++实现简单的线程池

2020-05-23 14:13:09
字体:
来源:转载
供稿:网友

这里给大家介绍了C++中对于pthread线程的一个简单应用以及使用继承CDoit,实现其中的start和end,有需要的小伙伴可以参考下

这是对pthread线程的一个简单应用

1. 实现了线程池的概念,线程可以重复使用。

2. 对信号量,互斥锁等进行封装,业务处理函数中只需写和业务相关的代码。

3. 移植性好。如果想把这个线程池代码应用到自己的实现中去,只要写自己的业务处理函数和改写工作队列数据的处理方法就可以了。

Sample代码主要包括一个主程序和两个线程实现类

ThreadTest.cpp:主程序

CThreadManager:线程管理Class,线程池的实现类

CThread:线程Class.

主程序实现方法。

1. 实现main函数和一个需要线程处理的业务函数(例子代码中业务函数是一个简单的计算函数Count)。在main函数中创建CThreadManager的实例,产生线程池。这个时候,把业务函数作为函数指针传到CThreadManager里面,最终会被线程调用。

2. 向工作队列中放入业务函数要处理的数据。

3. 设置信号量,唤醒线程。

 

 
  1. // 线程要执行的函数 
  2. int Count(int nWork) 
  3. int nResult = nWork * nWork; 
  4. printf("count result is %d/n",nResult); 
  5. return 0; 
  6. int main() { 
  7. // 创建线程管理类的实例,把要执行的线程函数和最大线程数传进去 
  8. CThreadManager* pManager = new CThreadManager(Count, 3); 
  9. // 把要进行计算的数放到工作队列中 
  10. pManager->PushWorkQue(5); 
  11. pManager->PushWorkQue(20); 
  12. // 设置信号量,唤醒线程 
  13. pManager->PostSem(); 
  14. pManager->PostSem(); 
  15. // 等待子线程执行 
  16. sleep(1); 
  17. return 0; 

CThreadManager实现的方法

1. 把信号量和互斥锁等封装成自己的函数

2. 在new方法里,循环调用CThread的new方法,启动一定数量(可设定)的线程,产生线程池。

3. 这些线程启动后,就会执行CThreadManager中的ManageFuction函数。这个函数是无限循环的,保证了线程在整个程序的生命周期中不销毁。

4. 在循环处理里面,第一行代码就是等待一个信号量,这个信号量是由主程序进行设置的,这个信号信号量如果没有被设置(代表暂时没有需要处理的工作),所有线程都在这里阻塞着。

4. 一旦信号量被设置,根据Linux线程调度机制,在阻塞的线程队列中,其中一个线程被唤醒,可以执行后面的代码。

5. 从工作队列中取出要进行处理的数据(使用互斥锁进行排他)

6. 通过函数指针调用main函数传过来的业务函数,处理数据。

7. 业务函数执行完之后,线程进入下一个循环,等待新的信号量。

 

 
  1. class CThreadManager { 
  2. friend void* ManageFuction(void*); 
  3. private
  4. sem_t m_sem; // 信号量 
  5. pthread_mutex_t m_mutex; // 互斥锁 
  6. queue<int> m_queWork; // 工作队列 
  7. list<CThread*> m_lstThread; // 线程list 
  8. int (*m_threadFuction)(int); //函数指针,指向main函数传过来的线程执行函数 
  9. public
  10. CThreadManager(int (*threadFuction)(int), int nMaxThreadCnt); 
  11. virtual ~CThreadManager(); 
  12. int WaitSem(); 
  13. int PostSem(); 
  14. int LockMutex(); 
  15. int UnlockMutex(); 
  16. void PushWorkQue(int nWork); 
  17. int PopWorkQue(); 
  18. int RunThreadFunction(int nWork); 
  19. }; 
  20. // 线程执行函数,它只是个壳子,处理信号量和互斥锁等, 
  21. // 最后调用main函数传过来的线程执行函数来实现业务处理 
  22. void* ManageFuction(void* argv) 
  23. CThreadManager* pManager = (CThreadManager*)argv; 
  24. // 进行无限循环(意味着线程是不销毁的,重复利用) 
  25. while(true
  26. // 线程开启后,就在这里阻塞着,直到main函数设置了信号量 
  27. pManager->WaitSem(); 
  28. printf("thread wakeup./n"); 
  29. // 从工作队列中取出要处理的数 
  30. pManager->LockMutex(); 
  31. int nWork = pManager->PopWorkQue(); 
  32. pManager->UnlockMutex(); 
  33. printf("call Count function./n"); 
  34. pManager->RunThreadFunction(nWork); 
  35. return 0; 
  36. // 构造方法 
  37. CThreadManager::CThreadManager(int (*threadFuction)(int), int nMaxThreadCnt)  
  38. sem_init(&m_sem, 0, 0); 
  39. pthread_mutex_init(&m_mutex, NULL); 
  40. m_threadFuction = threadFuction; 
  41. for(int i=0; i<nMaxThreadCnt; i++) 
  42. CThread* pThread = new CThread(ManageFuction, this); 
  43. printf("thread started./n"); 
  44. m_lstThread.push_back(pThread); 

CThread实现的方法

CThreadManager比较简单,封装了创建线程和join线程的函数。

 

 
  1. CThread::CThread(void* (*threadFuction)(void*),void* threadArgv)  
  2. // 初始化线程属性 
  3. pthread_attr_t threadAttr; 
  4. pthread_attr_init(&threadAttr); 
  5.  
  6. pthread_create(&m_thread, &threadAttr, threadFuction, threadArgv); 

c++线程池,继承CDoit,实现其中的start和end

 

 
  1. /* 
  2. * 多线程管理类 
  3.  
  4. */ 
  5.  
  6. #ifndef CTHREADPOOLMANAGE_H 
  7. #define CTHREADPOOLMANAGE_H 
  8. #include <iostream> 
  9. #include <pthread.h> 
  10. #include <unistd.h>  
  11. #include <list> 
  12. #include <vector> 
  13. #include <time.h> 
  14. #include <asm/errno.h> 
  15.  
  16. #define USLEEP_TIME 100 
  17. #define CHECK_TIME 1 
  18.  
  19.  
  20. using namespace std; 
  21. class CDoit 
  22. public
  23. virtual int start(void *){}; 
  24. virtual int end(){}; 
  25. }; 
  26.  
  27.  
  28. class CthreadPoolManage 
  29. private
  30. int _minThreads; //最少保留几个线程 
  31. int _maxThreads; //最多可以有几个线程 
  32. int _waitSec; //空闲多少秒后将线程关闭 
  33. class threadInfo{ 
  34. public
  35. threadInfo(){ 
  36. isbusy = false;  
  37. doFlag = true
  38. // 
  39. pthread_mutex_t mtx=PTHREAD_MUTEX_INITIALIZER; 
  40. pthread_cond_t cond=PTHREAD_COND_INITIALIZER; 
  41. bool isbusy; //是否空闲 
  42. bool doFlag; 
  43. // 
  44. time_t beginTime; //线程不工作开始时间 
  45. pthread_t cThreadPid; //线程id 
  46. pthread_attr_t cThreadAttr; //线程属性 
  47. CDoit * doit; //任务类 
  48. void * value; //需要传递的值 
  49. }; 
  50. //线程函数 
  51. static void* startThread(void*); 
  52. //任务队列锁 
  53. pthread_mutex_t _duty_mutex; 
  54. //任务队列 
  55. list<threadInfo*> _dutyList; 
  56. //线程队列锁 
  57. pthread_mutex_t _thread_mutex; 
  58. //线程队列 
  59. list<threadInfo*> _threadList; 
  60.  
  61. ///初始化,创建最小个数线程/// 
  62. void initThread();  
  63. ///任务分配线程/// 
  64. static void* taskAllocation(void*arg); 
  65. pthread_t tasktPid; 
  66. ///线程销毁、状态检查线程/// 
  67. static void* checkThread(void* arg); 
  68. pthread_t checktPid; 
  69. bool checkrun; 
  70.  
  71. //线程异常退出清理 
  72. static void threadCleanUp(void* arg); 
  73.  
  74. // 
  75. int addThread(list<threadInfo*> *plist,threadInfo* ptinfo); 
  76.  
  77. public
  78. CthreadPoolManage(); 
  79. /* 
  80. 保留的最少线程,最多线程数,空闲多久销毁,保留几个线程的冗余 
  81. */ 
  82. CthreadPoolManage(int min,int max,int waitSec); 
  83. ~CthreadPoolManage(); 
  84.  
  85. int start(); 
  86. //任务注入器 
  87. int putDuty(CDoit *,void *); 
  88.  
  89. int getNowThreadNum(); 
  90.  
  91. }; 
  92.  
  93. #endif // CTHREADPOOLMANAGE_H 

CPP

 

 
  1. /* 
  2. * 线程池,线程管理类 
  3.  
  4. */ 
  5.  
  6. #include "cthreadpoolmanage.h" 
  7.  
  8. CthreadPoolManage::CthreadPoolManage() 
  9. _minThreads = 5; //最少保留几个线程 
  10. _maxThreads = 5; //最多可以有几个线程 
  11. _waitSec = 10; //空闲多少秒后将线程关闭 
  12. pthread_mutex_init(&_duty_mutex, NULL); 
  13. pthread_mutex_init(&_thread_mutex, NULL); 
  14. checkrun = true
  15.  
  16.  
  17. CthreadPoolManage::CthreadPoolManage(int min, int max, int waitSec) 
  18. CthreadPoolManage(); 
  19. _minThreads = min; //最少保留几个线程 
  20. _maxThreads = max; //最多可以有几个线程 
  21. _waitSec = waitSec; //空闲多少秒后将线程关闭 
  22.  
  23. CthreadPoolManage::~CthreadPoolManage() 
  24.  
  25. void CthreadPoolManage::threadCleanUp(void* arg) 
  26. threadInfo* tinfo = (threadInfo*)arg; 
  27. tinfo->isbusy = false
  28. pthread_mutex_unlock(&tinfo->mtx); 
  29. pthread_attr_destroy (&tinfo->cThreadAttr); 
  30. delete tinfo; 
  31.  
  32. void* CthreadPoolManage::startThread(void* arg) 
  33. cout<<"线程开始工作"<<endl; 
  34. threadInfo* tinfo = (threadInfo*)arg; 
  35. pthread_cleanup_push(threadCleanUp,arg); 
  36. while(tinfo->doFlag){ 
  37. pthread_mutex_lock(&tinfo->mtx); 
  38. if(tinfo->doit == NULL) 
  39. cout<<"开始等待任务"<<endl; 
  40. pthread_cond_wait(&tinfo->cond,&tinfo->mtx); 
  41. cout<<"有任务了"<<endl; 
  42. tinfo->isbusy = true
  43. tinfo->doit->start(tinfo->value); 
  44. tinfo->doit->end(); 
  45. tinfo->doit=NULL; 
  46. tinfo->isbusy = false
  47. time( &tinfo->beginTime); 
  48. pthread_mutex_unlock(&tinfo->mtx); 
  49. //0正常执行到这儿不执行清理函数,异常会执行 
  50. pthread_cleanup_pop(0); 
  51. pthread_attr_destroy (&tinfo->cThreadAttr); 
  52. delete tinfo; 
  53. cout<<"线程结束"<<endl; 
  54.  
  55. void CthreadPoolManage::initThread() 
  56. int i = 0; 
  57. for(i = 0;i<this->_minThreads;i++) 
  58. threadInfo *tinfo = new threadInfo; 
  59. tinfo->doit = NULL; 
  60. tinfo->value = NULL; 
  61. tinfo->isbusy = false
  62. tinfo->doFlag = true
  63. // PTHREAD_CREATE_DETACHED (分离线程) 和 PTHREAD _CREATE_JOINABLE (非分离线程) 
  64. pthread_attr_init(&tinfo->cThreadAttr); 
  65. pthread_attr_setdetachstate(&tinfo->cThreadAttr,PTHREAD_CREATE_DETACHED ); 
  66. cout<<"初始化了一个线程"<<endl; 
  67. if(pthread_create(&tinfo->cThreadPid,&tinfo->cThreadAttr,startThread,(void *)tinfo) != 0) 
  68. cout<<"创建线程失败"<<endl; 
  69. break
  70. this->_threadList.push_back(tinfo); 
  71.  
  72. int CthreadPoolManage::addThread(std::list< CthreadPoolManage::threadInfo* >* plist, CthreadPoolManage::threadInfo* ptinfo) 
  73. threadInfo *tinfo = new threadInfo; 
  74. tinfo->doit = ptinfo->doit; 
  75. tinfo->value = ptinfo->value; 
  76. tinfo->isbusy = true
  77. if(pthread_create(&tinfo->cThreadPid,NULL,startThread,(void *)tinfo) != 0) 
  78. cout<<"创建线程失败"<<endl; 
  79. return -1; 
  80. plist->push_back(tinfo); 
  81. return 0; 
  82.  
  83.  
  84. int CthreadPoolManage::putDuty(CDoit* doit, void* value) 
  85. threadInfo *tinfo = new threadInfo; 
  86. time( &tinfo->beginTime); 
  87. tinfo->doit= doit; 
  88. tinfo->value = value; 
  89. pthread_mutex_lock(&_duty_mutex); 
  90. this->_dutyList.push_back(tinfo); 
  91. pthread_mutex_unlock(&_duty_mutex); 
  92. return 0; 
  93.  
  94. void* CthreadPoolManage::taskAllocation(void*arg) 
  95. CthreadPoolManage * ptmanage = (CthreadPoolManage*)arg; 
  96. int size_1 = 0; 
  97. int size_2 = 0; 
  98. int i_1 = 0; 
  99. int i_2 = 0; 
  100. bool a_1 = true
  101. bool a_2 = true
  102. threadInfo* ptinfo; 
  103. threadInfo* ptinfoTmp; 
  104. while(true){ 
  105. size_1 = 0; 
  106. size_2 = 0; 
  107. pthread_mutex_lock(&ptmanage->_duty_mutex); 
  108. pthread_mutex_lock(&ptmanage->_thread_mutex); 
  109. size_1 = ptmanage->_dutyList.size(); 
  110. size_2 =ptmanage->_threadList.size(); 
  111. for(list<threadInfo*>::iterator itorti1 = ptmanage->_dutyList.begin();itorti1 !=ptmanage->_dutyList.end();) 
  112. ptinfo = *itorti1; 
  113. a_1 = true
  114. for(list<threadInfo*>::iterator itorti2 = ptmanage->_threadList.begin();itorti2!=ptmanage->_threadList.end();itorti2++){ 
  115. ptinfoTmp = *itorti2; 
  116. if(EBUSY == pthread_mutex_trylock(&ptinfoTmp->mtx)) 
  117. continue
  118. if(!ptinfoTmp->isbusy) 
  119. ptinfoTmp->doit = ptinfo->doit; 
  120. ptinfoTmp->value = ptinfo->value; 
  121. ptinfoTmp->isbusy = true
  122. pthread_cond_signal(&ptinfoTmp->cond); 
  123. pthread_mutex_unlock(&ptinfoTmp->mtx); 
  124. a_1 = false
  125. delete ptinfo; 
  126. break
  127. pthread_mutex_unlock(&ptinfoTmp->mtx); 
  128. if(a_1){ 
  129. if(ptmanage->_threadList.size()>ptmanage->_maxThreads||ptmanage->addThread(&ptmanage->_threadList,ptinfo)!=0) 
  130. itorti1++; 
  131. continue
  132. }else
  133. itorti1 = ptmanage->_dutyList.erase(itorti1); 
  134. delete ptinfo; 
  135. }else
  136. itorti1 = ptmanage->_dutyList.erase(itorti1); 
  137. pthread_mutex_unlock(&ptmanage->_duty_mutex); 
  138. pthread_mutex_unlock(&ptmanage->_thread_mutex); 
  139. usleep(USLEEP_TIME); 
  140. return 0; 
  141.  
  142. void* CthreadPoolManage::checkThread(void* arg) 
  143. CthreadPoolManage * ptmanage = (CthreadPoolManage*)arg; 
  144. threadInfo* ptinfo; 
  145. time_t nowtime; 
  146. while(ptmanage->checkrun){ 
  147. sleep(CHECK_TIME); 
  148. pthread_mutex_lock(&ptmanage->_thread_mutex); 
  149. if(ptmanage->_threadList.size()<=ptmanage->_minThreads) 
  150. pthread_mutex_unlock(&ptmanage->_thread_mutex); 
  151. continue
  152. for(list<threadInfo*>::iterator itorti2 = ptmanage->_threadList.begin();itorti2!=ptmanage->_threadList.end();){ 
  153. ptinfo = *itorti2; 
  154. if(EBUSY == pthread_mutex_trylock(&ptinfo->mtx)) 
  155. itorti2++; 
  156. continue
  157. time(&nowtime); 
  158. if(ptinfo->isbusy == false && nowtime-ptinfo->beginTime>ptmanage->_waitSec) 
  159. ptinfo->doFlag = false
  160. itorti2 = ptmanage->_threadList.erase(itorti2); 
  161. }else
  162. itorti2++; 
  163. pthread_mutex_unlock(&ptinfo->mtx); 
  164. pthread_mutex_unlock(&ptmanage->_thread_mutex); 
  165.  
  166. int CthreadPoolManage::start() 
  167. //初始化 
  168. this->initThread(); 
  169. //启动任务分配线程 
  170. if(pthread_create(&tasktPid,NULL,taskAllocation,(void *)this) != 0) 
  171. cout<<"创建任务分配线程失败"<<endl; 
  172. return -1; 
  173. //创建现程状态分配管理线程 
  174. if(pthread_create(&checktPid,NULL,checkThread,(void *)this) != 0) 
  175. cout<<"创建线程状态分配管理线程失败"<<endl; 
  176. return -1; 
  177. return 0; 
  178.  
  179. /////////////////////////////// 
  180. int CthreadPoolManage::getNowThreadNum() 
  181. int num = 0; 
  182. pthread_mutex_lock(&this->_thread_mutex); 
  183. num = this->_threadList.size(); 
  184. pthread_mutex_unlock(&this->_thread_mutex); 
  185. return num ; 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表