小言_互联网的博客

<生产者、消费者问题>——《Linux》

320人阅读  评论(0)

 目录

1. 生产者消费者模型

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

1.2 生产者消费者模型优点

2.基于BlockingQueue的生产者消费者模型

2.1 BlockingQueue

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

3.POSIX信号量

4.基于环形队列的生产消费模型

后记:●由于作者水平有限,文章难免存在谬误之处,敬请读者斧正,俚语成篇,恳望指教!

                                                                           ——By 作者:新晓·故知


1. 生产者消费者模型

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

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

1.2 生产者消费者模型优点

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

2.基于BlockingQueue的生产者消费者模型

2.1 BlockingQueue

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

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

代码:
为了便于理解,我们以单生产者,单消费者,来进行讲解。


     
  1. #include <iostream>
  2. #include <queue>
  3. #include <stdlib.h>
  4. #include <pthread.h>
  5. #define NUM 8
  6. class BlockQueue
  7. {
  8. private:
  9. std::queue< int> q;
  10. int cap;
  11. pthread_mutex_t lock;
  12. pthread_cond_t full;
  13. pthread_cond_t empty;
  14. private:
  15. void LockQueue()
  16. {
  17. pthread_mutex_lock(&lock);
  18. }
  19. void UnLockQueue()
  20. {
  21. pthread_mutex_unlock(&lock);
  22. }
  23. void ProductWait()
  24. {
  25. pthread_cond_wait(&full, &lock);
  26. }
  27. void ConsumeWait()
  28. {
  29. pthread_cond_wait(&empty, &lock);
  30. }
  31. void NotifyProduct()
  32. {
  33. pthread_cond_signal(&full);
  34. }
  35. void NotifyConsume()
  36. {
  37. pthread_cond_signal(&empty);
  38. }
  39. bool IsEmpty()
  40. {
  41. return (q. size() == 0 ? true : false);
  42. }
  43. bool IsFull()
  44. {
  45. return (q. size() == cap ? true : false);
  46. }
  47. public:
  48. BlockQueue( int _cap = NUM) : cap(_cap)
  49. {
  50. pthread_mutex_init(&lock, NULL);
  51. pthread_cond_init(&full, NULL);
  52. pthread_cond_init(&empty, NULL);
  53. }
  54. void PushData(const int &data)
  55. {
  56. LockQueue();
  57. while ( IsFull())
  58. {
  59. NotifyConsume();
  60. std::cout << "queue full, notify consume data, product stop." << std::endl;
  61. ProductWait();
  62. }
  63. q. push(data);
  64. // NotifyConsume();
  65. UnLockQueue();
  66. }
  67. void PopData(int &data)
  68. {
  69. LockQueue();
  70. while ( IsEmpty())
  71. {
  72. NotifyProduct();
  73. std::cout << "queue empty, notify product data, consume stop." << std::endl;
  74. ConsumeWait();
  75. }
  76. data = q. front();
  77. q. pop();
  78. // NotifyProduct();
  79. UnLockQueue();
  80. }
  81. ~ BlockQueue()
  82. {
  83. pthread_mutex_destroy(&lock);
  84. pthread_cond_destroy(&full);
  85. pthread_cond_destroy(&empty);
  86. }
  87. };
  88. void *consumer(void *arg)
  89. {
  90. BlockQueue *bqp = (BlockQueue *)arg;
  91. int data;
  92. for (;;)
  93. {
  94. bqp-> PopData(data);
  95. std::cout << "Consume data done : " << data << std::endl;
  96. }
  97. }
  98. // more faster
  99. void *producter(void *arg)
  100. {
  101. BlockQueue *bqp = (BlockQueue *)arg;
  102. srand(( unsigned long) time( NULL));
  103. for (;;)
  104. {
  105. int data = rand() % 1024;
  106. bqp-> PushData(data);
  107. std::cout << "Prodoct data done: " << data << std::endl;
  108. // sleep(1);
  109. }
  110. }
  111. int main()
  112. {
  113. BlockQueue bq;
  114. pthread_t c, p;
  115. pthread_create(&c, NULL, consumer, ( void *)&bq);
  116. pthread_create(&p, NULL, producter, ( void *)&bq);
  117. pthread_join(c, NULL);
  118. pthread_join(p, NULL);
  119. return 0;
  120. }

模拟实现:

