Java并发系列之六 CyclicBarrier源码解析

本文涉及的产品
全局流量管理 GTM,标准版 1个月
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: Java并发系列之六 CyclicBarrier源码解析

CyclicBarrier概述



CyclicBarrier字面意思是可循环使用的线程屏障。


CyclicBarrier的功能和CountDownLatch功能有点相似。都能实现线程间相互等待,直到线程做完某些任务,唤醒等待线程。那么既然他们功能类似,提供一种解决方案不就行了吗,为什么还要再提供一个呢。原因是他们的侧重点其实还不一样。在CountDownLatch中我们把线程归类为两种,一类是工作线程,一类是阻塞线程。工作线程执行完任务,可以调用countDown()方法,释放共享锁,阻塞线程则是通过await()方法 自旋获取共享锁,注意这里工作线程是不会阻塞的。在CyclicBarrier中其实只有一类线程,那就是工作线程,假设有5个工作线程,工作线程执行完任务,会判断其他4个工作线程是否执行结束,如果还有线程没有执行完,那么工作线程会阻塞,等待其他线程结束完。当其他线程都执行完了才会执行下一步,CyclicBarrier会阻塞工作线程。而且CyclicBarrier内部使用的是ReentrantLock和Condition。我们知道Condition可以让线程阻塞,并且放入到Condition的单链表中。

public class CyclicBarrierUsage {
    public static void main(String[] args) {
        int N = 5;//一共有五个线程,如果线程都执行完了
        CyclicBarrier cyclicBarrier = new CyclicBarrier(N, new Runnable() {//
            @Override
            public void run() {
                System.out.println(Thread.currentThread().getName() + " --- after run ");
            }
        });
        for (int i = 0; i < N; i++) {//五个工作线程
            new Thread() {
                @Override
                public void run() {
                    super.run();
                    try {
                        TimeUnit.SECONDS.sleep(1);//模拟工作
                        System.out.println(Thread.currentThread().getName() + " --- completed ");
                        cyclicBarrier.await();//执行完工作 等待其他线程完成
                        System.out.println(Thread.currentThread().getName() + " --- run again ");
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }catch (BrokenBarrierException e) {
                        e.printStackTrace();
                    }
                }
            }.start();
        }
    }
}

输出结果


Thread-2 — completed


Thread-1 — completed


Thread-0 — completed


Thread-4 — completed


Thread-3 — completed


Thread-3 — after run


Thread-3 — run again


Thread-2 — run again


Thread-0 — run again


Thread-4 — run again


Thread-1 — run again


构建CyclicBarrier的时候我们往构造函数传递了一个Runnable对象,这个Runnable会在线程屏障点到达的时候,被刚好到达屏障点的那个线程执行。所以它是在工作线程中执行的。如果我们在Android开发中,需要在UI线程中执行Runnable还需要转到UI线程执行


源码解析


构造函数

 public CyclicBarrier(int parties, Runnable barrierAction) {
        if (parties <= 0) throw new IllegalArgumentException();
        this.parties = parties;//线程个数
        this.count = parties;
        this.barrierCommand = barrierAction;//到达屏障点 需要执行的任务
    }
    public CyclicBarrier(int parties) {
        this(parties, null);
    }

成员变量

/** The lock for guarding barrier entry */
private final ReentrantLock lock = new ReentrantLock();
/** Condition to wait on until tripped */
private final Condition trip = lock.newCondition();
/** The number of parties */
private final int parties;
/* The command to run when tripped */
private final Runnable barrierCommand;
/** The current generation */
private Generation generation = new Generation();

通过成员变量我们可以知道内部使用的就是ReentrantLock和Condition


await()

public int await() throws InterruptedException, BrokenBarrierException {
        try {
            return dowait(false, 0L);
        } catch (TimeoutException toe) {
            throw new Error(toe); // cannot happen
        }
    }

接下来我们详细讲解下dowait(),基本上精华都在里面了

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;//线程获取到锁了,count-1
            if (index == 0) {  // index=0表示所有线程都执行过了,触发屏障
                boolean ranAction = false;
                try {
                    final Runnable command = barrierCommand;
                    if (command != null)
                        command.run();//执行Runnable
                    ranAction = true;
                    nextGeneration();//nextGeneration会调用trip.signalAll(),唤醒所有等待在trip上的线程
                    return 0;
                } finally {
                    if (!ranAction)//如果抛异常了 唤醒所有等待在trip上的线程
                        breakBarrier();
                }
            }
            // 如果index!=0表示还有其他线程没有执行过,那么调用trip.await(),让当前线程阻塞
            for (;;) {
                try {
                    if (!timed)
                        trip.await();
                    else if (nanos > 0L)
                        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) {
                    breakBarrier();
                    throw new TimeoutException();
                }
            }
        } finally {
            lock.unlock();
        }
    }


相关文章
|
4天前
|
消息中间件 缓存 安全
Future与FutureTask源码解析,接口阻塞问题及解决方案
【11月更文挑战第5天】在Java开发中,多线程编程是提高系统并发性能和资源利用率的重要手段。然而,多线程编程也带来了诸如线程安全、死锁、接口阻塞等一系列复杂问题。本文将深度剖析多线程优化技巧、Future与FutureTask的源码、接口阻塞问题及解决方案,并通过具体业务场景和Java代码示例进行实战演示。
21 3
|
6天前
|
JavaScript Java 项目管理
Java毕设学习 基于SpringBoot + Vue 的医院管理系统 持续给大家寻找Java毕设学习项目(附源码)
基于SpringBoot + Vue的医院管理系统,涵盖医院、患者、挂号、药物、检查、病床、排班管理和数据分析等功能。开发工具为IDEA和HBuilder X,环境需配置jdk8、Node.js14、MySQL8。文末提供源码下载链接。
|
9天前
|
移动开发 前端开发 JavaScript
java家政系统成品源码的关键特点和技术应用
家政系统成品源码是已开发完成的家政服务管理软件,支持用户注册、登录、管理个人资料,家政人员信息管理,服务项目分类,订单与预约管理,支付集成,评价与反馈,地图定位等功能。适用于各种规模的家政服务公司,采用uniapp、SpringBoot、MySQL等技术栈,确保高效管理和优质用户体验。
|
21天前
|
存储
让星星⭐月亮告诉你,HashMap的put方法源码解析及其中两种会触发扩容的场景(足够详尽,有问题欢迎指正~)
`HashMap`的`put`方法通过调用`putVal`实现,主要涉及两个场景下的扩容操作:1. 初始化时,链表数组的初始容量设为16,阈值设为12;2. 当存储的元素个数超过阈值时,链表数组的容量和阈值均翻倍。`putVal`方法处理键值对的插入,包括链表和红黑树的转换,确保高效的数据存取。
48 5
|
23天前
|
Java Spring
Spring底层架构源码解析(三)
Spring底层架构源码解析(三)
|
23天前
|
缓存 Java 程序员
Map - LinkedHashSet&Map源码解析
Map - LinkedHashSet&Map源码解析
58 0
|
23天前
|
算法 Java 容器
Map - HashSet & HashMap 源码解析
Map - HashSet & HashMap 源码解析
48 0
|
23天前
|
存储 Java C++
Collection-PriorityQueue源码解析
Collection-PriorityQueue源码解析
54 0
|
23天前
|
安全 Java 程序员
Collection-Stack&Queue源码解析
Collection-Stack&Queue源码解析
68 0
|
23天前
|
XML Java 数据格式
Spring底层架构源码解析(二)
Spring底层架构源码解析(二)

热门文章

最新文章

推荐镜像

更多