当前位置:   article > 正文

C++ 线程池_c++线程池

c++线程池

目录

一、线程池实现原理

二、定义线程池的结构

三、创建线程池实例

四、添加工作的线程的任务函数

五、管理者线程的任务函数

六、往线程池中添加任务

七、获取线程池工作的线程数量与活着的线程数量

八、线程池的销毁


一、线程池实现原理

线程池的组成主要分为3个部分。这三部分配合工作就可以得到一个完整的线程池:

1、任务队列,存储需要处理的任务。由工作的想程来处理这些任务

  • 通过线程池提供的API函数,将一个待处理的任务添加到任务队列,或者从任务队列中删除
  • 已处理的任务会被从任务队列中删除
  • 线程池的使用者,也就是调用线程池函数往任务队列中添加任务的线程就是生产者线程

2、工作的线程 (任务队列任务的消费者),N个

  • 线程池中维护了一定数量的工作线程,他们的作用是不停的读任务队列,从里边取出任务并处理
  • 工作的线程相当于是任务队列的消费者角色
  • 如果任务队列为空,工作的线程将会被阻塞(使用条件变量/信号量阻塞)
  • 如果阻塞之后有了新的任务,由生产者将阻塞解除,工作线程开始工作

3、管理者线程(不处理任务队列中的任务),1个

  • 它的任务是周期性的对任务队列中的任务数量以及处于忙状态的工作线程个数进行检测

          ——当任务过多的时候,可以适当的创建一些新的工作线程

          ——当任务过少的时候,可以适当的销毁一些工作的线程

二、定义线程池的结构

  1. #include "threadpool.h"
  2. //任务结构体
  3. typedef struct Task
  4. {
  5. void (*function) (void* arg);
  6. void* arg;
  7. }Task;
  8. //线程池结构体
  9. struct ThreadPool
  10. {
  11. //任务队列
  12. Task* taskQ;
  13. int queueCapacity; //容量
  14. int queueSize; //当前任务个数
  15. int queueFront; //队头->取数据
  16. int queueRear; //队尾->放数据
  17. pthread_t managerID; //管理者线程ID
  18. pthread_t *threadIDs; //工作的线程ID
  19. int minNum; //最小线程数量
  20. int maxNum; //最大线程数量
  21. int busyNum; //忙的线程的个数
  22. int liveNum; //存活的线程的个数
  23. int exitNum; //要销毁的线程个数
  24. pthread _mutex_t mutexPool; //锁整个的线程池
  25. pthread_mutex_t mutexBusy; //锁busyNum变量
  26. pthread_cond_t notFull; //任务队列是不是满了
  27. pthread_cond_t notEmpty; //任务队列是不是空了
  28. int shutdown; //是不是要销毁线程池,销毁为1,不销毁为0
  29. };

三、创建线程池实例

  1. typedef struct ThreadPool ThreadPool;
  2. ThreadPool* threadPoolCreate(int min, int max, int queueSize)
  3. {
  4. ThreadPool* pool=(ThreadPool*)malloc(sizeof (ThreadPool));
  5. do{
  6. if (pool == NULL)
  7. {
  8. printf ( "malloc threadpool fail ... \n");
  9. break;
  10. }
  11. pool->threadIDs = (pthread_t *) malloc(sizeof(pthread_t) *max);
  12. if(pool->threadIDs == NULL)
  13. {
  14. printf ("malloc threadIDs fail ... \n");
  15. break;
  16. }
  17. memset(pool->threadIDs,0, sizeof (pthread_t) * max);
  18. pool->minNum = min;
  19. pool->maxNum = max;
  20. pool->busyNum = 0;
  21. pool->liveNum = min; //和最小个数相等
  22. pool->exitNum = 0;
  23. if (pt.hread _mutex_init ( &pool->mutexPool,NUTI) !=0 ||
  24. pthread_mutex_init ( &pool->mutexBusy,NULL) !=0 ||
  25. pthread_cond_init (&pool->notEmpty,NULL) !=0 ||
  26. pthread_cond_init ( &pool->notFull,NULL) !=0 )
  27. {
  28. printf ( "mutex or condition init fail ...\n");
  29. break;
  30. }
  31. //任务队列
  32. pool->taskQ = malloc(sizeof (Task) * queueSize);
  33. pool->queueCapacity =qucuesizo;
  34. pool->queueSize= 0;
  35. pool->queueFront =0;
  36. pool->queueRear = 0;
  37. pool->shutdown = 0;
  38. //创建线程
  39. pthread_create ( &pool->managerID,NULL,manager,NULL);
  40. for (int i = 0; i < min; ++i)
  41. {
  42. pthread create (&pool->threadIDs[i],NULL,worker,NULL);
  43. }
  44. }whiie (O);
  45. //释放资源
  46. if(pool && pool->threadIDs) free(pool->threadIDs);
  47. if(pool && pool->taskQ) free(pool->taskQ);
  48. if(pool) free(pool);
  49. return NULL;
  50. }

