线程池的设计与测试

来源:互联网 发布:千元机机2017 知乎 编辑:程序博客网 时间:2024/06/05 06:12

编写了一个最基本的线程池类,处理用c_work表示的工作任务。C++还很不熟练,欢迎会C++的提出宝贵的修改意见。

程序有注释,所以应该很好读懂。测试程序在下面。


[cpp] view plaincopyprint?
  1. ///////////////////////////////////////////////////////
  2. //线程池类
  3. ///////////////////////////////////////////////////////
  4. #include <pthread.h>
  5. #include <stdlib.h>
  6. #include <stdio.h>
  7. #include <unistd.h>
  8. #include <assert.h>
  9. const int DEFAULT_MAX_THREAD_NUM = 10;
  10. const int MAX_WORK_NUM = 100000;
  11. //c_worker类
  12. class c_work
  13. {
  14. public:
  15. c_work():process(NULL), arg(NULL), next(NULL){}
  16. c_work(void *(*prcss)(void *),void *arg):
  17. process(prcss), arg(arg), next(NULL) {}
  18. ~c_work();
  19. void *(*process)(void *);
  20. void *arg;
  21. unsigned char type;//最高位表示arg是否需要delete操作
  22. c_work *next;
  23. };
  24. c_work::~c_work()
  25. {
  26. unsigned char ifdel = type >> 7;
  27. if (ifdel)
  28. {
  29. delete arg;
  30. arg = NULL;
  31. }
  32. }
  33. class c_thread_pool
  34. {
  35. public:
  36. c_thread_pool();
  37. c_thread_pool(constint max_thread_num);
  38. ~c_thread_pool();
  39. int add_work(c_work work);
  40. static void *thread_routine(void *arg);
  41. pthread_mutex_t queue_lock;
  42. pthread_cond_t queue_cond;
  43. // private:
  44. c_work *queue_head;
  45. c_work *queue_tail;
  46. int shutdown;
  47. pthread_t *threadid;
  48. int max_thread_num;
  49. int cur_queue_size;
  50. };
  51. c_thread_pool::c_thread_pool()
  52. {
  53. pthread_mutex_init(&queue_lock, NULL);
  54. pthread_cond_init(&queue_cond, NULL);
  55. //工作队列初始化
  56. queue_head = NULL;
  57. queue_tail = NULL;
  58. max_thread_num = max_thread_num;
  59. cur_queue_size = 0;
  60. shutdown = 0;
  61. max_thread_num = DEFAULT_MAX_THREAD_NUM;
  62. threadid = new pthread_t[max_thread_num];
  63. int i = 0;
  64. for (i = 0; i < max_thread_num; i++)
  65. {
  66. pthread_create(&(threadid[i]), NULL, thread_routine, (void*)this);
  67. }
  68. }
  69. c_thread_pool::c_thread_pool(int max_thread_num)
  70. {
  71. pthread_mutex_init(&queue_lock, NULL);
  72. pthread_cond_init(&queue_cond, NULL);
  73. //工作队列初始化
  74. queue_head = NULL;
  75. queue_tail = NULL;
  76. max_thread_num = max_thread_num;
  77. cur_queue_size = 0;
  78. threadid = new pthread_t[max_thread_num];
  79. int i = 0;
  80. for (i = 0; i < max_thread_num; i++)
  81. {
  82. pthread_create(&(threadid[i]), NULL, thread_routine, (void*)this);
  83. }
  84. }
  85. /*向线程池中的任务队列加入任务*/
  86. int c_thread_pool::add_work(c_work work)
  87. {
  88. c_work *newwork = new c_work;
  89. newwork->process = work.process;
  90. newwork->arg = work.arg;
  91. newwork->next = NULL;
  92. pthread_mutex_lock(&queue_lock);
  93. /*将任务加入到等待队列中*/
  94. if (queue_head != NULL && queue_tail != NULL)
  95. {
  96. queue_tail->next = newwork;
  97. queue_tail = newwork;
  98. }
  99. else
  100. {
  101. //空队列
  102. queue_head = newwork;
  103. queue_tail = newwork;
  104. }
  105. cur_queue_size++;
  106. pthread_mutex_unlock(&queue_lock);
  107. /*等待队列中有任务了,唤醒一个等待线程,注意如果所有线程都在忙碌,这句没有任何作用*/
  108. pthread_cond_signal(&(queue_cond));
  109. printf("add work returned!\n");
  110. return 0;
  111. }
  112. void* c_thread_pool::thread_routine(void *arg)
  113. {
  114. c_thread_pool *pool = (c_thread_pool *)arg;
  115. int i = 0;
  116. while (1)
  117. {
  118. pthread_mutex_lock(&(pool->queue_lock));
  119. //如果等待队列为0并且不销毁线程池,则处于阻塞状态; 注意
  120. // pthread_cond_wait是一个原子操作,等待前会解锁,唤醒后会加锁
  121. //标注:注意这一如果任务队列不为空的话,while语句将被跳过,直接执行下面的调用。
  122. while (pool->cur_queue_size == 0 && pool->shutdown)
  123. {
  124. pthread_cond_wait(&(pool->queue_cond), &(pool->queue_lock));
  125. }
  126. //等待队列长度减去1,并取出链表中的头元素
  127. if (pool->cur_queue_size > 0 && pool->queue_head != NULL)
  128. {
  129. printf("IN THREAD ROUTINE size = %d && queue head is not NULL\n", pool->cur_queue_size);
  130. pool->cur_queue_size--;
  131. c_work *work = pool->queue_head;
  132. pool->queue_head = work->next;
  133. pthread_mutex_unlock(&(pool->queue_lock));
  134. //调用回调函数,执行测试任务
  135. //////////////////////////////////////////
  136. (*(work->process))(work->arg);
  137. free(work);
  138. work = NULL;
  139. }
  140. else //不可达
  141. {
  142. pthread_mutex_unlock(&(pool->queue_lock));
  143. }
  144. }
  145. }
  146. c_thread_pool::~c_thread_pool()
  147. {
  148. for (int i = 0; i < max_thread_num; ++i)
  149. pthread_cancel(threadid[i]);
  150. for (c_work *w_t = queue_head; w_t != NULL;)
  151. {
  152. c_work *temp = w_t->next;
  153. delete w_t;
  154. w_t = temp;
  155. }
  156. delete [] threadid;
  157. }