当前位置:   article > 正文

Android7.0 启动Launcher流程_android 7.0 launcher启动流程

android 7.0 launcher启动流程

    在前文分析启动SystemServer流程可以知道在ZygoteInit中通过反射机制执行SystemServer的main函数,从而进入到SystemServer中。在SystemServer的main函数中所做的事情很简单,就是创建SystemServer对象并调用它的run函数进一步处理。


    如果设备的时间为1970年之前的话,就会将手机时间设置为1970年。为SystemServer创建主线程的Looper,并且进入消息循环。加载一个叫做android_servers的本地库,它提供本地方法的接口。之后调用本地函数启动sensor service。为系统进行创建Context,创建SystemServiceManager进行管理系统服务。

  1. // Mmmmmm... more memory!
  2. VMRuntime.getRuntime().clearGrowthLimit(); //每次开机都会清理一下内存, 获取更多的内存空间
  3. VMRuntime.getRuntime().setTargetHeapUtilization(0.8f); //内存使用相关
  4. Build.ensureFingerprintProperty(); //指纹配置
  5. // Within the system server, it is an error to access Environment paths without
  6. // explicitly specifying a user.
  7. Environment.setUserRequired(true);
  8. // Within the system server, any incoming Bundles should be defused
  9. // to avoid throwing BadParcelableException.
  10. BaseBundle.setShouldDefuse(true);
  11. // Ensure binder calls into the system always run at foreground priority.
  12. BinderInternal.disableBackgroundScheduling(true);
  13. BinderInternal.setMaxThreads(sMaxBinderThreads); //增加Binder数量
  14. android.os.Process.setThreadPriority(
  15. android.os.Process.THREAD_PRIORITY_FOREGROUND); //设置systemserver为前台进程
  16. android.os.Process.setCanSelfBackground(false); //不能自己变为后台进程
  17. Looper.prepareMainLooper(); //准备main looper
  18. System.loadLibrary("android_servers"); //初始化本地的服务
  19. performPendingShutdown(); //检查上次是否关机发生问题
  20. createSystemContext(); //初始化上下文

    以上处理完后就开始启动Java层的各个服务首先将一些比较重要并且比较复杂相互之间有依赖的服务统一启动,而大部分系统服务的启动是由SystemServiceManager进行统一管理,仍然基于反射等机制,根据启动类的class name进行创建类的实例。例如启动 PowerManagerService过程:

        mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class);
将PowerManagerService的class传递给SystemServiceManager从而启动PowerManagerService. 所要启动的类必须是SystemService的子类.

  1. /**
  2. * Creates and starts a system service. The class must be a subclass of
  3. * {@link com.android.server.SystemService}.
  4. *
  5. * @param serviceClass A Java class that implements the SystemService interface.
  6. * @return The service instance, never null.
  7. * @throws RuntimeException if the service fails to start.
  8. */
  9. @SuppressWarnings("unchecked")
  10. public <T extends SystemService> T startService(Class<T> serviceClass) {
  11. try {
  12. final String name = serviceClass.getName(); //获取class的name
  13. Slog.i(TAG, "Starting " + name);
  14. Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "StartService " + name);
  15. // Create the service.
  16. if (!SystemService.class.isAssignableFrom(serviceClass)) {
  17. throw new RuntimeException("Failed to create " + name
  18. + ": service must extend " + SystemService.class.getName());
  19. }
  20. final T service;
  21. try {
  22. Constr
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/227802?site
推荐阅读
相关标签
  

闽ICP备14008679号