`
zhouchaofei2010
  • 浏览: 1104122 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

java并发编程实战-第14章-构建自定义的同步器

 
阅读更多

java并发编程实战-第14章-构建自定义的同步器

14.构建自定义的同步器

类库中包含很多状态依赖的类 FutureTask 、Semaphore 和 BlockingQueue等

14.1 状态依赖的管理

  在并发程序中,基于状态的条件可能会由于其他线程的操作而改变

  

  通过轮询和sleep可以勉强解决状态依赖的问题,但高效的做法是使用条件等待机制

  

14.1.1 将前提条件的失败传给调用者 。

        这导致调用者还得自己处理前提条件失败的情况

14.1.2 通过轮询和sleep可以勉强解决状态依赖的问题

       解决状态依赖的问题

 

14.1.3  条件队列

       wait  notify/notofyAll

14.2  使用条件队列

        条件队列使构建搞笑及可响应的状态类变得更容易,但同时也很容易被不正确使用。使用一定规则

 

可以保证正确使用,但平台和编译器并没有强制要求

        遵循这些规则。

        

       This is one of the reasons to build on top of classes like LinkedBlockingQueue, 

 

CountDown-Latch, Semaphore, and FutureTask when you can; if you can get away with it, it is a 

 

lot easier

14.2.1 条件谓词

     1、 Document the condition predicate(s) associated with a condition queue and the 

 

operations that wait on them.

      

     2、Every call to wait is implicitly associated with a specific condition predicate. When 

 

calling wait regarding a particular condition predicate, the caller must already hold the lock 

 

associated with the condition queue, and that lock must also guard the state variables from 

 

which the condition predicate is composed.

        

        重要的三元关系: 加锁 、条件谓词、和wait() 

      

      

        比如 BoundedBuffer.java

      

   // BLOCKS-UNTIL: not-full

   public synchronized void put(V v) throws InterruptedException { //加锁 

       while (isFull())//条件谓词

           wait(); //wait  

       doPut(v);

       notifyAll();

   }

 

   // BLOCKS-UNTIL: not-empty

   public synchronized V take() throws InterruptedException {

       while (isEmpty())

           wait();

       V v = doTake();

       notifyAll();

       return v;

   }

      

14.2.2 过早唤醒

        当一个线程由于待用notifyAll而醒来时,并不意味着该线程等待的条件谓词已经变成真了。所以

 

呢,wait 要放在一个循环里,当唤醒时,再次判断一下条件

        

        

        When using condition waits (Object.wait or Condition.await):

 

Always have a condition predicatesome test of 

 

object state that must hold before proceeding;

 

Always test the condition predicate before 

 

calling wait, and again after returning from wait;

 

Always call wait in a loop;

 

Ensure that the state variables making up the 

 

condition predicate are guarded by the lock associated with the condition queue;

 

Hold the lock associated with the the 

 

condition queue when calling wait, notify, or notifyAll; and

 

Do not release the lock after checking the 

 

condition predicate but before acting on it.

       如上总结步骤:锁->循环等待条件if(!condition){wait}->执行相关操作->notify/notifyAll

       

14.2.3 丢失的信号 

 

比如 :fails to check the condition predicate before waiting

 

;没在条用wait之前检查条件

 

14.2.4 通知

       Single notify can be used instead of notifyAll only when both of the following 

 

conditions hold:

Uniform waiters(相同类型的等待者). Only one condition 

 

predicate is associated with the condition queue, and each thread executes the same logic upon 

 

returning from wait; and

One-in, one-out(单进单出). A notification on the condition 

 

variable enables at most one thread to proceed.

 

优化:条件通知: 很难实现,原则:首先使程序真确执行,然后使其更快

 

Listing 14.8. Using Conditional Notification in BoundedBuffer.put.

public synchronized void put(V v) throws InterruptedException 

 

{

   while (isFull())

       wait();

   boolean wasEmpty = isEmpty();

   doPut(v);

   if (wasEmpty)

       notifyAll();

}

 

    因为,在take线程则只有在wasEmpty=true的时候阻塞,所以可以优化为当wasEmpty=true时,put的操

 

作后才notify。

    

14.2.5   示例阀门类

 

  一个允许打开后能马上就关闭的阀门类,线程通过的条件(isOpen 或者 已经被打开过,但是现在关闭了

 

 

Listing 14.9. Recloseable Gate Using Wait and Notifyall.

@ThreadSafe

public class ThreadGate {

   // CONDITION-PREDICATE: opened-since(n) (isOpen || generation>n)

   @GuardedBy("this") private boolean isOpen;

   @GuardedBy("this") private int generation;

 

   public synchronized void close() {

       isOpen = false;

   }

 

   public synchronized void open() {

       ++generation;

       isOpen = true;

       notifyAll();

   }

 

   // BLOCKS-UNTIL: opened-since(generation on entry)

   public synchronized void await() throws InterruptedException {

       int arrivalGeneration = generation;

       while (!isOpen && arrivalGeneration == generation)

           wait();

   }

}

 

===流程分析

  close()   isOpen = false; arrivalGeneration=0,generation=0

  t1.await  isOpen = false; arrivalGeneration=0,generation=0

  t2.await  isOpen = false; arrivalGeneration=0,generation=0

  open()    isOpen = true;  arrivalGeneration=0,generation=1

  t1 t2 通过 (isOpen=true)

  close()   isOpen = false; arrivalGeneration=1,generation=1

  t3.await  isOpen = false; arrivalGenerati=1,generation=1

  t4.await  isOpen = false; arrivalGenerati=1,generation=1

  open()    isOpen = true; arrivalGenerati=1,generation=2

  close()   isOpen = false; arrivalGeneration=1,generation=2

  t2 t3 通过 (isOpen=false,但是arrivalGeneration<generation,说明t3、t4在await的时候,已经打

 

开了,所以可以通过)

  

 

14.2.6 子类的安全问题

 

  要么围绕继承来设计和文档化 ,要么完全禁止子类化,例如将类声明为final,或者将条件队列、锁和状

 

态变量隐藏起来

     

  安全问题例子:比如子类添加了一个阻塞连续弹出2个元素的方法,则父类的push方法必须在子类重写为

 

notifyAll

14.2.7 封装条件队列

    使用私有锁,不再支持客户端加锁。通常应该是这样子的,但是这和线程安全类的常见设计模式并不一

 

致。即缓存对象即是锁又是缓存队列

    

14.2.8  入口协议和出口协议

   入口协议 :条件谓词condition predicate

   出口协议 :检查操作是否改变状态,使其他条件谓词为真,是则通知

   

   AbstractQueuedSynchronizer, 是有出口协议的,但不是自己notify,通过显示的api,比如getState(

 

)。明确的API调用,使得其在状态转化是更不容易被忘记通知。

   

   

14.3 显示的Condition对象

     参考 :ConditionBoundedBuffer

     // CONDITION PREDICATE: notFull (count < items.length)

       private final Condition notFull = lock.newCondition();

       notFull.await();是怎么实现线程阻塞与锁释放呢?

       

    实现类AbstractQueuedSynchronizer$ConditonObject->await()->  LockSupport.park(this)-

 

>setBlocker(t, blocker);  unsafe.park(false, 0L);   setBlocker(t, null);

       

14.4 Synchronizer剖析

 

    CountDownLatch, ReentrantReadWriteLock, SynchronousQueue 和  FutureTask.都使用了共同的基类

 

:AbstractQueuedSynchronizer

    

14.5 AbstractQueuedSynchronizer

    

     重点:理解其工作原理

     

     基本操作 acquire and release 

     

     acquire:Acquisition is the state-dependent operation and can always block

     

     

     release: 更新同步状态,如果新的允许阻塞的线程获取成功。则解除阻塞状态

       

     Listing 14.13. Canonical Forms for Acquisition and Release in AQS.

     

boolean acquire() throws InterruptedException {

   while (state does not permit acquire) {

       if (blocking acquisition requested) {

           enqueue current thread if not already queued

           block current thread

       }

       else

           return failure

   }

   possibly update synchronization state

   dequeue thread if it was queued

   return success

}

 

void release() {

   update synchronization state

   if (new state may permit a blocked thread to acquire)

       unblock one or more queued threads

}

 

 

 

   基类 AQS 封装了acquire() 和 release(),

   

   基类中acquire() 和 release()调用的子类中用带try前缀的方法来判断某个操作是否会成功。(如果成

 

功则进行入队、阻塞等操作)  在同步器的子类中,根据具体语义,使用getState和setState以及

 

compareAndSetState来检查和更新状态,

   并通过返回的状态值来判断基类的acquire、release操作是否成功

   

   参考例子 :OneShotLatch 

   

14.6  AQS in Java.util.concurrent Synchronizer Classes

 

14.6.1 ReentrantLock   (重点分析)  

       只支持独占方式获取锁,主要是实现tryAcquire, tryRelease, and isHeldExclusively,以 

 

tryAcquire()分析

14.6.2 Semaphore and CountDownLatch

        共享,待分析     

14.6.3 FutureTask

       待具体分析

14.6.4 ReentrantReadWriteLock

       待具体分析

 

小结:

  

   要实现一个状态依赖的类,最好的方式是基于现有的类,比如Semaphore, BlockingQueue, or 

 

CountDownLatch。如果跟多要求,则通过AQS自定义自己的同步器类

   

 

分享到:
评论

相关推荐

    Java并发编程实战

    第1章 简介 1.1 并发简史 1.2 线程的优势 1.2.1 发挥多处理器的强大能力 ...第14章 构建自定义的同步工具 第15章 原子变量与非阻塞同步机制 第16章 Java内存模型 附录A 并发性标注 参考文献

    Java 并发编程实战

    前 言 第1章 简介 1.1 并发简史 1.2 线程的优势 1.2.1 发挥多处理器的强大能力 1.2.2 建模的简单性 ...第14章 构建自定义的同步工具 第15章 原子变量与非阻塞同步机制 第16章 Java内存模型 附录A 并发性标注

    汪文君高并发编程实战视频资源下载.txt

    │ Java并发编程.png │ ppt+源码.rar │ 高并发编程第二阶段01讲、课程大纲及主要内容介绍.wmv │ 高并发编程第二阶段02讲、介绍四种Singleton方式的优缺点在多线程情况下.wmv │ 高并发编程第二阶段03讲、...

    汪文君高并发编程实战视频资源全集

    │ Java并发编程.png │ ppt+源码.rar │ 高并发编程第二阶段01讲、课程大纲及主要内容介绍.wmv │ 高并发编程第二阶段02讲、介绍四种Singleton方式的优缺点在多线程情况下.wmv │ 高并发编程第二阶段03讲、...

    疯狂Java实战演义

    《疯狂Java实战演义》是一本深度探讨Java编程技术的实战书籍,虽然提及缺少第五章的内容,但从其他章节的标题可以看出这本书涵盖了广泛的Java应用领域。以下是各章节的主要知识点概述: 1. **第7章 - 单机连连看** ...

    Java Programming 24-Hour Trainer

    综上所述,《Java编程24小时训练营》这本书系统地介绍了Java编程的基础知识和高级技能,并通过大量的实战案例帮助读者更好地理解和掌握Java编程技术。无论是初学者还是有一定基础的开发者,都能从中获得有价值的指导...

    疯狂java实战演义 word格式

    8. **第14章 自己开发IoC容器.doc** 这一章节深入讨论了依赖注入(DI)的概念,以及如何自定义一个简单的控制反转(IoC)容器。读者可以学习到如何在Java应用中实现松耦合和可扩展性。 9. **第11章 多线程下载工具...

    <<Java通用范例开发金典>>一书的完整源代码及其相关资源(二).zip

    5. **多线程编程**:第14章可能涵盖了线程的创建、同步控制(synchronized关键字、wait/notify机制)和线程池的使用,这对于构建高性能并发应用程序至关重要。 6. **网络编程**:Java的Socket编程在第15章中可能...

    java核心技术第七版源代码卷二

    《Java核心技术第七版源代码卷二》是一本深入解析Java编程技术的重要参考资料,它涵盖了Java开发中的核心概念、原理及实战应用。这份压缩包包含了该书的所有实例代码,供学习者进行实践操作和深入理解。这里我们将...

    java2参考大全 ver4

    《Java2参考大全 Ver4》是一本专注于Java编程语言的权威指南,主要涵盖了Java 2平台的第四版本,也就是我们通常所说的J2SE 1.4。这本书是开发者们深入理解Java技术、提升编程技能的重要参考资料。以下是该书可能涵盖...

    java基础学习的ppt

    12. **多线程**:介绍并发编程的基础,线程的创建(通过Thread类或实现Runnable接口),线程同步(synchronized关键字,wait(), notify(), notifyAll()方法),以及线程池的概念。 13. **反射机制**:解释如何在...

    Java.J2EE.Job.Interview.Companion.2nd.Edition.Apr.2007

    4. **多线程**:线程的基本概念,同步机制(synchronized、wait/notify、ReentrantLock等),线程池,以及并发工具类(如ExecutorService、Semaphore、CountDownLatch)。 5. **I/O流**:字节流、字符流,以及缓冲...

    java软件工程师面试基本题.docx

    这些难题主要包括但不限于:系统架构设计不合理导致的性能瓶颈、并发控制不当引发的数据一致性问题、代码复用性差导致的维护成本增加、第三方库或框架兼容性问题等。解决这些问题通常需要具备扎实的基础知识和丰富的...

Global site tag (gtag.js) - Google Analytics