blob: 1d1f997459c5dc542d5dd805507382d3e8992e64 [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;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070027import android.os.Binder;
keunyoungca515072015-07-10 12:21:47 -070028import android.os.IBinder;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070029import android.os.Process;
Steve Paikc302c7c2017-08-04 14:01:58 -070030import android.os.Trace;
keunyoungca515072015-07-10 12:21:47 -070031import android.util.Log;
Steve Paikc302c7c2017-08-04 14:01:58 -070032import android.util.Slog;
Keun-young Park4a79a382017-08-10 18:19:14 -070033import android.util.TimingsTraceLog;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080034import com.android.car.cluster.InstrumentClusterService;
keunyoungcc449f72015-08-12 10:46:27 -070035import com.android.car.hal.VehicleHal;
Antonio Cortesc52d5f92017-02-06 08:47:38 -080036import com.android.car.internal.FeatureConfiguration;
37import com.android.car.internal.FeatureUtil;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080038import com.android.car.pm.CarPackageManagerService;
Enrico Granatab19bc322017-10-12 12:25:06 -070039import com.android.car.systeminterface.SystemInterface;
keunyoungca515072015-07-10 12:21:47 -070040import com.android.internal.annotations.GuardedBy;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070041import com.android.internal.car.ICarServiceHelper;
keunyounga3b28d82015-08-25 13:05:15 -070042import java.io.PrintWriter;
Antonio Cortese4619c72017-02-02 07:53:27 -080043import java.util.ArrayList;
44import java.util.Arrays;
45import java.util.List;
keunyounga3b28d82015-08-25 13:05:15 -070046
keunyoungca515072015-07-10 12:21:47 -070047public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070048
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -080049 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070050 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
51 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080052
keunyoungca515072015-07-10 12:21:47 -070053 private final Context mContext;
Pavel Maltsevec83b632017-01-05 15:10:55 -080054 private final VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070055
Keun-young Park4727da32016-05-31 10:00:51 -070056 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070057 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080058 private final CarPackageManagerService mCarPackageManagerService;
59 private final CarInputService mCarInputService;
keunyoungca515072015-07-10 12:21:47 -070060 private final CarSensorService mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -070061 private final CarInfoService mCarInfoService;
keunyoungd32f4e62015-09-21 11:33:06 -070062 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080063 private final CarProjectionService mCarProjectionService;
Steve Paik43c04a72016-07-08 19:12:09 -070064 private final CarCabinService mCarCabinService;
Steve Paik66481982015-10-27 15:22:38 -070065 private final CarHvacService mCarHvacService;
Sanket Agarwal3cf096a2015-10-13 14:46:31 -070066 private final CarRadioService mCarRadioService;
Joseph Pirozzo317343d2016-01-25 10:22:37 -080067 private final CarNightService mCarNightService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -070068 private final AppFocusService mAppFocusService;
Yao Chen3a7976d2016-01-20 17:27:08 -080069 private final GarageModeService mGarageModeService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080070 private final InstrumentClusterService mInstrumentClusterService;
Keun-young Parkd73afae2016-04-08 20:03:32 -070071 private final SystemStateControllerService mSystemStateControllerService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -070072 private final CarVendorExtensionService mCarVendorExtensionService;
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -080073 private final CarBluetoothService mCarBluetoothService;
Ram Periathiruvadiacb60242017-04-13 16:19:09 -070074 private final PerUserCarServiceHelper mPerUserCarServiceHelper;
Enrico Granata9a916d72017-09-19 14:33:08 -070075 private final CarDiagnosticService mCarDiagnosticService;
76 private final CarStorageMonitoringService mCarStorageMonitoringService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -080077 @FutureFeature
Antonio Cortese4619c72017-02-02 07:53:27 -080078 private VmsSubscriberService mVmsSubscriberService;
Antonio Cortes6b3544c2017-02-06 16:54:58 -080079 @FutureFeature
80 private VmsPublisherService mVmsPublisherService;
keunyounga74b9ca2015-10-21 13:33:58 -070081
Pavel Maltsev0d07c762016-11-03 16:40:15 -070082 private final CarServiceBase[] mAllServices;
83
Steve Paikc302c7c2017-08-04 14:01:58 -070084 private static final String TAG = "ICarImpl";
85 private static final String VHAL_TIMING_TAG = "VehicleHalTiming";
Keun-young Park4a79a382017-08-10 18:19:14 -070086 private static final TimingsTraceLog mBootTiming = new TimingsTraceLog(VHAL_TIMING_TAG,
Steve Paikc302c7c2017-08-04 14:01:58 -070087 Trace.TRACE_TAG_HAL);
88
keunyoung1ab8e182015-09-24 09:25:22 -070089 /** Test only service. Populate it only when necessary. */
90 @GuardedBy("this")
91 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -070092
Keun-young Parkaab47cd2017-06-05 11:04:50 -070093 @GuardedBy("this")
94 private ICarServiceHelper mICarServiceHelper;
95
Pavel Maltsevec83b632017-01-05 15:10:55 -080096 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
97 CanBusErrorNotifier errorNotifier) {
keunyoungca515072015-07-10 12:21:47 -070098 mContext = serviceContext;
Pavel Maltsev0d07c762016-11-03 16:40:15 -070099 mHal = new VehicleHal(vehicle);
Keun-young Park4727da32016-05-31 10:00:51 -0700100 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700101 mCarPowerManagementService = new CarPowerManagementService(
102 mHal.getPowerHal(), systemInterface);
103 mCarSensorService = new CarSensorService(serviceContext, mHal.getSensorHal());
Keun-young Park4727da32016-05-31 10:00:51 -0700104 mCarPackageManagerService = new CarPackageManagerService(serviceContext, mCarSensorService,
105 mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700106 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800107 mCarProjectionService = new CarProjectionService(serviceContext, mCarInputService);
Yao Chen3a7976d2016-01-20 17:27:08 -0800108 mGarageModeService = new GarageModeService(mContext, mCarPowerManagementService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700109 mCarInfoService = new CarInfoService(serviceContext, mHal.getInfoHal());
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -0700110 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700111 mCarAudioService = new CarAudioService(serviceContext, mHal.getAudioHal(),
Pavel Maltsevec83b632017-01-05 15:10:55 -0800112 mCarInputService, errorNotifier);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700113 mCarCabinService = new CarCabinService(serviceContext, mHal.getCabinHal());
114 mCarHvacService = new CarHvacService(serviceContext, mHal.getHvacHal());
115 mCarRadioService = new CarRadioService(serviceContext, mHal.getRadioHal());
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 Periathiruvadiacb60242017-04-13 16:19:09 -0700123 mPerUserCarServiceHelper = new PerUserCarServiceHelper(serviceContext);
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800124 mCarBluetoothService = new CarBluetoothService(serviceContext, mCarCabinService,
Ram Periathiruvadiacb60242017-04-13 16:19:09 -0700125 mCarSensorService, mPerUserCarServiceHelper);
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700126 mVmsSubscriberService = new VmsSubscriberService(serviceContext, mHal.getVmsHal());
127 mVmsPublisherService = new VmsPublisherService(serviceContext, mHal.getVmsHal());
Enrico Granatab3634e22017-05-05 18:02:31 -0700128 mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
Enrico Granata517a1e02017-09-20 16:15:50 -0700129 mCarStorageMonitoringService = new CarStorageMonitoringService(serviceContext,
130 systemInterface);
keunyounga74b9ca2015-10-21 13:33:58 -0700131
keunyounga3b28d82015-08-25 13:05:15 -0700132 // Be careful with order. Service depending on other service should be inited later.
Antonio Cortese4619c72017-02-02 07:53:27 -0800133 List<CarServiceBase> allServices = new ArrayList<>(Arrays.asList(
Keun-young Park4727da32016-05-31 10:00:51 -0700134 mSystemActivityMonitoringService,
keunyoung4b0212c2015-10-29 17:11:57 -0700135 mCarPowerManagementService,
Keun-young Park4727da32016-05-31 10:00:51 -0700136 mCarSensorService,
Keun-young Park45fdcba2015-12-08 11:38:58 -0800137 mCarPackageManagerService,
Keun-young Parka28d7b22016-02-29 16:54:29 -0800138 mCarInputService,
139 mGarageModeService,
keunyounga3b28d82015-08-25 13:05:15 -0700140 mCarInfoService,
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700141 mAppFocusService,
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700142 mCarAudioService,
Steve Paik43c04a72016-07-08 19:12:09 -0700143 mCarCabinService,
Steve Paik66481982015-10-27 15:22:38 -0700144 mCarHvacService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800145 mCarRadioService,
Joseph Pirozzo317343d2016-01-25 10:22:37 -0800146 mCarNightService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800147 mInstrumentClusterService,
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800148 mCarProjectionService,
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700149 mSystemStateControllerService,
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -0800150 mCarVendorExtensionService,
Enrico Granatab3634e22017-05-05 18:02:31 -0700151 mCarBluetoothService,
Ram Periathiruvadia048c0a2017-05-09 07:35:03 -0700152 mCarDiagnosticService,
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700153 mPerUserCarServiceHelper,
Enrico Granata9a916d72017-09-19 14:33:08 -0700154 mCarStorageMonitoringService,
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700155 mVmsSubscriberService,
156 mVmsPublisherService
Antonio Cortese4619c72017-02-02 07:53:27 -0800157 ));
Antonio Cortese4619c72017-02-02 07:53:27 -0800158 mAllServices = allServices.toArray(new CarServiceBase[0]);
keunyoungca515072015-07-10 12:21:47 -0700159 }
160
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700161 void init() {
Steve Paikc302c7c2017-08-04 14:01:58 -0700162 traceBegin("VehicleHal.init");
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700163 mHal.init();
Steve Paikc302c7c2017-08-04 14:01:58 -0700164 traceEnd();
165 traceBegin("CarService.initAllServices");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800166 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700167 service.init();
168 }
Steve Paikc302c7c2017-08-04 14:01:58 -0700169 traceEnd();
keunyoungca515072015-07-10 12:21:47 -0700170 }
171
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700172 void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700173 // release done in opposite order from init
174 for (int i = mAllServices.length - 1; i >= 0; i--) {
175 mAllServices[i].release();
176 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700177 mHal.release();
keunyoung1ab8e182015-09-24 09:25:22 -0700178 }
179
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700180 void vehicleHalReconnected(IVehicle vehicle) {
Pavel Maltsevec83b632017-01-05 15:10:55 -0800181 mHal.vehicleHalReconnected(vehicle);
182 for (CarServiceBase service : mAllServices) {
183 service.vehicleHalReconnected();
184 }
185 }
186
keunyoungca515072015-07-10 12:21:47 -0700187 @Override
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700188 public void setCarServiceHelper(IBinder helper) {
189 int uid = Binder.getCallingUid();
190 if (uid != Process.SYSTEM_UID) {
191 throw new SecurityException("Only allowed from system");
192 }
193 synchronized (this) {
194 mICarServiceHelper = ICarServiceHelper.Stub.asInterface(helper);
195 }
196 }
197
198 @Override
keunyoungca515072015-07-10 12:21:47 -0700199 public IBinder getCarService(String serviceName) {
200 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800201 case Car.AUDIO_SERVICE:
202 return mCarAudioService;
keunyoungca515072015-07-10 12:21:47 -0700203 case Car.SENSOR_SERVICE:
204 return mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -0700205 case Car.INFO_SERVICE:
206 return mCarInfoService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700207 case Car.APP_FOCUS_SERVICE:
208 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800209 case Car.PACKAGE_SERVICE:
210 return mCarPackageManagerService;
Steve Paik43c04a72016-07-08 19:12:09 -0700211 case Car.CABIN_SERVICE:
212 assertCabinPermission(mContext);
213 return mCarCabinService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800214 case Car.DIAGNOSTIC_SERVICE:
Enrico Granatab3634e22017-05-05 18:02:31 -0700215 assertAnyDiagnosticPermission(mContext);
216 return mCarDiagnosticService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800217 case Car.HVAC_SERVICE:
Steve Paik66481982015-10-27 15:22:38 -0700218 assertHvacPermission(mContext);
219 return mCarHvacService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800220 case Car.RADIO_SERVICE:
keunyoung6b197692015-11-16 13:54:38 -0800221 assertRadioPermission(mContext);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700222 return mCarRadioService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800223 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700224 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700225 IInstrumentClusterNavigation navService =
226 mInstrumentClusterService.getNavigationService();
227 return navService == null ? null : navService.asBinder();
Pavel Maltsev905968c2017-07-16 19:48:57 -0700228 case Car.CAR_INSTRUMENT_CLUSTER_SERVICE:
229 assertClusterManagerPermission(mContext);
230 return mInstrumentClusterService.getManagerService();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800231 case Car.PROJECTION_SERVICE:
232 assertProjectionPermission(mContext);
233 return mCarProjectionService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700234 case Car.VENDOR_EXTENSION_SERVICE:
235 assertVendorExtensionPermission(mContext);
236 return mCarVendorExtensionService;
Antonio Cortese4619c72017-02-02 07:53:27 -0800237 case Car.VMS_SUBSCRIBER_SERVICE:
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700238 assertVmsSubscriberPermission(mContext);
239 return mVmsSubscriberService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800240 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700241 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700242 synchronized (this) {
243 if (mCarTestService == null) {
244 mCarTestService = new CarTestService(mContext, this);
245 }
246 return mCarTestService;
247 }
248 }
Ram Periathiruvadi76a84892017-07-27 18:10:35 -0700249 case Car.BLUETOOTH_SERVICE:
250 return mCarBluetoothService;
Enrico Granata9a916d72017-09-19 14:33:08 -0700251 case Car.STORAGE_MONITORING_SERVICE:
Enrico Granata1172f882017-09-21 14:51:30 -0700252 assertPermission(mContext, Car.PERMISSION_STORAGE_MONITORING);
Enrico Granata9a916d72017-09-19 14:33:08 -0700253 return mCarStorageMonitoringService;
keunyoungca515072015-07-10 12:21:47 -0700254 default:
255 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
256 return null;
257 }
258 }
259
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800260 @Override
261 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700262 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800263 }
264
Keun-young Parka28d7b22016-02-29 16:54:29 -0800265 public CarServiceBase getCarInternalService(String serviceName) {
266 switch (serviceName) {
267 case INTERNAL_INPUT_SERVICE:
268 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700269 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
270 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800271 default:
272 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
273 serviceName);
274 return null;
275 }
276 }
277
keunyoung1ab8e182015-09-24 09:25:22 -0700278 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700279 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700280 }
281
Steve Paik43c04a72016-07-08 19:12:09 -0700282 public static void assertCabinPermission(Context context) {
283 assertPermission(context, Car.PERMISSION_CAR_CABIN);
284 }
285
Keun-young Parke31a8b22016-03-16 17:34:08 -0700286 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700287 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800288 }
289
Pavel Maltsev905968c2017-07-16 19:48:57 -0700290 public static void assertClusterManagerPermission(Context context) {
291 assertPermission(context, Car.PERMISSION_CAR_INSTRUMENT_CLUSTER_CONTROL);
292 }
293
Steve Paik66481982015-10-27 15:22:38 -0700294 public static void assertHvacPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700295 assertPermission(context, Car.PERMISSION_CAR_HVAC);
Steve Paik66481982015-10-27 15:22:38 -0700296 }
297
keunyoung6b197692015-11-16 13:54:38 -0800298 private static void assertRadioPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700299 assertPermission(context, Car.PERMISSION_CAR_RADIO);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700300 }
301
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800302 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700303 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
304 }
305
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700306 public static void assertVendorExtensionPermission(Context context) {
307 assertPermission(context, Car.PERMISSION_VENDOR_EXTENSION);
308 }
309
Enrico Granata3c7a6662017-02-23 18:07:59 -0800310 public static void assertAnyDiagnosticPermission(Context context) {
311 assertAnyPermission(context,
Enrico Granataae25b922017-07-07 11:28:15 -0700312 Car.PERMISSION_CAR_DIAGNOSTIC_READ_ALL,
Enrico Granata3c7a6662017-02-23 18:07:59 -0800313 Car.PERMISSION_CAR_DIAGNOSTIC_CLEAR);
314 }
315
316 @FutureFeature
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800317 public static void assertVmsPublisherPermission(Context context) {
318 assertPermission(context, Car.PERMISSION_VMS_PUBLISHER);
319 }
320
321 @FutureFeature
Antonio Cortese4619c72017-02-02 07:53:27 -0800322 public static void assertVmsSubscriberPermission(Context context) {
323 assertPermission(context, Car.PERMISSION_VMS_SUBSCRIBER);
324 }
325
Steve Paik461ecc62016-06-08 15:28:32 -0700326 public static void assertPermission(Context context, String permission) {
327 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
328 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800329 }
330 }
331
Enrico Granata3c7a6662017-02-23 18:07:59 -0800332 public static void assertAnyPermission(Context context, String... permissions) {
333 for (String permission : permissions) {
334 if (context.checkCallingOrSelfPermission(permission) ==
335 PackageManager.PERMISSION_GRANTED) {
336 return;
337 }
338 }
339 throw new SecurityException("requires any of " + Arrays.toString(permissions));
340 }
341
keunyoungcc449f72015-08-12 10:46:27 -0700342 void dump(PrintWriter writer) {
Keun-young Parkbae6e252017-01-25 12:30:15 -0800343 writer.println("*FutureConfig, DEFAULT:" + FeatureConfiguration.DEFAULT);
344 //TODO dump all feature flags by reflection
keunyounga3b28d82015-08-25 13:05:15 -0700345 writer.println("*Dump all services*");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800346 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700347 service.dump(writer);
348 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700349 if (mCarTestService != null) {
350 mCarTestService.dump(writer);
keunyoung1ab8e182015-09-24 09:25:22 -0700351 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700352 writer.println("*Dump Vehicle HAL*");
353 mHal.dump(writer);
keunyoungcc449f72015-08-12 10:46:27 -0700354 }
Yao Chene33f07e2016-07-26 12:02:51 -0700355
356 void execShellCmd(String[] args, PrintWriter writer) {
357 new CarShellCommand().exec(args, writer);
358 }
359
Steve Paikc302c7c2017-08-04 14:01:58 -0700360 private static void traceBegin(String name) {
361 Slog.i(TAG, name);
362 mBootTiming.traceBegin(name);
363 }
364
365 private static void traceEnd() {
366 mBootTiming.traceEnd();
367 }
368
Yao Chene33f07e2016-07-26 12:02:51 -0700369 private class CarShellCommand {
370 private static final String COMMAND_HELP = "-h";
371 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800372 private static final String COMMAND_INJECT_EVENT = "inject-event";
373
Yao Chene33f07e2016-07-26 12:02:51 -0700374 private static final String PARAM_DAY_MODE = "day";
375 private static final String PARAM_NIGHT_MODE = "night";
376 private static final String PARAM_SENSOR_MODE = "sensor";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800377 private static final String PARAM_ZONED_BOOLEAN = "zoned-boolean";
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800378 private static final String PARAM_GLOBAL_INT = "global-integer";
Yao Chene33f07e2016-07-26 12:02:51 -0700379
380 private void dumpHelp(PrintWriter pw) {
381 pw.println("Car service commands:");
382 pw.println("\t-h");
383 pw.println("\t Print this help text.");
384 pw.println("\tday-night-mode [day|night|sensor]");
385 pw.println("\t Force into day/night mode or restore to auto.");
Enrico Granatacf53fd72017-09-28 10:45:44 -0700386 pw.println("\tday-night-mode [day|night|sensor]");
387 pw.println("\t Force into day/night mode or restore to auto.");
Yao Chene33f07e2016-07-26 12:02:51 -0700388 }
389
390 public void exec(String[] args, PrintWriter writer) {
391 String arg = args[0];
392 switch (arg) {
393 case COMMAND_HELP:
394 dumpHelp(writer);
395 break;
396 case COMMAND_DAY_NIGHT_MODE:
397 String value = args.length < 1 ? "" : args[1];
398 forceDayNightMode(value, writer);
399 break;
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800400 case COMMAND_INJECT_EVENT:
401 String eventType;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800402 if (args.length > 1) {
403 eventType = args[1].toLowerCase();
404 switch (eventType) {
405 case PARAM_ZONED_BOOLEAN:
406 if (args.length < 5) {
407 writer.println("Incorrect number of arguments.");
408 dumpHelp(writer);
409 break;
410 }
411 inject_zoned_boolean_event(args[2], args[3], args[4], writer);
412 break;
413
414 case PARAM_GLOBAL_INT:
415 if (args.length < 4) {
416 writer.println("Incorrect number of Arguments");
417 dumpHelp(writer);
418 break;
419 }
420 inject_global_integer_event(args[2], args[3], writer);
421 break;
422
423 default:
424 writer.println("Unsupported event type");
425 dumpHelp(writer);
426 break;
427 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800428 }
429 break;
Yao Chene33f07e2016-07-26 12:02:51 -0700430 default:
431 writer.println("Unknown command.");
432 dumpHelp(writer);
433 }
434 }
435
436 private void forceDayNightMode(String arg, PrintWriter writer) {
437 int mode;
438 switch (arg) {
439 case PARAM_DAY_MODE:
440 mode = CarNightService.FORCED_DAY_MODE;
441 break;
442 case PARAM_NIGHT_MODE:
443 mode = CarNightService.FORCED_NIGHT_MODE;
444 break;
445 case PARAM_SENSOR_MODE:
446 mode = CarNightService.FORCED_SENSOR_MODE;
447 break;
448 default:
449 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
450 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
451 return;
452 }
453 int current = mCarNightService.forceDayNightMode(mode);
454 String currentMode = null;
455 switch (current) {
456 case UiModeManager.MODE_NIGHT_AUTO:
457 currentMode = PARAM_SENSOR_MODE;
458 break;
459 case UiModeManager.MODE_NIGHT_YES:
460 currentMode = PARAM_NIGHT_MODE;
461 break;
462 case UiModeManager.MODE_NIGHT_NO:
463 currentMode = PARAM_DAY_MODE;
464 break;
465 }
466 writer.println("DayNightMode changed to: " + currentMode);
467 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800468
469 /**
470 * Inject a fake boolean HAL event to help testing.
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800471 *
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800472 * @param property - Vehicle Property
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800473 * @param value - boolean value for the property
474 * @param writer - Printwriter
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800475 */
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800476 private void inject_zoned_boolean_event(String property, String zone, String value,
477 PrintWriter writer) {
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800478 Log.d(CarLog.TAG_SERVICE, "Injecting Boolean event");
479 boolean event;
480 int propId;
481 int zoneId;
482 if (value.equalsIgnoreCase("true")) {
483 event = true;
484 } else {
485 event = false;
486 }
487 try {
488 propId = Integer.decode(property);
489 zoneId = Integer.decode(zone);
490 } catch (NumberFormatException e) {
491 writer.println("Invalid property Id or Zone Id. Prefix hex values with 0x");
492 return;
493 }
494 mHal.injectBooleanEvent(propId, zoneId, event);
495 }
496
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800497 /**
498 * Inject a fake Integer HAL event to help testing.
499 *
500 * @param property - Vehicle Property
501 * @param value - Integer value to inject
502 * @param writer - PrintWriter
503 */
504 private void inject_global_integer_event(String property, String value,
505 PrintWriter writer) {
506 Log.d(CarLog.TAG_SERVICE, "Injecting integer event");
507 int propId;
508 int eventValue;
509 try {
510 propId = Integer.decode(property);
511 eventValue = Integer.decode(value);
512 } catch (NumberFormatException e) {
513 writer.println("Invalid property Id or event value. Prefix hex values with 0x");
514 return;
515 }
516 mHal.injectIntegerEvent(propId, eventValue);
517 }
518
Yao Chene33f07e2016-07-26 12:02:51 -0700519 }
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700520}