当前位置: 首页> 科技> 数码 > 球形网架结构厂家_茂名整站优化_东莞做网站的联系电话_宁夏百度推广代理商

球形网架结构厂家_茂名整站优化_东莞做网站的联系电话_宁夏百度推广代理商

时间:2025/9/15 21:41:42来源:https://blog.csdn.net/ygn918042354/article/details/143619580 浏览次数:0次
球形网架结构厂家_茂名整站优化_东莞做网站的联系电话_宁夏百度推广代理商


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

关键字:球形网架结构厂家_茂名整站优化_东莞做网站的联系电话_宁夏百度推广代理商

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: