当前位置:   article > 正文

【Android车载系列】第2章 车载系统启动与CarService

carservice

1 车载启动流程

 

        车载Android启动流程基本是在Android系统的启动流程中,多了Car相关服务。其他流程基本一致,下面我们来看一下Android系统的启动流程。

1.1 Android系统启动流程

        Android系统的启动,从设备的开机键长按开始到Android桌面展示,这个完整流程就是Android系统启动的流程。从系统层次角度可分为Linux 系统层、Android 系统服务层、Zygote进程模型三个阶段;从开机到启动Android桌面完成具体细节可分为Android系统启动的七个步骤。下面我们来分析一下:

1.1.1 启动电源启动系统

        触当电源按下时引导芯片从预定义的地方(固化在ROM)开始执行。加载引导程序BootLoader到RAM中,然后执行。

1.1.2 启动BootLoader引导程序

        引导程序BootLoader是在Android操作系统开始运行前的一个小程序,它的主要作用是将AndroidOS拉起来。

1.1.3 启动linux内核

         当内核启动时,设置缓存、被保护存储器、计划列表、加载驱动。当内核完成系统设置后,它首先会在系统文件中寻找init.rc文件,并启动init.rc进程。

1.1.4 启动init进程

        init进程启动做了很多工作,但是总的来说主要就是做了一下三件事:

        (1)创建和挂载启动所需文件目录。 

        (2)初始化和启动系统属性服务。

        (3)解析init.rc配置文件并启动Zygote进程。

1.1.5 启动zygote进程孵化器

        程序上app_process进程启动zygote进程。zygote主要创建Java虚拟机并为Java虚拟机注册JNI方法;创建服务端Socket;预加载类和资源;启动SystemServer进程;等待AMS请求创建新的应用进程。

1.1.6 启动systemServer进程

        创建并启动Binder线程池,这样可以和其他进程进行通信。

        创建SystemServiceManager,其用于对系统的服务进行创建、启动和生命周期的管理。

        启动系统中的各种服务。包括我们熟悉的AMS、PMS、WMS。

1.1.7 启动Launcher

        被SystemServer启动的AMS会启动Launcher,Launcher启动后会将已安装应用的图标显示在桌面上。

1.2 车载Android启动的区别

        车载Android启动是在前面1.1Android系统启动流程中SystemServer开始,有区别。车载Android在SystemServer中启动独有的CarService。下图虚线部分:

2 车载CarService启动

         CarService是车载Android系统的核心服务之一,所有应用都需要通过CarService来查询、控制整车的状态。不仅仅是车辆控制,实际上CarService几乎就是整个车载Framework最核心的组件。提供了一系列的服务与HAL层的VehicleHAL通信,进而通过车载总线(例如CAN总线)与车身进行通讯,同时它们还为应用层的APP提供接口,从而让APP能够实现对车身的控制与状态的显示。

        CarService启动流程和汽车相关的服务的启动主要依靠一个系统服务CarServiceHelperService开机时在SystemServer中启动。

 2.1 CarServiceHelperService启动

         SystemServer进程启动后会调用main()->run()->startOtherService()方法,通过判断当前系统是否是车载分支的版本,是则创建CarServiceHelperService。

  1. package com.android.server;
  2. // ...
  3. public final class SystemServer {
  4. // ...
  5. /**
  6. * Starts a miscellaneous grab bag of stuff that has yet to be refactored and organized.
  7. */
  8. private void startOtherServices() {
  9. // ...
  10. if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE)) {
  11. traceBeginAndSlog("StartCarServiceHelperService");
  12. mSystemServiceManager.startService(CAR_SERVICE_HELPER_SERVICE_CLASS);
  13. traceEnd();
  14. }
  15. // ...
  16. }
  17. // ...
  18. }

         SystemServer中使用Service管理代理SystemServiceManager的startService方法通过反射构建com.android.internal.car.CarServiceHelperService。CarServiceHelperService也是继承自SystemService,初始化成功后调用onStart()方法启动。

  1. /**
  2. * Manages creating, starting, and other lifecycle events of
  3. * {@link com.android.server.SystemService system services}.
  4. *
  5. * {@hide}
  6. */
  7. public class SystemServiceManager {
  8. // ...
  9. /**
  10. * Starts a service by class name.
  11. *
  12. * @return The service instance.
  13. */
  14. @SuppressWarnings("unchecked")
  15. public SystemService startService(String className) {
  16. final Class<SystemService> serviceClass;
  17. try {
  18. serviceClass = (Class<SystemService>)Class.forName(className);
  19. } catch (ClassNotFoundException ex) {
  20. Slog.i(TAG, "Starting " + className);
  21. throw new RuntimeException("Failed to create service " + className
  22. + ": service class not found, usually indicates that the caller should "
  23. + "have called PackageManager.hasSystemFeature() to check whether the "
  24. + "feature is available on this device before trying to start the "
  25. + "services that implement it", ex);
  26. }
  27. return startService(serviceClass);
  28. }
  29. public <T extends SystemService> T startService(Class<T> serviceClass) {
  30. try {
  31. // ...
  32. startService(service);
  33. return service;
  34. } finally {
  35. Trace.traceEnd(Trace.TRACE_TAG_SYSTEM_SERVER);
  36. }
  37. }
  38. public void startService(@NonNull final SystemService service) {
  39. // Register it.
  40. mServices.add(service);
  41. // Start it.
  42. long time = SystemClock.elapsedRealtime();
  43. try {
  44. service.onStart();
  45. } catch (RuntimeException ex) {
  46. throw new RuntimeException("Failed to start service " + service.getClass().getName()
  47. + ": onStart threw an exception", ex);
  48. }
  49. warnIfTooLong(SystemClock.elapsedRealtime() - time, service, "onStart");
  50. }
  51. // ...
  52. }

2.2 车载CarService进程启动        

        onStart()方法中使用AIDL启动CarService(新的进程),并加载jni库为CarService提供必要的API。CarServiceHelperService重写后的onStart()需要重点看一下:

  1. package com.android.internal.car;
  2. // ...
  3. /**
  4. * System service side companion service for CarService.
  5. * Starts car service and provide necessary API for CarService. Only for car product.
  6. */
  7. public class CarServiceHelperService extends SystemService {
  8. // ...
  9. private static final String CAR_SERVICE_INTERFACE = "android.car.ICar";
  10. @Override
  11. public void onStart() {
  12. Intent intent = new Intent();
  13. intent.setPackage("com.android.car");
  14. intent.setAction(CAR_SERVICE_INTERFACE);
  15. if (!getContext().bindServiceAsUser(intent, mCarServiceConnection,Context.BIND_AUTO_CREATE,UserHandle.SYSTEM)) {
  16. Slog.wtf(TAG, "cannot start car service");
  17. }
  18. System.loadLibrary("car-framework-service-jni");
  19. }
  20. // ...
  21. }

2.3 CarServer启动图 

大致流程分为以下几步:

        1.SystemServer初始化时候调用startOtherService()。

        2.startOtherService()方法通过SystemServerManager对象的startService()启动CarServiceHelperService,并调用其onStart()方法。

        3.CarServiceHelperService通过bindServiceAsUser()方法启动CarService

        4.CarService被创建后,onCreate方法调用进行初始化当前对象。

 3 车载CarService内部实现

CarService进入启动时序后,onCreate()方法中进行一系列的自身的初始化操作,步骤如下:

        1)通过HIDL接口获取到HAL层的IHwBinder对象-IVehicle,与AIDL的用法类似,必须持有IHwBinder对象我们才可以与Vehicle HAL层进行通信。

        2)创建ICarImpl对象,并调用init方法,它就是ICar.aidl接口的实现类,我们需要通过它才能拿到其他的Service的IBinder对象。

        3)将ICar.aidl的实现类添加到ServiceManager中。

        4)设定SystemProperty,将CarService设定为创建完成状态,只有包含CarService在内的所有的核心Service都完成初始化,才能结束开机动画并发送开机广播。

  1. @Override
  2. public void onCreate() {
  3. Log.i(CarLog.TAG_SERVICE, "Service onCreate");
  4. mCanBusErrorNotifier = new CanBusErrorNotifier(this /* context */ );
  5. mVehicle = getVehicle();
  6. EventLog.writeEvent(EventLogTags.CAR_SERVICE_CREATE, mVehicle == null ? 0 : 1);
  7. if (mVehicle == null) {
  8. throw new IllegalStateException("Vehicle HAL service is not available.");
  9. }
  10. try {
  11. mVehicleInterfaceName = mVehicle.interfaceDescriptor();
  12. } catch (RemoteException e) {
  13. throw new IllegalStateException("Unable to get Vehicle HAL interface descriptor", e);
  14. }
  15. Log.i(CarLog.TAG_SERVICE, "Connected to " + mVehicleInterfaceName);
  16. EventLog.writeEvent(EventLogTags.CAR_SERVICE_CONNECTED, mVehicleInterfaceName);
  17. mICarImpl = new ICarImpl(this,
  18. mVehicle,
  19. SystemInterface.Builder.defaultSystemInterface(this).build(),
  20. mCanBusErrorNotifier,
  21. mVehicleInterfaceName);
  22. mICarImpl.init();
  23. // 处理 HIDL 连接
  24. linkToDeath(mVehicle, mVehicleDeathRecipient);
  25. ServiceManager.addService("car_service", mICarImpl);
  26. SystemProperties.set("boot.car_service_created", "1");
  27. super.onCreate();
  28. }

3.1 IVehicle对象创建

        通过HIDL接口获取到HAL层的IHwBinder对象-IVehicle,与AIDL的用法类似,必须持有IHwBinder对象我们才可以与Vehicle HAL层进行通信。

  1. @Nullable
  2. private static IVehicle getVehicle() {
  3. final String instanceName = SystemProperties.get("ro.vehicle.hal", "default");
  4. try {
  5. return android.hardware.automotive.vehicle.V2_0.IVehicle.getService(instanceName);
  6. } catch (RemoteException e) {
  7. Log.e(CarLog.TAG_SERVICE, "Failed to get IVehicle/" + instanceName + " service", e);
  8. } catch (NoSuchElementException e) {
  9. Log.e(CarLog.TAG_SERVICE, "IVehicle/" + instanceName + " service not registered yet");
  10. }
  11. return null;
  12. }