BlockQueue.hpp:


     
  1. #pragma once
  2. #include <iostream>
  3. #include <queue>
  4. #include <cstdlib>
  5. #include <unistd.h>
  6. #include <pthread.h>
  7. using namespace std;
  8. // 实现新需求: 我只想保存最新的5个任务,如果来了任务,老的任务,我想让他直接被丢弃(自行选择实现)
  9. const uint32_t gDefaultCap = 5;
  10. template < class T>
  11. class BlockQueue
  12. {
  13. public:
  14. BlockQueue( uint32_t cap = gDefaultCap) : cap_(cap)
  15. {
  16. pthread_mutex_init(&mutex_, nullptr);
  17. pthread_cond_init(&conCond_, nullptr);
  18. pthread_cond_init(&proCond_, nullptr);
  19. }
  20. ~ BlockQueue()
  21. {
  22. pthread_mutex_destroy(&mutex_);
  23. pthread_cond_destroy(&conCond_);
  24. pthread_cond_destroy(&proCond_);
  25. }
  26. public:
  27. //生产接口
  28. void push(const T &in) // const &: 纯输入
  29. {
  30. // 加锁
  31. // 判断->是否适合生产->bq是否为满->程序员视角的条件->1. 满(不生产) 2. 不满(生产)
  32. // if(满) 不生产,休眠
  33. // else if(不满) 生产,唤醒消费者
  34. // 解锁
  35. lockQueue();
  36. while ( isFull()) // ifFull就是我们在临界区中设定的条件
  37. {
  38. // before: 当我等待的时候,会自动释放mutex_
  39. proBlockWait(); //阻塞等待,等待被唤醒。 被唤醒 != 条件被满足(概率虽然很小),被唤醒 && 条件被满足
  40. //解决伪唤醒(使用while)
  41. // after: 当我醒来的时候,我是在临界区里醒来的!!
  42. }
  43. // 条件满足,可以生产
  44. pushCore(in); //生产完成
  45. // wakeupCon(); // 唤醒消费者
  46. unlockQueue();
  47. wakeupCon(); // 唤醒消费者
  48. }
  49. //消费接口
  50. T pop()
  51. {
  52. // 加锁
  53. // 判断->是否适合消费->bq是否为空->程序员视角的条件->1. 空(不消费) 2. 有(消费)
  54. // if(空) 不消费,休眠
  55. // else if(有) 消费,唤醒生产者
  56. // 解锁
  57. lockQueue();
  58. while ( isEmpty())
  59. {
  60. conBlockwait(); //阻塞等待,等待被唤醒,?
  61. }
  62. // 条件满足,可以消费
  63. T tmp = popCore();
  64. unlockQueue();
  65. wakeupPro(); // 唤醒生产者
  66. return tmp;
  67. }
  68. private:
  69. void lockQueue()
  70. {
  71. pthread_mutex_lock(&mutex_);
  72. }
  73. void unlockQueue()
  74. {
  75. pthread_mutex_unlock(&mutex_);
  76. }
  77. bool isEmpty()
  78. {
  79. return bq_. empty();
  80. }
  81. bool isFull()
  82. {
  83. return bq_. size() == cap_;
  84. }
  85. void proBlockWait() // 生产者一定是在临界区中的!
  86. {
  87. // 1. 在阻塞线程的时候,会自动释放mutex_锁
  88. pthread_cond_wait(&proCond_, &mutex_);
  89. }
  90. void conBlockwait() //阻塞等待,等待被唤醒
  91. {
  92. // 1. 在阻塞线程的时候,会自动释放mutex_锁
  93. pthread_cond_wait(&conCond_, &mutex_);
  94. // 2. 当阻塞结束,返回的时候,pthread_cond_wait,会自动帮你重新获得mutex_,然后才返回
  95. // 为什么我们上节课,写的代码,批量退出线程的时候,发现无法退出?
  96. //唤醒时, 调用pthread_cond_wait(&conCond_, &mutex_);,重新去竞争这个锁,多个线程去竞争一个,且那个拥有锁的线程退出没有释放锁,最后导致其他线程阻塞。
  97. }
  98. void wakeupPro() // 唤醒生产者
  99. {
  100. pthread_cond_signal(&proCond_);
  101. }
  102. void wakeupCon() // 唤醒消费者
  103. {
  104. pthread_cond_signal(&conCond_);
  105. }
  106. void pushCore(const T &in)
  107. {
  108. bq_. push(in); //生产完成
  109. }
  110. T popCore()
  111. {
  112. T tmp = bq_. front();
  113. bq_. pop();
  114. return tmp;
  115. }
  116. private:
  117. uint32_t cap_; //容量
  118. queue<T> bq_; // blockqueue
  119. pthread_mutex_t mutex_; //保护阻塞队列的互斥锁
  120. pthread_cond_t conCond_; // 让消费者等待的条件变量
  121. pthread_cond_t proCond_; // 让生产者等待的条件变量
  122. };

