字节FIFO : 锁定同步 « 线程 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 线程 » 锁定同步屏幕截图 
字节FIFO
字节FIFO
 
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

public class ByteFIFOTest extends Object {
  private ByteFIFO fifo;
  private byte[] srcData;

  public ByteFIFOTest() throws IOException {
    fifo = new ByteFIFO(20);

    makeSrcData();
    System.out.println("srcData.length=" + srcData.length);

    Runnable srcRunnable = new Runnable() {
        public void run() {
          src();
        }
      };
    Thread srcThread = new Thread(srcRunnable);
    srcThread.start();

    Runnable dstRunnable = new Runnable() {
        public void run() {
          dst();
        }
      };
    Thread dstThread = new Thread(dstRunnable);
    dstThread.start();
  }

  private void makeSrcData() throws IOException {
    String[] list = {
        "The first string is right here",
        "The second string is a bit longer and also right here",
        "The third string",
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
        "0123456789",
        "The last string in the list"
      };

    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    ObjectOutputStream oos = new ObjectOutputStream(baos);
    oos.writeObject(list);
    oos.flush();
    oos.close();
    
    srcData = baos.toByteArray();
  }

  private void src() {
    try {
      boolean justAddOne = true;
      int count = 0;

      while count < srcData.length ) {
        if !justAddOne ) {
          int writeSize = (int) ( 40.0 * Math.random() );
          writeSize = Math.min(writeSize, srcData.length - count);

          byte[] buf = new byte[writeSize];
          System.arraycopy(srcData, count, buf, 0, writeSize);
          fifo.add(buf);
          count += writeSize;

          System.out.println("just added " + writeSize + " bytes");
        else {
          fifo.add(srcData[count]);
          count++;

          System.out.println("just added exactly 1 byte");
        }

        justAddOne = !justAddOne;
      }
    catch InterruptedException x ) {
      x.printStackTrace();
    }
  }

  private void dst() {
    try {
      boolean justAddOne = true;
      int count = 0;
      byte[] dstData = new byte[srcData.length];

      while count < dstData.length ) {
        if !justAddOne ) {
          byte[] buf = fifo.removeAll();
          if buf.length > ) {
            System.arraycopy(buf, 0, dstData, count, buf.length);
            count += buf.length;
          }

          System.out.println(
            "just removed " + buf.length + " bytes");
        else {
          byte b = fifo.remove();
          dstData[count= b;
          count++;

          System.out.println(
            "just removed exactly 1 byte");
        }

        justAddOne = !justAddOne;
      }

      System.out.println("received all data, count=" + count);

      ObjectInputStream ois = new ObjectInputStream(
          new ByteArrayInputStream(dstData));

      String[] line = (String[]) ois.readObject();

      for int i = 0; i < line.length; i++ ) {
        System.out.println("line[" + i + "]=" + line[i]);
      }
    catch ClassNotFoundException x1 ) {
      x1.printStackTrace();
    catch IOException iox ) {
      iox.printStackTrace();
    catch InterruptedException x ) {
      x.printStackTrace();
    }
  }

  public static void main(String[] args) {
    try {
      new ByteFIFOTest();
    catch IOException iox ) {
      iox.printStackTrace();
    }
  }
}
class ByteFIFO extends Object {
  private byte[] queue;
  private int capacity;
  private int size;
  private int head;
  private int tail;

  public ByteFIFO(int cap) {
    capacity = cap > ? cap : 1// at least 1
    queue = new byte[capacity];
    head = 0;
    tail = 0;
    size = 0;
  }

  public int getCapacity() {
    return capacity;
  }

  public synchronized int getSize() {
    return size;
  }

