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

深入解析C++编程中线程池的使用

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

这篇文章主要介绍了深入解析C++编程中线程池的使用,包括线程池的封装实现等内容,需要的朋友可以参考下

为什么需要线程池

目前的大多数网络服务器,包括Web服务器、Email服务器以及数据库服务器等都具有一个共同点,就是单位时间内必须处理数目巨大的连接请求,但处理时间却相对较短。

传 统多线程方案中我们采用的服务器模型则是一旦接受到请求之后,即创建一个新的线程,由该线程执行任务。任务执行完毕后,线程退出,这就是是“即时创建,即 时销毁”的策略。尽管与创建进程相比,创建线程的时间已经大大的缩短,但是如果提交给线程的任务是执行时间较短,而且执行次数极其频繁,那么服务器将处于 不停的创建线程,销毁线程的状态。

我们将传统方案中的线程执行过程分为三个过程:T1、T2、T3。

T1:线程创建时间

T2:线程执行时间,包括线程的同步等时间

T3:线程销毁时间

那么我们可以看出,线程本身的开销所占的比例为(T1+T3) / (T1+T2+T3)。如果线程执行的时间很短的话,这比开销可能占到20%-50%左右。如果任务执行时间很频繁的话,这笔开销将是不可忽略的。

除此之外,线程池能够减少创建的线程个数。通常线程池所允许的并发线程是有上界的,如果同时需要并发的线程数超过上界,那么一部分线程将会等待。而传统方案中,如果同时请求数目为2000,那么最坏情况下,系统可能需要产生2000个线程。尽管这不是一个很大的数目,但是也有部分机器可能达不到这种要求。

因此线程池的出现正是着眼于减少线程池本身带来的开销。线程池采用预创建的技术,在应用程序启动之后,将立即创建一定数量的线程(N1),放入空闲队列中。这些线程都是处于阻塞(Suspended)状态,不消耗CPU,但占用较小的内存空间。当任务到来后,缓冲池选择一个空闲线程,把任务传入此线程中运行。当N1个线程都在处理任务后,缓冲池自动创建一定数量的新线程,用于处理更多的任务。在任务执行完毕后线程也不退出,而是继续保持在池中等待下一次的任务。当系统比较空闲时,大部分线程都一直处于暂停状态,线程池自动销毁一部分线程,回收系统资源。

基于这种预创建技术,线程池将线程创建和销毁本身所带来的开销分摊到了各个具体的任务上,执行次数越多,每个任务所分担到的线程本身开销则越小,不过我们另外可能需要考虑进去线程之间同步所带来的开销

构建线程池框架

一般线程池都必须具备下面几个组成部分:

线程池管理器:用于创建并管理线程池

工作线程: 线程池中实际执行的线程

任务接口: 尽管线程池大多数情况下是用来支持网络服务器,但是我们将线程执行的任务抽象出来,形成任务接口,从而是的线程池与具体的任务无关。

任务队列: 线程池的概念具体到实现则可能是队列,链表之类的数据结构,其中保存执行线程。

我们实现的通用线程池框架由五个重要部分组成CThreadManage,CThreadPool,CThread,CJob,CWorkerThread,除此之外框架中还包括线程同步使用的类CThreadMutex和CCondition。

CJob是所有的任务的基类,其提供一个接口Run,所有的任务类都必须从该类继承,同时实现Run方法。该方法中实现具体的任务逻辑。

CThread是Linux中线程的包装,其封装了Linux线程最经常使用的属性和方法,它也是一个抽象类,是所有线程类的基类,具有一个接口Run。

CWorkerThread是实际被调度和执行的线程类,其从CThread继承而来,实现了CThread中的Run方法。

CThreadPool是线程池类,其负责保存线程,释放线程以及调度线程。

CThreadManage是线程池与用户的直接接口,其屏蔽了内部的具体实现。

CThreadMutex用于线程之间的互斥。

CCondition则是条件变量的封装,用于线程之间的同步。

CThreadManage直接跟客户端打交道,其接受需要创建的线程初始个数,并接受客户端提交的任务。这儿的任务是具体的非抽象的任务。CThreadManage的内部实际上调用的都是CThreadPool的相关操作。CThreadPool创建具体的线程,并把客户端提交的任务分发给CWorkerThread,CWorkerThread实际执行具体的任务。

理解系统组件

下面我们分开来了解系统中的各个组件。

CThreadManage

CThreadManage的功能非常简单,其提供最简单的方法,其类定义如下:

 

 
  1. class CThreadManage 
  2. private
  3. CThreadPool* m_Pool; 
  4. int m_NumOfThread; 
  5.  
  6. protected
  7.  
  8. public
  9. CThreadManage(); 
  10. CThreadManage(int num); 
  11. virtual ~CThreadManage(); 
  12.  
  13. void SetParallelNum(int num);  
  14. void Run(CJob* job,void* jobdata); 
  15. void TerminateAll(void); 
  16. }; 

