生产者消费者模型(C++实现)

#include "stdafx.h"
#include <iostream>
#include <memory>
#include <mutex>
#include <thread>
#include <condition_variable>

#ifdef _MSC_VER
#include <windows.h>	// windows
#else
#include <unistd.h>		// linux
#endif

// 跨平台的延时函数:毫秒
void mySleep(int milliseconds) {
#ifdef _MSC_VER
	Sleep(milliseconds);
#else
	sleep(milliseconds);
#endif
}


const int kProduceItems = 10000;	// 计划生产的产品个数
const int kRepositorySize = 3;	    // 仓库大小

// 仓库类
template<class T>
class Repository 
{
public:
	T items_buff[kRepositorySize];			// 数组实现环形队列

	std::mutex mtx;							// 生产者消费者互斥量
	std::mutex produce_mutex;				// 生产计数互斥量
	std::mutex consume_mutex;				// 消费计数互斥量
	std::condition_variable repo_not_full;	// 仓库不满条件变量
	std::condition_variable repo_not_empty;	// 仓库不空条件变量

	size_t produce_item_count;				// 生产数量计数
	size_t consume_item_count;				// 消费数量计数
	size_t produce_position;				// 下一个生产的位置
	size_t consume_position;				// 下一个消费的位置

	Repository() 
	{
		produce_item_count = 0;
		consume_item_count = 0;
		produce_position = 0;
		consume_position = 0;
	};
};

// 工厂类
template<class T>
class Factory 
{
private:
	Repository<T> repo;

	// 将生产好的产品放入仓库
	void ProduceItem(Repository<T> &repo, T item) 
	{
		std::unique_lock<std::mutex> lock(repo.mtx);
		// +1 后判断,因为在初始时,两者位于同一位置(因此仓库中最大存在 kRepositorySize-1 个产品)
		while ((repo.produce_position + 1) % kRepositorySize == repo.consume_position) {
			std::cout << "Repository is full, waiting..." << std::endl;
			repo.repo_not_full.wait(lock);			// 阻塞时释放锁,被唤醒时获得锁
		}
		repo.items_buff[repo.produce_position++] = item;
		if (repo.produce_position == kRepositorySize)
			repo.produce_position = 0;
		repo.repo_not_empty.notify_all();			// 唤醒所有因空阻塞的进程
		lock.unlock();
	}

	// 从仓库中拿取一个产品
	T ConsumeItem(Repository<T> &repo) 
	{
		std::unique_lock<std::mutex> lock(repo.mtx);
		while (repo.consume_position == repo.produce_position) {
			std::cout << "Repository is empty, waiting ..." << std::endl;
			repo.repo_not_empty.wait(lock);			// 阻塞时释放锁,被唤醒时获得锁
		}
		T data = repo.items_buff[repo.consume_position++];
		if (repo.consume_position == kRepositorySize)
			repo.consume_position = 0;
		repo.repo_not_full.notify_all();			// 唤醒所有因满阻塞的进程
		lock.unlock();
		return data;
	}

public:
	void ProduceTask() 
	{
		bool ready_to_exit = false;
		while (true) 
		{
			std::unique_lock<std::mutex> lock(repo.produce_mutex);

			if (repo.produce_item_count < kProduceItems) 
			{		
				// 结束线程条件
				repo.produce_item_count++;

				MyStudent* pStudent = new MyStudent();
				std::shared_ptr<MyStudent> pShpStudent(pStudent);
				pShpStudent->SetName("张三");

				T item = pShpStudent;
				std::cout << "producer id: " << std::this_thread::get_id()
					<< " is producing item:\t[" << item << "]" << std::endl;

				ProduceItem(repo, item);
			}
			else
			{
				ready_to_exit = true;
			}

			lock.unlock();
			if (ready_to_exit)
				break;
		}
	}

	void ConsumeTask() 
	{
		bool ready_to_exit = false;
		while (true) 
		{
			std::unique_lock<std::mutex> lock(repo.consume_mutex);

			if (repo.consume_item_count < kProduceItems) 
			{		// 结束线程条件
				T item = ConsumeItem(repo);

				// 消费产品代码块
				//----------------------------------------------------
				//mySleep(1000);		// 模仿消费产品需要的时间,实际运用中不需要
				std::cout << "consumer id: " << std::this_thread::get_id()
					<< " is consuming item:\t[" << item->GetName().c_str() << "]" << std::endl;
				//----------------------------------------------------

				repo.consume_item_count++;
			}
			else 
			{
				ready_to_exit = true;
			}

			lock.unlock();
			if (ready_to_exit)
				break;
		}
	}
};

class MyStudent
{
public:
	MyStudent(){}
	~MyStudent(){}

	void SetName(std::string strName)
	{
		this->m_strName = strName;
	}
	std::string GetName()
	{
		return m_strName;
	}
private:
	std::string m_strName;
};

int main()
{
	std::cout << "Main thread id :" << std::this_thread::get_id() << std::endl;

	class Factory<std::shared_ptr<MyStudent> > myfactory;
	
	//多消费者
	std::thread consumer1(&Factory<std::shared_ptr<MyStudent>>::ConsumeTask, &myfactory);
	std::thread consumer2(&Factory<std::shared_ptr<MyStudent>>::ConsumeTask, &myfactory);
	std::thread consumer3(&Factory<std::shared_ptr<MyStudent>>::ConsumeTask, &myfactory);

	//单生产者
	std::thread producer1(&Factory<std::shared_ptr<MyStudent>>::ProduceTask, &myfactory);
	//std::thread producer2(&Factory<int>::ProduceTask, &myfactory);

	producer1.join();
	//producer2.join();
	consumer1.join();
	consumer2.join();
	consumer3.join();
	getchar();
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

_君莫笑

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值