四、添加工作的线程的任务函数

  1. void* worker (void* arg)
  2. {
  3. ThreadPool* pool = (ThreadPool*)arg;
  4. while (1)
  5. {
  6. pthread_ mutex_lock(&pool->mtexPool) ;!当前任务队列是否为空
  7. while (pool->queuesize == 0 && !pool->shutdown )
  8. {
  9. //阻塞工作线程
  10. pthread_cond_wait(&pool->notEmpty, &pool->mutexPool);
  11. //判断是不是要销毁线程
  12. if (pool->exitNum > 0)
  13. {
  14. pool->exitNum--;
  15. pthread_ mutex_unlock(&pool->mtexPool) ;!当前任务队列是否为空
  16. pthread_exit (NULL);
  17. }
  18. }
  19. //判断线程池是否被关闭了
  20. if (pool->shutdown ){
  21. pthread_mutex_unlock(&pool->mutexPool);
  22. pthread_exit(NULL);
  23. }
  24. //从任务队列中取出一个任务
  25. Task task;
  26. task.function = pool->taskQ[pool->queueFront].function;
  27. task.arg = pool->taskQ[pool->queueFront].arg;
  28. //移动头结点
  29. pool->queueFront =(pool->queueFront + 1) % pool->queueCapacity;
  30. pool->queuesize--;
  31. //解锁
  32. pthread_cond_signal(&pool->notFull);
  33. pthread_mutex_unlock(&pool->mutexPool);
  34. printf("thread %ld start working ...\n");
  35. pthread mutex_lock (&pool->mutexBusy);
  36. pool->busyNum++;
  37. pthread mutex_unlock (&pool->mutexBusy) ;
  38. task.function(task.arg) ; //或者 (*task.function) (task.arg) 进行调用;
  39. free(task.arg);
  40. task.arg=NULL;
  41. printf("thread %ld end working ...\n");
  42. pthread_mutex_lock (&pool->mutexBusy);
  43. pool->busyNum--;
  44. pthread mutex_unlock (&pool->mutexBusy) ;
  45. }
  46. return NULL;
  47. }

