[原創]C#編寫的多生產者多消費者同步問題
// 多個生產者和多個消費者,能生產n個產品的情況
using System;
using System.Threading;
public class HoldIntegerSynchronized{
private int[] buffer; //緩衝區
private int occupiedBufferCount = 0;
private int readPosition = 0 , writePosition = 0;
//下一個讀到的位置和寫到的位置
public HoldIntegerSynchronized(int capacity){
buffer = new int[capacity];
}
public int BufferSize{
get{
return buffer.Length;
}
}
public int Buffer{
get{
int bufferCopy;
// 加鎖
lock(this){
while(occupiedBufferCount == 0){ //多個消費者,所以此處改用while
Console.WriteLine(Thread.CurrentThread.Name + " tries to read. ");
DisplayState("Buffer Empty. " + Thread.CurrentThread.Name + " waits.");
Monitor.Wait(this);
// 為臨界區之外等待的生產者放行,讓他來"生產"
// 一直到生產者生產結束,呼叫了Monitor.PauseAll()
// 才能繼續執行下去,此時,消費者自動重新獲得this的鎖
}
--occupiedBufferCount;
bufferCopy = buffer[readPosition];
readPosition = (readPosition + 1) % buffer.Length;
DisplayState(Thread.CurrentThread.Name + " reads " + bufferCopy);
// 通知,讓等待的 生產者執行緒 進入Started狀態,如果生產者處於臨界區之外,這句話執行完後他仍然在臨界區之外
Monitor.PulseAll(this);
// 釋放鎖
}//lock
return bufferCopy;
}
set{
// 加鎖
lock(this){
while(occupiedBufferCount == buffer.Length){
Console.WriteLine(Thread.CurrentThread.Name + " tries to write. ");
DisplayState("Buffer Full. " + Thread.CurrentThread.Name + " waits.");
Monitor.Wait(this);
// 為臨界區之外等待消費者放行,讓他來"消費"
// 一直到消費者呼叫了Monitor.Pause()
// 才能繼續執行下去,此時,生產者自動重新獲得this的鎖
}
buffer[writePosition] = value;
++occupiedBufferCount;
writePosition = (writePosition + 1) % buffer.Length;
DisplayState(Thread.CurrentThread.Name + " writes " + value);
// 通知,讓Wait狀態的 消費者 進入Started狀態,如果消費者處於臨界區之外,這句話執行完後他仍然在臨界區之外
Monitor.PulseAll(this);
// 釋放鎖
}
}
}
public void DisplayState(string operation){
Console.Write("{0,-35}",operation);
for(int i = 0; i < BufferSize; i++ ){
int a = readPosition;
int b = writePosition;
if( a <= i && i < b) {
Console.Write("{0,-9}",buffer[i]);
}else if( b < a && !( b <= i && i < a ) ){
Console.Write("{0,-9}",buffer[i]);
}else if( occupiedBufferCount == BufferSize){
Console.Write("{0,-9}",buffer[i]);
}else{
Console.Write("{0,-9}","");
}
}
Console.WriteLine("{0}/r/n",occupiedBufferCount);
}
}
class Producer{
private HoldIntegerSynchronized sharedLocation;
private Random randomSleepTime;
public Producer(HoldIntegerSynchronized shared,Random random){
sharedLocation = shared;
randomSleepTime = random;
}
public void Produce(){
for (int count=0; count<3; count++) {
Thread.Sleep(randomSleepTime.Next(1,2000));
sharedLocation.Buffer = randomSleepTime.Next(5,10);
}
Console.WriteLine(Thread.CurrentThread.Name + " done producing./r/nTerminating " + Thread.CurrentThread.Name + "./r/n");
}
}
class Consumer{
private HoldIntegerSynchronized sharedLocation;
private Random randomSleepTime;
public Consumer(HoldIntegerSynchronized shared,Random random){
sharedLocation = shared;
randomSleepTime = random;
}
public void Consume(){
int sum = 0;
for (int count=0; count<4; count++) {
Thread.Sleep(randomSleepTime.Next(1,2000));
sum += sharedLocation.Buffer;
}
Console.WriteLine(Thread.CurrentThread.Name + " read values totaling:" + sum + "/r/nTerminating " + Thread.CurrentThread.Name + ".");
}
}
class SharedCell{
static void Main(string[] args){
HoldIntegerSynchronized holdInteger = new HoldIntegerSynchronized(5);
Random random = new Random();
Thread[] producerThreads = new Thread[4];
Thread[] consumerThreads = new Thread[3];
Console.Write("{0,-35}","Operation");
for(int i = 0;i < holdInteger.BufferSize;i++){
Console.Write("{0,-9}","Elem " + i);
}
Console.WriteLine("Occupied Count/r/n");
for(int i = 0; i < producerThreads.Length;i++){
Producer producer = new Producer(holdInteger,random);
producerThreads[i] = new Thread(new ThreadStart(producer.Produce));
producerThreads[i].Name = "Producer No." + i;
}
for(int i = 0; i < consumerThreads.Length;i++){
Consumer consumer = new Consumer(holdInteger,random);
consumerThreads[i] = new Thread(new ThreadStart(consumer.Consume));
consumerThreads[i].Name = "Consumer No." + i;
}
for(int i = 0; i < producerThreads.Length;i++){
producerThreads[i].Start();
}
for(int i = 0; i < consumerThreads.Length;i++){
consumerThreads[i].Start();
}
}
}
相關文章
- python中多程式消費者生產者問題Python
- python中多執行緒消費者生產者問題Python執行緒
- 多執行緒-生產者消費者問題程式碼1執行緒
- java編寫生產者/消費者模式的程式。Java模式
- 多執行緒之生產者消費者執行緒
- Java多執行緒程式設計(同步、死鎖、生產消費者問題)Java執行緒程式設計
- 生產者消費者模式--java多執行緒同步方法的應用模式Java執行緒
- C#多執行緒學習(三) 生產者和消費者C#執行緒
- C# 多執行緒學習(3) :生產者和消費者C#執行緒
- Java多執行緒——生產者消費者示例Java執行緒
- 關於Java多執行緒實現生產者和消費者的問題Java執行緒
- Python中的生產者消費者問題Python
- 執行緒同步介紹及 生產者消費者問題舉例 C#版執行緒C#
- java實現生產者消費者問題Java
- linux 生產者與消費者問題Linux
- 直觀理解生產者消費者問題
- 多生產者-消費者中假死現象的處理
- Java多執行緒——生產者和消費者模式Java執行緒模式
- Java多執行緒14:生產者/消費者模型Java執行緒模型
- Java多執行緒——消費者與生產者的關係Java執行緒
- 多執行緒下的生產者和消費者-BlockingQueue執行緒BloC
- java多執行緒總結六:經典生產者消費者問題實現Java執行緒
- 訊號量實現生產者消費者(程式碼邏輯有問題,不適合多個消費者,不常用)
- java學習回顧---生產者與消費者問題以及多執行緒補充Java執行緒
- 生產者消費者模式模式
- 生產者消費者模型模型
- 多執行緒-生產者消費者問題程式碼2並解決執行緒安全問題執行緒
- Java 多執行緒基礎(十二)生產者與消費者Java執行緒
- Python-多執行緒及生產者與消費者Python執行緒
- 面試必問:訊號量與生產者消費者問題!面試
- 作業系統—生產者消費者問題詳解作業系統
- 有名訊號量實現消費者生產者問題
- 生產者消費者問題-C++程式碼實現C++
- python多執行緒+生產者和消費者模型+queue使用Python執行緒模型
- 多執行緒併發如何高效實現生產者/消費者?執行緒
- 用Python多執行緒實現生產者消費者模式Python執行緒模式
- python 多執行緒實現生產者與消費者模型Python執行緒模型
- 多執行緒-生產者消費者之等待喚醒機制執行緒