• Linux系统编程系列之线程池


     Linux系统编程系列(16篇管饱,吃货都投降了!)

            1、Linux系统编程系列之进程基础

            2、Linux系统编程系列之进程间通信(IPC)-信号

            3、Linux系统编程系列之进程间通信(IPC)-管道

            4、Linux系统编程系列之进程间通信-IPC对象

            5、Linux系统编程系列之进程间通信-消息队列

            6、Linux系统编程系列之进程间通信-共享内存

            7、Linux系统编程系列之进程间通信-信号量组

            8、Linux系统编程系列之守护进程

            9、Linux系统编程系列之线程

            10、Linux系统编程系列之线程属性 

            11、Linux系统编程系列之互斥锁和读写锁

            12、Linux系统编程系列之线程的信号处理

            13、Linux系统编程系列之POSIX信号量

            14、Linux系统编程系列之条件变量

            15、Linux系统编程系列之死锁

            16、 Linux系统编程系列之线程池

    一、什么是线程池

            线程池就是将许多线程,放置在一个池子中(实际就是一个结构体)只要有任务,就将任务投入池中,这些线程们通过某些机制,及时处理这些任务,一旦处理完后又重新回到池子中重新接收新任务。为了便于管理,线程池还应当提供诸如初始化线程池,增删线程数量,检测未完成任务的数据,检测正在执行任务的线程的数量、销毁线程池等等基本操作。

    二、特性

            1、更好的满足并发性需求

            2、更加节省系统资源,降低负载

            3、避免每次需要执行任务时都创建新的线程

            4、可以限制并发线程数量,帮助控制应用程序的性能和稳定性

            核心思想:通过精巧的设计使得池子中的线程数量可以动态地发生变化,让线程既可以应对并发性需求,又不会浪费系统资源

    三、使用场景

            用来应对某种场景,要在程序中创建大量线程,并且这些线程的数量和生命周期均不确定,可能方生方死,也可能常驻内存,请看下面举例。

            1、处理大量密集型任务

            线程池可以处理多个任务,从而减少了创建和销毁线程的开销,提高了系统性能

            2、服务端应用程序

            线程池可以帮助服务端应用程序同时处理多个客户端请求

            3、I/O 密集型应用程序

            线程池可以处理 I/O 操作,允许系统使用空闲时间进行其他任务处理

            4、Web 应用程序

            线程池可以处理来自 Web 客户端的请求,从而提高了 Web 应用程序的性能

            总之,任何需要处理大量任务或需要同时处理多个请求的应用程序都可以使用线程池来提高性能和效率。

    四、设计思想

            设计某个东西一定要有个目标,这里是要求设计一个线程池,首先要明白线程池的作用,然后根据其作用来展开设计。线程池是通过让线程的数量进行动态的变化来及时处理接受的任务,所以核心就是线程和任务。可以将问题转换为如何组织线程和组织任务?借鉴别人的一幅图

             1、如何组织线程

                    从上图可以看出,线程被创建出来之后,都处于睡眠态,它们实际上是进入了条件变量的等待队列中,而任务都被放入一个链表,被互斥锁保护起来

                    线程的生命周期如下:(这里省略程序执行的流程图)

                    (1)、线程被创建

                    (2)、预防死锁,准备好退出处理函数,防止在持有一把锁的状态中死去

                    (3)、尝试持有互斥锁(等待任务)

                    (4)、判断是否有任务,若无则进入条件变量等待队列睡眠,若有则进入第(5)步

                    (5)、从任务链表中取得一个任务

                    (6)、释放互斥锁

                    (7)、弹出退出处理函数,避免占用内存

                    (8)、执行任务

                    (9)、执行任务完成后重新回到第(2)步

                    线程的生命周期其实就是线程要做的事情,把上面的第(2)步到第(8)步写成一个线程的例程函数。

             2、如何组织任务

                    所谓的任务就是一个函数,回想一下创建一条线程时,是不是要指定一个线程例程函数。这里的线程池做法是将函数(准确的说是函数指针)及其参数存入一个任务节点,并将节点链接成一个链表。所以现在的问题变成如何设计一个任务链表?

                    一个链表的操作有:创建节点,增加节点,删除节点,查询节点这几步。由于这里是任务节点,就不需要查询了,当然也可以查询。所以现在的问题转换为任务节点如何设计?

                    任务节点的数据域主要有函数指针和函数参数,指针域就是一个简单任务结点指针,也可以是双向循环链表。

                    设计分析到这里,基本上有了框架了,前面买了这么多关子,下面就来个重头戏。其实前面主要是想描述一种设计思想,遇到新的东西如何设计它?首先要明白设计的目的和作用,然后找出核心点,最后就是把核心点进行不断的分析推理,一步步转换为最基本的问题。学过项目管理的同学应该听过在范围管理里有个叫工作分解结构的东西,这里跟那个差不多。

    五、案例

            实现一个线程池,并完成线程池的基本操作演示

            thread_pool.h(线程池头文件)

    1. #ifndef _THREAD_POOL_H
    2. #define _THREAD_POOL_H
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #define MAX_WAITING_TASKS 1000 // 最大的等待任务数量
    9. #define MAX_ACTIVE_THREADS 20 // 最多的活跃线程数量
    10. // 任务节点
    11. typedef struct task
    12. {
    13. void *(*do_task) (void *arg); // 函数指针
    14. void *arg; // 函数参数
    15. struct task *next; // 指向下一个任务节点
    16. }task;
    17. // 线程池的管理节点
    18. typedef struct thread_pool
    19. {
    20. pthread_mutex_t task_list_lock; // 任务列表互斥锁,保证同一个时间只有一条线程进行访问
    21. pthread_cond_t task_list_cond; // 任务列表条件变量,保证没有任务时,线程进入睡眠
    22. task *task_list; // 任务列表
    23. pthread_t *tids; // 存放线程号的数组
    24. int shutdown; // 线程池销毁的开关
    25. unsigned int max_waiting_tasks; // 最大等待的任务数量
    26. unsigned int waiting_tasks; // 正在等待被处理的任务数量
    27. unsigned int active_threads; // 正在活跃的线程数
    28. }thread_pool;
    29. // 初始化线程池
    30. int init_pool(thread_pool *pool, unsigned int threads_number);
    31. // 往线程池中添加任务
    32. int add_task(thread_pool *pool, void *(*do_task)(void *arg), void *arg);
    33. // 往线程池中添加线程
    34. int add_thread(thread_pool *pool, unsigned int additional_threads);
    35. // 从线程池中删除线程
    36. int remove_thread(thread_pool *pool, unsigned int removing_threads);
    37. // 查询线程池中线程数量
    38. int total_thread(thread_pool *pool);
    39. // 销毁线程池
    40. int destroy_pool(thread_pool *pool);
    41. // 线程的例程函数
    42. void *routine(void *arg);
    43. #endif // _THREAD_POOL_H

            thread_pool.c(线程池实现文件) 

    1. #include "thread_pool.h"
    2. // 初始化线程池
    3. int init_pool(thread_pool *pool, unsigned int threads_number)
    4. {
    5. if(threads_number < 1)
    6. {
    7. printf("warning: threads_number must bigger than 0\n");
    8. return -1;
    9. }
    10. if(threads_number > MAX_ACTIVE_THREADS)
    11. {
    12. printf("warning: threads number is bigger than MAX_ACTIVE_THREADS(%u)\n", MAX_ACTIVE_THREADS);
    13. return -1;
    14. }
    15. pthread_mutex_init(&pool->task_list_lock, NULL); // 初始化互斥锁
    16. pthread_cond_init(&pool->task_list_cond, NULL); // 初始化条件变量
    17. pool->task_list = calloc(1, sizeof(task)); // 申请一个任务头节点
    18. if(!pool->task_list)
    19. {
    20. printf("error: task_list calloc fail\n");
    21. return -1;
    22. }
    23. pool->task_list->next = NULL; // 让任务头节点指向NULL
    24. pool->tids = calloc(MAX_ACTIVE_THREADS, sizeof(pthread_t)); // 申请堆数组用来存放线程号
    25. if(!pool->tids)
    26. {
    27. printf("error: tids calloc fail\n");
    28. return -1;
    29. }
    30. pool->shutdown = 0; // 关闭线程池销毁开发
    31. pool->waiting_tasks = 0; // 当前等待任务为0
    32. pool->max_waiting_tasks = MAX_WAITING_TASKS; // 初始化最大等待任务数量
    33. pool->active_threads = threads_number; // 初始化活跃的线程数
    34. // 根据活跃的线程数,创建对应数量的线程
    35. for(int i = 0; i < pool->active_threads; i++)
    36. {
    37. // 需要判断线程是否创建失败
    38. // 线程号用线程号数组,线程属性设置为默认的,例程函数是routine,函数参数是线程池
    39. errno = pthread_create(&pool->tids[i], NULL, routine,(void*)pool);
    40. if(errno != 0)
    41. {
    42. perror("error: pthread_create fail");
    43. return -1;
    44. }
    45. }
    46. return 1;
    47. }
    48. // 往线程池中添加任务
    49. int add_task(thread_pool *pool, void *(*do_task)(void *arg), void *arg)
    50. {
    51. if(!pool)
    52. {
    53. printf("warning: thread_pool is null\n");
    54. return -1;
    55. }
    56. // 如果当前等待执行的任务数超过最大等待的任务数量,则退出
    57. if(pool->waiting_tasks >= pool->max_waiting_tasks)
    58. {
    59. printf("warning: task_list is full, too many list\n");
    60. return -1;
    61. }
    62. // 尝试给新的任务节点申请空间
    63. task *new_task = (task*)malloc(sizeof(task));
    64. if(!new_task)
    65. {
    66. printf("error: task malloc fail\n");
    67. return -1;
    68. }
    69. // 初始化任务节点
    70. new_task->do_task = do_task;
    71. new_task->arg = arg;
    72. new_task->next = NULL;
    73. // 把任务节点添加到任务列表最后面
    74. // 1、上锁
    75. pthread_mutex_lock(&pool->task_list_lock);
    76. // 2、先找到任务列表末尾
    77. task *tmp = NULL;
    78. for(tmp = pool->task_list; tmp->next; tmp = tmp->next);
    79. // 3、添加新任务到任务列表末尾,同时当前等待任务数+1
    80. tmp->next = new_task;
    81. pool->waiting_tasks++;
    82. // 4、解锁
    83. pthread_mutex_unlock(&pool->task_list_lock);
    84. // 唤醒一个正在条件变量中睡眠等待的线程,取执行任务
    85. pthread_cond_signal(&pool->task_list_cond);
    86. return 1;
    87. }
    88. // 往线程池中添加线程,返回实际添加的线程数量
    89. int add_thread(thread_pool *pool, unsigned int additional_threads)
    90. {
    91. if(!pool)
    92. {
    93. printf("warning: thread_pool is null\n");
    94. return -1;
    95. }
    96. if(additional_threads == 0)
    97. {
    98. return 0;
    99. }
    100. // 期望活跃的线程数 = 目前活跃的线程数 + 期望添加的线程数
    101. unsigned int total_threads = pool->active_threads + additional_threads;
    102. // 如果超过最大的活跃线程数就打印警告
    103. if(total_threads > MAX_ACTIVE_THREADS)
    104. {
    105. printf("warning: add too many threads\n");
    106. }
    107. int actual_add_threads = 0;
    108. for(int i = pool->active_threads; i < total_threads && i < MAX_ACTIVE_THREADS; i++)
    109. {
    110. // 需要判断线程是否创建失败
    111. // 线程号用线程号数组,线程属性设置为默认的,例程函数是routine,函数参数是线程池
    112. errno = pthread_create(&pool->tids[i], NULL, routine,(void*)pool);
    113. if(errno != 0)
    114. {
    115. perror("error: pthread_create fail");
    116. // 如果一个都没有创建成功,就直接返回
    117. if(actual_add_threads == 0)
    118. {
    119. return -1;
    120. }
    121. // 如果成功创建了多个线程,但是本次创建失败,就跳出循环
    122. break;
    123. }
    124. else
    125. {
    126. actual_add_threads++; // 线程创建成功就+1
    127. }
    128. }
    129. // 更新线程池中活跃的线程数
    130. pool->active_threads += actual_add_threads;
    131. return actual_add_threads; // 返回实际添加的线程
    132. }
    133. // 从线程池中删除线程,返回实际删除线程的数量
    134. int remove_thread(thread_pool *pool, unsigned int removing_threads)
    135. {
    136. if(!pool)
    137. {
    138. printf("warning: thread_pool is null\n");
    139. return -1;
    140. }
    141. if(removing_threads == 0)
    142. {
    143. return pool->active_threads;
    144. }
    145. // 如果要删除的线程数大于线程池中活跃的线程数,则打印警告
    146. if(removing_threads >= pool->active_threads)
    147. {
    148. printf("warning: remove too many threads\n");
    149. }
    150. // 剩余数量 = 活跃数量 - 删除的目标数
    151. int remaining_threads = pool->active_threads - removing_threads;
    152. // 目的是为了让线程池中最少保留有一个线程可以用于执行任务
    153. remaining_threads = remaining_threads > 0 ? remaining_threads : 1;
    154. int actual_remove_threads = 0;;
    155. // 循环取消线程直到等于期望线程数
    156. for(int i = pool->active_threads-1; i > remaining_threads-1; i--)
    157. {
    158. errno = pthread_cancel(pool->tids[i]);
    159. if(errno != 0)
    160. {
    161. printf("[%ld] cancel error: %s\n", pool->tids[i], strerror(errno));
    162. break;
    163. }
    164. else
    165. {
    166. actual_remove_threads++;
    167. }
    168. }
    169. // 更新线程池中活跃的线程数量
    170. pool->active_threads -= actual_remove_threads;
    171. return actual_remove_threads; // 返回实际删除的线程
    172. }
    173. // 查询线程池中线程数量
    174. int total_thread(thread_pool *pool)
    175. {
    176. return pool->active_threads;
    177. }
    178. // 销毁线程池
    179. int destroy_pool(thread_pool *pool)
    180. {
    181. if(!pool)
    182. {
    183. printf("warning: thread_pool is null\n");
    184. return -1;
    185. }
    186. pool->shutdown = 1; // 启动线程池销毁开关
    187. pthread_cond_broadcast(&pool->task_list_cond); // 唤醒所有在线程池中的线程
    188. // 循环等待所有线程退出
    189. for(int i = 0; i < pool->active_threads; i++)
    190. {
    191. errno = pthread_join(pool->tids[i], NULL);
    192. if(errno != 0)
    193. {
    194. printf("join tids[%d] error: %s\n", i, strerror(errno));
    195. }
    196. else
    197. {
    198. printf("[%ld] is joined\n", pool->tids[i]);
    199. }
    200. }
    201. // 先上锁
    202. pthread_mutex_lock(&pool->task_list_lock);
    203. // 头删法,从头一个个的删除任务节点
    204. for(task *p = pool->task_list->next; p; p = pool->task_list)
    205. {
    206. pool->task_list->next = p->next; // 修改首元节点
    207. free(p);
    208. }
    209. free(pool->task_list);
    210. pool->task_list = NULL; // 安全保证
    211. // 解锁
    212. pthread_mutex_unlock(&pool->task_list_lock);
    213. free(pool->tids);
    214. free(pool);
    215. pool->tids = NULL; // 安全保证
    216. pool = NULL; // 安全保证
    217. return 1;
    218. }
    219. // 线程的取消函数
    220. void pthread_cancel_handler(void *arg)
    221. {
    222. printf("[%ld] is cancel\n", pthread_self());
    223. pthread_mutex_unlock((pthread_mutex_t*)arg); // 解锁
    224. }
    225. // 线程的例程函数
    226. void *routine(void *arg)
    227. {
    228. task *task_p; // 任务指针,用来执行将要执行的任务
    229. thread_pool *pool = (thread_pool*)arg;
    230. while(1)
    231. {
    232. pthread_cleanup_push(pthread_cancel_handler, (void*)&pool->task_list_lock);
    233. // 尝试持有互斥锁
    234. pthread_mutex_lock(&pool->task_list_lock);
    235. // 判断是否有任务,没有则进入睡眠
    236. // 1、没有任务,线程池销毁开关断开,则进入条件变量等待队列
    237. while(!pool->waiting_tasks && !pool->shutdown)
    238. {
    239. // 当条件不满足时,会先自动解锁pool->lock,然后等待到条件满足后,会自动上锁pool->lock
    240. pthread_cond_wait(&pool->task_list_cond, &pool->task_list_lock);
    241. }
    242. // 2、线程池销毁开发闭合,不管有没有任务,先解锁,然后退出,准备销毁线程池
    243. if(pool->shutdown)
    244. {
    245. pthread_mutex_unlock(&pool->task_list_lock); // 需要解锁
    246. pthread_exit(NULL);
    247. }
    248. // 3、有任务,线程池销毁开关断开,则取一个任务
    249. if(pool->waiting_tasks && !pool->shutdown)
    250. {
    251. task_p = pool->task_list->next;
    252. pool->task_list->next = task_p->next; // 弹出第一任务节点
    253. pool->waiting_tasks--; // 当前等待的任务数量-1,
    254. pthread_mutex_unlock(&pool->task_list_lock); // 解锁
    255. }
    256. // 弹出压入的线程取消函数,运行到这里不执行,但是当线程在前面被意外取消或中断会执行
    257. pthread_cleanup_pop(0);
    258. // 为了防止死锁,执行任务期间不接受线程取消请求
    259. pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
    260. (task_p->do_task)(task_p->arg); // 通过函数指针的方式执行任务
    261. // 执行完任务后,接受线程取消请求
    262. pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
    263. free(task_p); // 删除任务节点
    264. task_p = NULL; // 安全保证
    265. }
    266. pthread_exit(NULL);
    267. }

            main.c(线程池操作演示文件) 

    1. // 线程池的测试案例
    2. #include
    3. #include
    4. #include "thread_pool.h"
    5. void *mytask(void *arg)
    6. {
    7. int n = rand()%10;
    8. printf("[%ld][%s] ==> job will be done in %d sec...\n", pthread_self(), __FUNCTION__, n);
    9. sleep(n);
    10. printf("[%ld][%s] ==> job done!\n", pthread_self(), __FUNCTION__);
    11. }
    12. void *func(void *arg )
    13. {
    14. printf("this is a test by [%s]\n", (char*)arg);
    15. sleep(1);
    16. printf("test finish...\n");
    17. }
    18. void *count_time(void *arg)
    19. {
    20. int i = 0;
    21. while(1)
    22. {
    23. sleep(1);
    24. printf("sec: %d\n", ++i);
    25. }
    26. }
    27. int main(void)
    28. {
    29. pthread_t a;
    30. pthread_create(&a, NULL, count_time, NULL);
    31. // 1、初始化线程池
    32. thread_pool *pool = malloc(sizeof(thread_pool));
    33. init_pool(pool, 2);
    34. // 2、投放任务
    35. printf("throwing 3 tasks...\n");
    36. add_task(pool, mytask, NULL);
    37. add_task(pool, mytask, NULL);
    38. add_task(pool, mytask, NULL);
    39. // 3、查看当前线程池中的线程数量
    40. printf("current thread number: %d\n", total_thread(pool));
    41. sleep(9);
    42. // 4、再次投放任务
    43. printf("throwing another 2 tasks...\n");
    44. add_task(pool, mytask, NULL);
    45. add_task(pool, mytask, NULL);
    46. add_task(pool, func, (void *)"Great Macro");
    47. // 5、添加2条线程
    48. printf("try add 2 threads, actual add %d\n", add_thread(pool, 2));
    49. printf("current thread number: %d\n", total_thread(pool));
    50. sleep(5);
    51. // 6、删除3条线程
    52. printf("try remove 3 threads, actual remove: %d\n", remove_thread(pool, 3));
    53. printf("current thread number: %d\n", total_thread(pool));
    54. sleep(5);
    55. // 7、 销毁线程池
    56. printf("destroy thread pool\n");
    57. destroy_pool(pool);
    58. return 0;
    59. }

            注:编译时,把线程池文件和测试文件放在同一个工作目录下。

            实际使用时,只需要把thread_pool.h和thread_pool.c拷贝到自己的工程目录下,然后根据规则操作线程池。

    六、总结

            线程池是许多线程的集合,它不是线程组。线程池适用于任何需要处理大量任务或需要同时处理多个请求的应用程序的场景,可以提供性能和效率。

            至此,Linux系统编程系列,16篇完结撒花,历时5天,这年中秋国庆没有假放!!!

  • 相关阅读:
    Flv.js编译使用
    Android MQTT连接阿里云使用Json解析数据
    机器学习笔记 - CRAFT(文本检测的字符区域感知)论文解读
    deepar,传统概率模型如何和深度学习结合的?
    【C语言】strcpy等string函数和memcpy等memory函数的实现,经典方法
    如何查看mysql的存储引擎
    【Vue框架】vue组件的生命周期
    springboot篮球论坛系统springboot034
    esp32 Micropython 使用多线程驱动EC11编码器
    高频react面试题自检
  • 原文地址:https://blog.csdn.net/AABond/article/details/133419014