android anr input 流程分析

我这里将input anr分两大部分,一个是焦点窗口相关,一个是焦点事件相关

1 焦点窗口

在每次监测anr的时候,最先检查的是焦点窗口的获取情况

在监测事件是否超时之前有一个方法监测焦点窗口的,findFocuseWindowTargetsLocked()

这个主要处理无焦点的情况。

比如 有焦点app无焦点window的情况

比如 无焦点app无焦点window的情况

比如 焦点窗口paused状态的情况,代码里都打印了对应的log说明,这些都可以归为无焦点问题

而这些问题往往出现在monkey,后台冻结,快速切换页面等情况下产生,有些问题是不需要解决的(用户不会在快速切换的时候,还能快速的点击

这里简单概况下这类anr问题,切换或启动app时候,当前进程被杀死,被freeze,被降频(或cpu被低内存交换操作占用,大量文件读写)导致变慢等都会引起anr

还有一种是焦点窗口快速的切换,导致事件卡在了一个已经进入pause状态的页面,也会导致anr

这种的情况主要排查event log及 进程状态及进程号是否,这里要注意的是 页面更新的流程是surfaceflinger那边发来的消息。

2 焦点事件

整个输入事件流是一个生产者消费者的waitQueue,而且这个queue只能有一个成员,多的就要等待

超过等待时间就会报anr。这类问题比较常见,总之就是整条链路依次排查卡住的地方。

这里由于没有关于surfacefinger的一环,流程大概就是

开始于:inputdispater.cpp类里dispatchOnceInnerLocked-

结束于:(viewrootimpl里面的finishinputevent流程)app进程的InputTransport.cpp sendFinishedSignal到inputdispater.cpp进行消除

3 最后列下两种流程对应的system_server端调用流程

1 页面切换(sf通过binder的方式发过来)

mystack : #00 pc 00000000000359cc /system/lib64/libinputflinger.so (android::inputdispatcher::InputDispatcher::setInputWindowsLocked(std::__1::vector<android::sp<android::InputWindowHandle>, std::__1::allocator<android::sp<android::InputWindowHandle> > > const&, int)+88)

01-01 14:12:42.490 1079 1995 D mystack : #01 pc 0000000000035920 /system/lib64/libinputflinger.so (android::inputdispatcher::InputDispatcher::setInputWindows(std::__1::unordered_map<int, std::__1::vector<android::sp<android::InputWindowHandle>, std::__1::allocator<android::sp<android::InputWindowHandle> > >, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, std::__1::vector<android::sp<android::InputWindowHandle>, std::__1::allocator<android::sp<android::InputWindowHandle> > > > > > const&)+64)

01-01 14:12:42.490 1079 1995 D mystack : #02 pc 000000000002675c /system/lib64/libinputflinger.so (android::InputManager::setInputWindows(std::__1::vector<android::InputWindowInfo, std::__1::allocator<android::InputWindowInfo> > const&, android::sp<android::ISetInputWindowsListener> const&)+408)

01-01 14:12:42.490 1079 1995 D mystack : #03 pc 0000000000026a08 /system/lib64/libinput.so (android::BnInputFlinger::onTransact(unsigned int, android::Parcel const&, android::Parcel*, unsigned int)+804)

01-01 14:12:42.490 1079 1995 D mystack : #04 pc 000000000004982c /system/lib64/libbinder.so (android::BBinder::transact(unsigned int, android::Parcel const&, android::Parcel*, unsigned int)+232)

01-01 14:12:42.490 1079 1995 D mystack : #05 pc 0000000000052210 /system/lib64/libbinder.so (android::IPCThreadState::executeCommand(int)+1032)

01-01 14:12:42.490 1079 1995 D mystack : #06 pc 0000000000051d58 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+156)

01-01 14:12:42.490 1079 1995 D mystack : #07 pc 0000000000052590 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+60)

01-01 14:12:42.490 1079 1995 D mystack : #08 pc 0000000000078618 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24)

01-01 14:12:42.490 1079 1995 D mystack : #09 pc 00000000000154d0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+260)

01-01 14:12:42.490 1079 1995 D mystack : #10 pc 00000000000a1be0 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+144)

01-01 14:12:42.490 1079 1995 D mystack : #11 pc 0000000000014d94 /system/lib64/libutils.so (thread_data_t::trampoline(thread_data_t const*)+412)

01-01 14:12:42.490 1079 1995 D mystack : #12 pc 00000000000afecc /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64)

01-01 14:12:42.490 1079 1995 D mystack : #13 pc 0000000000050408 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64)

2 发送消息的调用流程(inputchannal的sorctpair方式)

01-01 14:16:11.753 1079 1149 D mystack2: #00 pc 0000000000032994 /system/lib64/libinputflinger.so (android::inputdispatcher::InputDispatcher::handleReceiveCallback(int, int, void*)+80)

01-01 14:16:11.753 1079 1149 D mystack2: #01 pc 0000000000019dac /system/lib64/libutils.so (android::Looper::pollInner(int)+916)

01-01 14:16:11.753 1079 1149 D mystack2: #02 pc 00000000000199b0 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+112)

01-01 14:16:11.753 1079 1149 D mystack2: #03 pc 00000000000286d4 /system/lib64/libinputflinger.so (android::inputdispatcher::InputDispatcher::dispatchOnce()+200)

01-01 14:16:11.753 1079 1149 D mystack2: #04 pc 0000000000006718 /system/lib64/libinputflinger_base.so (android::(anonymous namespace)::InputThreadImpl::threadLoop()+24)

01-01 14:16:11.753 1079 1149 D mystack2: #05 pc 0000000000015598 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+460)

01-01 14:16:11.753 1079 1149 D mystack2: #06 pc 00000000000a1be0 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+144)

01-01 14:16:11.753 1079 1149 D mystack2: #07 pc 0000000000014d94 /system/lib64/libutils.so (thread_data_t::trampoline(thread_data_t const*)+412)

01-01 14:16:11.753 1079 1149 D mystack2: #08 pc 00000000000afecc /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64)

01-01 14:16:11.753 1079 1149 D mystack2: #09 pc 0000000000050408 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64)

01-01 14:16:11.781 1079 1149 D mystack2: #00 pc 0000000000032994 /system/lib64/libinputflinger.so (android::inputdispatcher::InputDispatcher::handleReceiveCallback(int, int, void*)+80)

01-01 14:16:11.781 1079 1149 D mystack2: #01 pc 0000000000019dac /system/lib64/libutils.so (android::Looper::pollInner(int)+916)

01-01 14:16:11.781 1079 1149 D mystack2: #02 pc 00000000000199b0 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+112)

01-01 14:16:11.781 1079 1149 D mystack2: #03 pc 00000000000286d4 /system/lib64/libinputflinger.so (android::inputdispatcher::InputDispatcher::dispatchOnce()+200)

01-01 14:16:11.781 1079 1149 D mystack2: #04 pc 0000000000006718 /system/lib64/libinputflinger_base.so (android::(anonymous namespace)::InputThreadImpl::threadLoop()+24)

01-01 14:16:11.781 1079 1149 D mystack2: #05 pc 0000000000015598 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+460)

01-01 14:16:11.781 1079 1149 D mystack2: #06 pc 00000000000a1be0 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+144)

01-01 14:16:11.781 1079 1149 D mystack2: #07 pc 0000000000014d94 /system/lib64/libutils.so (thread_data_t::trampoline(thread_data_t const*)+412)

01-01 14:16:11.781 1079 1149 D mystack2: #08 pc 00000000000afecc /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64)

01-01 14:16:11.782 1079 1149 D mystack2: #09 pc 0000000000050408 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64)

相关推荐
诸神黄昏EX23 分钟前
Android Safety 系列专题【篇一:系统签名】
android
ll_god1 小时前
android gradle中如何引用 libs.versions.toml中定义的版本变量添加compose引用
android
行稳方能走远1 小时前
Android C++ 学习笔记
android·c++
2501_946230981 小时前
Cordova&OpenHarmony用户账户管理
android·javascript
x66ccff2 小时前
Claude Code 安装方法
android·java·数据库
码农搬砖_20202 小时前
【一站式学会compose】 Android UI体系之 Image的使用和介绍
android·image·compose·content·contentscale·scaletype
粤M温同学2 小时前
Android Room数据库的基本使用
android·数据库
lkbhua莱克瓦242 小时前
基础-约束
android·开发语言·数据库·笔记·sql·mysql·约束
戴西软件3 小时前
CAxWorks.VPG车辆工程仿真软件:打造新能源汽车安全的“数字防线“
android·大数据·运维·人工智能·安全·低代码·汽车
ljt27249606613 小时前
Compose笔记(六十三)--SegmentedButton
android·笔记·android jetpack