五、管理者线程的任务函数

  1. const int NUMBER = 2;
  2. void* manaqer(void* arg)
  3. {
  4. ThreadPool* pool = (ThreadPool+)arg;
  5. while(!pool->shutdown)
  6. {
  7. //每隔3s检测一次
  8. sleep(3);
  9. //取出线程池中任务的数量和当前线程的数量
  10. pthread_mutex_lock(&pool->muatexPool) ;
  11. int queueSize =pool->queuesize;
  12. int liveNum = pool->liveNum;
  13. pthread_mutex_unlock( &pool->mutexPool) ;
  14. //取出忙的线程的数量
  15. pthread_mutex_lock(&pool->mutexBusy);
  16. int busyNum = pool->busyNum;
  17. pthread_mutex__lock(&pool->mutexBusy) ;
  18. //添加线程
  19. // 任务的个数 > 存活的线程个数 && 存活的线程数 < 最大线程数
  20. if (queueSize > liveNum && liveNum< pool->maxNum)
  21. {
  22. pthread_mutex_lock(&pool->mutexPool);
  23. int counter = 0;
  24. for (int i = 0; i < pool->maxNum && counter < NUMBER
  25. && pool->liveNum < pool->maxNum ; ++i)
  26. {
  27. if (pool->threadIDs[i] == 0)
  28. {
  29. pthread_create( &pool->threadIDs[i],NULI,worker, pool);
  30. counter++;
  31. pool->liveNum++;
  32. }
  33. }
  34. pthread_mutex_unlock(&pool->mutexPool);
  35. }
  36. // 销毁线程
  37. // 忙的线程*2 < 存活的线程数 && 存活的线程 > 最小线程数
  38. if(busyNum * 2< liveNum && liveNum > pool->minNum)
  39. {
  40. pthread_mutex_lock(&pool->mutexPool);
  41. pool->exitNum = NUMBER;
  42. pthread_mutex_unlock(&pcol->mutexPool);
  43. // 让工作的线程自杀I
  44. for(int i=0;i<NUMBER; ++i)
  45. {
  46. pthread_cond_signal(&pool->notEmpty);
  47. }
  48. }
  49. }
  50. }

六、往线程池中添加任务

  1. void threadPoolAdd(ThreadPool* pool,void (*func)(void*), void* arg)
  2. {
  3. pthread_mutex_lock(&pool->mutexPool);
  4. while(pool->queueSize == pool->queueCapacity && !pool->shutdown)
  5. {
  6. //阻塞生产者线程
  7. pthread_cond_wait( &pool->notFull,&pool->mutexPool) ;
  8. }
  9. if (pool->shutdown)
  10. {
  11. pthread_mutex_unlock ( &pool->mutexPool) ;
  12. return;
  13. }
  14. //添加任务
  15. pool->taskQ[pool->queueRear].function = func;
  16. pool->taskQ[pool->queueRear].arg = arg;
  17. pool->queueRear = (pool->queueRear + 1) % pool->queueCapacity;
  18. pool->queuesize++;
  19. pthread_cond_signal( &pool->notEmpty);
  20. pthread_mutex_unlock(&pool->mutexPool) ;
  21. }

七、获取线程池工作的线程数量与活着的线程数量

  1. //获取线程池中工作的线程数量
  2. int threadPoolBusyNum ( ThreadPool* pool)
  3. {
  4. pthread_mutex_lock(&pool->mutexBusy);
  5. int busyNum = pool->busyNum;
  6. pthread_mutex_unlock(&pool->mutexBusy);
  7. return busyNum;
  8. }
  9. //获取线程池中活着的线程数量
  10. int threadPoolAliveNum (ThreadPool*pool)
  11. {
  12. pthread_mutex_lock(&pool->mutexPool);
  13. int busyNum = pool->liveNum;
  14. pthread_mutex_unlock(&pool->mutexPool);
  15. return aliveNum;
  16. }

八、线程池的销毁

  1. int threadPoolDestroy (ThreadPool* pool)
  2. {
  3. if(pool == NULL){
  4. return -1;
  5. }
  6. //关闭线程池
  7. pool->shutdown = 1;
  8. //阻塞回收管理者线程
  9. pthread_join(pool->nanagerID,NULL);
  10. //唤醒阻塞的消费者线程
  11. for (int i = 0; i < pool->liveNum; ++i){
  12. pthread_cond_signal( &pool->notEmpty) ;
  13. }
  14. //释放堆内存
  15. if(pool->taskQ){
  16. free(pool->taskQ);
  17. pool->taskQ=NULL;
  18. }
  19. if(pool->threadIDs){
  20. free(pool->threadIDs);
  21. pool->threadIDs=NULL;
  22. }
  23. free(pool);
  24. pool=NULL;
  25. pthread_mutex_destroy( &pool->mutexPool);
  26. pthread_mutex_destroy( &pool->mutexBusy);
  27. pthread_cond_ destroy( &pool->notEmpty);
  28. pthread_cond_destroy ( &pool->notFull);
  29. return 0;
  30. }


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/621849
推荐阅读
相关标签
  

闽ICP备14008679号