其中m_Pool指向实际的线程池;m_NumOfThread是初始创建时候允许创建的并发的线程个数。另外Run和TerminateAll方法也非常简单,只是简单的调用CThreadPool的一些相关方法而已。其具体的实现如下:

 

 
  1. CThreadManage::CThreadManage() 
  2. m_NumOfThread = 10; 
  3. m_Pool = new CThreadPool(m_NumOfThread); 
  4.  
  5. CThreadManage::CThreadManage(int num) 
  6. m_NumOfThread = num; 
  7. m_Pool = new CThreadPool(m_NumOfThread); 
  8.  
  9. CThreadManage::~CThreadManage() 
  10. if(NULL != m_Pool) 
  11. delete m_Pool; 
  12.  
  13. void CThreadManage::SetParallelNum(int num) 
  14. m_NumOfThread = num; 
  15.  
  16. void CThreadManage::Run(CJob* job,void* jobdata) 
  17. m_Pool->Run(job,jobdata); 
  18.  
  19. void CThreadManage::TerminateAll(void
  20. m_Pool->TerminateAll(); 

CThread

CThread 类实现了对Linux中线程操作的封装,它是所有线程的基类,也是一个抽象类,提供了一个抽象接口Run,所有的CThread都必须实现该Run方法。CThread的定义如下所示:

 

 
  1. class CThread 
  2. private
  3. int m_ErrCode; 
  4. Semaphore m_ThreadSemaphore; //the inner semaphore, which is used to realize 
  5. unsigned long m_ThreadID;  
  6. bool m_Detach; //The thread is detached 
  7. bool m_CreateSuspended; //if suspend after creating 
  8. char* m_ThreadName; 
  9. ThreadState m_ThreadState; //the state of the thread 
  10.  
  11. protected
  12. void SetErrcode(int errcode){m_ErrCode = errcode;} 
  13. static void* ThreadFunction(void*); 
  14.  
  15. public
  16. CThread(); 
  17. CThread(bool createsuspended,bool detach); 
  18. virtual ~CThread(); 
  19.  
  20. virtual void Run(void) = 0; 
  21. void SetThreadState(ThreadState state){m_ThreadState = state;} 
  22. bool Terminate(void); //Terminate the threa 
  23. bool Start(void); //Start to execute the thread 
  24. void Exit(void); 
  25. bool Wakeup(void); 
  26. ThreadState GetThreadState(void){return m_ThreadState;} 
  27. int GetLastError(void){return m_ErrCode;} 
  28. void SetThreadName(char* thrname){strcpy(m_ThreadName,thrname);} 
  29. char* GetThreadName(void){return m_ThreadName;} 
  30. int GetThreadID(void){return m_ThreadID;} 
  31. bool SetPriority(int priority); 
  32. int GetPriority(void); 
  33. int GetConcurrency(void); 
  34. void SetConcurrency(int num); 
  35. bool Detach(void); 
  36. bool Join(void); 
  37. bool Yield(void); 
  38. int Self(void); 
  39. }; 

线程的状态可以分为四种,空闲、忙碌、挂起、终止(包括正常退出和非正常退出)。由于目前Linux线程库不支持挂起操作,因此,我们的此处的挂起操作类似于暂停。如果线程创建后不想立即执行任务,那么我们可以将其“暂停”,如果需要运行,则唤醒。有一点必须注意的是,一旦线程开始执行任务,将不能被挂起,其将一直执行任务至完毕。

线程类的相关操作均十分简单。线程的执行入口是从Start()函数开始,其将调用函数ThreadFunction,ThreadFunction再调用实际的Run函数,执行实际的任务。

CThreadPool

