利用生产者与消费者模型实现线程池

#ifndef THREADPOOL_H
#define THREADPOOL_H

#include "array_queue.h"
typedef struct ThreadPool
{
	pthread_t* tid;
	size_t thread_cnt;
	void (*task)(void*);
	ArrayQueue* queue;
	pthread_mutex_t mutex;
	pthread_cond_t full;
	pthread_cond_t null;
}ThreadPool;

// 创建线程池
ThreadPool* tp_create(size_t cnt,size_t cal,void (*task)(void*));

// 销毁线程池
void tp_destory(ThreadPool* tp);

// 启动
void start(ThreadPool* tp);

// 生产
void tp_push(ThreadPool* tp,void* ptr);

// 消费
void* tp_pop(ThreadPool* tp);

#endif//THREADPOOL_H

#include <stdlib.h>
#include <pthread.h>
#include "threadpool.h"

// 创建线程池
ThreadPool* tp_create(size_t cnt,size_t cal,void (*task)(void*))
{
	ThreadPool* tp = malloc(sizeof(ThreadPool));
	tp->thread_cnt = cnt;
	tp->queue = create_queue(cal);
	tp->tid = malloc(sizeof(pthread_t)*cnt);
	tp->task = task;
	pthread_mutex_init(&tp->mutex,NULL);
	pthread_cond_init(&tp->full,NULL);
	pthread_cond_init(&tp->null,NULL);
	return tp;
}

// 销毁线程池
void tp_destory(ThreadPool* tp)
{
	for(int i=0; i<tp->thread_cnt; i++)
	{
		pthread_cancel(tp->tid[i]);
	}
	free(tp->tid);
	destory_queue(tp->queue);
	free(tp);
}

void* run(void* arg)
{
	ThreadPool* tp = arg;

	for(;;)
	{
		void* ptr = tp_pop(tp);
		tp->task(ptr);
	}
}

// 启动
void start(ThreadPool* tp)
{
	for(int i=0; i<tp->thread_cnt; i++)
	{
		pthread_create(&tp->tid[i],NULL,run,tp);
		printf("启动线程:%lu\n",tp->tid[i]);
	}
}

// 生产
void tp_push(ThreadPool* tp,void* ptr)
{
	pthread_mutex_lock(&tp->mutex);
	while(full_queue(tp->queue))
	{
		pthread_cond_wait(&tp->full,&tp->mutex);
	}
	printf("tp_push:%p\n",ptr);

	push_queue(tp->queue,ptr);
	pthread_mutex_unlock(&tp->mutex);
	pthread_cond_signal(&tp->null);
}

// 消费
void* tp_pop(ThreadPool* tp)
{
	pthread_mutex_lock(&tp->mutex);
	while(empty_queue(tp->queue))
	{
		pthread_cond_wait(&tp->null,&tp->mutex);
	}

	void* ptr = pop_queue(tp->queue);
	printf("tp_pop:%p\n",ptr);

	pthread_mutex_unlock(&tp->mutex);
	pthread_cond_signal(&tp->full);
	return ptr;
}
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值