BlockQueueTest.cc: 


     
  1. #include "Task.hpp"
  2. #include "BlockQueue.hpp"
  3. #include <ctime>
  4. const std::string ops = "+-*/%";
  5. // 并发,并不是在临界区中并发(一般),而是生产前(before blockqueue),消费后(after blockqueue)对应的并发
  6. void *consumer(void *args)
  7. {
  8. BlockQueue<Task> *bqp = static_cast<BlockQueue<Task> *>(args);
  9. while ( true)
  10. {
  11. Task t = bqp-> pop(); // 消费任务
  12. int result = t(); //处理任务 --- 任务也是要花时间的!
  13. int one, two;
  14. char op;
  15. t. get(&one, &two, &op);
  16. cout << "consumer[" << pthread_self() << "] " << ( unsigned long) time( nullptr) << " 消费了一个任务: " << one << op << two << "=" << result << endl;
  17. }
  18. }
  19. void *productor(void *args)
  20. {
  21. BlockQueue<Task> *bqp = static_cast<BlockQueue<Task> *>(args);
  22. while ( true)
  23. {
  24. // 1. 制作任务 --- 要不要花时间?? -- 网络,磁盘,用户
  25. int one = rand() % 50;
  26. int two = rand() % 20;
  27. char op = ops[ rand() % ops. size()];
  28. Task t(one, two, op);
  29. // 2. 生产任务
  30. bqp-> push(t);
  31. cout << "producter[" << pthread_self() << "] " << ( unsigned long) time( nullptr) << " 生产了一个任务: " << one << op << two << "=?" << endl;
  32. sleep( 1);
  33. }
  34. }
  35. int main()
  36. {
  37. srand(( unsigned long) time( nullptr) ^ getpid());
  38. // 定义一个阻塞队列
  39. // 创建两个线程,productor, consumer
  40. // productor ----- consumer
  41. // BlockQueue<int> bq;
  42. // bq.push(10);
  43. // int a = bq.pop();
  44. // cout << a << endl;
  45. // 既然可以使用int类型的数据,我们也可以使用自己封装的类型,包括任务
  46. // BlockQueue<int> bq;
  47. BlockQueue<Task> bq;
  48. pthread_t c, p;
  49. pthread_create(&c, nullptr, consumer, &bq);
  50. pthread_create(&p, nullptr, productor, &bq);
  51. pthread_join(c, nullptr);
  52. pthread_join(p, nullptr);
  53. return 0;
  54. }

Task.hpp:


     
  1. #pragma once
  2. #include <iostream>
  3. #include <string>
  4. class Task
  5. {
  6. public:
  7. Task()
  8. : elemOne_( 0)
  9. , elemTwo_( 0)
  10. , operator_( '0')
  11. {}
  12. Task( int one, int two, char op)
  13. : elemOne_(one)
  14. , elemTwo_(two)
  15. , operator_(op)
  16. {}
  17. int operator() ()
  18. {
  19. return run();
  20. }
  21. int run()
  22. {
  23. int result = 0;
  24. switch (operator_)
  25. {
  26. case '+':
  27. result = elemOne_ + elemTwo_;
  28. break;
  29. case '-':
  30. result = elemOne_ - elemTwo_;
  31. break;
  32. case '*':
  33. result = elemOne_ * elemTwo_;
  34. break;
  35. case '/':
  36. {
  37. if (elemTwo_ == 0)
  38. {
  39. std::cout << "div zero, abort" << std::endl;
  40. result = -1;
  41. }
  42. else
  43. {
  44. result = elemOne_ / elemTwo_;
  45. }
  46. }
  47. break;
  48. case '%':
  49. {
  50. if (elemTwo_ == 0)
  51. {
  52. std::cout << "mod zero, abort" << std::endl;
  53. result = -1;
  54. }
  55. else
  56. {
  57. result = elemOne_ % elemTwo_;
  58. }
  59. }
  60. break;
  61. default:
  62. std::cout << "非法操作: " << operator_ << std::endl;
  63. break;
  64. }
  65. return result;
  66. }
  67. int get(int *e1, int *e2, char *op)
  68. {
  69. *e1 = elemOne_;
  70. *e2 = elemTwo_;
  71. *op = operator_;
  72. }
  73. private:
  74. int elemOne_;
  75. int elemTwo_;
  76. char operator_;
  77. };

makefile: 


     
  1. CC=g++
  2. FLAGS=-std=c++11
  3. LD=-lpthread
  4. bin=blockQueue
  5. src=BlockQueueTest.cc
  6. $(bin):$(src)
  7. $(CC) -o $@ $^ $(LD) $(FLAGS)
  8. .PHONY:clean
  9. clean:
  10. rm -f $(bin)

