blob: 36ccdcac83c4201489537ecdd7ad3a4bb20238f4 [file] [log] [blame]
keunyoungca515072015-07-10 12:21:47 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.car;
18
Yao Chene33f07e2016-07-26 12:02:51 -070019import android.app.UiModeManager;
Keun-young Parke54ac272016-02-16 19:02:18 -080020import android.car.Car;
21import android.car.ICar;
Antonio Cortese4619c72017-02-02 07:53:27 -080022import android.car.annotation.FutureFeature;
Pavel Maltsev0477e292016-05-27 12:22:36 -070023import android.car.cluster.renderer.IInstrumentClusterNavigation;
keunyoungca515072015-07-10 12:21:47 -070024import android.content.Context;
keunyoung1ab8e182015-09-24 09:25:22 -070025import android.content.pm.PackageManager;
Pavel Maltsevcfe93102017-02-02 12:38:08 -080026import android.hardware.automotive.vehicle.V2_0.IVehicle;
Ram Periathiruvadiee28c002017-02-07 21:35:01 -080027import android.hardware.automotive.vehicle.V2_0.VehicleAreaDoor;
28import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
keunyoungca515072015-07-10 12:21:47 -070029import android.os.IBinder;
keunyoungca515072015-07-10 12:21:47 -070030import android.util.Log;
31
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080032import com.android.car.cluster.InstrumentClusterService;
keunyoungcc449f72015-08-12 10:46:27 -070033import com.android.car.hal.VehicleHal;
Antonio Cortesc52d5f92017-02-06 08:47:38 -080034import com.android.car.internal.FeatureConfiguration;
35import com.android.car.internal.FeatureUtil;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080036import com.android.car.pm.CarPackageManagerService;
keunyoungca515072015-07-10 12:21:47 -070037import com.android.internal.annotations.GuardedBy;
38
keunyounga3b28d82015-08-25 13:05:15 -070039import java.io.PrintWriter;
Antonio Cortese4619c72017-02-02 07:53:27 -080040import java.util.ArrayList;
41import java.util.Arrays;
42import java.util.List;
keunyounga3b28d82015-08-25 13:05:15 -070043
keunyoungca515072015-07-10 12:21:47 -070044public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070045
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -080046 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070047 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
48 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080049
50 // load jni for all services here
51 static {
Pavel Maltsev0d07c762016-11-03 16:40:15 -070052 try {
53 System.loadLibrary("jni_car_service");
54 } catch (UnsatisfiedLinkError ex) {
55 // Unable to load native library when loaded from the testing framework.
56 Log.e(CarLog.TAG_SERVICE, "Failed to load jni_car_service library: " + ex.getMessage());
57 }
Keun-young Parka28d7b22016-02-29 16:54:29 -080058 }
59
keunyoungca515072015-07-10 12:21:47 -070060 private final Context mContext;
Pavel Maltsevec83b632017-01-05 15:10:55 -080061 private final VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070062
Keun-young Park4727da32016-05-31 10:00:51 -070063 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070064 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080065 private final CarPackageManagerService mCarPackageManagerService;
66 private final CarInputService mCarInputService;
keunyoungca515072015-07-10 12:21:47 -070067 private final CarSensorService mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -070068 private final CarInfoService mCarInfoService;
keunyoungd32f4e62015-09-21 11:33:06 -070069 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080070 private final CarProjectionService mCarProjectionService;
Steve Paik43c04a72016-07-08 19:12:09 -070071 private final CarCabinService mCarCabinService;
Steve Paik875616c2016-02-05 10:55:59 -080072 private final CarCameraService mCarCameraService;
Steve Paik66481982015-10-27 15:22:38 -070073 private final CarHvacService mCarHvacService;
Sanket Agarwal3cf096a2015-10-13 14:46:31 -070074 private final CarRadioService mCarRadioService;
Joseph Pirozzo317343d2016-01-25 10:22:37 -080075 private final CarNightService mCarNightService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -070076 private final AppFocusService mAppFocusService;
Yao Chen3a7976d2016-01-20 17:27:08 -080077 private final GarageModeService mGarageModeService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080078 private final InstrumentClusterService mInstrumentClusterService;
Keun-young Parkd73afae2016-04-08 20:03:32 -070079 private final SystemStateControllerService mSystemStateControllerService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -070080 private final CarVendorExtensionService mCarVendorExtensionService;
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -080081 private final CarBluetoothService mCarBluetoothService;
Antonio Cortese4619c72017-02-02 07:53:27 -080082 @FutureFeature
Enrico Granata5c56d2a2017-02-07 15:38:12 -080083 private CarDiagnosticService mCarDiagnosticService;
84 @FutureFeature
Antonio Cortese4619c72017-02-02 07:53:27 -080085 private VmsSubscriberService mVmsSubscriberService;
Antonio Cortes6b3544c2017-02-06 16:54:58 -080086 @FutureFeature
87 private VmsPublisherService mVmsPublisherService;
keunyounga74b9ca2015-10-21 13:33:58 -070088
Pavel Maltsev0d07c762016-11-03 16:40:15 -070089 private final CarServiceBase[] mAllServices;
90
keunyoung1ab8e182015-09-24 09:25:22 -070091 /** Test only service. Populate it only when necessary. */
92 @GuardedBy("this")
93 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -070094
Pavel Maltsevec83b632017-01-05 15:10:55 -080095 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
96 CanBusErrorNotifier errorNotifier) {
keunyoungca515072015-07-10 12:21:47 -070097 mContext = serviceContext;
Pavel Maltsev0d07c762016-11-03 16:40:15 -070098 mHal = new VehicleHal(vehicle);
Keun-young Park4727da32016-05-31 10:00:51 -070099 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700100 mCarPowerManagementService = new CarPowerManagementService(
101 mHal.getPowerHal(), systemInterface);
102 mCarSensorService = new CarSensorService(serviceContext, mHal.getSensorHal());
Keun-young Park4727da32016-05-31 10:00:51 -0700103 mCarPackageManagerService = new CarPackageManagerService(serviceContext, mCarSensorService,
104 mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700105 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800106 mCarProjectionService = new CarProjectionService(serviceContext, mCarInputService);
Yao Chen3a7976d2016-01-20 17:27:08 -0800107 mGarageModeService = new GarageModeService(mContext, mCarPowerManagementService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700108 mCarInfoService = new CarInfoService(serviceContext, mHal.getInfoHal());
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -0700109 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700110 mCarAudioService = new CarAudioService(serviceContext, mHal.getAudioHal(),
Pavel Maltsevec83b632017-01-05 15:10:55 -0800111 mCarInputService, errorNotifier);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700112 mCarCabinService = new CarCabinService(serviceContext, mHal.getCabinHal());
113 mCarHvacService = new CarHvacService(serviceContext, mHal.getHvacHal());
114 mCarRadioService = new CarRadioService(serviceContext, mHal.getRadioHal());
Steve Paik875616c2016-02-05 10:55:59 -0800115 mCarCameraService = new CarCameraService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700116 mCarNightService = new CarNightService(serviceContext, mCarSensorService);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700117 mInstrumentClusterService = new InstrumentClusterService(serviceContext,
Pavel Maltsev03cf60c2016-06-27 15:11:51 -0700118 mAppFocusService, mCarInputService);
Keun-young Parkd73afae2016-04-08 20:03:32 -0700119 mSystemStateControllerService = new SystemStateControllerService(serviceContext,
Keun-young Park3cb89102016-05-05 13:16:03 -0700120 mCarPowerManagementService, mCarAudioService, this);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700121 mCarVendorExtensionService = new CarVendorExtensionService(serviceContext,
122 mHal.getVendorExtensionHal());
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800123 mCarBluetoothService = new CarBluetoothService(serviceContext, mCarCabinService,
124 mCarSensorService);
Antonio Cortese4619c72017-02-02 07:53:27 -0800125 if (FeatureConfiguration.ENABLE_VEHICLE_MAP_SERVICE) {
126 mVmsSubscriberService = new VmsSubscriberService(serviceContext, mHal.getVmsHal());
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800127 mVmsPublisherService = new VmsPublisherService(serviceContext, mHal.getVmsHal());
Antonio Cortese4619c72017-02-02 07:53:27 -0800128 }
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800129 if (FeatureConfiguration.ENABLE_DIAGNOSTIC) {
130 mCarDiagnosticService = new CarDiagnosticService(serviceContext,
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800131 mHal.getDiagnosticHal());
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800132 }
keunyounga74b9ca2015-10-21 13:33:58 -0700133
keunyounga3b28d82015-08-25 13:05:15 -0700134 // Be careful with order. Service depending on other service should be inited later.
Antonio Cortese4619c72017-02-02 07:53:27 -0800135 List<CarServiceBase> allServices = new ArrayList<>(Arrays.asList(
Keun-young Park4727da32016-05-31 10:00:51 -0700136 mSystemActivityMonitoringService,
keunyoung4b0212c2015-10-29 17:11:57 -0700137 mCarPowerManagementService,
Keun-young Park4727da32016-05-31 10:00:51 -0700138 mCarSensorService,
Keun-young Park45fdcba2015-12-08 11:38:58 -0800139 mCarPackageManagerService,
Keun-young Parka28d7b22016-02-29 16:54:29 -0800140 mCarInputService,
141 mGarageModeService,
keunyounga3b28d82015-08-25 13:05:15 -0700142 mCarInfoService,
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700143 mAppFocusService,
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700144 mCarAudioService,
Steve Paik43c04a72016-07-08 19:12:09 -0700145 mCarCabinService,
Steve Paik66481982015-10-27 15:22:38 -0700146 mCarHvacService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800147 mCarRadioService,
148 mCarCameraService,
Joseph Pirozzo317343d2016-01-25 10:22:37 -0800149 mCarNightService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800150 mInstrumentClusterService,
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800151 mCarProjectionService,
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700152 mSystemStateControllerService,
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -0800153 mCarVendorExtensionService,
154 mCarBluetoothService
Antonio Cortese4619c72017-02-02 07:53:27 -0800155 ));
156 if (FeatureConfiguration.ENABLE_VEHICLE_MAP_SERVICE) {
157 allServices.add(mVmsSubscriberService);
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800158 allServices.add(mVmsPublisherService);
Antonio Cortese4619c72017-02-02 07:53:27 -0800159 }
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800160 if (FeatureConfiguration.ENABLE_DIAGNOSTIC) {
161 allServices.add(mCarDiagnosticService);
162 }
Antonio Cortese4619c72017-02-02 07:53:27 -0800163 mAllServices = allServices.toArray(new CarServiceBase[0]);
keunyoungca515072015-07-10 12:21:47 -0700164 }
165
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700166 public void init() {
167 mHal.init();
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800168 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700169 service.init();
170 }
keunyoungca515072015-07-10 12:21:47 -0700171 }
172
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700173 public void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700174 // release done in opposite order from init
175 for (int i = mAllServices.length - 1; i >= 0; i--) {
176 mAllServices[i].release();
177 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700178 mHal.release();
keunyoung1ab8e182015-09-24 09:25:22 -0700179 }
180
Pavel Maltsevec83b632017-01-05 15:10:55 -0800181 public void vehicleHalReconnected(IVehicle vehicle) {
182 mHal.vehicleHalReconnected(vehicle);
183 for (CarServiceBase service : mAllServices) {
184 service.vehicleHalReconnected();
185 }
186 }
187
keunyoungca515072015-07-10 12:21:47 -0700188 @Override
keunyoungca515072015-07-10 12:21:47 -0700189 public IBinder getCarService(String serviceName) {
190 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800191 case Car.AUDIO_SERVICE:
192 return mCarAudioService;
keunyoungca515072015-07-10 12:21:47 -0700193 case Car.SENSOR_SERVICE:
194 return mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -0700195 case Car.INFO_SERVICE:
196 return mCarInfoService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700197 case Car.APP_FOCUS_SERVICE:
198 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800199 case Car.PACKAGE_SERVICE:
200 return mCarPackageManagerService;
Steve Paik43c04a72016-07-08 19:12:09 -0700201 case Car.CABIN_SERVICE:
202 assertCabinPermission(mContext);
203 return mCarCabinService;
Steve Paik875616c2016-02-05 10:55:59 -0800204 case Car.CAMERA_SERVICE:
205 assertCameraPermission(mContext);
206 return mCarCameraService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800207 case Car.DIAGNOSTIC_SERVICE:
Enrico Granata34010ed2017-02-16 11:51:47 -0800208 FeatureUtil.assertFeature(FeatureConfiguration.ENABLE_DIAGNOSTIC);
209 if (FeatureConfiguration.ENABLE_DIAGNOSTIC) {
210 //TODO(egranata): handle permissions
211 return mCarDiagnosticService;
212 }
Keun-young Parke54ac272016-02-16 19:02:18 -0800213 case Car.HVAC_SERVICE:
Steve Paik66481982015-10-27 15:22:38 -0700214 assertHvacPermission(mContext);
215 return mCarHvacService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800216 case Car.RADIO_SERVICE:
keunyoung6b197692015-11-16 13:54:38 -0800217 assertRadioPermission(mContext);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700218 return mCarRadioService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800219 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700220 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700221 IInstrumentClusterNavigation navService =
222 mInstrumentClusterService.getNavigationService();
223 return navService == null ? null : navService.asBinder();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800224 case Car.PROJECTION_SERVICE:
225 assertProjectionPermission(mContext);
226 return mCarProjectionService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700227 case Car.VENDOR_EXTENSION_SERVICE:
228 assertVendorExtensionPermission(mContext);
229 return mCarVendorExtensionService;
Antonio Cortese4619c72017-02-02 07:53:27 -0800230 case Car.VMS_SUBSCRIBER_SERVICE:
231 FeatureUtil.assertFeature(FeatureConfiguration.ENABLE_VEHICLE_MAP_SERVICE);
232 if (FeatureConfiguration.ENABLE_VEHICLE_MAP_SERVICE) {
233 assertVmsSubscriberPermission(mContext);
234 return mVmsSubscriberService;
235 }
Keun-young Parke54ac272016-02-16 19:02:18 -0800236 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700237 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700238 synchronized (this) {
239 if (mCarTestService == null) {
240 mCarTestService = new CarTestService(mContext, this);
241 }
242 return mCarTestService;
243 }
244 }
keunyoungca515072015-07-10 12:21:47 -0700245 default:
246 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
247 return null;
248 }
249 }
250
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800251 @Override
252 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700253 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800254 }
255
Keun-young Parka28d7b22016-02-29 16:54:29 -0800256 public CarServiceBase getCarInternalService(String serviceName) {
257 switch (serviceName) {
258 case INTERNAL_INPUT_SERVICE:
259 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700260 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
261 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800262 default:
263 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
264 serviceName);
265 return null;
266 }
267 }
268
keunyoung1ab8e182015-09-24 09:25:22 -0700269 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700270 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700271 }
272
Steve Paik43c04a72016-07-08 19:12:09 -0700273 public static void assertCabinPermission(Context context) {
274 assertPermission(context, Car.PERMISSION_CAR_CABIN);
275 }
276
Steve Paik875616c2016-02-05 10:55:59 -0800277 public static void assertCameraPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700278 assertPermission(context, Car.PERMISSION_CAR_CAMERA);
Steve Paik875616c2016-02-05 10:55:59 -0800279 }
280
Keun-young Parke31a8b22016-03-16 17:34:08 -0700281 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700282 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800283 }
284
Steve Paik66481982015-10-27 15:22:38 -0700285 public static void assertHvacPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700286 assertPermission(context, Car.PERMISSION_CAR_HVAC);
Steve Paik66481982015-10-27 15:22:38 -0700287 }
288
keunyoung6b197692015-11-16 13:54:38 -0800289 private static void assertRadioPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700290 assertPermission(context, Car.PERMISSION_CAR_RADIO);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700291 }
292
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800293 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700294 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
295 }
296
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700297 public static void assertVendorExtensionPermission(Context context) {
298 assertPermission(context, Car.PERMISSION_VENDOR_EXTENSION);
299 }
300
Antonio Cortese4619c72017-02-02 07:53:27 -0800301 @FutureFeature
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800302 public static void assertVmsPublisherPermission(Context context) {
303 assertPermission(context, Car.PERMISSION_VMS_PUBLISHER);
304 }
305
306 @FutureFeature
Antonio Cortese4619c72017-02-02 07:53:27 -0800307 public static void assertVmsSubscriberPermission(Context context) {
308 assertPermission(context, Car.PERMISSION_VMS_SUBSCRIBER);
309 }
310
Steve Paik461ecc62016-06-08 15:28:32 -0700311 public static void assertPermission(Context context, String permission) {
312 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
313 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800314 }
315 }
316
keunyoungcc449f72015-08-12 10:46:27 -0700317 void dump(PrintWriter writer) {
Keun-young Parkbae6e252017-01-25 12:30:15 -0800318 writer.println("*FutureConfig, DEFAULT:" + FeatureConfiguration.DEFAULT);
319 //TODO dump all feature flags by reflection
keunyounga3b28d82015-08-25 13:05:15 -0700320 writer.println("*Dump all services*");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800321 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700322 service.dump(writer);
323 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700324 if (mCarTestService != null) {
325 mCarTestService.dump(writer);
keunyoung1ab8e182015-09-24 09:25:22 -0700326 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700327 writer.println("*Dump Vehicle HAL*");
328 mHal.dump(writer);
keunyoungcc449f72015-08-12 10:46:27 -0700329 }
Yao Chene33f07e2016-07-26 12:02:51 -0700330
331 void execShellCmd(String[] args, PrintWriter writer) {
332 new CarShellCommand().exec(args, writer);
333 }
334
335 private class CarShellCommand {
336 private static final String COMMAND_HELP = "-h";
337 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800338 private static final String COMMAND_INJECT_EVENT = "inject-event";
339
Yao Chene33f07e2016-07-26 12:02:51 -0700340 private static final String PARAM_DAY_MODE = "day";
341 private static final String PARAM_NIGHT_MODE = "night";
342 private static final String PARAM_SENSOR_MODE = "sensor";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800343 private static final String PARAM_ZONED_BOOLEAN = "zoned-boolean";
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800344 private static final String PARAM_GLOBAL_INT = "global-integer";
Yao Chene33f07e2016-07-26 12:02:51 -0700345
346 private void dumpHelp(PrintWriter pw) {
347 pw.println("Car service commands:");
348 pw.println("\t-h");
349 pw.println("\t Print this help text.");
350 pw.println("\tday-night-mode [day|night|sensor]");
351 pw.println("\t Force into day/night mode or restore to auto.");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800352 pw.println("\tinject-event zoned-boolean propertyType zone [true|false]");
353 pw.println("\t Inject a Boolean HAL Event. ");
Yao Chene33f07e2016-07-26 12:02:51 -0700354 }
355
356 public void exec(String[] args, PrintWriter writer) {
357 String arg = args[0];
358 switch (arg) {
359 case COMMAND_HELP:
360 dumpHelp(writer);
361 break;
362 case COMMAND_DAY_NIGHT_MODE:
363 String value = args.length < 1 ? "" : args[1];
364 forceDayNightMode(value, writer);
365 break;
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800366 case COMMAND_INJECT_EVENT:
367 String eventType;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800368 if (args.length > 1) {
369 eventType = args[1].toLowerCase();
370 switch (eventType) {
371 case PARAM_ZONED_BOOLEAN:
372 if (args.length < 5) {
373 writer.println("Incorrect number of arguments.");
374 dumpHelp(writer);
375 break;
376 }
377 inject_zoned_boolean_event(args[2], args[3], args[4], writer);
378 break;
379
380 case PARAM_GLOBAL_INT:
381 if (args.length < 4) {
382 writer.println("Incorrect number of Arguments");
383 dumpHelp(writer);
384 break;
385 }
386 inject_global_integer_event(args[2], args[3], writer);
387 break;
388
389 default:
390 writer.println("Unsupported event type");
391 dumpHelp(writer);
392 break;
393 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800394 }
395 break;
Yao Chene33f07e2016-07-26 12:02:51 -0700396 default:
397 writer.println("Unknown command.");
398 dumpHelp(writer);
399 }
400 }
401
402 private void forceDayNightMode(String arg, PrintWriter writer) {
403 int mode;
404 switch (arg) {
405 case PARAM_DAY_MODE:
406 mode = CarNightService.FORCED_DAY_MODE;
407 break;
408 case PARAM_NIGHT_MODE:
409 mode = CarNightService.FORCED_NIGHT_MODE;
410 break;
411 case PARAM_SENSOR_MODE:
412 mode = CarNightService.FORCED_SENSOR_MODE;
413 break;
414 default:
415 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
416 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
417 return;
418 }
419 int current = mCarNightService.forceDayNightMode(mode);
420 String currentMode = null;
421 switch (current) {
422 case UiModeManager.MODE_NIGHT_AUTO:
423 currentMode = PARAM_SENSOR_MODE;
424 break;
425 case UiModeManager.MODE_NIGHT_YES:
426 currentMode = PARAM_NIGHT_MODE;
427 break;
428 case UiModeManager.MODE_NIGHT_NO:
429 currentMode = PARAM_DAY_MODE;
430 break;
431 }
432 writer.println("DayNightMode changed to: " + currentMode);
433 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800434
435 /**
436 * Inject a fake boolean HAL event to help testing.
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800437 *
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800438 * @param property - Vehicle Property
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800439 * @param value - boolean value for the property
440 * @param writer - Printwriter
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800441 */
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800442 private void inject_zoned_boolean_event(String property, String zone, String value,
443 PrintWriter writer) {
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800444 Log.d(CarLog.TAG_SERVICE, "Injecting Boolean event");
445 boolean event;
446 int propId;
447 int zoneId;
448 if (value.equalsIgnoreCase("true")) {
449 event = true;
450 } else {
451 event = false;
452 }
453 try {
454 propId = Integer.decode(property);
455 zoneId = Integer.decode(zone);
456 } catch (NumberFormatException e) {
457 writer.println("Invalid property Id or Zone Id. Prefix hex values with 0x");
458 return;
459 }
460 mHal.injectBooleanEvent(propId, zoneId, event);
461 }
462
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800463 /**
464 * Inject a fake Integer HAL event to help testing.
465 *
466 * @param property - Vehicle Property
467 * @param value - Integer value to inject
468 * @param writer - PrintWriter
469 */
470 private void inject_global_integer_event(String property, String value,
471 PrintWriter writer) {
472 Log.d(CarLog.TAG_SERVICE, "Injecting integer event");
473 int propId;
474 int eventValue;
475 try {
476 propId = Integer.decode(property);
477 eventValue = Integer.decode(value);
478 } catch (NumberFormatException e) {
479 writer.println("Invalid property Id or event value. Prefix hex values with 0x");
480 return;
481 }
482 mHal.injectIntegerEvent(propId, eventValue);
483 }
484
Yao Chene33f07e2016-07-26 12:02:51 -0700485 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800486}