linux c语言 进程池实现,Linux下使用C实现线程池

在高并发需求下,以往的方案(有事件发生时创建新线程处理事件,处理完后销毁线程),这种方法由于创建线程和销毁线程浪费了大量的资源。因此转换一种思路,每次程序启动后先创建一些线程,让他们等事件发生,发生后再去处理,处理后不销毁,让他等待事件发生。

9af1558b014a

今天用宇宙最强语言C语言来实现一下,先看一下线程池定义的结构体:struct threadpool_t {

pthread_mutex_t lock;               /* 用于锁住本结构体 */

pthread_mutex_t thread_counter;     /* 记录忙状态线程的个数*/

pthread_cond_t queue_not_full;      /* 当任务队列满时,添加任务的线程阻塞,等待此条件变量 */

pthread_cond_t queue_not_empty;     /* 任务队列里不为空时,通知等待任务的线程 */

pthread_t *threads;                 /* 存放线程池中每个线程的tid。数组 */

pthread_t adjust_tid;               /* 存管理线程tid */

threadpool_task_t *task_queue;      /* 任务队列 */

int min_thr_num;                    /* 线程池最小线程数 */

int max_thr_num;                    /* 线程池最大线程数 */

int live_thr_num;                   /* 当前存活线程个数 */

int busy_thr_num;                   /* 忙状态线程个数 */

int wait_exit_thr_num;              /* 要销毁的线程个数 */

int queue_front;                    /* task_queue队头下标 */

int queue_rear;                     /* task_queue队尾下标 */

int queue_size;                     /* task_queue队中实际任务数 */

int queue_max_size;                 /* task_queue队列可容纳任务数上限 */

int shutdown;                       /* 标志位,线程池使用状态,true或false */

};

再来理一下线程池逻辑:

9af1558b014a

举个例子,以今日头条的服务器为例,每天早上8点到9点钟,大家看新闻的频率可能会比较大,因此服务器的访问量会很大,此时为了满足需求,就需要多创建一些线程来满足需求,当访问量高峰过去后,可能又会产生大量的空闲线程,空闲线程太多占用资源,因此需要释放掉一部分多余线程。当然创建的线程数量不能超过线程池最大允许的线程数,也不能小于线程池最小线程数,然而线程创建和释放应该由谁来做?因而需要专门创建一个线程来管理线程池的线程。

接来下看线程池创建函数:threadpool_t *threadpool_create(int min_thr_num, int max_thr_num, int queue_max_size)

{

int i;

threadpool_t *pool = NULL;

do {

if((pool = (threadpool_t *)malloc(sizeof(threadpool_t))) == NULL) {

printf("malloc threadpool fail");

break;/*跳出do while*/

}

pool->min_thr_num = min_thr_num;

pool->max_thr_num = max_thr_num;

pool->busy_thr_num = 0;

pool->live_thr_num = min_thr_num;               /* 活着的线程数 初值=最小线程数 */

pool->queue_size = 0;                           /* 有0个任务,刚创建线程池,没有任务*/

pool->queue_max_size = queue_max_size;

pool->queue_front = 0;

pool->queue_rear = 0;

pool->shutdown = false;                         /* 不关闭线程池 */

/* 根据最大线程上限数, 给工作线程数组开辟空间, 并清零 */

pool->threads = (pthread_t *)malloc(sizeof(pthread_t)*max_thr_num);

if (pool->threads == NULL) {

printf("malloc threads fail");

break;

}

memset(pool->threads, 0, sizeof(pthread_t)*max_thr_num);

/* 为任务队列开辟空间 */

pool->task_queue = (threadpool_task_t *)malloc(sizeof(threadpool_task_t)*queue_max_size);

if (pool->task_queue == NULL) {

printf("malloc task_queue fail");

break;

}

/* 初始化互斥琐、条件变量 */

if (pthread_mutex_init(&(pool->lock), NULL) != 0

|| pthread_mutex_init(&(pool->thread_counter), NULL) != 0

|| pthread_cond_init(&(pool->queue_not_empty), NULL) != 0

|| pthread_cond_init(&(pool->queue_not_full), NULL) != 0)

{

printf("init the lock or cond fail");

break;

}

/* 启动 min_thr_num 个 work thread */

for (i = 0; i 

pthread_create(&(pool->threads[i]), NULL, threadpool_thread, (void *)pool);/*pool指向当前线程池*/

printf("start thread 0x%x...\n", (unsigned int)pool->threads[i]);

}

pthread_create(&(pool->adjust_tid), NULL, adjust_thread, (void *)pool);/* 启动管理者线程 */

return pool;

} while (0);

threadpool_free(pool);      /* 前面代码调用失败时,释放poll存储空间 */

return NULL;

}