3.POSIX信号量

POSIX信号量和SystemV信号量作用相同,都是用于同步操作,达到无冲突的访问共享资源目的。 但POSIX可以用于线程间同步。
初始化信号量

      
  1. #include <semaphore.h>
  2. int sem_init(sem_t *sem, int pshared, unsigned int value);
  3. 参数:
  4. pshared: 0表示线程间共享,非零表示进程间共享
  5. value:信号量初始值
销毁信号量
int sem_destroy(sem_t *sem);
等待信号量
功能:等待信号量,会将信号量的值减1
int sem_wait(sem_t *sem);
发布信号量
功能:发布信号量,表示资源使用完毕,可以归还资源了。将信号量值加1。
int sem_post(sem_t *sem);
上面的生产者-消费者的例子是基于queue的,其空间可以动态分配,现在基于固定大小的环形队列重写这个程序 (POSIX信号量)
信号量是一个计数器,描述临界资源数量的计数器。二元信号量==互斥锁

4.基于环形队列的生产消费模型

  • 环形队列采用数组模拟,用模运算来模拟环状特性

  • 环形结构起始状态和结束状态都是一样的,不好判断为空或者为满,所以可以通过加计数器或者标记位来判断满或者空。另外也可以预留一个空的位置,作为满的状态
  •  但是我们现在有信号量这个计数器,就很简单的进行多线程间的同步过程

 模拟实现:


   
  1. #include <iostream>
  2. #include <vector>
  3. #include <stdlib.h>
  4. #include <semaphore.h>
  5. #include <unistd.h>
  6. #include <pthread.h>
  7. #define NUM 16
  8. class RingQueue
  9. {
  10. private:
  11. std::vector< int> q;
  12. int cap;
  13. sem_t data_sem;
  14. sem_t space_sem;
  15. int consume_step;
  16. int product_step;
  17. public:
  18. RingQueue( int _cap = NUM) : q(_cap), cap(_cap)
  19. {
  20. sem_init(&data_sem, 0, 0);
  21. sem_init(&space_sem, 0, cap);
  22. consume_step = 0;
  23. product_step = 0;
  24. }
  25. void PutData(const int &data)
  26. {
  27. sem_wait(&space_sem); // P
  28. q[consume_step] = data;
  29. consume_step++;
  30. consume_step %= cap;
  31. sem_post(&data_sem); // V
  32. }
  33. void GetData(int &data)
  34. {
  35. sem_wait(&data_sem);
  36. data = q[product_step];
  37. product_step++;
  38. product_step %= cap;
  39. sem_post(&space_sem);
  40. }
  41. ~ RingQueue()
  42. {
  43. sem_destroy(&data_sem);
  44. sem_destroy(&space_sem);
  45. }
  46. };
  47. void *consumer(void *arg)
  48. {
  49. RingQueue *rqp = (RingQueue *)arg;
  50. int data;
  51. for (;;)
  52. {
  53. rqp-> GetData(data);
  54. std::cout << "Consume data done : " << data << std::endl;
  55. sleep( 1);
  56. }
  57. }
  58. // more faster
  59. void *producter(void *arg)
  60. {
  61. RingQueue *rqp = (RingQueue *)arg;
  62. srand(( unsigned long) time( NULL));
  63. for (;;)
  64. {
  65. int data = rand() % 1024;
  66. rqp-> PutData(data);
  67. std::cout << "Prodoct data done: " << data << std::endl;
  68. // sleep(1);
  69. }
  70. }
  71. int main()
  72. {
  73. RingQueue rq;
  74. pthread_t c, p;
  75. pthread_create(&c, NULL, consumer, ( void *)&rq);
  76. pthread_create(&p, NULL, producter, ( void *)&rq);
  77. pthread_join(c, NULL);
  78. pthread_join(p, NULL);
  79. }

