diff --git a/Software/Applications/BootChart/BootChart_分析_Android_6.0_开机性能.md b/Software/Applications/BootChart/BootChart_分析_Android_6.0_开机性能.md index 45b272f..16e5ee6 100644 --- a/Software/Applications/BootChart/BootChart_分析_Android_6.0_开机性能.md +++ b/Software/Applications/BootChart/BootChart_分析_Android_6.0_开机性能.md @@ -12,17 +12,19 @@ Bootchart是一个用于Linux启动过程性能分析的开源软件工具,以 我们使用下面的命名来打开Bootchart来收集开机性能数据(主要就是记录日志文件): - //在data/bootchart/目录中新建start文件 - adb shell 'touch /data/bootchart/start' - /* - * 在start文件中写入采用时间timeout=120s - * 这里的时间可以自定义,通过查看源代码可知最长时间不能超过10*60 s - */ - adb shell 'echo 120 > /data/bootchart/start' - //在data/bootchart/目录中新建stop文件 - adb shell 'touch /data/bootchart/stop' - //在stop文件中写入1标记,用于停止采集数据 - adb shell 'echo 1 > /data/bootchart/stop' +```sh +//在data/bootchart/目录中新建start文件 +adb shell 'touch /data/bootchart/start' +/* + * 在start文件中写入采用时间timeout=120s + * 这里的时间可以自定义,通过查看源代码可知最长时间不能超过10*60 s + */ +adb shell 'echo 120 > /data/bootchart/start' +//在data/bootchart/目录中新建stop文件 +adb shell 'touch /data/bootchart/stop' +//在stop文件中写入1标记,用于停止采集数据 +adb shell 'echo 1 > /data/bootchart/stop' +``` ### 1.2、收集开机性能数据 @@ -55,19 +57,23 @@ echo "Clean up ${TMPDIR}/ and ./${TARBALL%.tgz}.png when done" 参照上面Google的脚本,我们在自己的Linux环境中处理这些日志数据,首先需要在Linux中安装bootchart、pybootchartgui和gnome-open工具: - sudo apt-get install bootchart - sudo apt-get install pybootchartgui - sudo apt-get install gnome-open +```sh +sudo apt-get install bootchart +sudo apt-get install pybootchartgui +sudo apt-get install gnome-open +``` ### 2.2、处理数据 在Linux中安装好必备软件后,将手机/data/bootchart/中的日志数据导入到Linux环境中,并并参照Google的处理脚本,根据自己实际情况写了一个处理脚本handle―bootchart.sh - TARBALL=bootchart.tgz - FILES="header proc_stat.log proc_ps.log proc_diskstats.log kernel_pacct" - tar -czf $TARBALL $FILES - bootchart $TARBALL - gnome-open ${TARBALL%.tgz}.png +```sh +TARBALL=bootchart.tgz +FILES="header proc_stat.log proc_ps.log proc_diskstats.log kernel_pacct" +tar -czf $TARBALL $FILES +bootchart $TARBALL +gnome-open ${TARBALL%.tgz}.png +``` 最终将分析的结果生成可视化的图片。 @@ -94,7 +100,9 @@ if __name__ == "__main__": 我们这里需要将两次打包得到的两个压缩包bootchart.tgz分别保存在base_bootchart_dir和exp_bootchart_dir目录中,然后运行下面的命令来执行脚本: - ./compare-bootcharts.py base_bootchart_dir exp_bootchart_dir +```sh +./compare-bootcharts.py base_bootchart_dir exp_bootchart_dir +``` 得到两个比较的结果如下图所示: @@ -108,11 +116,15 @@ ps:在我的Linux环境使用这个脚本时遇到了如下几个问题,在 2、注意Linux环境下python解析器的安装位置与脚本中指定的解析器位置是否一致,一般我们写的python脚本第一行是: - #!/usr/bin/python +```sh +#!/usr/bin/python +``` 这就限定死了解析器的位置,而Google的这个解析脚本中的第一行是: - #!/usr/bin/env python +```sh +#!/usr/bin/env python +``` 总之要让脚本找到对应的解析器来解析这个python脚本,至于这两种写法的区别,参考博客-《#!/usr/bin/env python与#!/usr/bin/python的区别》,推荐使用#!/usr/bin/env python这种写法。 @@ -122,20 +134,22 @@ ps:在我的Linux环境使用这个脚本时遇到了如下几个问题,在 其中涉及到的源码文件和说明文件都在system/core/init/目录下 - bootchart.cpp - compare-bootcharts.py - grab-bootchart.sh - readme.txt +```sh +bootchart.cpp +compare-bootcharts.py +grab-bootchart.sh +readme.txt +``` ## 3、部分源码解读 ```cpp // bootchart.cpp -…… +... // Max polling time in seconds. static const int BOOTCHART_MAX_TIME_SEC = 10*60; -…… +... static int bootchart_init() { int timeout = 0; //从start文件中读取采集时间并赋给timeout @@ -161,7 +175,7 @@ static int bootchart_init() { //最长的采集时间不能超过BOOTCHART_MAX_TIME_SEC=10*60s if (timeout > BOOTCHART_MAX_TIME_SEC) timeout = BOOTCHART_MAX_TIME_SEC; - …… + ... } static int bootchart_step() { @@ -185,23 +199,27 @@ static int bootchart_step() { 按照上面的方法打开Bootchart采集数据并分析的方案,不能使用在恢复出厂设置或者手机刚烧录好版本后第一次开机的情况,而往往在这种情况下,手机开机比较慢,也是我们重点需要优化的。但通过查看源代码,我们可以在bootchart.cpp中写死一个timeout值,然后重新编译进系统刷机。 - before: - int timeout = 0; - - after: - int timeout = 120; +```sh +before: +int timeout = 0; + +after: +int timeout = 120; +``` 由于Android是架构在Linux虚拟机上的,因此对Android的开机优化与Linux虚拟机有着很大的联系。通过上面得出的图表分析出哪些耗时进程,然后去重点优化便可提升Android的开机速度。下面是几篇比较好的使用Bootchart来优化Android开机时间的帖子,仅供参考: - 《Android/Linux boot time分析优化》http://www.cnblogs.com/arnoldlu/p/6266331.html - 《android启动速度优化》http://blog.chinaunix.net/uid-21564437-id-3954560.html - 《Android开机速度优化简单回顾》http://blog.csdn.net/freshui/article/details/53700771 - 《Android bootchart分析》http://blog.csdn.net/weiqifa0/article/details/48996033 +* [《Android/Linux boot time分析优化》](http://www.cnblogs.com/arnoldlu/p/6266331.html) +* [《android启动速度优化》](http://blog.chinaunix.net/uid-21564437-id-3954560.html) +* [《Android开机速度优化简单回顾》](http://blog.csdn.net/freshui/article/details/53700771) +* [《Android bootchart分析》](http://blog.csdn.net/weiqifa0/article/details/48996033) Android O中对开机速度做了一个很大的提升,以下是官方给出的一张开机时间线图: 从Android N的27.6s到Android O的13.3s,可以看出Google在Android O上对开机时间做了很大的优化。我们要在Android O中打开Bootchart并分析开机时间,使用如下命令: - //To enable bootchart: - adb shell 'touch /data/bootchart/enabled' - adb reboot +```sh +# To enable bootchart: +adb shell 'touch /data/bootchart/enabled' +adb reboot +```