CThreadPool是线程的承载容器,一般可以将其实现为堆栈、单向队列或者双向队列。在我们的系统中我们使用STL Vector对线程进行保存。CThreadPool的实现代码如下:

 

 
  1. class CThreadPool 
  2. friend class CWorkerThread; 
  3.  
  4. private
  5. unsigned int m_MaxNum; //the max thread num that can create at the same time 
  6. unsigned int m_AvailLow; //The min num of idle thread that shoule kept 
  7. unsigned int m_AvailHigh; //The max num of idle thread that kept at the same time 
  8. unsigned int m_AvailNum; //the normal thread num of idle num; 
  9. unsigned int m_InitNum; //Normal thread num; 
  10.  
  11. protected
  12. CWorkerThread* GetIdleThread(void);  
  13. void AppendToIdleList(CWorkerThread* jobthread); 
  14. void MoveToBusyList(CWorkerThread* idlethread); 
  15. void MoveToIdleList(CWorkerThread* busythread); 
  16. void DeleteIdleThread(int num); 
  17. void CreateIdleThread(int num); 
  18.  
  19. public
  20. CThreadMutex m_BusyMutex; //when visit busy list,use m_BusyMutex to lock and unlock 
  21. CThreadMutex m_IdleMutex; //when visit idle list,use m_IdleMutex to lock and unlock 
  22. CThreadMutex m_JobMutex; //when visit job list,use m_JobMutex to lock and unlock 
  23. CThreadMutex m_VarMutex; 
  24. CCondition m_BusyCond; //m_BusyCond is used to sync busy thread list 
  25. CCondition m_IdleCond; //m_IdleCond is used to sync idle thread list 
  26. CCondition m_IdleJobCond; //m_JobCond is used to sync job list 
  27. CCondition m_MaxNumCond; 
  28.  
  29. vector<CWorkerThread*> m_ThreadList; 
  30. vector<CWorkerThread*> m_BusyList; //Thread List 
  31. vector<CWorkerThread*> m_IdleList; //Idle List 
  32.  
  33. CThreadPool(); 
  34. CThreadPool(int initnum); 
  35. virtual ~CThreadPool();  
  36.  
  37. void SetMaxNum(int maxnum){m_MaxNum = maxnum;} 
  38. int GetMaxNum(void){return m_MaxNum;} 
  39. void SetAvailLowNum(int minnum){m_AvailLow = minnum;} 
  40. int GetAvailLowNum(void){return m_AvailLow;} 
  41. void SetAvailHighNum(int highnum){m_AvailHigh = highnum;} 
  42. int GetAvailHighNum(void){return m_AvailHigh;} 
  43. int GetActualAvailNum(void){return m_AvailNum;} 
  44. int GetAllNum(void){return m_ThreadList.size();} 
  45. int GetBusyNum(void){return m_BusyList.size();} 
  46. void SetInitNum(int initnum){m_InitNum = initnum;} 
  47. int GetInitNum(void){return m_InitNum;} 
  48. void TerminateAll(void); 
  49. void Run(CJob* job,void* jobdata); 
  50. }; 
  51.  
  52.  
  53.  
  54. CWorkerThread* CThreadPool::GetIdleThread(void
  55.  
  56.  
  57. while(m_IdleList.size() ==0 ) 
  58.  
  59. m_IdleCond.Wait(); 
  60.  
  61.  
  62.  
  63. m_IdleMutex.Lock(); 
  64.  
  65. if(m_IdleList.size() > 0 ) 
  66.  
  67.  
  68. CWorkerThread* thr = (CWorkerThread*)m_IdleList.front(); 
  69.  
  70. printf("Get Idle thread %d/n",thr->GetThreadID()); 
  71.  
  72. m_IdleMutex.Unlock(); 
  73.  
  74. return thr; 
  75.  
  76.  
  77. m_IdleMutex.Unlock(); 
  78.  
  79. return NULL;  
  80.  
  81.  
  82. //create num idle thread and put them to idlelist 
  83.  
  84. void CThreadPool::CreateIdleThread(int num) 
  85.  
  86.  
  87. for(int i=0;i<num;i++){ 
  88.  
  89. CWorkerThread* thr = new CWorkerThread(); 
  90.  
  91. thr->SetThreadPool(this); 
  92.  
  93. AppendToIdleList(thr); 
  94.  
  95. m_VarMutex.Lock(); 
  96.  
  97. m_AvailNum++; 
  98.  
  99. m_VarMutex.Unlock(); 
  100.  
  101. thr->Start(); //begin the thread,the thread wait for job 
  102.  
  103.  
  104.  
  105.  
  106.  
  107. void CThreadPool::Run(CJob* job,void* jobdata) 
  108.  
  109.  
  110. assert(job!=NULL); 
  111.  
  112.  
  113.  
  114. //if the busy thread num adds to m_MaxNum,so we should wait 
  115.  
  116. if(GetBusyNum() == m_MaxNum) 
  117.  
  118. m_MaxNumCond.Wait(); 
  119.  
  120.  
  121.  
  122. if(m_IdleList.size()<m_AvailLow) 
  123.  
  124.  
  125. if(GetAllNum()+m_InitNum-m_IdleList.size() < m_MaxNum ) 
  126.  
  127. CreateIdleThread(m_InitNum-m_IdleList.size()); 
  128.  
  129. else 
  130.  
  131. CreateIdleThread(m_MaxNum-GetAllNum()); 
  132.  
  133.  
  134.  
  135.  
  136. CWorkerThread* idlethr = GetIdleThread(); 
  137.  
  138. if(idlethr !=NULL) 
  139.  
  140.  
  141. idlethr->m_WorkMutex.Lock(); 
  142.  
  143. MoveToBusyList(idlethr); 
  144.  
  145. idlethr->SetThreadPool(this); 
  146.  
  147. job->SetWorkThread(idlethr); 
  148.  
  149. printf("Job is set to thread %d /n",idlethr->GetThreadID()); 
  150.  
  151. idlethr->SetJob(job,jobdata); 
  152.  
  153.  

在CThreadPool中存在两个链表,一个是空闲链表,一个是忙碌链表。Idle链表中存放所有的空闲进程,当线程执行任务时候,其状态变为忙碌状态,同时从空闲链表中删除,并移至忙碌链表中。在CThreadPool的构造函数中,我们将执行下面的代码:

 

 
  1. for(int i=0;i<m_InitNum;i++) 
  2.  
  3.  
  4. CWorkerThread* thr = new CWorkerThread(); 
  5.  
  6. AppendToIdleList(thr); 
  7.  
  8. thr->SetThreadPool(this); 
  9.  
  10. thr->Start(); //begin the thread,the thread wait for job 
  11.  

在该代码中,我们将创建m_InitNum个线程,创建之后即调用AppendToIdleList放入Idle链表中,由于目前没有任务分发给这些线程,因此线程执行Start后将自己挂起。

事实上,线程池中容纳的线程数目并不是一成不变的,其会根据执行负载进行自动伸缩。为此在CThreadPool中设定四个变量:

m_InitNum:处世创建时线程池中的线程的个数。

m_MaxNum:当前线程池中所允许并发存在的线程的最大数目。

m_AvailLow:当前线程池中所允许存在的空闲线程的最小数目,如果空闲数目低于该值,表明负载可能过重,此时有必要增加空闲线程池的数目。实现中我们总是将线程调整为m_InitNum个。

m_AvailHigh:当前线程池中所允许的空闲的线程的最大数目,如果空闲数目高于该值,表明当前负载可能较轻,此时将删除多余的空闲线程,删除后调整数也为m_InitNum个。

m_AvailNum:目前线程池中实际存在的线程的个数,其值介于m_AvailHigh和m_AvailLow之间。如果线程的个数始终维持在m_AvailLow和m_AvailHigh之间,则线程既不需要创建,也不需要删除,保持平衡状态。因此如何设定m_AvailLow和m_AvailHigh的值,使得线程池最大可能的保持平衡态,是线程池设计必须考虑的问题。

线程池在接受到新的任务之后,线程池首先要检查是否有足够的空闲池可用。检查分为三个步骤:

(1)检查当前处于忙碌状态的线程是否达到了设定的最大值m_MaxNum,如果达到了,表明目前没有空闲线程可用,而且也不能创建新的线程,因此必须等待直到有线程执行完毕返回到空闲队列中。

(2)如果当前的空闲线程数目小于我们设定的最小的空闲数目m_AvailLow,则我们必须创建新的线程,默认情况下,创建后的线程数目应该为m_InitNum,因此创建的线程数目应该为( 当前空闲线程数与m_InitNum);但是有一种特殊情况必须考虑,就是现有的线程总数加上创建后的线程数可能超过m_MaxNum,因此我们必须对线程的创建区别对待。

 

 
  1. if(GetAllNum()+m_InitNum-m_IdleList.size() < m_MaxNum ) 
  2.  
  3. CreateIdleThread(m_InitNum-m_IdleList.size()); 
  4.  
  5. else 
  6.  
  7. CreateIdleThread(m_MaxNum-GetAllNum()); 

如果创建后总数不超过m_MaxNum,则创建后的线程为m_InitNum;如果超过了,则只创建( m_MaxNum-当前线程总数 )个。

(3)调用GetIdleThread方法查找空闲线程。如果当前没有空闲线程,则挂起;否则将任务指派给该线程,同时将其移入忙碌队列。

当线程执行完毕后,其会调用MoveToIdleList方法移入空闲链表中,其中还调用m_IdleCond.Signal()方法,唤醒GetIdleThread()中可能阻塞的线程。

CJob

CJob类相对简单,其封装了任务的基本的属性和方法,其中最重要的是Run方法,代码如下:

 

 
  1. class CJob 
  2.  
  3. private
  4.  
  5. int m_JobNo; //The num was assigned to the job 
  6.  
  7. char* m_JobName; //The job name 
  8.  
  9. CThread *m_pWorkThread; //The thread associated with the job 
  10.  
  11. public
  12.  
  13. CJob( void ); 
  14.  
  15. virtual ~CJob();  
  16.  
  17. int GetJobNo(voidconst { return m_JobNo; } 
  18.  
  19. void SetJobNo(int jobno){ m_JobNo = jobno;} 
  20.  
  21. char* GetJobName(voidconst { return m_JobName; } 
  22.  
  23. void SetJobName(char* jobname); 
  24.  
  25. CThread *GetWorkThread(void){ return m_pWorkThread; } 
  26.  
  27. void SetWorkThread ( CThread *pWorkThread ){ 
  28.  
  29. m_pWorkThread = pWorkThread; 
  30.  
  31.  
  32. virtual void Run ( void *ptr ) = 0; 
  33.  
  34. };  

线程池使用示例

至此我们给出了一个简单的与具体任务无关的线程池框架。使用该框架非常的简单,我们所需要的做的就是派生CJob类,将需要完成的任务实现在Run方法中。然后将该Job交由CThreadManage去执行。下面我们给出一个简单的示例程序

 

 
  1. class CXJob:public CJob 
  2.  
  3. public
  4.  
  5. CXJob(){i=0;} 
  6.  
  7. ~CXJob(){} 
  8.  
  9. void Run(void* jobdata) { 
  10.  
  11. printf("The Job comes from CXJOB/n"); 
  12.  
  13. sleep(2); 
  14.  
  15.  
  16. }; 
  17.  
  18.  
  19.  
  20. class CYJob:public CJob 
  21.  
  22.  
  23. public
  24.  
  25. CYJob(){i=0;} 
  26.  
  27. ~CYJob(){} 
  28.  
  29. void Run(void* jobdata) { 
  30.  
  31. printf("The Job comes from CYJob/n"); 
  32.  
  33.  
  34. }; 
  35.  
  36.  
  37.  
  38. main() 
  39.  
  40.  
  41. CThreadManage* manage = new CThreadManage(10); 
  42.  
  43. for(int i=0;i<40;i++) 
  44.  
  45.  
  46. CXJob* job = new CXJob(); 
  47.  
  48. manage->Run(job,NULL); 
  49.  
  50.  
  51. sleep(2); 
  52.  
  53. CYJob* job = new CYJob(); 
  54.  
  55. manage->Run(job,NULL); 
  56.  
  57. manage->TerminateAll(); 
  58.  
  59. }  

CXJob和CYJob都是从Job类继承而来,其都实现了Run接口。CXJob只是简单的打印一句”The Job comes from CXJob”,CYJob也只打印”The Job comes from CYJob”,然后均休眠2秒钟。在主程序中我们初始创建10个工作线程。然后分别执行40次CXJob和一次CYJob。

C++ 线程池的封装实现

为了充分利用多核的优势,我们利用多线程来进行任务处理,但线程也同样不能滥用,会带来一下几个问题:

1)线程本身存在开销,系统必须为每个线程分配如栈,TLS(线程局部存储),寄存器等。

2)线程管理会给系统带来开销,context切换同样会给系统带来成本。

3)线程本身是可以重用的资源,不需要每次都进行初始化。

