当前位置:   article > 正文

Android ANR详解_android anr原理

android anr原理

一、什么是ANR

ANR(Application Not responding),是指应用程序未响应,Android系统对于一些事件需要在一定的时间范围内完成,如果超过预定时间能未能得到有效响应或者响应时间过长,都会造成ANR。一般地,这时往往会弹出一个提示框,告知用户当前xxx未响应,用户可选择继续等待或者Force Close。

哪些场景会造成ANR呢?

  • Service Timeout:前台服务在20s内未执行完成;

  • BroadcastQueue Timeout:前台广播在10s内未执行完成

  • ContentProvider Timeout:内容提供者在publish过超时10s;

  • InputDispatching Timeout:输入事件分发超时5s,包括按键和触摸事件。

二、ANR原理

发生ANR时会调用AppNotRespondingDialog.show()方法弹出对话框提示用户,该对话框的依次调用关系:

  1. AppErrors.appNotResponding(); //ANR对话框的唯一入口
  2. AMS.UiHandler.sendMessage(ActivityManagerService.SHOW_NOT_RESPONDING_UI_MSG);
  3. AppErrors.handleShowAnrUi();
  4. AppNotRespondingDialog.show();

根据造成ANR的场景,产生ANR的来源可以总结为两大类:组件类ANR和Input ANR。

(一)Service超时机制

对于​Service、Broadcast、Provider​组件类的​ANR​而言,如果把发生ANR比作是引爆炸弹,那么整个流程包含三部分组成:

  • 埋炸弹:中控系统(system_server进程)启动倒计时,在规定时间内如果目标(应用进程)没有干完所有的活,则中控系统会定向炸毁(杀进程)目标。

  • 拆炸弹:在规定的时间内干完工地的所有活,并及时向中控系统报告完成,请求解除定时炸弹,则幸免于难。

  • 引爆炸弹:中控系统立即封装现场,抓取快照,搜集目标执行慢的罪证(traces),便于后续调试分析,最后是炸毁目标。

  1. bumpServiceExecutingLocked;
  2. scheduleServiceTimeoutLocked; //监听Service运行时间
  3. AMS.post(SERVICE_TIMEOUT_MSG); //记录executeingService并发送超时消息
  4. ActiveServices.serviceTimeout; //判断是否超时
  5. AppErrors.appNotResponding;

bumpServiceExecutingLocked 在很多地方被调用:

  1. requestServiceBindingLocked(ServiceRecord, IntentBindRecord, boolean, boolean)
  2. realStartServiceLocked(ServiceRecord, ProcessRecord, boolean)
  3. sendServiceArgsLocked(ServiceRecord, boolean, boolean)
  4. bringDownServiceLocked(ServiceRecord)
  5. removeConnectionLocked(ConnectionRecord, ProcessRecord, ActivityRecord)

每个调用的地方都对应着Service的一个生命周期,也就是说Service的每个生命周期开始时都会调用到​scheduleServiceTimeoutLocked​用于监听Service运行的时间。

(二)输入事件超时机制

Input​类型的ANR在日常开发中更为常见且更复杂,比如用户或者测试反馈,点击屏幕中的UI元素导致卡死。

与组件类ANR不同的是,Input类型的超时机制并非时间到了一定就会爆炸,而是处理后续上报事件的过程才会去检测是否该爆炸,所以更像是扫雷过程。

什么叫做扫雷呢,对于输入系统而言,即使某次事件执行时间超过预期的时长,只要用户后续没有再生成输入事件,那么也不需要ANR。而只有当新一轮的输入事件到来,此时正在分发事件的窗口(即App应用本身)迟迟无法释放资源给新的事件去分发,这时​InputDispatcher​才会根据超时时间,动态的判断是否需要向对应的窗口提示ANR信息。

InputDispatcher​的源码实现中,整体的事件分发流程共使用到3个事件队列:

  • inBoundQueue:用于记录​InputReader​发送过来的输入事件;

  • outBoundQueue:用于记录即将分发给目标应用窗口的输入事件;

  • waitQueue:用于记录已分发给目标应用,且应用尚未处理完成的输入事件。

1. 第一轮事件分发