RingQueue.hpp:

 


   
  1. #pragma once
  2. #include <iostream>
  3. #include <vector>
  4. #include <string>
  5. #include <semaphore.h>
  6. using namespace std;
  7. const int gCap = 10;
  8. template < class T>
  9. class RingQueue
  10. {
  11. public:
  12. RingQueue( int cap = gCap)
  13. : ringqueue_(cap)
  14. , pIndex_( 0)
  15. , cIndex_( 0)
  16. {
  17. // 生产
  18. sem_init(&roomSem_, 0, ringqueue_. size());
  19. // 消费
  20. sem_init(&dataSem_, 0, 0);
  21. pthread_mutex_init(&pmutex_ , nullptr);
  22. pthread_mutex_init(&cmutex_ , nullptr);
  23. }
  24. // 生产
  25. void push(const T &in)
  26. {
  27. sem_wait(&roomSem_); //无法被多次的申请
  28. pthread_mutex_lock(&pmutex_);
  29. ringqueue_[pIndex_] = in; //生产的过程
  30. pIndex_++; // 写入位置后移
  31. pIndex_ %= ringqueue_. size(); // 更新下标,保证环形特征
  32. pthread_mutex_unlock(&pmutex_);
  33. sem_post(&dataSem_);
  34. }
  35. // 消费
  36. T pop()
  37. {
  38. sem_wait(&dataSem_);
  39. pthread_mutex_lock(&cmutex_);
  40. T temp = ringqueue_[cIndex_];
  41. cIndex_++;
  42. cIndex_ %= ringqueue_. size(); // 更新下标,保证环形特征
  43. pthread_mutex_unlock(&cmutex_);
  44. sem_post(&roomSem_);
  45. return temp;
  46. }
  47. ~ RingQueue()
  48. {
  49. sem_destroy(&roomSem_);
  50. sem_destroy(&dataSem_);
  51. pthread_mutex_destroy(&pmutex_);
  52. pthread_mutex_destroy(&cmutex_);
  53. }
  54. private:
  55. vector<T> ringqueue_; // 唤醒队列
  56. sem_t roomSem_; // 衡量空间计数器,productor
  57. sem_t dataSem_; // 衡量数据计数器,consumer
  58. uint32_t pIndex_; // 当前生产者写入的位置, 如果是多线程,pIndex_也是临界资源
  59. uint32_t cIndex_; // 当前消费者读取的位置,如果是多线程,cIndex_也是临界资源
  60. pthread_mutex_t pmutex_;
  61. pthread_mutex_t cmutex_;
  62. };

RingQueueTest.cc:


   
  1. #include "RingQueue.hpp"
  2. #include <ctime>
  3. #include <unistd.h>
  4. // 我们是单生产者,单消费者
  5. // 多生产者,多消费者??代码怎么改?
  6. // 为什么呢???多生产者,多消费者?
  7. // 不要只关心把数据或者任务,从ringqueue 放拿的过程,获取数据或者任务,处理数据或者任务,也是需要花时间的!
  8. void *productor(void *args)
  9. {
  10. RingQueue< int> *rqp = static_cast<RingQueue< int> *>(args);
  11. while( true)
  12. {
  13. int data = rand()% 10;
  14. rqp-> push(data);
  15. cout << "pthread[" << pthread_self() << "]" << " 生产了一个数据: " << data << endl;
  16. sleep( 1);
  17. }
  18. }
  19. void *consumer(void *args)
  20. {
  21. RingQueue< int> *rqp = static_cast<RingQueue< int> *>(args);
  22. while( true)
  23. {
  24. //sleep(10);
  25. int data = rqp-> pop();
  26. cout << "pthread[" << pthread_self() << "]" << " 消费了一个数据: " << data << endl;
  27. }
  28. }
  29. int main()
  30. {
  31. srand(( unsigned long) time( nullptr)^ getpid());
  32. RingQueue< int> rq;
  33. pthread_t c1,c2,c3, p1,p2,p3;
  34. pthread_create(&p1, nullptr, productor, &rq);
  35. pthread_create(&p2, nullptr, productor, &rq);
  36. pthread_create(&p3, nullptr, productor, &rq);
  37. pthread_create(&c1, nullptr, consumer, &rq);
  38. pthread_create(&c2, nullptr, consumer, &rq);
  39. pthread_create(&c3, nullptr, consumer, &rq);
  40. pthread_join(c1, nullptr);
  41. pthread_join(c2, nullptr);
  42. pthread_join(c3, nullptr);
  43. pthread_join(p1, nullptr);
  44. pthread_join(p2, nullptr);
  45. pthread_join(p3, nullptr);
  46. return 0;
  47. }

 makefile:

 


   
  1. CC=g++
  2. FLAGS=-std=c++ 11
  3. LD=-lpthread
  4. bin=ringQueue
  5. src=RingQueueTest.cc
  6. $(bin):$(src)
  7. $(CC) -o $@ $^ $(LD) $(FLAGS)
  8. .PHONY:clean
  9. clean:
  10. rm -f $(bin)

 

后记:
●由于作者水平有限,文章难免存在谬误之处,敬请读者斧正,俚语成篇,恳望指教!

                                                                           ——By 作者:新晓·故知


转载:https://blog.csdn.net/m0_57859086/article/details/128439125
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场