我们先来打个比方,线程池就好像一个工具箱,我们每次需要拧螺丝的时候都要从工具箱里面取出一个螺丝刀来。有时候需要取出一个来拧,有时候螺丝多的时候需要多个人取出多个来拧,拧完自己的螺丝那么就会把螺丝刀再放回去,然后别人下次用的时候再取出来用。
说白了线程池就是相当于「提前申请了一些资源,也就是线程」,需要的时候就从线程池中取出线程来处理一些事情,处理完毕之后再把线程放回去。
我们来思考一个问题,为什么需要线程池呢?假如没有线程池的话我们每次调用线程是什么样子的?
显然首先是先创建一个线程,然后把任务交给这个线程,最后把这个线程销毁掉。这样实现起来非常简便,但是就会有一个问题:如果并发的线程数量很多,并且每个线程都是执行一个时间很短的任务就结束了,这样频繁创建线程就会大大降低系统的效率,因为频繁创建线程和销毁线程是需要消耗时间的。
那么如果我们改用线程池的话,在程序运行的时候就会首先创建一批线程,然后交给线程池来管理。有需要的时候我们从线程池中取出线程用于处理任务,用完后我们再将其回收到线程池中,这样是不是就避免了每次都需要创建和销毁线程这种耗时的操作。
有人会说你使用线程池一开始就消耗了一些内存,之后一直不释放这些内存,这样岂不是有点浪费。其实这是类似于空间换时间的概念,我们确实多占用了一点内存但是这些内存和我们珍惜出来的这些时间相比,是非常划算的。
池的概念是一种非常常见的空间换时间的概念,除了有线程池之外还有进程池、内存池等等。其实他们的思想都是一样的就是我先申请一批资源出来,然后就随用随拿,不用再放回来。
线程池的组成主要分为 3 个部分,这三部分配合工作就可以得到一个完整的线程池:
由于本篇是对线程池的简单介绍,所以简化了一下线程池的模型,将 1.3 中的「3. 管理者线程」的角色给去除了。
/* 任务结构体 */
typedef struct
{
void (*function)(void *);
void *arg;
} threadpool_task_t;
/* 线程池结构体 */
typedef struct
{
pthread_mutex_t lock; // 线程池锁,锁整个的线程池
pthread_cond_t notify; // 条件变量,用于告知线程池中的线程来任务了
int thread_count; // 线程池中的工作线程总数
pthread_t *threads; // 线程池中的工作线程
int started; // 线程池中正在工作的线程个数
threadpool_task_t *queue; // 任务队列
int queue_size; // 任务队列能容纳的最大任务数
int head; // 队头 -> 取任务
int tail; // 队尾 -> 放任务
int count; // 任务队列中剩余的任务个数
int shutdown; // 线程池状态, 0 表示线程池可用,其余值表示关闭
} threadpool_t;
thread_count 和 started 的区别:
shutdown 的作用:如果需要销毁线程池,那么必须要现将所有的线程退出才可销毁,而 shutdown 就是用于告知正在工作中的线程,线程池是否关闭用的。关闭方式又分为两种:一种是立即关闭,即不管任务队列中是否还有任务;另一种是优雅的关闭,即先处理完任务队列中的任务后再关闭。这两种方式可通过设置 shutdown 的不同取值即可实现:
typedef enum
{
immediate_shutdown = 1, // 立即关闭线程池
graceful_shutdown = 2 // 等线程池中的任务全部处理完成后,再关闭线程池
} threadpool_shutdown_t;
函数原型:int ThreadPool_Init(int thread_count, int queue_size, threadpool_t **ppstThreadPool);
头 文 件:#include "ThrdPool.h"
函数功能:初始化线程池
参数描述:
返 回 值:成功返回 E_SUCCEED,失败返回 E_ERROR
函数原型:int ThreadPool_Dispatch(threadpool_t *pstThreadPool, void (*function)(void *), void *arg);
头 文 件:#include "ThrdPool.h"
函数功能:向线程池的任务队列中分发任务
参数描述:
返 回 值:成功返回 E_SUCCEED,失败返回 E_ERROR
函数原型:void Threadpool_Destroy(threadpool_t *pool, threadpool_shutdown_t shutdown_mode);
头 文 件:#include "ThrdPool.h"
函数功能:销毁线程池
参数描述:
#ifndef __THRDPOOL_H__
#define __THRDPOOL_H__
#include
#include
#include
#include
#define DEBUG(format, args...) \
printf("[%s:%d] "format"\n", \
__FILE__, \
__LINE__, \
##args)
#define MAX_THREADS 16 // 线程池最大工作线程个数
#define MAX_QUEUE 256 // 线程池工作队列上限
#define E_SUCCEED 0
#define E_ERROR 112
#define SAFE_FREE(ptr) \
if (ptr) \
{ \
free(ptr); \
ptr = NULL; \
}
/* 任务结构体 */
typedef struct
{
void (*function)(void *);
void *arg;
} threadpool_task_t;
/* 线程池结构体 */
typedef struct
{
pthread_mutex_t lock; // 线程池锁,锁整个的线程池
pthread_cond_t notify; // 条件变量,用于告知线程池中的线程来任务了
int thread_count; // 线程池中的工作线程总数
pthread_t *threads; // 线程池中的工作线程
int started; // 线程池中正在工作的线程个数
threadpool_task_t *queue; // 任务队列
int queue_size; // 任务队列能容纳的最大任务数
int head; // 队头 -> 取任务
int tail; // 队尾 -> 放任务
int count; // 任务队列中剩余的任务个数
int shutdown; // 线程池状态, 0 表示线程池可用,其余值表示关闭
} threadpool_t;
typedef enum
{
immediate_shutdown = 1, // 立即关闭线程池
graceful_shutdown = 2 // 等线程池中的任务全部处理完成后,再关闭线程池
} threadpool_shutdown_t;
int ThreadPool_Init(int thread_count, int queue_size, threadpool_t **ppstThreadPool);
int ThreadPool_Dispatch(threadpool_t *pstThreadPool, void (*function)(void *), void *arg);
void Threadpool_Destroy(threadpool_t *pool, threadpool_shutdown_t shutdown_mode);
#endif
#include
#include
#include "ThrdPool.h"
/* 释放线程池 */
static void threadpool_free(threadpool_t *pool)
{
if (pool != NULL)
{
SAFE_FREE(pool->threads);
SAFE_FREE(pool->queue);
/* Because we allocate pool->threads after initializing the mutex and condition variable, we're sure they're initialized. Let's lock the mutex just in case. */
pthread_mutex_lock(&pool->lock);
pthread_mutex_destroy(&pool->lock);
pthread_cond_destroy(&pool->notify);
}
SAFE_FREE(pool);
return;
}
/* 线程池中的线程任务 */
static void *threadpool_threadfunc(void *threadpool)
{
threadpool_t *pool = (threadpool_t *)threadpool;
threadpool_task_t task;
DEBUG("CreateThreadpool:STID[%ld].", pthread_self());
for (;;)
{
pthread_mutex_lock(&pool->lock);
while (pool->count == 0 && pool->shutdown == 0) // 必须使用 while 循环等待任务
{
pthread_cond_wait(&pool->notify, &pool->lock);
}
/* 判断线程池是否关闭 */
if (pool->shutdown == immediate_shutdown ||
(pool->shutdown == graceful_shutdown && pool->count == 0))
{
break; // 退出当前的线程
}
/* 从任务队列中取出任务 */
task.function = pool->queue[pool->head].function;
task.arg = pool->queue[pool->head].arg;
pool->head = (pool->head + 1) % pool->queue_size;
pool->count--;
pthread_mutex_unlock(&pool->lock);
/* 执行任务 */
(*(task.function))(task.arg);
}
pool->started--; // 当前线程退出,正在工作线程个数--
DEBUG("DeleteThreadpool:STID[%ld], start[%d].", pthread_self(), pool->started);
pthread_mutex_unlock(&pool->lock);
pthread_exit(NULL);
}
/* 向线程池中新增任务 */
static int threadpool_add(threadpool_t *pool, void (*function)(void *), void *arg)
{
int iRet = E_SUCCEED;
if (pool == NULL || function == NULL)
{
DEBUG("Invalid param.");
return E_ERROR;
}
pthread_mutex_lock(&pool->lock);
do
{
// 任务队列满了?
if (pool->count == pool->queue_size)
{
iRet = E_ERROR;
DEBUG("ThreadPool is full.");
break;
}
// 线程池关了?
if (pool->shutdown)
{
iRet = E_ERROR;
DEBUG("ThreadPool is shutdown.");
break;
}
pool->queue[pool->tail].function = function;
pool->queue[pool->tail].arg = arg;
pool->tail = (pool->tail + 1) % pool->queue_size;
pool->count++;
// 告知线程们来任务了
if (pthread_cond_signal(&pool->notify) != 0)
{
iRet = E_ERROR;
DEBUG("Fail to call pthread_cond_signal, errno[%d](%s).", errno, strerror(errno));
break;
}
} while (0);
pthread_mutex_unlock(&pool->lock);
return iRet;
}
/* 创建线程池 */
static threadpool_t *threadpool_create(int thread_count, int queue_size)
{
threadpool_t *pool;
if (thread_count <= 0 || thread_count > MAX_THREADS || queue_size <= 0 || queue_size > MAX_QUEUE)
{
DEBUG("Invalid param.");
return NULL;
}
pool = (threadpool_t *)malloc(sizeof(threadpool_t));
if (pool == NULL)
{
DEBUG("Fail to call malloc.");
goto err;
}
/* 线程池初始化 */
pool->thread_count = thread_count;
pool->started = 0;
pool->queue_size = queue_size;
pool->head = pool->tail = pool->count = 0;
pool->shutdown = 0;
/* 线程池工作线程初始化 */
pool->threads = (pthread_t *)malloc(sizeof(pthread_t) * thread_count);
if (pool->threads == NULL)
{
DEBUG("Fail to call malloc.");
goto err;
}
/* 线程池任务队列初始化 */
pool->queue = (threadpool_task_t *)malloc(sizeof(threadpool_task_t) * queue_size);
if (pool->queue == NULL)
{
DEBUG("Fail to call malloc.");
goto err;
}
/* 锁、信号量初始化 */
if (pthread_mutex_init(&pool->lock, NULL) != 0)
{
DEBUG("Fail to call pthread_mutex_init, errno[%d](%s).", errno, strerror(errno));
goto err;
}
if (pthread_cond_init(&pool->notify, NULL) != 0)
{
DEBUG("Fail to call pthread_cond_init, errno[%d](%s).", errno, strerror(errno));
goto err;
}
/* 创建工作线程,并分配任务 */
int i;
for (i = 0; i < thread_count; i++)
{
if (pthread_create(&pool->threads[i], NULL, threadpool_threadfunc, (void *)pool) != 0)
{
DEBUG("Create the %dth thread failed, errno[%d](%s).", i + 1, errno, strerror(errno));
goto err;
}
pool->started++; // 开始工作的工作线程个数++
}
DEBUG("[thread_count / started](%d / %d).", pool->thread_count, pool->started);
return pool;
err:
if (pool)
{
threadpool_free(pool);
}
return NULL;
}
/* 初始化线程池 */
int ThreadPool_Init(int thread_count, int queue_size, threadpool_t **ppstThreadPool)
{
threadpool_t *pool = threadpool_create(thread_count, queue_size);
if (pool == NULL)
{
DEBUG("Fail to call threadpool_create.");
return E_ERROR;
}
*ppstThreadPool = pool;
return E_SUCCEED;
}
/* 任务分发 */
int ThreadPool_Dispatch(threadpool_t *pstThreadPool, void (*function)(void *), void *arg)
{
int iRet = threadpool_add(pstThreadPool, function, arg);
if (iRet != E_SUCCEED)
{
DEBUG("Fail to call threadpool_add.");
return E_ERROR;
}
return E_SUCCEED;
}
/* 销毁线程池 */
void Threadpool_Destroy(threadpool_t *pool, threadpool_shutdown_t shutdown_mode)
{
if (pool == NULL || pool->shutdown)
{
DEBUG("pool has been destroyed.");
return;
}
pthread_mutex_lock(&pool->lock);
pool->shutdown = shutdown_mode; // 根据 shutdown_mode 确定关闭模式
pthread_cond_broadcast(&pool->notify); // 唤醒所有的工作线程
pthread_mutex_unlock(&pool->lock);
int i;
for (i = 0; i < pool->thread_count; i++)
{
pthread_join(pool->threads[i], NULL); // join all worker thread
}
threadpool_free(pool); // 释放线程池资源
}
#include
#include "ThrdPool.h"
#define THREAD_COUNT 4
#define QUEUE_SIZE 128
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; // 静态初始化锁,用于保证第 15 行的完整输出
void func(void *arg)
{
static int num = 0;
pthread_mutex_lock(&mutex);
DEBUG("这是执行的第 %d 个任务", ++num); // 为方便观察,故特意输出该语句,并使用num来区分不同的任务
usleep(100000); // 模拟任务耗时,100ms
pthread_mutex_unlock(&mutex);
return;
}
int main()
{
int iRet;
threadpool_t *pool;
iRet = ThreadPool_Init(THREAD_COUNT, QUEUE_SIZE, &pool);
if (iRet != E_SUCCEED)
{
return 0;
}
int i;
for (i = 0; i < 20; i++) // 生产者,向任务队列中塞入 20 个任务
{
ThreadPool_Dispatch(pool, func, NULL);
}
usleep(500000);
// Threadpool_Destroy(pool, immediate_shutdown); // 立刻关闭线程池
Threadpool_Destroy(pool, graceful_shutdown); // 等任务执行完毕后方可关闭
return 0;
}