所以往往在使用中,我们无需把线程与task任务进行一对一对应,只需要预先初始化有限的线程个数来处理无限的task任务即可,线程池应运而生,原理也就是如此。

深入解析C++编程中线程池的使用

主要含有三个队列

工作队列

工作线程队列

忙碌线程队列

工作队列是一个阻塞队列,任务(仿函数)任务不算被push进来(notify阻塞获取的工作线程),工作线程队列(一直不变)则从该队列中获取任务执行(wait获取,当任务队列为空时阻塞等待通知),如果获取到任务,则将线程会进入忙碌线程队列中,执行任务的仿函数,当工作完成,重新移出工作线程队列。

定义线程池专属异常:

 

 
  1. struct TC_ThreadPool_Exception : public TC_Exception 
  2. TC_ThreadPool_Exception(const string &buffer) : TC_Exception(buffer){}; 
  3. TC_ThreadPool_Exception(const string &buffer, int err) : TC_Exception(buffer, err){}; 
  4. ~TC_ThreadPool_Exception () throw (){}; 
  5. }; 
  6.  
  7.  
  8. /** 
  9. * @brief 用通线程池类, 与tc_functor, tc_functorwrapper配合使用. 
  10.  
  11. * 使用方式说明: 
  12. * 1 采用tc_functorwrapper封装一个调用 
  13. * 2 用tc_threadpool对调用进行执行 
  14. * 具体示例代码请参见:test/test_tc_thread_pool.cpp 
  15. */ 
  16.  
  17. /**线程池本身继承自锁,可以帮助锁定**/ 
  18. class TC_ThreadPool : public TC_ThreadLock 
  19. public
  20.  
  21. /** 
  22. * @brief 构造函数 
  23. * 
  24. */ 
  25. TC_ThreadPool (); 
  26.  
  27. /** 
  28. * @brief 析构, 会停止所有线程 
  29. */ 
  30. ~TC_ThreadPool (); 
  31.  
  32. /** 
  33. * @brief 初始化. 
  34.  
  35. * @param num 工作线程个数 
  36. */ 
  37. void init(size_t num); 
  38.  
  39. /** 
  40. * @brief 获取线程个数. 
  41. * 
  42. * @return size_t 线程个数 
  43. */ 
  44. size_t getThreadNum() { Lock sync(* this); return _jobthread. size(); } 
  45.  
  46. /** 
  47. * @brief 获取线程池的任务数( exec添加进去的). 
  48. * 
  49. * @return size_t 线程池的任务数 
  50. */ 
  51. size_t getJobNum() { return _jobqueue. size(); } 
  52.  
  53. /** 
  54. * @brief 停止所有线程 
  55. */ 
  56. void stop(); 
  57.  
  58. /** 
  59. * @brief 启动所有线程 
  60. */ 
  61. void start(); 
  62.  
  63. /** 
  64. * @brief 启动所有线程并, 执行初始化对象. 
  65.  
  66. * @param ParentFunctor 
  67. * @param tf 
  68. */ 
  69. template<class ParentFunctor> 
  70. void start(const TC_FunctorWrapper< ParentFunctor> &tf) 
  71. for(size_t i = 0; i < _jobthread .size(); i++) 
  72. _startqueue. push_back(new TC_FunctorWrapper<ParentFunctor >(tf)); 
  73.  
  74. start(); 
  75.  
  76. /** 
  77. * @brief 添加对象到线程池执行,该函数马上返回, 
  78. * 线程池的线程执行对象 
  79. */ 
  80. template<class ParentFunctor> 
  81. void exec(const TC_FunctorWrapper< ParentFunctor> &tf) 
  82. _jobqueue.push_back(new TC_FunctorWrapper<ParentFunctor >(tf)); 
  83.  
  84. /** 
  85. * @brief 等待所有工作全部结束(队列无任务, 无空闲线程). 
  86. * 
  87. * @param millsecond 等待的时间( ms), -1:永远等待 
  88. * @return true, 所有工作都处理完毕 
  89. * false,超时退出 
  90. */ 
  91. bool waitForAllDone(int millsecond = -1); 
  92.  
  93. public
  94.  
  95. /** 
  96. * @brief 线程数据基类,所有线程的私有数据继承于该类 
  97. */ 
  98. class ThreadData 
  99. public
  100. /** 
  101. * @brief 构造 
  102. */ 
  103. ThreadData(){}; 
  104. /** 
  105. * @brief 析够 
  106. */ 
  107. virtual ~ThreadData(){}; 
  108.  
  109. /** 
  110. * @brief 生成数据. 
  111.  
  112. * @ param T 
  113. * @return ThreadData* 
  114. */ 
  115. template<typename T> 
  116. static T* makeThreadData() 
  117. return new T; 
  118. }; 
  119.  
  120. /** 
  121. * @brief 设置线程数据. 
  122.  
  123. * @param p 线程数据 
  124. */ 
  125. static void setThreadData(ThreadData *p); 
  126.  
  127. /** 
  128. * @brief 获取线程数据. 
  129. * 
  130. * @return ThreadData* 线程数据 
  131. */ 
  132. static ThreadData* getThreadData(); 
  133.  
  134. /** 
  135. * @brief 设置线程数据, key需要自己维护. 
  136.  
  137. * @param pkey 线程私有数据key 
  138. * @param p 线程指针 
  139. */ 
  140. static void setThreadData(pthread_key_t pkey, ThreadData *p); 
  141.  
  142. /** 
  143. * @brief 获取线程数据, key需要自己维护. 
  144.  
  145. * @param pkey 线程私有数据key 
  146. * @return 指向线程的ThreadData*指针 
  147. */ 
  148. static ThreadData* getThreadData(pthread_key_t pkey); 
  149.  
  150. protected
  151.  
  152. /** 
  153. * @brief 释放资源. 
  154.  
  155. * @param p 
  156. */ 
  157. static void destructor(void *p); 
  158.  
  159. /** 
  160. * @brief 初始化key 
  161. */ 
  162. class KeyInitialize 
  163. public
  164. /** 
  165. * @brief 初始化key 
  166. */ 
  167. KeyInitialize() 
  168. int ret = pthread_key_create(&TC_ThreadPool::g_key, TC_ThreadPool::destructor); 
  169. if(ret != 0) 
  170. throw TC_ThreadPool_Exception("[TC_ThreadPool::KeyInitialize] pthread_key_create error", ret); 
  171.  
  172. /** 
  173. * @brief 释放key 
  174. */ 
  175. ~KeyInitialize() 
  176. pthread_key_delete(TC_ThreadPool::g_key); 
  177. }; 
  178.  
  179. /** 
  180. * @brief 初始化key的控制 
  181. */ 
  182. static KeyInitialize g_key_initialize; 
  183.  
  184. /** 
  185. * @brief 数据key 
  186. */ 
  187. static pthread_key_t g_key; 
  188.  
  189. protected
  190. /** 
  191. * @brief 线程池中的工作线程 
  192. */ 
  193. class ThreadWorker : public TC_Thread 
  194. public
  195. /** 
  196. * @brief 工作线程构造函数. 
  197.  
  198. * @ param tpool 
  199. */ 
  200. ThreadWorker(TC_ThreadPool *tpool); 
  201.  
  202. /** 
  203. * @brief 通知工作线程结束 
  204. */ 
  205. void terminate(); 
  206.  
  207. protected
  208. /** 
  209. * @brief 运行 
  210. */ 
  211. virtual void run(); 
  212.  
  213. protected
  214. /** 
  215. * 线程池指针 
  216. */ 
  217. TC_ThreadPool * _tpool; 
  218.  
  219. /** 
  220. * 是否结束线程 
  221. */ 
  222. bool _bTerminate; 
  223. }; 
  224.  
  225. protected
  226.  
  227. /** 
  228. * @brief 清除 
  229. */ 
  230. void clear(); 
  231.  
  232. /** 
  233. * @brief 获取任务, 如果没有任务, 则为NULL. 
  234. * 
  235. * @return TC_FunctorWrapperInterface* 
  236. */ 
  237. TC_FunctorWrapperInterface * get(ThreadWorker *ptw); 
  238.  
  239. /** 
  240. * @brief 获取启动任务. 
  241. * 
  242. * @return TC_FunctorWrapperInterface* 
  243. */ 
  244. TC_FunctorWrapperInterface * get(); 
  245.  
  246. /** 
  247. * @brief 空闲了一个线程. 
  248.  
  249. * @param ptw 
  250. */ 
  251. void idle(ThreadWorker *ptw); 
  252.  
  253. /** 
  254. * @brief 通知等待在任务队列上的工作线程醒来 
  255. */ 
  256. void notifyT(); 
  257.  
  258. /** 
  259. * @brief 是否处理结束. 
  260. * 
  261. * @return bool 
  262. */ 
  263. bool finish(); 
  264.  
  265. /** 
  266. * @brief 线程退出时调用 
  267. */ 
  268. void exit(); 
  269.  
  270. friend class ThreadWorker; 
  271. protected
  272.  
  273. /** 
  274. * 任务队列 
  275. */ 
  276. TC_ThreadQueue< TC_FunctorWrapperInterface*> _jobqueue; 
  277.  
  278. /** 
  279. * 启动任务 
  280. */ 
  281. TC_ThreadQueue< TC_FunctorWrapperInterface*> _startqueue; 
  282.  
  283. /** 
  284. * 工作线程 
  285. */ 
  286. std::vector<ThreadWorker *> _jobthread; 
  287.  
  288. /** 
  289. * 繁忙线程 
  290. */ 
  291. std::set<ThreadWorker *> _busthread; 
  292.  
  293. /** 
  294. * 任务队列的锁 
  295. */ 
  296. TC_ThreadLock _tmutex; 
  297.  
  298. /** 
  299. * 是否所有任务都执行完毕 
  300. */ 
  301. bool _bAllDone; 
  302. }; 

