blob: 7d7cb67be11f2cbb684baf1386ffc398e9ce1137 [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
Pavel Maltsevabd47232017-10-10 16:54:57 -070019import android.annotation.MainThread;
Yao Chene33f07e2016-07-26 12:02:51 -070020import android.app.UiModeManager;
Keun-young Parke54ac272016-02-16 19:02:18 -080021import android.car.Car;
22import android.car.ICar;
Antonio Cortese4619c72017-02-02 07:53:27 -080023import android.car.annotation.FutureFeature;
Pavel Maltsev0477e292016-05-27 12:22:36 -070024import android.car.cluster.renderer.IInstrumentClusterNavigation;
keunyoungca515072015-07-10 12:21:47 -070025import android.content.Context;
keunyoung1ab8e182015-09-24 09:25:22 -070026import android.content.pm.PackageManager;
Pavel Maltsevcfe93102017-02-02 12:38:08 -080027import android.hardware.automotive.vehicle.V2_0.IVehicle;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070028import android.os.Binder;
keunyoungca515072015-07-10 12:21:47 -070029import android.os.IBinder;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070030import android.os.Process;
Steve Paikc302c7c2017-08-04 14:01:58 -070031import android.os.Trace;
keunyoungca515072015-07-10 12:21:47 -070032import android.util.Log;
Steve Paikc302c7c2017-08-04 14:01:58 -070033import android.util.Slog;
Keun-young Park4a79a382017-08-10 18:19:14 -070034import android.util.TimingsTraceLog;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080035import com.android.car.cluster.InstrumentClusterService;
keunyoungcc449f72015-08-12 10:46:27 -070036import com.android.car.hal.VehicleHal;
Antonio Cortesc52d5f92017-02-06 08:47:38 -080037import com.android.car.internal.FeatureConfiguration;
38import com.android.car.internal.FeatureUtil;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080039import com.android.car.pm.CarPackageManagerService;
Enrico Granatab19bc322017-10-12 12:25:06 -070040import com.android.car.systeminterface.SystemInterface;
keunyoungca515072015-07-10 12:21:47 -070041import com.android.internal.annotations.GuardedBy;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070042import com.android.internal.car.ICarServiceHelper;
keunyounga3b28d82015-08-25 13:05:15 -070043import java.io.PrintWriter;
Antonio Cortese4619c72017-02-02 07:53:27 -080044import java.util.ArrayList;
45import java.util.Arrays;
46import java.util.List;
keunyounga3b28d82015-08-25 13:05:15 -070047
keunyoungca515072015-07-10 12:21:47 -070048public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070049
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -080050 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070051 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
52 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080053
keunyoungca515072015-07-10 12:21:47 -070054 private final Context mContext;
Pavel Maltsevec83b632017-01-05 15:10:55 -080055 private final VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070056
Keun-young Park4727da32016-05-31 10:00:51 -070057 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070058 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080059 private final CarPackageManagerService mCarPackageManagerService;
60 private final CarInputService mCarInputService;
keunyoungca515072015-07-10 12:21:47 -070061 private final CarSensorService mCarSensorService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -080062 private final CarDrivingStateService mCarDrivingStateService;
63 private final CarUXRestrictionsService mCarUXRestrictionsService;
keunyounga3b28d82015-08-25 13:05:15 -070064 private final CarInfoService mCarInfoService;
keunyoungd32f4e62015-09-21 11:33:06 -070065 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080066 private final CarProjectionService mCarProjectionService;
Steve Paik43c04a72016-07-08 19:12:09 -070067 private final CarCabinService mCarCabinService;
Steve Paik66481982015-10-27 15:22:38 -070068 private final CarHvacService mCarHvacService;
Sanket Agarwal3cf096a2015-10-13 14:46:31 -070069 private final CarRadioService mCarRadioService;
Joseph Pirozzo317343d2016-01-25 10:22:37 -080070 private final CarNightService mCarNightService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -070071 private final AppFocusService mAppFocusService;
Yao Chen3a7976d2016-01-20 17:27:08 -080072 private final GarageModeService mGarageModeService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080073 private final InstrumentClusterService mInstrumentClusterService;
Keun-young Parkd73afae2016-04-08 20:03:32 -070074 private final SystemStateControllerService mSystemStateControllerService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -070075 private final CarVendorExtensionService mCarVendorExtensionService;
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -080076 private final CarBluetoothService mCarBluetoothService;
Ram Periathiruvadiacb60242017-04-13 16:19:09 -070077 private final PerUserCarServiceHelper mPerUserCarServiceHelper;
Enrico Granata9a916d72017-09-19 14:33:08 -070078 private final CarDiagnosticService mCarDiagnosticService;
79 private final CarStorageMonitoringService mCarStorageMonitoringService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -080080 @FutureFeature
Antonio Cortese4619c72017-02-02 07:53:27 -080081 private VmsSubscriberService mVmsSubscriberService;
Antonio Cortes6b3544c2017-02-06 16:54:58 -080082 @FutureFeature
83 private VmsPublisherService mVmsPublisherService;
keunyounga74b9ca2015-10-21 13:33:58 -070084
Pavel Maltsev0d07c762016-11-03 16:40:15 -070085 private final CarServiceBase[] mAllServices;
86
Steve Paikc302c7c2017-08-04 14:01:58 -070087 private static final String TAG = "ICarImpl";
88 private static final String VHAL_TIMING_TAG = "VehicleHalTiming";
Keun-young Park4a79a382017-08-10 18:19:14 -070089 private static final TimingsTraceLog mBootTiming = new TimingsTraceLog(VHAL_TIMING_TAG,
Steve Paikc302c7c2017-08-04 14:01:58 -070090 Trace.TRACE_TAG_HAL);
91
keunyoung1ab8e182015-09-24 09:25:22 -070092 /** Test only service. Populate it only when necessary. */
93 @GuardedBy("this")
94 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -070095
Keun-young Parkaab47cd2017-06-05 11:04:50 -070096 @GuardedBy("this")
97 private ICarServiceHelper mICarServiceHelper;
98
Pavel Maltsevec83b632017-01-05 15:10:55 -080099 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
100 CanBusErrorNotifier errorNotifier) {
keunyoungca515072015-07-10 12:21:47 -0700101 mContext = serviceContext;
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700102 mHal = new VehicleHal(vehicle);
Keun-young Park4727da32016-05-31 10:00:51 -0700103 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700104 mCarPowerManagementService = new CarPowerManagementService(
105 mHal.getPowerHal(), systemInterface);
106 mCarSensorService = new CarSensorService(serviceContext, mHal.getSensorHal());
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800107 mCarDrivingStateService = new CarDrivingStateService(serviceContext, mCarSensorService);
108 mCarUXRestrictionsService = new CarUXRestrictionsService(serviceContext,
109 mCarDrivingStateService);
Keun-young Park4727da32016-05-31 10:00:51 -0700110 mCarPackageManagerService = new CarPackageManagerService(serviceContext, mCarSensorService,
111 mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700112 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800113 mCarProjectionService = new CarProjectionService(serviceContext, mCarInputService);
Yao Chen3a7976d2016-01-20 17:27:08 -0800114 mGarageModeService = new GarageModeService(mContext, mCarPowerManagementService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700115 mCarInfoService = new CarInfoService(serviceContext, mHal.getInfoHal());
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -0700116 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700117 mCarAudioService = new CarAudioService(serviceContext, mHal.getAudioHal(),
Pavel Maltsevec83b632017-01-05 15:10:55 -0800118 mCarInputService, errorNotifier);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700119 mCarCabinService = new CarCabinService(serviceContext, mHal.getCabinHal());
120 mCarHvacService = new CarHvacService(serviceContext, mHal.getHvacHal());
121 mCarRadioService = new CarRadioService(serviceContext, mHal.getRadioHal());
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700122 mCarNightService = new CarNightService(serviceContext, mCarSensorService);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700123 mInstrumentClusterService = new InstrumentClusterService(serviceContext,
Pavel Maltsev03cf60c2016-06-27 15:11:51 -0700124 mAppFocusService, mCarInputService);
Keun-young Parkd73afae2016-04-08 20:03:32 -0700125 mSystemStateControllerService = new SystemStateControllerService(serviceContext,
Keun-young Park3cb89102016-05-05 13:16:03 -0700126 mCarPowerManagementService, mCarAudioService, this);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700127 mCarVendorExtensionService = new CarVendorExtensionService(serviceContext,
128 mHal.getVendorExtensionHal());
Ram Periathiruvadiacb60242017-04-13 16:19:09 -0700129 mPerUserCarServiceHelper = new PerUserCarServiceHelper(serviceContext);
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800130 mCarBluetoothService = new CarBluetoothService(serviceContext, mCarCabinService,
Ram Periathiruvadiacb60242017-04-13 16:19:09 -0700131 mCarSensorService, mPerUserCarServiceHelper);
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700132 mVmsSubscriberService = new VmsSubscriberService(serviceContext, mHal.getVmsHal());
133 mVmsPublisherService = new VmsPublisherService(serviceContext, mHal.getVmsHal());
Enrico Granatab3634e22017-05-05 18:02:31 -0700134 mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
Enrico Granata517a1e02017-09-20 16:15:50 -0700135 mCarStorageMonitoringService = new CarStorageMonitoringService(serviceContext,
136 systemInterface);
keunyounga74b9ca2015-10-21 13:33:58 -0700137
keunyounga3b28d82015-08-25 13:05:15 -0700138 // Be careful with order. Service depending on other service should be inited later.
Antonio Cortese4619c72017-02-02 07:53:27 -0800139 List<CarServiceBase> allServices = new ArrayList<>(Arrays.asList(
Keun-young Park4727da32016-05-31 10:00:51 -0700140 mSystemActivityMonitoringService,
keunyoung4b0212c2015-10-29 17:11:57 -0700141 mCarPowerManagementService,
Keun-young Park4727da32016-05-31 10:00:51 -0700142 mCarSensorService,
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800143 mCarDrivingStateService,
144 mCarUXRestrictionsService,
Keun-young Park45fdcba2015-12-08 11:38:58 -0800145 mCarPackageManagerService,
Keun-young Parka28d7b22016-02-29 16:54:29 -0800146 mCarInputService,
147 mGarageModeService,
keunyounga3b28d82015-08-25 13:05:15 -0700148 mCarInfoService,
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700149 mAppFocusService,
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700150 mCarAudioService,
Steve Paik43c04a72016-07-08 19:12:09 -0700151 mCarCabinService,
Steve Paik66481982015-10-27 15:22:38 -0700152 mCarHvacService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800153 mCarRadioService,
Joseph Pirozzo317343d2016-01-25 10:22:37 -0800154 mCarNightService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800155 mInstrumentClusterService,
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800156 mCarProjectionService,
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700157 mSystemStateControllerService,
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -0800158 mCarVendorExtensionService,
Enrico Granatab3634e22017-05-05 18:02:31 -0700159 mCarBluetoothService,
Ram Periathiruvadia048c0a2017-05-09 07:35:03 -0700160 mCarDiagnosticService,
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700161 mPerUserCarServiceHelper,
Enrico Granata9a916d72017-09-19 14:33:08 -0700162 mCarStorageMonitoringService,
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700163 mVmsSubscriberService,
164 mVmsPublisherService
Antonio Cortese4619c72017-02-02 07:53:27 -0800165 ));
Antonio Cortese4619c72017-02-02 07:53:27 -0800166 mAllServices = allServices.toArray(new CarServiceBase[0]);
keunyoungca515072015-07-10 12:21:47 -0700167 }
168
Pavel Maltsevabd47232017-10-10 16:54:57 -0700169 @MainThread
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700170 void init() {
Steve Paikc302c7c2017-08-04 14:01:58 -0700171 traceBegin("VehicleHal.init");
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700172 mHal.init();
Steve Paikc302c7c2017-08-04 14:01:58 -0700173 traceEnd();
174 traceBegin("CarService.initAllServices");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800175 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700176 service.init();
177 }
Steve Paikc302c7c2017-08-04 14:01:58 -0700178 traceEnd();
keunyoungca515072015-07-10 12:21:47 -0700179 }
180
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700181 void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700182 // release done in opposite order from init
183 for (int i = mAllServices.length - 1; i >= 0; i--) {
184 mAllServices[i].release();
185 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700186 mHal.release();
keunyoung1ab8e182015-09-24 09:25:22 -0700187 }
188
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700189 void vehicleHalReconnected(IVehicle vehicle) {
Pavel Maltsevec83b632017-01-05 15:10:55 -0800190 mHal.vehicleHalReconnected(vehicle);
191 for (CarServiceBase service : mAllServices) {
192 service.vehicleHalReconnected();
193 }
194 }
195
keunyoungca515072015-07-10 12:21:47 -0700196 @Override
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700197 public void setCarServiceHelper(IBinder helper) {
198 int uid = Binder.getCallingUid();
199 if (uid != Process.SYSTEM_UID) {
200 throw new SecurityException("Only allowed from system");
201 }
202 synchronized (this) {
203 mICarServiceHelper = ICarServiceHelper.Stub.asInterface(helper);
204 }
205 }
206
207 @Override
keunyoungca515072015-07-10 12:21:47 -0700208 public IBinder getCarService(String serviceName) {
209 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800210 case Car.AUDIO_SERVICE:
211 return mCarAudioService;
keunyoungca515072015-07-10 12:21:47 -0700212 case Car.SENSOR_SERVICE:
213 return mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -0700214 case Car.INFO_SERVICE:
215 return mCarInfoService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700216 case Car.APP_FOCUS_SERVICE:
217 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800218 case Car.PACKAGE_SERVICE:
219 return mCarPackageManagerService;
Steve Paik43c04a72016-07-08 19:12:09 -0700220 case Car.CABIN_SERVICE:
221 assertCabinPermission(mContext);
222 return mCarCabinService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800223 case Car.DIAGNOSTIC_SERVICE:
Enrico Granatab3634e22017-05-05 18:02:31 -0700224 assertAnyDiagnosticPermission(mContext);
225 return mCarDiagnosticService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800226 case Car.HVAC_SERVICE:
Steve Paik66481982015-10-27 15:22:38 -0700227 assertHvacPermission(mContext);
228 return mCarHvacService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800229 case Car.RADIO_SERVICE:
keunyoung6b197692015-11-16 13:54:38 -0800230 assertRadioPermission(mContext);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700231 return mCarRadioService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800232 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700233 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700234 IInstrumentClusterNavigation navService =
235 mInstrumentClusterService.getNavigationService();
236 return navService == null ? null : navService.asBinder();
Pavel Maltsev905968c2017-07-16 19:48:57 -0700237 case Car.CAR_INSTRUMENT_CLUSTER_SERVICE:
238 assertClusterManagerPermission(mContext);
239 return mInstrumentClusterService.getManagerService();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800240 case Car.PROJECTION_SERVICE:
241 assertProjectionPermission(mContext);
242 return mCarProjectionService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700243 case Car.VENDOR_EXTENSION_SERVICE:
244 assertVendorExtensionPermission(mContext);
245 return mCarVendorExtensionService;
Antonio Cortese4619c72017-02-02 07:53:27 -0800246 case Car.VMS_SUBSCRIBER_SERVICE:
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700247 assertVmsSubscriberPermission(mContext);
248 return mVmsSubscriberService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800249 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700250 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700251 synchronized (this) {
252 if (mCarTestService == null) {
253 mCarTestService = new CarTestService(mContext, this);
254 }
255 return mCarTestService;
256 }
257 }
Ram Periathiruvadi76a84892017-07-27 18:10:35 -0700258 case Car.BLUETOOTH_SERVICE:
259 return mCarBluetoothService;
Enrico Granata9a916d72017-09-19 14:33:08 -0700260 case Car.STORAGE_MONITORING_SERVICE:
Enrico Granata1172f882017-09-21 14:51:30 -0700261 assertPermission(mContext, Car.PERMISSION_STORAGE_MONITORING);
Enrico Granata9a916d72017-09-19 14:33:08 -0700262 return mCarStorageMonitoringService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800263 case Car.CAR_DRIVING_STATE_SERVICE:
264 assertDrivingStatePermission(mContext);
265 return mCarDrivingStateService;
266 case Car.CAR_UX_RESTRICTION_SERVICE:
267 return mCarUXRestrictionsService;
keunyoungca515072015-07-10 12:21:47 -0700268 default:
269 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
270 return null;
271 }
272 }
273
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800274 @Override
275 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700276 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800277 }
278
Keun-young Parka28d7b22016-02-29 16:54:29 -0800279 public CarServiceBase getCarInternalService(String serviceName) {
280 switch (serviceName) {
281 case INTERNAL_INPUT_SERVICE:
282 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700283 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
284 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800285 default:
286 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
287 serviceName);
288 return null;
289 }
290 }
291
keunyoung1ab8e182015-09-24 09:25:22 -0700292 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700293 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700294 }
295
Steve Paik43c04a72016-07-08 19:12:09 -0700296 public static void assertCabinPermission(Context context) {
297 assertPermission(context, Car.PERMISSION_CAR_CABIN);
298 }
299
Keun-young Parke31a8b22016-03-16 17:34:08 -0700300 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700301 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800302 }
303
Pavel Maltsev905968c2017-07-16 19:48:57 -0700304 public static void assertClusterManagerPermission(Context context) {
305 assertPermission(context, Car.PERMISSION_CAR_INSTRUMENT_CLUSTER_CONTROL);
306 }
307
Steve Paik66481982015-10-27 15:22:38 -0700308 public static void assertHvacPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700309 assertPermission(context, Car.PERMISSION_CAR_HVAC);
Steve Paik66481982015-10-27 15:22:38 -0700310 }
311
keunyoung6b197692015-11-16 13:54:38 -0800312 private static void assertRadioPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700313 assertPermission(context, Car.PERMISSION_CAR_RADIO);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700314 }
315
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800316 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700317 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
318 }
319
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700320 public static void assertVendorExtensionPermission(Context context) {
321 assertPermission(context, Car.PERMISSION_VENDOR_EXTENSION);
322 }
323
Enrico Granata3c7a6662017-02-23 18:07:59 -0800324 public static void assertAnyDiagnosticPermission(Context context) {
325 assertAnyPermission(context,
Enrico Granataae25b922017-07-07 11:28:15 -0700326 Car.PERMISSION_CAR_DIAGNOSTIC_READ_ALL,
Enrico Granata3c7a6662017-02-23 18:07:59 -0800327 Car.PERMISSION_CAR_DIAGNOSTIC_CLEAR);
328 }
329
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800330 public static void assertDrivingStatePermission(Context context) {
331 assertPermission(context, Car.PERMISSION_CAR_DRIVING_STATE);
332 }
333
Enrico Granata3c7a6662017-02-23 18:07:59 -0800334 @FutureFeature
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800335 public static void assertVmsPublisherPermission(Context context) {
336 assertPermission(context, Car.PERMISSION_VMS_PUBLISHER);
337 }
338
339 @FutureFeature
Antonio Cortese4619c72017-02-02 07:53:27 -0800340 public static void assertVmsSubscriberPermission(Context context) {
341 assertPermission(context, Car.PERMISSION_VMS_SUBSCRIBER);
342 }
343
Steve Paik461ecc62016-06-08 15:28:32 -0700344 public static void assertPermission(Context context, String permission) {
345 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
346 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800347 }
348 }
349
Enrico Granata3c7a6662017-02-23 18:07:59 -0800350 public static void assertAnyPermission(Context context, String... permissions) {
351 for (String permission : permissions) {
352 if (context.checkCallingOrSelfPermission(permission) ==
353 PackageManager.PERMISSION_GRANTED) {
354 return;
355 }
356 }
357 throw new SecurityException("requires any of " + Arrays.toString(permissions));
358 }
359
keunyoungcc449f72015-08-12 10:46:27 -0700360 void dump(PrintWriter writer) {
Keun-young Parkbae6e252017-01-25 12:30:15 -0800361 writer.println("*FutureConfig, DEFAULT:" + FeatureConfiguration.DEFAULT);
keunyounga3b28d82015-08-25 13:05:15 -0700362 writer.println("*Dump all services*");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800363 for (CarServiceBase service : mAllServices) {
Brad Stenninged3d59b2017-11-09 16:15:17 -0800364 dumpService(service, writer);
keunyounga3b28d82015-08-25 13:05:15 -0700365 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700366 if (mCarTestService != null) {
Brad Stenninged3d59b2017-11-09 16:15:17 -0800367 dumpService(mCarTestService, writer);
keunyoung1ab8e182015-09-24 09:25:22 -0700368 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700369 writer.println("*Dump Vehicle HAL*");
Brad Stenninged3d59b2017-11-09 16:15:17 -0800370 try {
371 //TODO dump all feature flags by creating a dumpable interface
372 mHal.dump(writer);
373 } catch (Exception e) {
374 writer.println("Failed dumping: " + mHal.getClass().getName());
375 e.printStackTrace(writer);
376 }
377 }
378
379 private void dumpService(CarServiceBase service, PrintWriter writer) {
380 try {
381 service.dump(writer);
382 } catch (Exception e) {
383 writer.println("Failed dumping: " + service.getClass().getName());
384 e.printStackTrace(writer);
385 }
keunyoungcc449f72015-08-12 10:46:27 -0700386 }
Yao Chene33f07e2016-07-26 12:02:51 -0700387
388 void execShellCmd(String[] args, PrintWriter writer) {
389 new CarShellCommand().exec(args, writer);
390 }
391
Pavel Maltsevabd47232017-10-10 16:54:57 -0700392 @MainThread
Steve Paikc302c7c2017-08-04 14:01:58 -0700393 private static void traceBegin(String name) {
394 Slog.i(TAG, name);
395 mBootTiming.traceBegin(name);
396 }
397
Pavel Maltsevabd47232017-10-10 16:54:57 -0700398 @MainThread
Steve Paikc302c7c2017-08-04 14:01:58 -0700399 private static void traceEnd() {
400 mBootTiming.traceEnd();
401 }
402
Yao Chene33f07e2016-07-26 12:02:51 -0700403 private class CarShellCommand {
404 private static final String COMMAND_HELP = "-h";
405 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800406 private static final String COMMAND_INJECT_EVENT = "inject-event";
407
Yao Chene33f07e2016-07-26 12:02:51 -0700408 private static final String PARAM_DAY_MODE = "day";
409 private static final String PARAM_NIGHT_MODE = "night";
410 private static final String PARAM_SENSOR_MODE = "sensor";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800411 private static final String PARAM_ZONED_BOOLEAN = "zoned-boolean";
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800412 private static final String PARAM_GLOBAL_INT = "global-integer";
Yao Chene33f07e2016-07-26 12:02:51 -0700413
414 private void dumpHelp(PrintWriter pw) {
415 pw.println("Car service commands:");
416 pw.println("\t-h");
417 pw.println("\t Print this help text.");
418 pw.println("\tday-night-mode [day|night|sensor]");
419 pw.println("\t Force into day/night mode or restore to auto.");
Enrico Granatacf53fd72017-09-28 10:45:44 -0700420 pw.println("\tday-night-mode [day|night|sensor]");
421 pw.println("\t Force into day/night mode or restore to auto.");
Yao Chene33f07e2016-07-26 12:02:51 -0700422 }
423
424 public void exec(String[] args, PrintWriter writer) {
425 String arg = args[0];
426 switch (arg) {
427 case COMMAND_HELP:
428 dumpHelp(writer);
429 break;
430 case COMMAND_DAY_NIGHT_MODE:
431 String value = args.length < 1 ? "" : args[1];
432 forceDayNightMode(value, writer);
433 break;
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800434 case COMMAND_INJECT_EVENT:
435 String eventType;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800436 if (args.length > 1) {
437 eventType = args[1].toLowerCase();
438 switch (eventType) {
439 case PARAM_ZONED_BOOLEAN:
440 if (args.length < 5) {
441 writer.println("Incorrect number of arguments.");
442 dumpHelp(writer);
443 break;
444 }
445 inject_zoned_boolean_event(args[2], args[3], args[4], writer);
446 break;
447
448 case PARAM_GLOBAL_INT:
449 if (args.length < 4) {
450 writer.println("Incorrect number of Arguments");
451 dumpHelp(writer);
452 break;
453 }
454 inject_global_integer_event(args[2], args[3], writer);
455 break;
456
457 default:
458 writer.println("Unsupported event type");
459 dumpHelp(writer);
460 break;
461 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800462 }
463 break;
Yao Chene33f07e2016-07-26 12:02:51 -0700464 default:
465 writer.println("Unknown command.");
466 dumpHelp(writer);
467 }
468 }
469
470 private void forceDayNightMode(String arg, PrintWriter writer) {
471 int mode;
472 switch (arg) {
473 case PARAM_DAY_MODE:
474 mode = CarNightService.FORCED_DAY_MODE;
475 break;
476 case PARAM_NIGHT_MODE:
477 mode = CarNightService.FORCED_NIGHT_MODE;
478 break;
479 case PARAM_SENSOR_MODE:
480 mode = CarNightService.FORCED_SENSOR_MODE;
481 break;
482 default:
483 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
484 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
485 return;
486 }
487 int current = mCarNightService.forceDayNightMode(mode);
488 String currentMode = null;
489 switch (current) {
490 case UiModeManager.MODE_NIGHT_AUTO:
491 currentMode = PARAM_SENSOR_MODE;
492 break;
493 case UiModeManager.MODE_NIGHT_YES:
494 currentMode = PARAM_NIGHT_MODE;
495 break;
496 case UiModeManager.MODE_NIGHT_NO:
497 currentMode = PARAM_DAY_MODE;
498 break;
499 }
500 writer.println("DayNightMode changed to: " + currentMode);
501 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800502
503 /**
504 * Inject a fake boolean HAL event to help testing.
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800505 *
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800506 * @param property - Vehicle Property
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800507 * @param value - boolean value for the property
508 * @param writer - Printwriter
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800509 */
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800510 private void inject_zoned_boolean_event(String property, String zone, String value,
511 PrintWriter writer) {
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800512 Log.d(CarLog.TAG_SERVICE, "Injecting Boolean event");
513 boolean event;
514 int propId;
515 int zoneId;
516 if (value.equalsIgnoreCase("true")) {
517 event = true;
518 } else {
519 event = false;
520 }
521 try {
522 propId = Integer.decode(property);
523 zoneId = Integer.decode(zone);
524 } catch (NumberFormatException e) {
525 writer.println("Invalid property Id or Zone Id. Prefix hex values with 0x");
526 return;
527 }
528 mHal.injectBooleanEvent(propId, zoneId, event);
529 }
530
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800531 /**
532 * Inject a fake Integer HAL event to help testing.
533 *
534 * @param property - Vehicle Property
535 * @param value - Integer value to inject
536 * @param writer - PrintWriter
537 */
538 private void inject_global_integer_event(String property, String value,
539 PrintWriter writer) {
540 Log.d(CarLog.TAG_SERVICE, "Injecting integer event");
541 int propId;
542 int eventValue;
543 try {
544 propId = Integer.decode(property);
545 eventValue = Integer.decode(value);
546 } catch (NumberFormatException e) {
547 writer.println("Invalid property Id or event value. Prefix hex values with 0x");
548 return;
549 }
550 mHal.injectIntegerEvent(propId, eventValue);
551 }
Yao Chene33f07e2016-07-26 12:02:51 -0700552 }
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700553}