java中的 cyclicbarrier详解-亚博电竞手机版

目录

  • cyclicbarrier简介
  • cyclicbarrier源码分析
    • 类的继承关系
    • ​类的属性
    • 类的构造函数
  • 核心函数 - dowait函数
  • 核心函数 - nextgeneration函数

cyclicbarrier简介

对于countdownlatch,其他线程为trip = lock.newcondition(); /** the number of parties */ // 参与的线程数量 private final int parties; /* the command to run when tripped */ // 由最后一个进入 barrier 的线程执行的操作 private final runnable barriercommand; /** the current generation */ // 当前代 private generation generation = new generation(); // 正在等待进入屏障的线程数量 private int count; }

该属性有一个为reentrantlock对象,有一个为condition对象,而condition对象又是基于aqs的,所以,归根到底,底层还是由aqs提供支持。

类的构造函数

public cyclicbarrier(int parties, runnable barrieraction) { // 参与的线程数量小于等于0,抛出异常 if (parties <= 0) throw new illegalargumentexception(); // 设置parties this.parties = parties; // 设置count this.count = parties; // 设置barriercommand this.barriercommand = barrieraction; }

该构造函数可以指定关联该cyclicbarrier的线程数量,并且可以指定在所有线程都进入屏障后的执行动作,该执行动作由最后一个进行屏障的线程执行。

public cyclicbarrier(int parties) { // 调用含有两个参数的构造函数 this(parties, null); }

该构造函数仅仅执行了关联该cyclicbarrier的线程数量,没有设置执行动作。

核心函数 - dowait函数

此函数为cyclicbarrier类的核心函数,cyclicbarrier类对外提供的await函数在底层都是调用该了doawait函数,

private int dowait(boolean timed, long nanos) throws interruptedexception, brokenbarrierexception, timeoutexception { // 保存当前锁 final reentrantlock lock = this.lock; // 锁定 lock.lock(); try { // 保存当前代 final generation g = generation; if (g.broken) // 屏障被破坏,抛出异常 throw new brokenbarrierexception(); if (thread.interrupted()) { // 线程被中断 // 损坏当前屏障,并且唤醒所有的线程,只有拥有锁的时候才会调用 breakbarrier(); // 抛出异常 throw new interruptedexception(); } // 减少正在等待进入屏障的线程数量 int index = --count; if (index == 0) { // 正在等待进入屏障的线程数量为0,所有线程都已经进入 // 运行的动作标识 boolean ranaction = false; try { // 保存运行动作 final runnable command = barriercommand; if (command != null) // 动作不为空 // 运行 command.run(); // 设置ranaction状态 ranaction = true; // 进入下一代 nextgeneration(); return 0; } finally { if (!ranaction) // 没有运行的动作 // 损坏当前屏障 breakbarrier(); } } // loop until tripped, broken, interrupted, or timed out // 无限循环 for (;;) { try { if (!timed) // 没有设置等待时间 // 等待 trip.await(); else if (nanos > 0l) // 设置了等待时间,并且等待时间大于0 // 等待指定时长 nanos = trip.awaitnanos(nanos); } catch (interruptedexception ie) { if (g == generation && ! g.broken) { // 等于当前代并且屏障没有被损坏 // 损坏当前屏障 breakbarrier(); // 抛出异常 throw ie; } else { // 不等于当前带后者是屏障被损坏 // we're about to finish waiting even if we had not // been interrupted, so this interrupt is deemed to // "belong" to subsequent execution. // 中断当前线程 thread.currentthread().interrupt(); } } if (g.broken) // 屏障被损坏,抛出异常 throw new brokenbarrierexception(); if (g != generation) // 不等于当前代 // 返回索引 return index; if (timed && nanos <= 0l) { // 设置了等待时间,并且等待时间小于0 // 损坏屏障 breakbarrier(); // 抛出异常 throw new timeoutexception(); } } } finally { // 释放锁 lock.unlock(); } }

核心函数 - nextgeneration函数

此函数在所有线程进入屏障后会被调用,即生成下一个版本,所有线程又可以重新进入到屏障中,

private void nextgeneration() { // signal completion of last generation // 唤醒所有线程 trip.signalall(); // set up next generation // 恢复正在等待进入屏障的线程数量 count = parties; // 新生一代 generation = new generation(); }

在此函数中会调用aqs的signalall方法,即唤醒所有等待线程。如果所有的线程都在等待此条件,则唤醒所有线程。

public final void signalall() { if (!isheldexclusively()) // 不被当前线程独占,抛出异常 throw new illegalmonitorstateexception(); // 保存condition队列头节点 node first = firstwaiter; if (first != null) // 头节点不为空 // 唤醒所有等待线程 dosignalall(first); }

到此这篇关于java中的cyclicbarrier详解的文章就介绍到这了,更多相关java中的cyclicbarrier内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图