当前位置:   article > 正文

【Linux】多线程——生产者和消费者模型_linux 线程生产者消费者 生产多个产品

linux 线程生产者消费者 生产多个产品

目录

1 生活中的例子

2 为何要使用生产者消费者模型

3 生产者和消费者模型的特点

优点

4 如何理解生产消费模型提高了效率?

5 基于BlockingQueue(阻塞队列)的生产者消费者模型

C++ queue模拟阻塞队列的生产消费模型 


1 生活中的例子

存在多个消费者,消费者对于商品的一次消费是小量的而且时间是不确定的,供货商一次生产的商品是大量的且时间是确定的(在工人的上班时间才能操作机械生产)。消费者没有能力也没有必要一次性购入多个相同的商品,供货商多次生产量小商品的成本比一次生产大量商品的成本高;消费者一般都在城区里生活,供货商的厂房一般都远离城区,所以消费者不方便到郊区购买产品。为了解决以上种种苦难,中间商——超市就出来了!在城区里面建立超市,对供货商,大批运入大量的产品;对消费者,可以提供多种多样的产品。生产者不需要等消费者消费的时候才生产产品,消费者消费的时候不用等生产者生产产品。通过超市,将生产者和消费者之间进行了解耦合,提高了效率,解决了忙闲不不均的问题!

2 为何要使用生产者消费者模型

生产者消费者模式就是通过一个容器来解决生产者和消费者的强耦合问题。生产者和消费者彼此之间不直接通讯,而通过阻塞队列来进行通讯,所以生产者生产完数据之后不用等待消费者处理,直接扔给阻塞队列,消费者不找生产者要数据,而是直接从阻塞队列里取,阻塞队列就相当于一个缓冲区,平衡了生产者和消费者的处理能力。这个阻塞队列就是用来给生产者和消费者解耦的。 

3 生产者和消费者模型的特点

首先,交易场所必须先被所有的线程看到(生产者和消费者线程)!注定了交易场所一定是一个会被多线程并发访问的公共区域,注定了多线程一定要保护共享资源的安全,注定了,在这种情况下,程序员一定要自己维护线程互斥与同步的关系!

问题:如何维护线程的互斥和同步的关系?--通过生产消费模型中,各个角色之间的关系!

优点

  • 解耦
  • 支持并发
  • 支持忙闲不均

4 如何理解生产消费模型提高了效率?

首先明确的是,高效并不体现在从仓库中放入数据和提取数据中,因为这是串发的!

其次,我们要明确的是,生产者生产数据的过程可能漫长且独立的,消费者消费(处理)数据的时候可能漫长且独立的。

所以,提高的效率就体现在产生数据和处理数据上,因为可以多线程产出的数据,多线程处理数据,并发进行。生产数据和处理数据之间不需要相互等待,直接从仓库中存拿即可。

5 基于BlockingQueue(阻塞队列)的生产者消费者模型

BlockingQueue

在多线程编程中阻塞队列(Blocking Queue)是一种常用于实现生产者和消费者模型的数据结构。其与普通的队列区别在于,当队列为空时,从队列获取元素的操作将会被阻塞,直到队列中被放入了元素;当队列满时,往队列里存放元素的操作也会被阻塞,直到有元素被从队列中取出(以上的操作都是基于不同的线程来说的,线程在对阻塞队列进程操作时会被阻塞用管道进行进程间通信就是这个原理)

C++ queue模拟阻塞队列的生产消费模型 

  1. #include<iostream>
  2. #include<queue>
  3. #include<pthread.h>
  4. const int N=5;
  5. template<class T>
  6. class BlockQueue
  7. {
  8. private:
  9. void lock()
  10. {
  11. pthread_mutex_lock(&_mutex);
  12. }
  13. void unlock()
  14. {
  15. pthread_mutex_unlock(&_mutex);
  16. }
  17. bool isFull()
  18. {
  19. return _q.size()==_capacity;
  20. }
  21. bool isEmpty()
  22. {
  23. return _q.empty();
  24. }
  25. void pthreadWait(pthread_cond_t& cond)
  26. {
  27. pthread_cond_wait(&cond,&_mutex);
  28. }
  29. void pthreadWakeUp(pthread_cond_t& cond)
  30. {
  31. pthread_cond_signal(&cond);
  32. }
  33. public:
  34. BlockQueue(const int num=N):_capacity(num)
  35. {
  36. pthread_mutex_init(&_mutex,nullptr);
  37. pthread_cond_init(&_comsumer,nullptr);
  38. pthread_cond_init(&_producer,nullptr);
  39. }
  40. ~BlockQueue()
  41. {
  42. pthread_mutex_destroy(&_mutex);
  43. pthread_cond_destroy(&_comsumer);
  44. pthread_cond_destroy(&_producer);
  45. }
  46. void push(const T& task)
  47. {
  48. lock();
  49. while(isFull())//保证任何时候,要生产时仓库有空余
  50. {
  51. pthreadWait(_producer);
  52. }
  53. //向仓库运数据
  54. _q.push(task);
  55. //有了产品,唤醒消费者消费
  56. pthreadWakeUp(_comsumer);
  57. unlock();
  58. }
  59. void pop(T* out)
  60. {
  61. lock();
  62. while(isEmpty())
  63. {
  64. pthreadWait(_comsumer);
  65. }
  66. //仓库有产品,开始消费
  67. *out=_q.front();
  68. _q.pop();
  69. //消费完产品,仓库有空余,唤醒生产者生产
  70. pthreadWakeUp(_producer);
  71. unlock();
  72. }
  73. private:
  74. std::queue<T> _q;//队列存储数据,被多线程看到,需要被保护
  75. int _capacity;
  76. pthread_mutex_t _mutex;//保护队列,一个锁,一个共享资源,就可以保证互斥关系的成立
  77. //两个条件变量,保证消费者和生产者之间的同步关系
  78. pthread_cond_t _comsumer;//控制消费速度
  79. pthread_cond_t _producer;//控制生产速度
  80. };