首先​InputReader​线程 通过​EventHub​监听到底层的输入事件上报,并将其放入了​inBoundQueue​中,同时唤醒了​InputDispatcher​线程。

然后​InputDispatcher​开始了第一轮的事件分发,此时并没有正在处理的事件,因此​InputDispatcher​从​inBoundQueue​队列头部取出事件,并重置ANR的计时,并检查窗口是否就绪,此时窗口准备就绪,将该事件转移到了​outBoundQueue​队列中,因为应用管道对端连接正常,因此事件从​outBoundQueue​取出,然后放入了​waitQueue​队列,因为​Socket​双向通信已经建立,接下来就是 应用进程 接收到新的事件,然后对其进行分发。

如果应用进程事件分发正常,那么会通过​Socket​向​system_server​通知完成,则对应的事件最终会从​waitQueue​队列中移除。

2. 第二轮事件分发

如果第一轮事件分发尚未接收到回调通知,第二轮事件分发抵达又是如何处理的呢?

第二轮事件到达​InputDispatcher​时,此时​InputDispatcher​发现有事件正在处理,因此不会从​inBoundQueue​取出新的事件,而是直接检查窗口是否就绪,若未就绪,则进入ANR检测状态。

至此,输入系统检测到了ANR的发生,并向上层抛出了本次ANR的相关信息。

这里我们来总结一下,有哪些路径会引发ANR?

从埋下定时炸弹到拆炸弹之间的任何一个或多个路径执行慢都会导致ANR(以service为例),可以是service的生命周期的回调方法(比如onStartCommand)执行慢,可以是主线程的消息队列存在其他耗时消息让service回调方法迟迟得不到执行,可以是SP操作执行慢,可以是system_server进程的binder线程繁忙而导致没有及时收到拆炸弹的指令。

三、ANR调试

对于service、broadcast、provider、input发生ANR后,中控系统会马上去抓取现场的信息,用于调试分析。收集的信息包括如下:

  1. 将am_anr信息输出到EventLog,也就是说ANR触发的时间点最接近的就是EventLog中输出的am_anr信息

  1. 收集以下重要进程的各个线程调用栈trace信息,保存在 data/anr/traces.txt文件

  • 当前发生ANR的进程,system_server进程以及所有persistent进程

  • audioserver, cameraserver, mediaserver, surfaceflinger等重要的native进程

  • CPU使用率排名前5的进程

  1. 将发生ANR的reason以及CPU使用情况信息输出到main log

  1. 将traces文件和CPU使用情况信息保存到dropbox,即data/system/dropbox目录

  1. 对用户可感知的进程则弹出ANR对话框告知用户,对用户不可感知的进程发生ANR则直接杀掉

