android anr input 流程分析

ops/2024/11/14 3:48:00/


我这里将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)


http://www.ppmy.cn/ops/132991.html

相关文章

云轴科技ZStack助力新远科技开启化工行业智能制造新篇章

新远科技基于云轴科技ZStack Cube超融合和ZStack Zaku容器云平台打造了灵活高效的IT基础设施&#xff0c;实现了IaaS和PaaS层的全面覆盖&#xff0c;优化了资源利用率&#xff0c;降低了硬件成本和运维复杂性&#xff0c;同时强化了数据安全和业务连续性。 化工行业的数字化先…

vue2.0 Cannot read properties of null (reading ‘level‘) level有值但还是报错的话

切到地理划分的时候报错 Cannot read properties of null (reading level) 估计是el-cascader里的数据没刷新之类的导致的 加上key区分一下试试

SpringBoot开发——Spring Boot 3.3整合RabbitMQ构建高效稳定的消息队列系统

文章目录 一、配置 RabbitMQ二、自动配置的核心组件三、发送消息至指定 Stream四、接收消息与 RabbitListener 注解五、实现自定义 RabbitListenerContainerFactory六、消息重试机制七、总 结 消息队列在分布式系统中起着至关重要的作用&#xff0c;它能够解耦系统、削峰填谷&a…

Innovus Flexible H-tree and Multi-tap Clock Flow Lab实操系列教程(Day1)

我们都知道时钟树综合在数字IC后端实现中的重要性。做clock tree主要有传统clock tree做法&#xff0c;H tree&#xff0c;Flexible H-tree&#xff0c;fishbone等做法。接下去小编将拿cadence官方的这份Innovus Flexible H-tree and Multi-Tap Clock Flow和对应的lab data来做…

[Element] el-table修改滚动条上部分的背景色

[Element] el-table修改滚动条上部分的背景色 ::v-deep .el-table__cell .gutter {background: red;}

C语言中,“extern”关键字的含义与用法

在C语言中&#xff0c;extern 关键字用于声明一个已经在其他地方定义的变量或函数。它的主要作用是告诉编译器&#xff0c;某个变量或函数是在当前文件之外定义的&#xff0c;编译器应该在链接阶段找到这个变量或函数的实际定义。以下是 extern 的一些常见用途和用法&#xff1…

Sentinel — 微服务保护

微服务架构将大型应用程序拆分为多个小而独立的服务&#xff0c;每个服务可以独立部署和扩展。然而&#xff0c;微服务系统需要面对的挑战也随之增加&#xff0c;例如服务之间的依赖、分布式环境下的故障传播和安全问题。因此&#xff0c;微服务保护措施是确保系统在高并发、资…

吴恩达机器学习笔记(1)

吴恩达机器学习笔记 监督学习 定义 监督学习是一种机器学习方法&#xff0c;其中模型从输入数据&#xff08;特征&#xff09;和相应的输出标签&#xff08;目标&#xff09;中学习&#xff0c;目的是能够预测或决定新实例的输出标签。 监督学习机器学习中的核心概念之一&am…