main.cc测试代码

  1. #include<iostream>
  2. #include"blockQueue.hpp"
  3. #include"task.hpp"
  4. using namespace std;
  5. #include<ctime>
  6. #include<pthread.h>
  7. #include<unistd.h>
  8. std::string ops="+-*/";
  9. void* consumerRountine(void* args)
  10. {
  11. BlockQueue<Task>* bq=static_cast<BlockQueue<Task>*>(args);
  12. while(true)
  13. {
  14. //1. 从队列中拿取数据
  15. Task t;
  16. bq->pop(&t);
  17. //2. 处理数据,完成消费工作
  18. t();
  19. cout<<pthread_self()<<" | "<<t.formatArg()<<t.formatRes()<<endl;
  20. }
  21. return nullptr;
  22. }
  23. void* producerRountine(void* args)
  24. {
  25. BlockQueue<Task>* bq=static_cast<BlockQueue<Task>*>(args);
  26. while(true)
  27. {
  28. //1. 生产数据
  29. int x=rand()%10;
  30. int y=rand()%10;
  31. char op=ops[rand()%ops.size()];
  32. Task t(x,y,op);
  33. //2. 将数据推送到blockqueue的结构中,完成生产工作
  34. bq->push(t);
  35. cout<<pthread_self()<<" | "<<t.formatArg()<<"?"<<endl;
  36. }
  37. return nullptr;
  38. }
  39. int main()
  40. {
  41. srand((uint64_t)time(nullptr)^getpid());
  42. pthread_t c[3],p[2];
  43. BlockQueue<Task> bq;
  44. pthread_create(&c[0],nullptr,consumerRountine,&bq);
  45. pthread_create(&c[1],nullptr,consumerRountine,&bq);
  46. pthread_create(&c[2],nullptr,consumerRountine,&bq);
  47. pthread_create(&p[0],nullptr,producerRountine,&bq);
  48. pthread_create(&p[1],nullptr,producerRountine,&bq);
  49. pthread_join(c[0],nullptr);
  50. pthread_join(c[1],nullptr);
  51. pthread_join(c[2],nullptr);
  52. pthread_join(p[0],nullptr);
  53. pthread_join(p[1],nullptr);
  54. return 0;
  55. }
  56. // void* consumerRountine(void* args)
  57. // {
  58. // BlockQueue<int>* bq=static_cast<BlockQueue<int>*>(args);
  59. // while(true)
  60. // {
  61. // //1. 从队列中拿取数据
  62. // int data=0;
  63. // bq->pop(&data);
  64. // //2. 处理数据,完成消费工作
  65. // cout<<pthread_self()<<"| consumerRountine done, "<<"data: "<<data<<endl;
  66. // }
  67. // return nullptr;
  68. // }
  69. // void* producerRountine(void* args)
  70. // {
  71. // BlockQueue<int>* bq=static_cast<BlockQueue<int>*>(args);
  72. // while(true)
  73. // {
  74. // sleep(1);
  75. // //1. 生产数据
  76. // int data=rand()%10;
  77. // //2. 将数据推送到blockqueue的结构中,完成生产工作
  78. // bq->push(data);
  79. // cout<<pthread_self()<<"| push data,"<<"data:"<<data<<endl;
  80. // }
  81. // return nullptr;
  82. // }
  83. // int main()
  84. // {
  85. // srand((uint64_t)time(nullptr)^getpid());
  86. // pthread_t c,p;
  87. // BlockQueue<int> bq;
  88. // pthread_create(&c,nullptr,consumerRountine,&bq);
  89. // pthread_create(&p,nullptr,producerRountine,&bq);
  90. // pthread_join(c,nullptr);
  91. // pthread_join(p,nullptr);
  92. // return 0;
  93. // }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/661627
推荐阅读
相关标签
  

闽ICP备14008679号