Demo:

  1. mBtn.setOnClickListener(new View.OnClickListener() {
  2. @Override
  3. public void onClick(View v) {
  4. try {
  5. Thread.sleep(100000);
  6. } catch (InterruptedException e) {
  7. e.printStackTrace();
  8. }
  9. }
  10. });
  11. mBtn2.setOnClickListener(new View.OnClickListener() {
  12. @Override
  13. public void onClick(View v) {
  14. mBtn2.setText("hah");
  15. }

log文件:

  1. 2020-12-03 17:05:51.802 3105-3180/system_process E/ActivityManager: ANR in com.example.produceanr (com.example.produceanr/.MainActivity)
  2. PID: 27806
  3. Reason: Input dispatching timed out
  4. //ANR 发生所处的 activity,进程ID,以及ANR原因
  5. (com.example.produceanr/com.example.produceanr.MainActivity, Waiting to send non-key event because the touched window has not finished processing certain input events that were delivered to it over 500.0ms ago. Wait queue length: 2. Wait queue head age: 8559.5ms.)
  6. Parent: com.example.produceanr/.MainActivity
  7. Load: 6.09 / 5.99 / 5.74
  8. CPU usage from 0ms to 6042ms later (2020-12-03 17:05:45.718 to 2020-12-03 17:05:51.760):
  9. 16% 3105/system_server: 7.9% user + 8.1% kernel / faults: 6549 minor
  10. 0.3% 2779/media.codec: 0.2% user + 0% kernel / faults: 35716 minor
  11. 10% 763/surfaceflinger: 8.2% user + 2.6% kernel / faults: 419 minor
  12. ...
  13. 0.1% 27263/kworker/4:2: 0% user + 0.1% kernel
  14. 0.1% 27743/kworker/0:0: 0% user + 0.1% kernel
  15. 15% TOTAL: 10% user + 5.4% kernel + 0.1% iowait + 0.2% irq + 0% softirq
  16. //ANR前后cpu的使用情况
  17. //如果CPU使用量接近100%,说明当前设备很忙,有可能是CPU饥饿导致ANR
  18. //如果CPU使用量很少,说明主线程被block了
  19. //如果IOwait很高,说明主线程在进行I/O操作

trace文件:

log 文件只是告诉你 ANR 发生时间,但是并具体详细的信息,这时候就得查看 trace 文件(App 的进程发生 ANR 时,系统让活跃的 Top 进程都进行了一下 dump,进程中的各种Thread 就都 dump 到这个 trace 文件里了,所以 trace 文件中包含了每一条线程的运行时状态)。

拉取trace文件:

adb pull data/anr/anr_2020-12-03-17-30-41-366

anr_2020-12-03-17-30-41-366.txt:

  1. ----- pid 28207 at 2020-12-03 17:30:41 -----
  2. Cmd line: com.example.produceanr
  3. //进程号、ANR发生时间和进程名称
  4. DALVIK THREADS (14):
  5. "main" prio=5 tid=1 Sleeping
  6. //线程名、线程优先级、线程号、线程当前状态
  7. | group="main" sCount=1 dsCount=0 flags=1 obj=0x76e543c8 self=0x6ffcf70000
  8. | sysTid=28207 nice=-10 cgrp=default sched=0/0 handle=0x6ffe4d7ed0
  9. | state=S schedstat=( 1106323008 54303290 408 ) utm=97 stm=13 core=4 HZ=100
  10. | stack=0x7fcbd76000-0x7fcbd78000 stackSize=8192KB
  11. | held mutexes=
  12. at java.lang.Thread.sleep(Native method)
  13. - sleeping on <0x0a2aeaaf> (a java.lang.Object)
  14. at java.lang.Thread.sleep(Thread.java:440)
  15. - locked <0x0a2aeaaf> (a java.lang.Object)
  16. at java.lang.Thread.sleep(Thread.java:356)
  17. at com.example.produceanr.MainActivity$1.onClick(MainActivity.java:23)

四、避免ANR

  1. 绝对不要在主线程上进行复杂耗时的操作,比如说发送接收网络数据、进行大量计算、操作数据库、读写文件等,统统采用异步操作

  1. Service中的耗时操作最好也是采用异步任务

  1. 在设计及代码编写阶段避免出现出现死锁、死循环等不恰当情况

  1. 一些避免、检测ANR的工具

  • StrictMode:用来检测代码中是否存在违规操作的工具类(检测主线程是否存在耗时操作)

  • BlockCanary:用来监控应用主线程的卡顿

参考:Android性能调优——严苛模式StrictMode


BlockCanary源码解析

在讲解BlockCanary源码之前,我们还是需要将一些前置的知识点。本文不讲Handler的原理了,不太懂的同学自己去百度看一下吧。

什么是卡顿

在讲解卡顿问题之前,我们需要讲一下帧率这个概念。帧率是以帧称为单位的位图图像连续出现在显示器上的频率。我将一个例子,电影播放。电影其实就是很多张照片(帧)的一个集合,那为什么看起来是一个连续的过程呢?因为电影每一秒出现过的图片不止一张。实际上电影一般一秒出现的图片张数会在20-30张。假设电影一秒出现了24张图片,那么这个电影的帧率就是24。帧率就是一秒中,出现了多少帧。

知道了什么是帧率,那么问题来了,为什么会出现卡顿呢?卡顿在我们的视觉上面的表现就是原本是流畅的动画画面,现在变的不流畅了。我们上面讲过,动画其实是由很多图片构成。如果在一个24帧的电影中,突然有一秒钟,在这一秒钟出现了掉帧。也就是原本0…23的图片变成了 0…10…12…23.中间的某一帧没有渲染出来,那么这个在我们视觉上就会出现不流畅的现象。也就是卡顿的现象。上面就是电影上出现卡顿的现象。那么在我们android系统上呢?

Android渲染机制

在高刷手机没有出现之前,我们手机屏幕的帧率是60。就是意味着1秒钟会有60个画面出现。那么也就是16ms就要有一个画面渲染。Android系统每隔16ms发出VSYNC信号,触发对UI进行渲染, 如果每次渲染都成功,这样就能够达到流畅的画面所需要的60帧,为了能够实现60fps,这意味着程序的大多数操作都必须在16ms内完成。如果超过了16ms那么可能就出现丢帧的情况。如果掉帧的频率很高,也就是导致卡顿的情况。

BlockCanary源码解析

那么在android中,BlockCanary是怎么帮助我们去做卡顿检测的呢。今天我们就来讲解一下BlockCanary检测卡顿的原理。

一般我们都通过以下的代码方式去开启我们的卡顿检测。

  1. public class DemoApplication extends Application {
  2. @Override
  3. public void onCreate() {
  4. // ...
  5. // Do it on main process
  6. BlockCanary.install(this, new AppBlockCanaryContext()).start();
  7. }
  8. }

这段代码主要有两部分,一部分是install,一部分是start。我们先看install部分

install阶段
BlockCanary#install()
  1. public static BlockCanary install(Context context, BlockCanaryContext blockCanaryContext) {
  2. //BlockCanaryContext.init会将保存应用的applicationContext和用户设置的配置参数
  3. BlockCanaryContext.init(context, blockCanaryContext);
  4. //etEnabled将根据用户的通知栏消息配置开启
  5. setEnabled(context, DisplayActivity.class, BlockCanaryContext.get().displayNotification());
  6. return get();
  7. }
BlockCanary#get()
  1. //使用单例创建了一个BlockCanary对象
  2. public static BlockCanary get() {
  3. if (sInstance == null) {
  4. synchronized (BlockCanary.class) {
  5. if (sInstance == null) {
  6. sInstance = new BlockCanary();
  7. }
  8. }
  9. }
  10. return sInstance;
  11. }
BlockCanary()
  1. private BlockCanary() {
  2. //初始化blockCanaryInternals调度类
  3. BlockCanaryInternals.setContext(BlockCanaryContext.get());
  4. mBlockCanaryCore = BlockCanaryInternals.getInstance();
  5. //为BlockCanaryInternals添加拦截器(责任链)BlockCanaryContext对BlockInterceptor是空实现
  6. mBlockCanaryCore.addBlockInterceptor(BlockCanaryContext.get());
  7. if (!BlockCanaryContext.get().displayNotification()) {
  8. return;
  9. }
  10. //DisplayService只在开启通知栏消息的时候添加,当卡顿发生时将通过DisplayService发起通知栏消息
  11. mBlockCanaryCore.addBlockInterceptor(new DisplayService());
  12. }
BlockCanaryInternals.getInstance()
  1. static BlockCanaryInternals getInstance() {
  2. if (sInstance == null) {
  3. synchronized (BlockCanaryInternals.class) {
  4. if (sInstance == null) {
  5. sInstance = new BlockCanaryInternals();
  6. }
  7. }
  8. }
  9. return sInstance;
  10. }
BlockCanaryInternals
  1. public BlockCanaryInternals() {
  2. //初始化栈采集器
  3. stackSampler = new StackSampler(
  4. Looper.getMainLooper().getThread(),
  5. sContext.provideDumpInterval());
  6. //初始化cpu采集器
  7. cpuSampler = new CpuSampler(sContext.provideDumpInterval());
  8. //初始化LooperMonitor,并实现了onBlockEvent的回调,该回调会在触发阈值后被调用,这里面比较重要
  9. setMonitor(new LooperMonitor(new LooperMonitor.BlockListener() {
  10. @Override
  11. public void onBlockEvent(long realTimeStart, long realTimeEnd,
  12. long threadTimeStart, long threadTimeEnd) {
  13. ArrayList<String> threadStackEntries = stackSampler
  14. .getThreadStackEntries(realTimeStart, realTimeEnd);
  15. if (!threadStackEntries.isEmpty()) {
  16. BlockInfo blockInfo = BlockInfo.newInstance()
  17. .setMainThreadTimeCost(realTimeStart, realTimeEnd, threadTimeStart, threadTimeEnd)
  18. .setCpuBusyFlag(cpuSampler.isCpuBusy(realTimeStart, realTimeEnd))
  19. .setRecentCpuRate(cpuSampler.getCpuRateInfo())
  20. .setThreadStackEntries(threadStackEntries)
  21. .flushString();
  22. LogWriter.save(blockInfo.toString());
  23. if (mInterceptorChain.size() != 0) {
  24. for (BlockInterceptor interceptor : mInterceptorChain) {
  25. interceptor.onBlock(getContext().provideContext(), blockInfo);
  26. }
  27. }
  28. }
  29. }
  30. }, getContext().provideBlockThreshold(), getContext().stopWhenDebugging()));
  31. LogWriter.cleanObsolete();
  32. }

当install进行初始化完成后,接着会调用start()方法,实现如下:

start阶段
BlockCanary#start()
  1. //BlockCanary#start()
  2. public void start() {
  3. if (!mMonitorStarted) {
  4. mMonitorStarted = true;
  5. //把mBlockCanaryCore中的monitor设置MainLooper中进行监听
  6. Looper.getMainLooper().setMessageLogging(mBlockCanaryCore.monitor);
  7. }
  8. }

这里面的实现也比较简单,就是获取到主线程Looper然后将上一步创建的LooperMonitor设置到主线程Looper里面的MessageLogging。

到这里然后呢?卧槽,没了一开始看这里的源码的时候我也是很懵逼的。然后我就去github上看了,然后呢,我看到了这么一张图。

通过这张图,我可以知道,真正开始检测的不是start(),而是Looper里面loop()函数

Looper#loop
  1. public static void loop() {
  2. final Looper me = myLooper();
  3. if (me == null) {
  4. throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
  5. }
  6. if (me.mInLoop) {
  7. Slog.w(TAG, "Loop again would have the queued messages be executed"
  8. + " before this one completed.");
  9. }
  10. me.mInLoop = true;
  11. final MessageQueue queue = me.mQueue;
  12. // Make sure the identity of this thread is that of the local process,
  13. // and keep track of what that identity token actually is.
  14. Binder.clearCallingIdentity();
  15. final long ident = Binder.clearCallingIdentity();
  16. // Allow overriding a threshold with a system prop. e.g.
  17. // adb shell 'setprop log.looper.1000.main.slow 1 && stop && start'
  18. final int thresholdOverride =
  19. SystemProperties.getInt("log.looper."
  20. + Process.myUid() + "."
  21. + Thread.currentThread().getName()
  22. + ".slow", 0);
  23. boolean slowDeliveryDetected = false;
  24. for (;;) {
  25. Message msg = queue.next(); // might block
  26. if (msg == null) {
  27. // No message indicates that the message queue is quitting.
  28. return;
  29. }
  30. // This must be in a local variable, in case a UI event sets the logger
  31. final Printer logging = me.mLogging;
  32. if (logging != null) {
  33. logging.println(">>>>> Dispatching to " + msg.target + " " +
  34. msg.callback + ": " + msg.what);
  35. }
  36. // Make sure the observer won't change while processing a transaction.
  37. final Observer observer = sObserver;
  38. final long traceTag = me.mTraceTag;
  39. long slowDispatchThresholdMs = me.mSlowDispatchThresholdMs;
  40. long slowDeliveryThresholdMs = me.mSlowDeliveryThresholdMs;
  41. if (thresholdOverride > 0) {
  42. slowDispatchThresholdMs = thresholdOverride;
  43. slowDeliveryThresholdMs = thresholdOverride;
  44. }
  45. final boolean logSlowDelivery = (slowDeliveryThresholdMs > 0) && (msg.when > 0);
  46. final boolean logSlowDispatch = (slowDispatchThresholdMs > 0);
  47. final boolean needStartTime = logSlowDelivery || logSlowDispatch;
  48. final boolean needEndTime = logSlowDispatch;
  49. if (traceTag != 0 && Trace.isTagEnabled(traceTag)) {
  50. Trace.traceBegin(traceTag, msg.target.getTraceName(msg));
  51. }
  52. final long dispatchStart = needStartTime ? SystemClock.uptimeMillis() : 0;
  53. final long dispatchEnd;
  54. Object token = null;
  55. if (observer != null) {
  56. token = observer.messageDispatchStarting();
  57. }
  58. long origWorkSource = ThreadLocalWorkSource.setUid(msg.workSourceUid);
  59. try {
  60. msg.target.dispatchMessage(msg);
  61. if (observer != null) {
  62. observer.messageDispatched(token, msg);
  63. }
  64. dispatchEnd = needEndTime ? SystemClock.uptimeMillis() : 0;
  65. } catch (Exception exception) {
  66. if (observer != null) {
  67. observer.dispatchingThrewException(token, msg, exception);
  68. }
  69. throw exception;
  70. } finally {
  71. ThreadLocalWorkSource.restore(origWorkSource);
  72. if (traceTag != 0) {
  73. Trace.traceEnd(traceTag);
  74. }
  75. }
  76. if (logSlowDelivery) {
  77. if (slowDeliveryDetected) {
  78. if ((dispatchStart - msg.when) <= 10) {
  79. Slog.w(TAG, "Drained");
  80. slowDeliveryDetected = false;
  81. }
  82. } else {
  83. if (showSlowLog(slowDeliveryThresholdMs, msg.when, dispatchStart, "delivery",
  84. msg)) {
  85. // Once we write a slow delivery log, suppress until the queue drains.
  86. slowDeliveryDetected = true;
  87. }
  88. }
  89. }
  90. if (logSlowDispatch) {
  91. showSlowLog(slowDispatchThresholdMs, dispatchStart, dispatchEnd, "dispatch", msg);
  92. }
  93. if (logging != null) {
  94. logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
  95. }
  96. // Make sure that during the course of dispatching the
  97. // identity of the thread wasn't corrupted.
  98. final long newIdent = Binder.clearCallingIdentity();
  99. if (ident != newIdent) {
  100. Log.wtf(TAG, "Thread identity changed from 0x"
  101. + Long.toHexString(ident) + " to 0x"
  102. + Long.toHexString(newIdent) + " while dispatching to "
  103. + msg.target.getClass().getName() + " "
  104. + msg.callback + " what=" + msg.what);
  105. }
  106. msg.recycleUnchecked();
  107. }
  108. }

loop()里面的代码很长,我们讲解blockCanary的时候不需要过分关注其他部分,还记得我们start做的事情吗,我们去设置了setMessageLogging。所以先看看setMessageLogging方法

Looper#setMessageLogging
  1. public void setMessageLogging(@Nullable Printer printer) {
  2. mLogging = printer;
  3. }

其实就是将创建的LooperMonitor赋值给mLogging,那么我们只需要关注mLogging在loop()中的代码就好了。我们发现就是调用了两次println。一个是在msg.target.dispatchMessage(msg)之前,一个是在msg.target.dispatchMessage(msg)之后。也就是说这两次调用,一次是处理信号之前,一个是处理信号之后。那么通过实现LooperMonitor里面的println方法,我们就可以得出一些时间差。所以,接下来我们要看的是LooperMonitor里面的println方法

MainLooper#println()
  1. //MainLooper#println()
  2. @Override
  3. public void println(String x) {
  4. //如果再debug模式,不执行监听
  5. if (mStopWhenDebugging && Debug.isDebuggerConnected()) {
  6. return;
  7. }
  8. if (!mPrintingStarted) { //dispatchMesage前执行的println
  9. //记录开始时间
  10. mStartTimestamp = System.currentTimeMillis();
  11. mStartThreadTimestamp = SystemClock.currentThreadTimeMillis();
  12. mPrintingStarted = true;
  13. //开始采集栈及cpu信息
  14. startDump();
  15. } else { //dispatchMesage后执行的println
  16. //获取结束时间
  17. final long endTime = System.currentTimeMillis();
  18. mPrintingStarted = false;
  19. //判断耗时是否超过阈值
  20. if (isBlock(endTime)) {
  21. notifyBlockEvent(endTime);
  22. }
  23. stopDump();
  24. }
  25. }
  26. //判断是否超过阈值
  27. private boolean isBlock(long endTime) {
  28. return endTime - mStartTimestamp > mBlockThresholdMillis;//这个阈值是我们自己设置的
  29. }
  30. //如果超过阈值,回调卡顿的监听,说明卡顿了
  31. private void notifyBlockEvent(final long endTime) {
  32. final long startTime = mStartTimestamp;
  33. final long startThreadTime = mStartThreadTimestamp;
  34. final long endThreadTime = SystemClock.currentThreadTimeMillis();
  35. HandlerThreadFactory.getWriteLogThreadHandler().post(new Runnable() {
  36. @Override
  37. public void run() {
  38. mBlockListener.onBlockEvent(startTime, endTime, startThreadTime, endThreadTime);
  39. }
  40. });
  41. }

其实这里卡顿检测的源码也还是比较简单的,它的原理就是通过重新实现looper里面的logging,然后通过println函数去判断有没有出现卡顿。BlockCanary的流程图在上面也出现了。希望对大家,对于卡顿的理解有一定的帮助。


ANRWatchDog、BlockCanary、Matrix的TraceCanary对比

ANRWatchDog

原理

主线程一直会处理消息循环,如果发给主线程的消息,在5秒后还未得到执行,则认为是卡顿

流程描述

起来一个子进程,子进程是一个for循环,会永远执行。 向主进程的handler发送一个message; 然后sleep 5秒(也可以设置)。

如果这中间,主进程被卡主了,意味着,上面那个message没有被执行, 则获取当前的堆栈,并回调给上层。

如果执行了,意味着,没有被卡主的,for循环,继续正常发送message

结论

可能是发送了太多消息导致的; 也可能获取的堆栈并非较卡的地方,非常不精准

BlockCanary

原理

主线程looper的loop方法在寻找msg.target.dispatchMessage(msg)时的前后会分别打印一段log,记录两次log的时间差,这样就可以大致认为是主线程处理msg的时间,如果时间过长则认为卡顿

流程描述

给主进程的Looper设置打印监听,在其dispatch时前后会收到通知,进而判断前后时间是否超过1秒。 如果超过了1秒,则有一个子进程去获取堆栈并保存并通知。

如果方法没有超过1秒,则只有一个回调,不会去获取堆栈。

其他:

精准性比ANRWatchDog高,一样对性能无影响; 但是依然可能获取堆栈的时候准确性差

核心是Looper.getMainLooper.setMessageLoging,他在dispatch的前后都有打印,关键在于抓这两次打印.

cpu信息在于读取 /proc/stat 这个文件

获取堆栈在于 thread.getStackTrace这个类

流程图

微信Matrix的TraceCanary

原理
  • Choreographer,Choreographer就是一个消息处理器,根据vsync 信号 来计算frame,在doFrame方法里可以收到当前帧绘制完后的当前时间. 正常绘制两次doFrame的时间差应该是1000/60=16.6666毫秒(每秒60帧),但是遇到卡顿或过度重绘等会导致时间拉长

  • ASM

  • ASM 是一个 Java 字节码操控框架。它能被用来动态生成类或者增强既有类的功能。ASM 可以直接产生二进制 class 文件,也可以在类被加载入 Java 虚拟机之前动态改变类行为

  • Java class 被存储在严格格式定义的 .class 文件里,这些类文件拥有足够的元数据来解析类中的所有元素:类名称、方法、属性以及 Java 字节码(指令)。ASM 从类文件中读入信息后,能够改变类行为,分析类信息,甚至能够根据用户要求生成新类。

  • 对于自己代码,比动态代理优势明显

流程描述
  • 首先打包时,利用gradle脚本,会将设有方法在调用前调用后,都调用一个静态方法。此时将得到一个方法id和每一个方法对应的序列。 在执行方法的时候,会将每个方法的执行id、执行时间、深度、次数等都存到buffer中

  • 执行时Choreographer不停循环发送消息,接收回调,按理每次16.66毫秒每次接受到回调

  • 如果两帧之间超过1秒,handleBuffer去从buffer中去获取卡顿的堆栈序列

  • 上传序列到后台,由后台根据执行顺序id,给出卡顿堆栈

流程图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/989627
推荐阅读
相关标签
  

闽ICP备14008679号