Android 进阶实现性能优化之OOM与Leakcanary详解原理
本文主要探讨以下几个问题:
- android内存泄漏常见场景以及解决方案
- leakcanary 使用及原理
android内存泄漏常见场景以及解决方案
资源性对象未关闭
对于资源性对象不再使用时,应该立即调用它的close()函数,将其关闭,然后再置为null。例如bitmap等资源未关闭会造成内存泄漏,此时我们应该在activity销毁时及时关闭。
注册对象未注销
例如braodcastreceiver、eventbus未注销造成的内存泄漏,我们应该在activity销毁时及时注销。
类的静态变量持有大数据
对象尽量避免使用静态变量存储数据,特别是大数据对象,建议使用数据库存储。
单例造成的内存泄漏
优先使用application的context,如需使用activity的context,可以在传入context时使用弱引用进行封装,然后,在使用到的地方从弱引用中获取context,如果获取不到,则直接return即可。
非静态内部类的静态实例
该实例的生命周期和应用一样长,这就导致该静态实例一直持有该activity的引用,activity的内存资源不能正常回收。此时,我们可以将该内部类设为静态内部类或将该内部类抽取出来封装成一个单例,如果需要使用context,尽量使用application context,如果需要使用activity context,就记得用完后置空让gc可以回收,否则还是会内存泄漏。
handler临时性内存泄漏
message发出之后存储在messagequeue中,在message中存在一个target,它是handler的一个引用,message在queue中存在的时间过长,就会导致handler无法被回收。如果handler是非静态的,则会导致activity或者service不会被回收。并且消息队列是在一个looper线程中不断地轮询处理消息,当这个activity退出时,消息队列中还有未处理的消息或者正在处理的消息,并且消息队列中的message持有handler实例的引用,handler又持有activity的引用,所以导致该activity的内存资源无法及时回收,引发内存泄漏。解决方案如下所示:
1. 使用一个静态handler内部类,然后对handler持有的对象(一般是activity)使用弱引用,这样在回收时,也可以回收handler持有的对象。
2. 在activity的destroy或者stop时,应该移除消息队列中的消息,避免looper线程的消息队列中有待处理的消息需要处理。需要注意的是,asynctask内部也是handler机制,同样存在内存泄漏风险,但其一般是临时性的。对于类似asynctask或是线程造成的内存泄漏,我们也可以将asynctask和runnable类独立出来或者使用静态内部类。
容器中的对象没清理造成的内存泄漏
在退出程序之前,将集合里的东西clear,然后置为null,再退出程序
webview
webview都存在内存泄漏的问题,在应用中只要使用一次webview,内存就不会被释放掉。我们可以为webview开启一个独立的进程,使用aidl与应用的主进程进行通信,webview所在的进程可以根据业务的需要选择合适的时机进行销毁,达到正常释放内存的目的。
使用listview时造成的内存泄漏
在构造adapter时,使用缓存的convertview。
leakcanary
leakcanary 导入
// leakcanary 添加支持库即可,只在debug下使用 debugimplementation 'com.squareup.leakcanary:leakcanary-android:2.3'
leakcanary 是如何安装的
leakcanary 不需要初始化,用的是 contentprovider!
contentprovider.oncreate 方法比 application.oncreate 更早执行。leakcanary 源码的 manifest.xml 里有声明contentprovider,apk打包流程中会把所有的manifest合并到app 的 manifest 里,即app就有了contentprovider。
// package="com.squareup.leakcanary.leaksentry" <application> <provider android:name="leakcanary.internal.leaksentryinstaller" android:authorities="${applicationid}.leak-sentry-installer" android:exported="false"/> </application>
下面是初始化的代码
internal class leaksentryinstaller : contentprovider() { override fun oncreate(): boolean { canarylog.logger = defaultcanarylog() val application = context!!.applicationcontext as application // 进行初始化工作,核心 internalleaksentry.install(application) return true }
监听实现
fun install(application: application) { canarylog.d("installing leaksentry") // 只能在主线程调用,否则会抛出异常 checkmainthread() if (this::application.isinitialized) { return } internalleaksentry.application = application val configprovider = { leaksentry.config } // 监听 activity.ondestroy() activitydestroywatcher.install( application, refwatcher, configprovider ) // 监听 fragment.ondestroy() fragmentdestroywatcher.install( application, refwatcher, configprovider ) // sentry 哨兵 listener.onleaksentryinstalled(application) }
leakcanary 如何监听activity、fragment销毁
在了解监听过程前有必要了解下 activitylifecyclecallbacks 与 fragmentlifecyclecallbacks
// activitylifecyclecallbacks 接口 public interface activitylifecyclecallbacks { void onactivitycreated(activity var1, bundle var2); void onactivitystarted(activity var1); void onactivityresumed(activity var1); void onactivitypaused(activity var1); void onactivitystopped(activity var1); void onactivitysaveinstancestate(activity var1, bundle var2); void onactivitydestroyed(activity var1); } // fragmentlifecyclecallbacks 接口 public abstract static class fragmentlifecyclecallbacks { public void onfragmentcreated(fragmentmanager fm, fragment f, bundle savedinstancestate) {} public void onfragmentviewdestroyed(fragmentmanager fm, fragment f) {} public void onfragmentdestroyed(fragmentmanager fm, fragment f) {} // 省略其他的生命周期 ... }
application 类提供了 registeractivitylifecyclecallbacks 和 unregisteractivitylifecyclecallbacks 方法用于注册和反注册 activity 的生命周期监听类,这样我们就能在 application 中对所有的 activity 生命周期回调中做一些统一处理。同理,fragmentmanager 类提供了 registerfragmentlifecyclecallbacks 和 unregisterfragmentlifecyclecallbacks 方法用户注册和反注册 fragment 的生命周期监听类,这样我们对每一个 activity 进行注册,就能获取所有的 fragment 生命周期回调。
下面是 activitydestroywatcher 的实现,refwatcher 监听 activity 的 onactivitydestroyed
internal class activitydestroywatcher private constructor( private val refwatcher: refwatcher, private val configprovider: () -> config ) { private val lifecyclecallbacks = object : activitylifecyclecallbacksadapter() { override fun onactivitydestroyed(activity: activity) { if (configprovider().watchactivities) { // 监听到 ondestroy() 之后,通过 refwatcher 监测 activity refwatcher.watch(activity) } } } companion object { fun install( application: application, refwatcher: refwatcher, configprovider: () -> config ) { val activitydestroywatcher = activitydestroywatcher(refwatcher, configprovider) // 注册 activity 生命周期监听 application.registeractivitylifecyclecallbacks(activitydestroywatcher.lifecyclecallbacks) } } }
如此一来activity、fragment在调用ondestroy时我们都能知道。讲道理,如果在调用ondestroy时被gc是正常的,如果没有被回收则是发生了内存泄漏,这是我们要处理的。那 refwatcher.watch(activity) 监听到销毁后怎么处理?
refwatcher 核心原理
在读这块代码前举个栗子比较好理解:比如我们去科技中心面试
- 进去的时候会登记个人信息在观察列表,并标明停留时间30分钟
- 30分钟过后查看是否有登出
- 如果未登出将信息由观察列表转移至怀疑列表
- 怀疑列表名单超过5个时,找*人员确定是否是*
- 确定是*,警察抓人
refwatcher 的实现原理跟上面的栗子神似:
- activity调用ondestroy后,以uuid生成key,被keyedweakreference包装,并与referencequeue关联,并把<key,keyedweakreference>存入 watchedreferences 中(watchedreferences 对应观察队列)
- 等待5s时间
- 调用 movetoretained 方法,先判断是否已经释放,如果未释放由 watchedreferences (观察队列) 转入 retainedreferences(怀疑队列)
- 当 retainedreferences 队列的长度大于5时,先调用一次gc,用haha这个开源库去分析dump之后的heap内存
- 确定内存泄漏对象
咱们先看下 refwatcher.watch(activity) 的实现
@synchronized fun watch( watchedreference: any, referencename: string ) { if (!isenabled()) { return } // 移除队列中将要被 gc 的引用 removeweaklyreachablereferences() val key = uuid.randomuuid().tostring() val watchuptimemillis = clock.uptimemillis() // 构建当前引用的弱引用对象,并关联引用队列 queue val reference = keyedweakreference(watchedreference, key, referencename, watchuptimemillis, queue) if (referencename != "") { canarylog.d( "watching instance of %s named %s with key %s", reference.classname, referencename, key ) } else { canarylog.d( "watching instance of %s with key %s", reference.classname, key ) } // 将引用存入 watchedreferences watchedreferences[key] = reference checkretainedexecutor.execute { // 如果当前引用未被移除,仍在 watchedreferences 队列中, // 说明仍未被 gc,移入 retainedreferences 队列中,暂时标记为泄露 movetoretained(key) } }
分析上面这段代码都做了什么:
- 移除队列中将要被 gc 的引用,这里的队列包括 watchedreferences 和 retainedreferences
- 使用uuid生成唯一key,构建 weakreference 包装 activity 并与 referencequeue 关联
- 将 reference 放入观察队列 watchedreferences 中
- 线程池调用 movetoretained 函数,此函数先走一遍gc,依旧没回收的对象会进入 retainedreferences 怀疑队列,当队列大于5时调用haha库走可达性分析确定是否是内存泄漏
下面是细节分析 —》removeweaklyreachablereferences() 逻辑
private fun removeweaklyreachablereferences() { // weakreferences are enqueued as soon as the object to which they point to becomes weakly // reachable. this is before finalization or garbage collection has actually happened. // 弱引用一旦变得弱可达,就会立即入队。这将在 finalization 或者 gc 之前发生。 var ref: keyedweakreference? do { // 队列 queue 中的对象都是会被 gc 的 ref = queue.poll() as keyedweakreference? //说明被释放了 if (ref != null) { val removedref = watchedreferences.remove(ref.key)//获取被释放的引用的key if (removedref == null) { retainedreferences.remove(ref.key) } // 移除 watchedreferences 队列中的会被 gc 的 ref 对象,剩下的就是可能泄露的对象 } } while (ref != null) }
removeweaklyreachablereferences 函数会根据 referencequeue 出来的 keyedweakreference 的 key 移除 watchedreferences(观察队列)和 retainedreferences(怀疑队列)中的引用,即把已经释放的移出,剩下的是内存泄漏的
movetoretained(key) 逻辑实现
@synchronized private fun movetoretained(key: string) { // 再次调用,防止遗漏 removeweaklyreachablereferences() val retainedref = watchedreferences.remove(key) //说明可能存在内存泄漏 if (retainedref != null) { retainedreferences[key] = retainedref onreferenceretained() } }
此函数的作用:
- 走一遍 removeweaklyreachablereferences 方法,将已经回收的清除
- 将 watchedreferences(观察队列)中未被回收的引用移到 retainedreferences(怀疑队列)中
- onreferenceretained() 则是在工作线程中检测内存泄漏,最后会调用 checkretainedinstances 函数
下面是 checkretainedinstances 的具体实现
private fun checkretainedinstances(reason: string) { canarylog.d("checking retained instances because %s", reason) val config = configprovider() // a tick will be rescheduled when this is turned back on. if (!config.dumpheap) { return } var retainedkeys = refwatcher.retainedkeys // 当前泄露实例个数小于 5 个,不进行 heap dump if (checkretainedcount(retainedkeys, config.retainedvisiblethreshold)) return if (!config.dumpheapwhendebugging && debuggercontrol.isdebuggerattached) { showretainedcountwithdebuggerattached(retainedkeys.size) scheduleretainedinstancecheck("debugger was attached", wait_for_debug_millis) canarylog.d( "not checking for leaks while the debugger is attached, will retry in %d ms", wait_for_debug_millis ) return } // 可能存在被观察的引用将要变得弱可达,但是还未入队引用队列。 // 这时候应该主动调用一次 gc,可能可以避免一次 heap dump gctrigger.rungc() retainedkeys = refwatcher.retainedkeys if (checkretainedcount(retainedkeys, config.retainedvisiblethreshold)) return heapdumpmemorystore.setretainedkeysforheapdump(retainedkeys) canarylog.d("found %d retained references, dumping the heap", retainedkeys.size) heapdumpmemorystore.heapdumpuptimemillis = systemclock.uptimemillis() dismissnotification() val heapdumpfile = heapdumper.dumpheap() // androidheapdumper if (heapdumpfile == null) { canarylog.d("failed to dump heap, will retry in %d ms", wait_after_dump_failed_millis) scheduleretainedinstancecheck("failed to dump heap", wait_after_dump_failed_millis) showretainedcountwithheapdumpfailed(retainedkeys.size) return } refwatcher.removeretainedkeys(retainedkeys) // 移除已经 heap dump 的 retainedkeys heapanalyzerservice.runanalysis(application, heapdumpfile) // 分析 heap dump 文件 }
流程图
到此这篇关于android 进阶实现性能优化之oom与leakcanary详解原理的文章就介绍到这了,更多相关android 性能优化内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!