这段代码相对来说很容易理解,创建最小数量的线程和管理线程,初始化线程池

接下来先看一下向任务队列添加任务的代码:/* 向线程池中 添加一个任务 */

int threadpool_add(threadpool_t *pool, void*(*function)(void *arg), void *arg)

{

pthread_mutex_lock(&(pool->lock));

/*判断任务队列是否已满,队列已经满, 调wait阻塞 */

while ((pool->queue_size == pool->queue_max_size) && (!pool->shutdown)) {

pthread_cond_wait(&(pool->queue_not_full), &(pool->lock));

}

if (pool->shutdown) {

pthread_mutex_unlock(&(pool->lock));

}

/* 清空 工作线程 调用的回调函数 的参数arg */

if (pool->task_queue[pool->queue_rear].arg != NULL) {

free(pool->task_queue[pool->queue_rear].arg);

pool->task_queue[pool->queue_rear].arg = NULL;

}

/*添加任务到任务队列里*/

pool->task_queue[pool->queue_rear].function = function;

pool->task_queue[pool->queue_rear].arg = arg;

pool->queue_rear = (pool->queue_rear + 1) % pool->queue_max_size; /* 队尾指针移动, 模拟环形 */

pool->queue_size++;

/*添加完任务后,队列不为空,唤醒线程池中 等待处理任务的线程*/

pthread_cond_signal(&(pool->queue_not_empty));

pthread_mutex_unlock(&(pool->lock));

return 0;

}

这段代码的逻辑为:在向任务队列添加任务之前需要判断任务队列是否已满,若任务队列已满,则需要等待其他线程处理任务后任务队列不为满时再向任务队列添加任务。若此时线程池已经关闭,则没必要再添加任务,直接退出。若任务队列不为满且线程池状态正常,就向任务队列添加任务。并发送任务队列不为空的信号,唤醒组塞在任务队列为空的线程去处理任务。

接下来看工作线程处理任务的函数:/* 线程池中各个工作线程 */

void *threadpool_thread(void *threadpool)

{

threadpool_t *pool = (threadpool_t *)threadpool;

threadpool_task_t task;

while (true) {

/*刚创建出线程,等待任务队列里有任务,否则阻塞等待任务队列里有任务后再唤醒接收任务*/

pthread_mutex_lock(&(pool->lock));

/*queue_size == 0 说明没有任务,调 wait 阻塞在条件变量上, 若有任务,跳过该while*/

while ((pool->queue_size == 0) && (!pool->shutdown)) {

pthread_cond_wait(&(pool->queue_not_empty), &(pool->lock));

/*清除指定数目的空闲线程,如果要结束的线程个数大于0,结束线程*/

if (pool->wait_exit_thr_num > 0) {

pool->wait_exit_thr_num--;

/*如果线程池里线程个数大于最小值时可以结束当前线程*/

if (pool->live_thr_num > pool->min_thr_num) {

pool->live_thr_num--;

pthread_mutex_unlock(&(pool->lock));

pthread_exit(NULL);

}

}

}

/*如果指定了true,要关闭线程池里的每个线程,自行退出处理*/

if (pool->shutdown) {

pthread_mutex_unlock(&(pool->lock));

pthread_exit(NULL);     /* 线程自行结束 */

}

/*从任务队列里获取任务, 是一个出队操作*/

task.function = pool->task_queue[pool->queue_front].function;

task.arg = pool->task_queue[pool->queue_front].arg;

pool->queue_front = (pool->queue_front + 1) % pool->queue_max_size;       /* 出队,模拟环形队列 */

pool->queue_size--;

/*通知可以有新的任务添加进来*/

pthread_cond_broadcast(&(pool->queue_not_full));

/*任务取出后,立即将 线程池琐 释放*/

pthread_mutex_unlock(&(pool->lock));

/*执行任务*/

pthread_mutex_lock(&(pool->thread_counter));         /*忙状态线程数变量琐*/

pool->busy_thr_num++;                                /*忙状态线程数+1*/

pthread_mutex_unlock(&(pool->thread_counter));

(*(task.function))(task.arg);                        /*执行回调函数任务*/

//task.function(task.arg);                           /*执行回调函数任务*/

/*任务结束处理*/

pthread_mutex_lock(&(pool->thread_counter));

pool->busy_thr_num--;                                /*处理掉一个任务,忙状态数线程数-1*/

pthread_mutex_unlock(&(pool->thread_counter));

}

pthread_exit(NULL);

}