工作线程设计如下:

 

 
  1. TC_ThreadPool ::ThreadWorker::ThreadWorker(TC_ThreadPool *tpool) 
  2. : _tpool (tpool) 
  3. , _bTerminate ( false
  4.  
  5. void TC_ThreadPool ::ThreadWorker::terminate() 
  6. _bTerminate = true
  7. _tpool->notifyT(); 
  8.  
  9. void TC_ThreadPool ::ThreadWorker::run() 
  10. //调用初始化部分 
  11. TC_FunctorWrapperInterface *pst = _tpool->get(); 
  12. if(pst) 
  13. try 
  14. (*pst)(); 
  15. catch ( ... ) 
  16. delete pst; 
  17. pst = NULL; 
  18.  
  19. //调用处理部分 
  20. while (! _bTerminate) 
  21. TC_FunctorWrapperInterface *pfw = _tpool->get( this); 
  22. if(pfw != NULL) 
  23. auto_ptr< TC_FunctorWrapperInterface> apfw(pfw); 
  24.  
  25. try 
  26. (*pfw)(); 
  27. catch ( ... ) 
  28.  
  29. _tpool->idle( this); 
  30.  
  31. //结束 
  32. _tpool->exit(); 
  33.  
  34. 每个工作线程在刚开始时都会执行一下初始化操作,并进入一个无限循环的部分//调用处理部分 
  35. while (! _bTerminate) 
  36. TC_FunctorWrapperInterface *pfw = _tpool->get( this); 
  37. if(pfw != NULL) 
  38. auto_ptr< TC_FunctorWrapperInterface> apfw(pfw); 
  39.  
  40. try 
  41. (*pfw)(); 
  42. catch ( ... ) 
  43.  
  44. _tpool->idle( this); 

该工作主要是无限的从线程池的工作队列中获取任务并执行,如果成功获取任务,则会将线程移进忙碌队列:

 

 
  1. TC_FunctorWrapperInterface *TC_ThreadPool:: get(ThreadWorker *ptw) 
  2.  
  3. TC_FunctorWrapperInterface *pFunctorWrapper = NULL; 
  4. if(! _jobqueue. pop_front(pFunctorWrapper, 1000)) 
  5. return NULL; 
  6.  
  7. Lock sync( _tmutex); 
  8. _busthread. insert(ptw); 
  9. return pFunctorWrapper; 

执行完,移回工作线程队列:_tpool->idle( this);

 

 
  1. void TC_ThreadPool:: idle(ThreadWorker *ptw) 
  2. Lock sync( _tmutex); 
  3. _busthread. erase(ptw); 
  4.  
  5. //无繁忙线程, 通知等待在线程池结束的线程醒过来 
  6. if( _busthread. empty()) 
  7. _bAllDone = true
  8. _tmutex.notifyAll(); 

此处jobThread队列初始化后不会改变(因为没有实现自增长功能),所以非线程安全的vector队列即可,busthread的忙碌线程队列会被移进移出,但是操作会自带Lock sync( _tmutex),该互斥量是线程池本身继承的,所以是共有的,也无需另外使用线程安全的TC_ThreadQueue,使用vector即可。

TC_ThreadPool:: idle中的

 

 
  1. if( _busthread. empty()) 
  2. _bAllDone = true
  3. _tmutex.notifyAll(); 

主要用于当线程池工作起来后的waitForAllDone方法:

 

 
  1. bool TC_ThreadPool:: waitForAllDone( int millsecond) 
  2. Lock sync( _tmutex); 
  3.  
  4. start1: 
  5. //任务队列和繁忙线程都是空的 
  6. if (finish()) 
  7. return true
  8.  
  9. //永远等待 
  10. if(millsecond < 0) 
  11. _tmutex.timedWait(1000); 
  12. goto start1; 
  13.  
  14. int64_t iNow = TC_Common:: now2ms(); 
  15. int m = millsecond; 
  16. start2: 
  17.  
  18. bool b = _tmutex.timedWait(millsecond); 
  19. //完成处理了 
  20. if(finish()) 
  21. return true
  22.  
  23. if(!b) 
  24. return false
  25.  
  26. millsecond = max((int64_t )0, m - (TC_Common ::now2ms() - iNow)); 
  27. goto start2; 
  28.  
  29. return false
  30.  
  31. _tmutex.timedWait(millsecond)方法唤醒。反复判断是否所有的工作是否完成: 
  32.  
  33. bool TC_ThreadPool:: finish() 
  34. return _startqueue. empty() && _jobqueue .empty() && _busthread. empty() && _bAllDone; 

整体cpp实现如下:

 

 
  1. TC_ThreadPool ::KeyInitialize TC_ThreadPool::g_key_initialize; 
  2. pthread_key_t TC_ThreadPool::g_key ; 
  3.  
  4. void TC_ThreadPool::destructor( void *p) 
  5. ThreadData *ttd = ( ThreadData*)p; 
  6. if(ttd) 
  7. delete ttd; 
  8.  
  9. void TC_ThreadPool::exit() 
  10. TC_ThreadPool:: ThreadData *p = getThreadData(); 
  11. if(p) 
  12. delete p; 
  13. int ret = pthread_setspecific( g_key, NULL ); 
  14. if(ret != 0) 
  15. throw TC_ThreadPool_Exception ("[TC_ThreadPool::setThreadData] pthread_setspecific error", ret); 
  16.  
  17. _jobqueue. clear(); 
  18.  
  19. void TC_ThreadPool::setThreadData( TC_ThreadPool:: ThreadData *p) 
  20. TC_ThreadPool:: ThreadData *pOld = getThreadData(); 
  21. if(pOld != NULL && pOld != p) 
  22. delete pOld; 
  23.  
  24. int ret = pthread_setspecific( g_key, ( void *)p); 
  25. if(ret != 0) 
  26. throw TC_ThreadPool_Exception ("[TC_ThreadPool::setThreadData] pthread_setspecific error", ret); 
  27.  
  28. TC_ThreadPool ::ThreadData * TC_ThreadPool::getThreadData () 
  29. return ( ThreadData *) pthread_getspecific( g_key); 
  30.  
  31. void TC_ThreadPool::setThreadData( pthread_key_t pkey, ThreadData *p) 
  32. TC_ThreadPool:: ThreadData *pOld = getThreadData(pkey); 
  33. if(pOld != NULL && pOld != p) 
  34. delete pOld; 
  35.  
  36. int ret = pthread_setspecific(pkey, ( void *)p); 
  37. if(ret != 0) 
  38. throw TC_ThreadPool_Exception ("[TC_ThreadPool::setThreadData] pthread_setspecific error", ret); 
  39.  
  40. TC_ThreadPool ::ThreadData * TC_ThreadPool::getThreadData( pthread_key_t pkey) 
  41. return ( ThreadData *) pthread_getspecific(pkey); 
  42.  
  43. TC_ThreadPool::TC_ThreadPool() 
  44. : _bAllDone ( true
  45.  
  46. TC_ThreadPool::~TC_ThreadPool() 
  47. stop(); 
  48. clear(); 
  49.  
  50. void TC_ThreadPool::clear() 
  51. std::vector< ThreadWorker *>::iterator it = _jobthread. begin(); 
  52. while(it != _jobthread. end()) 
  53. delete (*it); 
  54. ++it; 
  55.  
  56. _jobthread. clear(); 
  57. _busthread. clear(); 
  58.  
  59. void TC_ThreadPool::init( size_t num) 
  60. stop(); 
  61.  
  62. Lock sync(* this); 
  63.  
  64. clear(); 
  65.  
  66. for( size_t i = 0; i < num; i++) 
  67. _jobthread. push_back( new ThreadWorker( this)); 
  68.  
  69. void TC_ThreadPool::stop() 
  70. Lock sync(* this); 
  71.  
  72. std::vector< ThreadWorker *>::iterator it = _jobthread. begin(); 
  73. while(it != _jobthread. end()) 
  74. if ((*it)-> isAlive()) 
  75. (*it)-> terminate(); 
  76. (*it)-> getThreadControl().join (); 
  77. ++it; 
  78. _bAllDone = true
  79.  
  80. void TC_ThreadPool::start() 
  81. Lock sync(* this); 
  82.  
  83. std::vector< ThreadWorker *>::iterator it = _jobthread. begin(); 
  84. while(it != _jobthread. end()) 
  85. (*it)-> start(); 
  86. ++it; 
  87. _bAllDone = false
  88.  
  89. bool TC_ThreadPool:: finish() 
  90. return _startqueue. empty() && _jobqueue .empty() && _busthread. empty() && _bAllDone; 
  91.  
  92. bool TC_ThreadPool::waitForAllDone( int millsecond) 
  93. Lock sync( _tmutex); 
  94.  
  95. start1: 
  96. //任务队列和繁忙线程都是空的 
  97. if (finish ()) 
  98. return true
  99.  
  100. //永远等待 
  101. if(millsecond < 0) 
  102. _tmutex.timedWait(1000); 
  103. goto start1; 
  104.  
  105. int64_t iNow = TC_Common:: now2ms(); 
  106. int m = millsecond; 
  107. start2: 
  108.  
  109. bool b = _tmutex.timedWait(millsecond); 
  110. //完成处理了 
  111. if(finish ()) 
  112. return true
  113.  
  114. if(!b) 
  115. return false
  116.  
  117. millsecond = max((int64_t )0, m - (TC_Common ::now2ms() - iNow)); 
  118. goto start2; 
  119.  
  120. return false
  121.  
  122. TC_FunctorWrapperInterface *TC_ThreadPool::get( ThreadWorker *ptw) 
  123.  
  124. TC_FunctorWrapperInterface *pFunctorWrapper = NULL; 
  125. if(! _jobqueue. pop_front(pFunctorWrapper, 1000)) 
  126. return NULL; 
  127.  
  128. Lock sync( _tmutex); 
  129. _busthread. insert(ptw); 
  130. return pFunctorWrapper; 
  131.  
  132. TC_FunctorWrapperInterface *TC_ThreadPool::get() 
  133. TC_FunctorWrapperInterface *pFunctorWrapper = NULL; 
  134. if(! _startqueue. pop_front(pFunctorWrapper)) 
  135. return NULL; 
  136.  
  137. return pFunctorWrapper; 
  138.  
  139. void TC_ThreadPool::idle( ThreadWorker *ptw) 
  140. Lock sync( _tmutex); 
  141. _busthread. erase(ptw); 
  142.  
  143. //无繁忙线程, 通知等待在线程池结束的线程醒过来 
  144. if( _busthread. empty()) 
  145. _bAllDone = true
  146. _tmutex.notifyAll(); 
  147.  
  148. void TC_ThreadPool::notifyT() 
  149. _jobqueue. notifyT(); 

线程池使用后记

线程池适合场合

事 实上,线程池并不是万能的。它有其特定的使用场合。线程池致力于减少线程本身的开销对应用所产生的影响,这是有前提的,前提就是线程本身开销与线程执行任 务相比不可忽略。如果线程本身的开销相对于线程任务执行开销而言是可以忽略不计的,那么此时线程池所带来的好处是不明显的,比如对于FTP服务器以及Telnet服务器,通常传送文件的时间较长,开销较大,那么此时,我们采用线程池未必是理想的方法,我们可以选择“即时创建,即时销毁”的策略。

总之线程池通常适合下面的几个场合:

(1) 单位时间内处理任务频繁而且任务处理时间短

(2) 对实时性要求较高。如果接受到任务后在创建线程,可能满足不了实时要求,因此必须采用线程池进行预创建。

(3) 必须经常面对高突发性事件,比如Web服务器,如果有足球转播,则服务器将产生巨大的冲击。此时如果采取传统方法,则必须不停的大量产生线程,销毁线程。此时采用动态线程池可以避免这种情况的发生。


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