Producer and comsumer in a synchronized buffer : Producer Consumer « Thread « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Thread » Producer ConsumerScreenshots 
Producer and comsumer in a synchronized buffer
Producer and comsumer in a synchronized buffer

/*
Code revised from Book published by 
(C) Copyright 1992-2006 by Deitel & Associates, Inc. and
Pearson Education, Inc. All Rights Reserved.  

*/


using System;
using System.Threading;

public class SynchronizedBuffer
{
   private int buffer = -1

   private int occupiedBufferCount = 0;  

   public int Buffer
   {      
      get
      
         Monitor.Enterthis );

         if occupiedBufferCount == )
         {
            Console.WriteLine(Thread.CurrentThread.Name + " tries to read." );
            DisplayState"Buffer empty. " +Thread.CurrentThread.Name + " waits." );
            Monitor.Waitthis );
         
         --occupiedBufferCount;    
                              
         DisplayStateThread.CurrentThread.Name + " reads " + buffer );

         Monitor.Pulsethis );
         int bufferCopy = buffer;

         Monitor.Exitthis );

         return bufferCopy;
      }
      set
      {
         Monitor.Enterthis );
         if occupiedBufferCount == )
         {
            Console.WriteLine(Thread.CurrentThread.Name + " tries to write." );
            DisplayState"Buffer full. " + Thread.CurrentThread.Name + " waits." );
            Monitor.Waitthis );
         }
         buffer = value;

         ++occupiedBufferCount;

         DisplayStateThread.CurrentThread.Name + " writes " + buffer );
         Monitor.Pulsethis );

         Monitor.Exitthis );
      
   }

   public void DisplayStatestring operation )
   {
      Console.WriteLine"{0,-35}{1,-9}{2}\n",operation, buffer, occupiedBufferCount );
   }

   static void Mainstring[] args )
   {
      SynchronizedBuffer shared = new SynchronizedBuffer();
      Random random = new Random();

      Console.WriteLine"{0,-35}{1,-9}{2}\n","Operation""Buffer""Occupied Count" );
      shared.DisplayState"Initial state" );

      Producer producer = new Producershared, random );
      Consumer consumer = new Consumershared, random );

      Thread producerThread = new Threadnew ThreadStartproducer.Produce ) );
      producerThread.Name = "Producer";

      Thread consumerThread = new Threadnew ThreadStartconsumer.Consume ) );
      consumerThread.Name = "Consumer";

      producerThread.Start();
      consumerThread.Start();
   }
}

public class Consumer
{
   private SynchronizedBuffer sharedLocation;
   private Random randomSleepTime;

   public ConsumerSynchronizedBuffer shared, Random random )
   {
      sharedLocation = shared;
      randomSleepTime = random;
   }

   public void Consume()
   {
      int sum = 0;

      for int count = 1; count <= 10; count++ )
      {
         Thread.SleeprandomSleepTime.Next11001 ) );
         sum += sharedLocation.Buffer;
      }

      Console.WriteLine("{0} read values totaling: {1}.\nTerminating {0}.",Thread.CurrentThread.Name, sum );
   }
}

public class Producer 
{
   private SynchronizedBuffer sharedLocation;
   private Random randomSleepTime;

   public ProducerSynchronizedBuffer shared, Random random )
   {
      sharedLocation = shared;
      randomSleepTime = random;
   }
   public void Produce()
   {
      for int count = 1; count <= 10; count++ 
      {
         Thread.SleeprandomSleepTime.Next11001 ) );
         sharedLocation.Buffer = count; 
      }
      Console.WriteLine"{0} done producing.\nTerminating {0}.",Thread.CurrentThread.Name );
   }
}


           
       
Related examples in the same category
1.Producer and consumer with a Circular BufferProducer and consumer with a Circular Buffer
2.Uses Wait and Pulse to enable producer and consumer threads to cooperate in using a buffer
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.