Latch 设计模式

x33g5p2x  于2022-04-27 转载在 其他  
字(2.9k)|赞(0)|评价(0)|浏览(483)

一 点睛

若干个线程并发执行某个特定的任务,然后等到所有的子任务都执行结束后在统一汇总,比如用户想要查询自己三年以来银行账户的流水,为了保证运行的数据库的数据量在一个恒定的范围之内,通常数据只会保存一年的记录,其他历史记录或被备份到磁盘,或者被存储到 hive 数据仓库,或者被转至备份数据库之中,总之,想要三年的流水记录,需要若干次的查询最后汇总返回给用户,很明显这样的操作性能低下,用户体验差,如果我们将每一个渠道的查询交给一个线程或者若干干线程去查询,然后统一汇总,那么性能会提高很多,响应时间也会缩短不少。

Latch 设计模式指定了一个屏障,只有所有条件都达到满足的时候,门栓才能打开。

二 实战

1 Latch

  1. package concurrent.latch;
  2. public abstract class Latch {
  3. // 用于控制多少个线程完成任务时才能打开阀门
  4. protected int limit;
  5. // 通过构造函数传入 limit
  6. public Latch(int limit) {
  7. this.limit = limit;
  8. }
  9. // 该方法会使得当前线程一直等待,直到所有的线程都完成工作,被阻塞的线程是允许被中断的
  10. public abstract void await() throws InterruptedException;
  11. // 当任务线程完成工作之后调用该方法使得计数器减一
  12. public abstract void countDown();
  13. // 获取当前还有多少个线程没有完成任务
  14. public abstract int getUnarriveed();
  15. }

2 CountDownLatch

  1. package concurrent.latch;
  2. /**
  3. * @className: CountDownLatch
  4. * @description: 无限等待门栓实现
  5. * @date: 2022/4/25
  6. * @author: 贝医
  7. */
  8. public class CountDownLatch extends Latch {
  9. public CountDownLatch(int limit) {
  10. super(limit);
  11. }
  12. @Override
  13. public void await() throws InterruptedException {
  14. synchronized (this) {
  15. // 当 limit > 0 时,当前线程进入阻塞状态
  16. while (limit > 0) {
  17. this.wait();
  18. }
  19. }
  20. }
  21. @Override
  22. public void countDown() {
  23. synchronized (this) {
  24. if (limit <= 0) {
  25. throw new IllegalStateException("all of task already arrived");
  26. }
  27. // 使 limit 减一,并且通知阻塞线程
  28. limit--;
  29. this.notifyAll();
  30. }
  31. }
  32. @Override
  33. public int getUnarriveed() {
  34. // 返回有多少线程还未完成任务
  35. return limit;
  36. }
  37. }

3 ProgrammerTravel

  1. package concurrent.latch;
  2. import java.util.concurrent.ThreadLocalRandom;
  3. import java.util.concurrent.TimeUnit;
  4. /**
  5. * @className: ProgrammerTravel
  6. * @description: 程序员旅游线程
  7. * @date: 2022/4/25
  8. * @author: cakin
  9. */
  10. public class ProgrammerTravel extends Thread {
  11. // 门栓
  12. private final Latch latch;
  13. // 程序员
  14. private final String programmer;
  15. // 交通工具
  16. private final String transportation;
  17. public ProgrammerTravel(Latch latch, String programmer, String transportation) {
  18. this.latch = latch;
  19. this.programmer = programmer;
  20. this.transportation = transportation;
  21. }
  22. @Override
  23. public void run() {
  24. System.out.println(programmer + " start take the transportation [" + transportation + "]");
  25. try {
  26. TimeUnit.SECONDS.sleep(ThreadLocalRandom.current().nextInt(10));
  27. } catch (InterruptedException e) {
  28. e.printStackTrace();
  29. }
  30. System.out.println(programmer + " arrived by" + transportation);
  31. // 完成任务时使计数器减一
  32. latch.countDown();
  33. }
  34. }

4 Test

  1. package concurrent.latch;
  2. public class Test {
  3. public static void main(String[] args) throws InterruptedException {
  4. // 定义 Latch,limit 为 4
  5. Latch latch = new CountDownLatch(4);
  6. new ProgrammerTravel(latch, "Alex", "Bus").start();
  7. new ProgrammerTravel(latch, "Gavin", "Walking").start();
  8. new ProgrammerTravel(latch, "Jack", "Subway").start();
  9. new ProgrammerTravel(latch, "Dillon", "Bicycle").start();
  10. // 当前线程(main 线程会进入阻塞,直到四个程序员全部都达到目的地)
  11. latch.await();
  12. System.out.println("== all of programmer arrvied ==");
  13. }
  14. }

三 测试结果

Alex start take the transportation [Bus]

Dillon start take the transportation [Bicycle]

Jack start take the transportation [Subway]

Gavin start take the transportation [Walking]

Jack arrived bySubway

Gavin arrived byWalking

Dillon arrived byBicycle

Alex arrived byBus

== all of programmer arrvied ==

相关文章