大家可以发现这段代码并不纯粹的是处理任务,中间的一部分是管理线程管理线程时需要让线程自己退出(自杀)。这段代码的逻辑也很简单,线程从任务队列中取任务前会请求条件变量queue_not_empty,此时若任务队列为空,该线程会被阻塞,等待任务队列出现任务。任务队列添加任务后,线程被唤醒,执行任务。

那么再来看一下中间穿插的与任务队列无关的那段代码,后面在管理线程的代码中我们会看到如果想要杀死一些线程,管理线程会发送一些队列中出现任务的信号(虚假的信号)来引导线程自杀(怎么感觉管理线程如此恶毒)。

接下来看看管理线程的代码:/* 管理线程 */

void *adjust_thread(void *threadpool)

{

int i;

threadpool_t *pool = (threadpool_t *)threadpool;

while (!pool->shutdown) {

sleep(DEFAULT_TIME);                                    /*定时 对线程池管理*/

pthread_mutex_lock(&(pool->lock));

int queue_size = pool->queue_size;                      /* 关注 任务数 */

int live_thr_num = pool->live_thr_num;                  /* 存活 线程数 */

pthread_mutex_unlock(&(pool->lock));

pthread_mutex_lock(&(pool->thread_counter));

int busy_thr_num = pool->busy_thr_num;                  /* 忙着的线程数 */

pthread_mutex_unlock(&(pool->thread_counter));

/* 创建新线程 算法: 任务数大于最小线程池个数, 且存活的线程数少于最大线程个数时 如:30>=10 && 40<100*/

if (queue_size >= MIN_WAIT_TASK_NUM && live_thr_num max_thr_num) {

pthread_mutex_lock(&(pool->lock));

int add = 0;

/*一次增加 DEFAULT_THREAD 个线程*/

for (i = 0; i max_thr_num && add 

&& pool->live_thr_num max_thr_num; i++) {

if (pool->threads[i] == 0 || !is_thread_alive(pool->threads[i])) {

pthread_create(&(pool->threads[i]), NULL, threadpool_thread, (void *)pool);

add++;

pool->live_thr_num++;

}

}

pthread_mutex_unlock(&(pool->lock));

}

/* 销毁多余的空闲线程 算法:忙线程X2 小于 存活的线程数 且 存活的线程数 大于 最小线程数时*/

if ((busy_thr_num * 2)  pool->min_thr_num) {

/* 一次销毁DEFAULT_THREAD个线程, 隨機10個即可 */

pthread_mutex_lock(&(pool->lock));

pool->wait_exit_thr_num = DEFAULT_THREAD_VARY;      /* 要销毁的线程数 设置为10 */

pthread_mutex_unlock(&(pool->lock));

for (i = 0; i 

/* 通知处在空闲状态的线程, 他们会自行终止*/

pthread_cond_signal(&(pool->queue_not_empty));

}

}

}

return NULL;

}

管理线程总共做两件事:

任务过多,现有线程忙不过来时创建线程

队列中多余线程太多时负责清理一些线程

添加的方法很简单,当满足某一条件时,循环创建一定量的线程(每次创建固定数量的线程)

清理线程的方法上文有提到,当需要清理线程时管理线程会发送一个虚假信号引导线程自杀。

接下来,销毁线程池:int threadpool_destroy(threadpool_t *pool)

{

int i;

if (pool == NULL) {

return -1;

}

pool->shutdown = true;

/*先销毁管理线程*/

pthread_join(pool->adjust_tid, NULL);

for (i = 0; i live_thr_num; i++) {

/*通知所有的空闲线程*/

pthread_cond_broadcast(&(pool->queue_not_empty));

}

for (i = 0; i live_thr_num; i++) {

pthread_join(pool->threads[i], NULL);

}

threadpool_free(pool);

return 0;

}

一些辅助函数:

int threadpool_all_threadnum(threadpool_t *pool)

{

int all_threadnum = -1;

pthread_mutex_lock(&(pool->lock));

all_threadnum = pool->live_thr_num;

pthread_mutex_unlock(&(pool->lock));

return all_threadnum;

}

int threadpool_busy_threadnum(threadpool_t *pool)

{

int busy_threadnum = -1;

pthread_mutex_lock(&(pool->thread_counter));

busy_threadnum = pool->busy_thr_num;

pthread_mutex_unlock(&(pool->thread_counter));

return busy_threadnum;

}

判断线程是否存活:

int is_thread_alive(pthread_t tid)

{

int kill_rc = pthread_kill(tid, 0);     //发0号信号,测试线程是否存活

if (kill_rc == ESRCH) {

return false;

}

return true;

}

9af1558b014a

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值