  public synchronized boolean isEmpty() {
    return size == );
  }

  public synchronized boolean isFull() {
    return size == capacity );
  }

  public synchronized void add(byte b
      throws InterruptedException {

    waitWhileFull();

    queue[head= b;
    head = head + % capacity;
    size++;

    notifyAll()// let any waiting threads know about change
  }

  public synchronized void add(byte[] list
      throws InterruptedException {

    // For efficiency, the bytes are copied in blocks
    // instead of one at a time. As space becomes available,
    // more bytes are copied until all of them have been
    // added.

    int ptr = 0;

    while ptr < list.length ) {
      // If full, the lock will be released to allow 
      // another thread to come in and remove bytes.
      waitWhileFull();

      int space = capacity - size;
      int distToEnd = capacity - head;
      int blockLen = Math.min(space, distToEnd);

      int bytesRemaining = list.length - ptr;
      int copyLen = Math.min(blockLen, bytesRemaining);

      System.arraycopy(list, ptr, queue, head, copyLen);
      head = head + copyLen % capacity;
      size += copyLen;
      ptr += copyLen;

      // Keep the lock, but let any waiting threads 
      // know that something has changed.
      notifyAll();
    }
  }

  public synchronized byte remove() 
      throws InterruptedException {

    waitWhileEmpty();
    
    byte b = queue[tail];
    tail = tail + % capacity;
    size--;

    notifyAll()// let any waiting threads know about change

    return b;
  }

  public synchronized byte[] removeAll() {
    // For efficiency, the bytes are copied in blocks
    // instead of one at a time. 

    if isEmpty() ) {
      // Nothing to remove, return a zero-length
      // array and do not bother with notification
      // since nothing was removed.
      return new byte[0]
    }

    // based on the current size
    byte[] list = new byte[size]

    // copy in the block from tail to the end
    int distToEnd = capacity - tail;
    int copyLen = Math.min(size, distToEnd);
    System.arraycopy(queue, tail, list, 0, copyLen);

    // If data wraps around, copy the remaining data
    // from the front of the array.
    if size > copyLen ) {
      System.arraycopy(
          queue, 0, list, copyLen, size - copyLen);
    }

    tail = tail + size % capacity;
    size = 0// everything has been removed

    // Signal any and all waiting threads that 
    // something has changed.
    notifyAll()

    return list; 
  }

  public synchronized byte[] removeAtLeastOne() 
      throws InterruptedException {

    waitWhileEmpty()// wait for a least one to be in FIFO
    return removeAll();
  }

  public synchronized boolean waitUntilEmpty(long msTimeout
      throws InterruptedException {

    if msTimeout == 0L ) {
      waitUntilEmpty();  // use other method
      return true;
    }

    // wait only for the specified amount of time
    long endTime = System.currentTimeMillis() + msTimeout;
    long msRemaining = msTimeout;

    while !isEmpty() && msRemaining > 0L ) ) {
      wait(msRemaining);
      msRemaining = endTime - System.currentTimeMillis();
    }

    // May have timed out, or may have met condition, 
    // calc return value.
    return isEmpty();
  }

  public synchronized void waitUntilEmpty() 
      throws InterruptedException {

    while !isEmpty() ) {
      wait();
    }
  }

  public synchronized void waitWhileEmpty() 
      throws InterruptedException {

    while isEmpty() ) {
      wait();
    }
  }

  public synchronized void waitUntilFull() 
      throws InterruptedException {

    while !isFull() ) {
      wait();
    }
  }

  public synchronized void waitWhileFull() 
      throws InterruptedException {

    while isFull() ) {
      wait();
    }
  }
}


           
         
  
Related examples in the same category
1. 主题:哲学家吃通心粉
2. 同步另一个对象同步另一个对象
3. 线程是操作不安全线程是操作不安全
4. 同步块,而非整个方法同步块,而非整个方法
5. 布尔锁布尔锁
6. 静态同步块静态同步块
7. 线程通知线程通知
8. 线程死锁线程死锁
9. 同步方法同步方法
10. 线程加入线程加入
11. 静态同步静态同步
12. 没有同步没有同步
13. 线程同步线程同步
14. 同步块演示同步块演示
15. Interruptible Synchronized Block Interruptible Synchronized Block
16. 信令信令
17. 简单对象先进先出简单对象先进先出
18. 对象先进先出对象先进先出
19. 线程同步
20. 守护进程锁
21. 判断当前线程正在举行同步锁定
22. 处理并行读/写:使用同步锁定数据
23. 锁的读取和写入
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.