线程池 生产者 消费者 模式 JAVA进阶

来源:互联网 发布:美好时光只在昨日 知乎 编辑:程序博客网 时间:2024/06/06 02:52
package javajinjie.char29.threadpool;

import java.util.concurrent.*;
import java.util.concurrent.locks.*;


public class ConsumerProducer {
  private static Buffer buffer = new Buffer();


  public static void main(String[] args) {
    // Create a thread pool with two threads
    ExecutorService executor = Executors.newFixedThreadPool(2);
    executor.execute(new ProducerTask());
    executor.execute(new ConsumerTask());
    executor.shutdown();
  }


  // A task for adding an int to the buffer
  private static class ProducerTask implements Runnable {
    public void run() {
      try {
        int i = 1;
        while (true) {
          System.out.println("Producer writes " + i);
          buffer.write(i++); // Add a value to the buffer
          // Put the thread into sleep
          Thread.sleep((int)(Math.random() * 10000));
        }
      } catch (InterruptedException ex) {
        ex.printStackTrace();
      }
    }
  }


  // A task for reading and deleting an int from the buffer
  private static class ConsumerTask implements Runnable {
    public void run() {
      try {
        while (true) {
          System.out.println("\t\t\tConsumer reads " + buffer.read());
          // Put the thread into sleep
          Thread.sleep((int)(Math.random() * 10000));
        }
      } catch (InterruptedException ex) {
        ex.printStackTrace();
      }
    }
  }


  // An inner class for buffer
  private static class Buffer {
    private static final int CAPACITY = 1; // buffer size
    private java.util.LinkedList<Integer> queue =
      new java.util.LinkedList<Integer>();


    // Create a new lock
    private static Lock lock = new ReentrantLock();


    // Create two conditions
    private static Condition notEmpty = lock.newCondition();
    private static Condition notFull = lock.newCondition();


    public void write(int value) {
      lock.lock(); // Acquire the lock
      try {
        while (queue.size() == CAPACITY) {
          System.out.println("Wait for notFull condition");
          notFull.await();
        }


        queue.offer(value);
        System.out.println("write "+ value + " done");
        notEmpty.signal(); // Signal notEmpty condition
      } catch (InterruptedException ex) {
        ex.printStackTrace();
      } finally {
        lock.unlock(); // Release the lock
      }
    }


    public int read() {
      int value = 0;
      lock.lock(); // Acquire the lock
      try {
        while (queue.isEmpty()) {
          System.out.println("\t\t\tWait for notEmpty condition");
          notEmpty.await();
        }


        value = queue.remove();
        System.out.println("read "+ value + " done");
        notFull.signal(); // Signal notFull condition
      } catch (InterruptedException ex) {
        ex.printStackTrace();
      } finally {
        lock.unlock(); // Release the lock
        return value;
      }
    }
  }

}


运行结果

Producer writes 1
write 1 done
read 1 done
Consumer reads 1
Wait for notEmpty condition
Producer writes 2
write 2 done
read 2 done
Consumer reads 2
Wait for notEmpty condition
Producer writes 3
write 3 done
read 3 done
Consumer reads 3
Producer writes 4
write 4 done
read 4 done
Consumer reads 4
Producer writes 5
write 5 done
read 5 done
Consumer reads 5
Wait for notEmpty condition
Producer writes 6
write 6 done
read 6 done
Consumer reads 6
Wait for notEmpty condition
Producer writes 7
write 7 done
read 7 done
Consumer reads 7
Wait for notEmpty condition