3.2 实现Service服务,ICarImpl实现

接着我们再来看ICarImpl的实现,如下所示:

3.2.1 创建各个核心服务对象。

3.2.2 把服务对象缓存到CarLocalServices中,主要为了方便Service之间的相互访问。

  1. ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
  2. CanBusErrorNotifier errorNotifier, String vehicleInterfaceName,
  3. @Nullable CarUserService carUserService,
  4. @Nullable CarWatchdogService carWatchdogService) {
  5. ...
  6. // 创建 核心服务对象
  7. mCarPowerManagementService = new CarPowerManagementService(mContext, mHal.getPowerHal(),
  8. systemInterface, mCarUserService);
  9. ...
  10. // 将重要的服务缓存到 CarLocalServices
  11. CarLocalServices.addService(CarPowerManagementService.class, mCarPowerManagementService);
  12. CarLocalServices.addService(CarPropertyService.class, mCarPropertyService);
  13. CarLocalServices.addService(CarUserService.class, mCarUserService);
  14. CarLocalServices.addService(CarTrustedDeviceService.class, mCarTrustedDeviceService);
  15. CarLocalServices.addService(CarUserNoticeService.class, mCarUserNoticeService);
  16. CarLocalServices.addService(SystemInterface.class, mSystemInterface);
  17. CarLocalServices.addService(CarDrivingStateService.class, mCarDrivingStateService);
  18. CarLocalServices.addService(PerUserCarServiceHelper.class, mPerUserCarServiceHelper);
  19. CarLocalServices.addService(FixedActivityService.class, mFixedActivityService);
  20. CarLocalServices.addService(VmsBrokerService.class, mVmsBrokerService);
  21. CarLocalServices.addService(CarOccupantZoneService.class, mCarOccupantZoneService);
  22. CarLocalServices.addService(AppFocusService.class, mAppFocusService);
  23. // 将创建的服务对象依次添加到一个list中保存起来
  24. List<CarServiceBase> allServices = new ArrayList<>();
  25. allServices.add(mFeatureController);
  26. allServices.add(mCarUserService);
  27. ...
  28. allServices.add(mCarWatchdogService);
  29. // Always put mCarExperimentalFeatureServiceController in last.
  30. addServiceIfNonNull(allServices, mCarExperimentalFeatureServiceController);
  31. mAllServices = allServices.toArray(new CarServiceBase[allServices.size()]);
  32. }

3.2.3 将服务对象放置一个list中。这样init方法中就可以以循环的形式直接调用服务对象的init,而不需要一个个调用。VechicleHAL的程序也会在这里完成初始化。

  1. @MainThread
  2. void init() {
  3. mBootTiming = new TimingsTraceLog(VHAL_TIMING_TAG, Trace.TRACE_TAG_HAL);
  4. traceBegin("VehicleHal.init");
  5. // 初始化 Vechicle HAL
  6. mHal.init();
  7. traceEnd();
  8. traceBegin("CarService.initAllServices");
  9. // 初始化所有服务
  10. for (CarServiceBase service : mAllServices) {
  11. service.init();
  12. }
  13. traceEnd();
  14. }

3.2.4 最后实现ICar.aidl中定义的各个接口就可以了

  1. @Override
  2. public IBinder getCarService(String serviceName) {
  3. if (!mFeatureController.isFeatureEnabled(serviceName)) {
  4. Log.w(CarLog.TAG_SERVICE, "getCarService for disabled service:" + serviceName);
  5. return null;
  6. }
  7. switch (serviceName) {
  8. case Car.AUDIO_SERVICE:
  9. return mCarAudioService;
  10. case Car.APP_FOCUS_SERVICE:
  11. return mAppFocusService;
  12. case Car.PACKAGE_SERVICE:
  13. return mCarPackageManagerService;
  14. ...
  15. default:
  16. IBinder service = null;
  17. if (mCarExperimentalFeatureServiceController != null) {
  18. service = mCarExperimentalFeatureServiceController.getCarService(serviceName);
  19. }
  20. if (service == null) {
  21. Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:"
  22. + serviceName);
  23. }
  24. return service;
  25. }
  26. }

3.3 CarService运行图 

3.4 总结

     CarService实现的功能几乎就是覆盖整个车载Framework的核心。

     然而现实中为了保证各个核心服务的稳定性,同时降低CarService协同开发的难度,一般会选择将一些重要的服务拆分单独作为一个独立的Service运行在独立的进程中,导致有的车机系统中CarService只实现了CarPropertyService的功能。

     CarService实现流程可以这样理解:提供IVehicle对象与底层交互,提供ICarImpl初始化一系列服务交给ServiceManager管理,而这些服务可以通过IVehicle对象调用底层的API,CarService充当一个中介代理的角色存在。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/636416
推荐阅读
相关标签
  

闽ICP备14008679号