服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - Java并发Timer源码分析

Java并发Timer源码分析

2021-05-14 11:18狂小白 Java教程

这篇文章讲述了java并发编程的相关知识点,并通过Timer源码分析更深入的讲解了java并发编程。

timer在jdk里面,是很早的一个api了。具有延时的,并具有周期性的任务,在newscheduledthreadpool出来之前我们一般会用timer和timertask来做,但是timer存在一些缺陷,为什么这么说呢?

timer只创建唯一的线程来执行所有timer任务。如果一个timer任务的执行很耗时,会导致其他timertask的时效准确性出问题。例如一个timertask每10秒执行一次,而另外一个timertask每40ms执行一次,重复出现的任务会在后来的任务完成后快速连续的被调用4次,要么完全“丢失”4次调用。timer的另外一个问题在于,如果timertask抛出未检查的异常会终止timer线程。这种情况下,timer也不会重新回复线程的执行了;它错误的认为整个timer都被取消了。此时已经被安排但尚未执行的timertask永远不会再执行了,新的任务也不能被调度了。

这里做了一个小的 demo 来复现问题,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.hjc;
 
import java.util.timer;
import java.util.timertask;
 
/**
 * created by cong on 2018/7/12.
 */
public class timertest {
 //创建定时器对象
 static timer timer = new timer();
 
 public static void main(string[] args) {
 //添加任务1,延迟500ms执行
 timer.schedule(new timertask() {
 
  @override
  public void run() {
  system.out.println("---one task---");
  try {
   thread.sleep(1000);
  } catch (interruptedexception e) {
   e.printstacktrace();
  }
  throw new runtimeexception("error ");
  }
 }, 500);
 //添加任务2,延迟1000ms执行
 timer.schedule(new timertask() {
 
  @override
  public void run() {
  for (;;) {
   system.out.println("---two task---");
   try {
   thread.sleep(1000);
   } catch (interruptedexception e) {
   // todo auto-generated catch block
   e.printstacktrace();
   }
  }
  }
 }, 1000);
 
 }
}

如上代码先添加了一个任务在 500ms 后执行,然后添加了第二个任务在 1s 后执行,我们期望的是当第一个任务输出 ---one task--- 后等待 1s 后第二个任务会输出 ---two task---,

但是执行完毕代码后输出结果如下所示:

Java并发Timer源码分析

例子2,

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class shedule {
 private static long start;
 
 public static void main(string[] args) {
  timertask task = new timertask() {
   public void run() {
    system.out.println(system.currenttimemillis()-start);
    try{
     thread.sleep(3000);
    }catch (interruptedexception e){
     e.printstacktrace();
    }
   }
  };
 
  timertask task1 = new timertask() {
   @override
   public void run() {
    system.out.println(system.currenttimemillis()-start);
   }
  };
 
  timer timer = new timer();
  start = system.currenttimemillis();
  //启动一个调度任务,1s钟后执行
  timer.schedule(task,1000);
  //启动一个调度任务,3s钟后执行
  timer.schedule(task1,3000);
 
 
 }
 
}

上面程序我们预想是第一个任务执行后,第二个任务3s后执行的,即输出一个1000,一个3000.

实际运行结果如下:

Java并发Timer源码分析

实际运行结果并不如我们所愿。世界结果,是过了4s后才输出第二个任务,即4001约等于4秒。那部分时间时间到哪里去了呢?那个时间是被我们第一个任务的sleep所占用了。

现在我们在第一个任务中去掉thread.sleep();这一行代码,运行是否正确了呢?运行结果如下:

Java并发Timer源码分析

可以看到确实是第一个任务过了1s后执行,第二个任务在第一个任务执行完后过3s执行了。

这就说明了timer只创建唯一的线程来执行所有timer任务。如果一个timer任务的执行很耗时,会导致其他timertask的时效准确性出问题。

timer 实现原理分析

下面简单介绍下 timer 的原理,如下图是 timer 的原理模型介绍:

Java并发Timer源码分析

1.其中 taskqueue 是一个平衡二叉树堆实现的优先级队列,每个 timer 对象内部有唯一一个 taskqueue 队列。用户线程调用 timer 的 schedule 方法就是把 timertask 任务添加到 taskqueue 队列,在调用 schedule 的方法时候 long delay 参数用来说明该任务延迟多少时间执行。

2.timerthread 是具体执行任务的线程,它从 taskqueue 队列里面获取优先级最小的任务进行执行,需要注意的是只有执行完了当前的任务才会从队列里面获取下一个任务而不管队列里面是否有已经到了设置的 delay 时间,一个 timer 只有一个 timerthread 线程,所以可知 timer 的内部实现是一个多生产者单消费者模型。

从实现模型可以知道要探究上面的问题只需看 timerthread 的实现就可以了,timerthread 的 run 方法主要逻辑源码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
public void run() {
 try {
  mainloop();
 } finally {
  // 有人杀死了这个线程,表现得好像timer已取消
  synchronized(queue) {
   newtasksmaybescheduled = false;
   queue.clear(); // 消除过时的引用
  }
 }
}
 private void mainloop() {
  while (true) {
   try {
    timertask task;
    boolean taskfired;
    //从队列里面获取任务时候要加锁
    synchronized(queue) {
     ......
    }
    if (taskfired)
     task.run();//执行任务
   } catch(interruptedexception e) {
   }
  }
 }

可知当任务执行过程中抛出了除 interruptedexception 之外的异常后,唯一的消费线程就会因为抛出异常而终止,那么队列里面的其他待执行的任务就会被清除。所以 timertask 的 run 方法内最好使用 try-catch 结构 catch 主可能的异常,不要把异常抛出到 run 方法外。

其实要实现类似 timer 的功能使用 scheduledthreadpoolexecutor 的 schedule 是比较好的选择。scheduledthreadpoolexecutor 中的一个任务抛出了异常,其他任务不受影响的。

scheduledthreadpoolexecutor 例子如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 * created by cong on 2018/7/12.
 */
public class scheduledthreadpoolexecutortest {
 static scheduledthreadpoolexecutor scheduledthreadpoolexecutor = new scheduledthreadpoolexecutor(1);
 
 public static void main(string[] args) {
 
  scheduledthreadpoolexecutor.schedule(new runnable() {
 
   public void run() {
    system.out.println("---one task---");
    try {
     thread.sleep(1000);
    } catch (interruptedexception e) {
     e.printstacktrace();
    }
    throw new runtimeexception("error ");
   }
 
  }, 500, timeunit.microseconds);
 
  scheduledthreadpoolexecutor.schedule(new runnable() {
 
   public void run() {
    for (int i =0;i<5;++i) {
     system.out.println("---two task---");
     try {
      thread.sleep(1000);
     } catch (interruptedexception e) {
      e.printstacktrace();
     }
    }
 
   }
 
  }, 1000, timeunit.microseconds);
 
  scheduledthreadpoolexecutor.shutdown();
 }
}

运行结果如下:

Java并发Timer源码分析

之所以 scheduledthreadpoolexecutor 的其他任务不受抛出异常的任务的影响是因为 scheduledthreadpoolexecutor 中的 scheduledfuturetask 任务中 catch 掉了异常,但是在线程池任务的 run 方法内使用 catch 捕获异常并打印日志是最佳实践。

原文链接:https://www.cnblogs.com/huangjuncong/p/9296897.html

延伸 · 阅读

精彩推荐