blob: 459682d07c87c6a512c082d9bdeb288f61533ac5 [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;
Pavel Maltsev0477e292016-05-27 12:22:36 -070022import android.car.cluster.renderer.IInstrumentClusterNavigation;
keunyoungca515072015-07-10 12:21:47 -070023import android.content.Context;
keunyoung1ab8e182015-09-24 09:25:22 -070024import android.content.pm.PackageManager;
Pavel Maltsev0d07c762016-11-03 16:40:15 -070025import android.hardware.vehicle.V2_0.IVehicle;
keunyoungca515072015-07-10 12:21:47 -070026import android.os.IBinder;
keunyoungca515072015-07-10 12:21:47 -070027import android.util.Log;
28
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080029import com.android.car.cluster.InstrumentClusterService;
keunyoungcc449f72015-08-12 10:46:27 -070030import com.android.car.hal.VehicleHal;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080031import com.android.car.pm.CarPackageManagerService;
keunyoungca515072015-07-10 12:21:47 -070032import com.android.internal.annotations.GuardedBy;
33
keunyounga3b28d82015-08-25 13:05:15 -070034import java.io.PrintWriter;
35
keunyoungca515072015-07-10 12:21:47 -070036public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070037
Keun-young Parka28d7b22016-02-29 16:54:29 -080038 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070039 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
40 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080041
42 // load jni for all services here
43 static {
Pavel Maltsev0d07c762016-11-03 16:40:15 -070044 try {
45 System.loadLibrary("jni_car_service");
46 } catch (UnsatisfiedLinkError ex) {
47 // Unable to load native library when loaded from the testing framework.
48 Log.e(CarLog.TAG_SERVICE, "Failed to load jni_car_service library: " + ex.getMessage());
49 }
Keun-young Parka28d7b22016-02-29 16:54:29 -080050 }
51
keunyoungca515072015-07-10 12:21:47 -070052 private final Context mContext;
Pavel Maltsev0d07c762016-11-03 16:40:15 -070053 private VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070054
Keun-young Park4727da32016-05-31 10:00:51 -070055 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070056 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080057 private final CarPackageManagerService mCarPackageManagerService;
58 private final CarInputService mCarInputService;
keunyoungca515072015-07-10 12:21:47 -070059 private final CarSensorService mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -070060 private final CarInfoService mCarInfoService;
keunyoungd32f4e62015-09-21 11:33:06 -070061 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080062 private final CarProjectionService mCarProjectionService;
Steve Paik43c04a72016-07-08 19:12:09 -070063 private final CarCabinService mCarCabinService;
Steve Paik875616c2016-02-05 10:55:59 -080064 private final CarCameraService mCarCameraService;
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;
keunyounga74b9ca2015-10-21 13:33:58 -070074
Pavel Maltsev0d07c762016-11-03 16:40:15 -070075 private final CarServiceBase[] mAllServices;
76
keunyoung1ab8e182015-09-24 09:25:22 -070077 /** Test only service. Populate it only when necessary. */
78 @GuardedBy("this")
79 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -070080
Pavel Maltsev0d07c762016-11-03 16:40:15 -070081 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface) {
keunyoungca515072015-07-10 12:21:47 -070082 mContext = serviceContext;
Pavel Maltsev0d07c762016-11-03 16:40:15 -070083 mHal = new VehicleHal(vehicle);
Keun-young Park4727da32016-05-31 10:00:51 -070084 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -070085 mCarPowerManagementService = new CarPowerManagementService(
86 mHal.getPowerHal(), systemInterface);
87 mCarSensorService = new CarSensorService(serviceContext, mHal.getSensorHal());
Keun-young Park4727da32016-05-31 10:00:51 -070088 mCarPackageManagerService = new CarPackageManagerService(serviceContext, mCarSensorService,
89 mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -070090 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080091 mCarProjectionService = new CarProjectionService(serviceContext, mCarInputService);
Yao Chen3a7976d2016-01-20 17:27:08 -080092 mGarageModeService = new GarageModeService(mContext, mCarPowerManagementService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -070093 mCarInfoService = new CarInfoService(serviceContext, mHal.getInfoHal());
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -070094 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -070095 mCarAudioService = new CarAudioService(serviceContext, mHal.getAudioHal(),
96 mCarInputService);
97 mCarCabinService = new CarCabinService(serviceContext, mHal.getCabinHal());
98 mCarHvacService = new CarHvacService(serviceContext, mHal.getHvacHal());
99 mCarRadioService = new CarRadioService(serviceContext, mHal.getRadioHal());
Steve Paik875616c2016-02-05 10:55:59 -0800100 mCarCameraService = new CarCameraService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700101 mCarNightService = new CarNightService(serviceContext, mCarSensorService);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700102 mInstrumentClusterService = new InstrumentClusterService(serviceContext,
Pavel Maltsev03cf60c2016-06-27 15:11:51 -0700103 mAppFocusService, mCarInputService);
Keun-young Parkd73afae2016-04-08 20:03:32 -0700104 mSystemStateControllerService = new SystemStateControllerService(serviceContext,
Keun-young Park3cb89102016-05-05 13:16:03 -0700105 mCarPowerManagementService, mCarAudioService, this);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700106 mCarVendorExtensionService = new CarVendorExtensionService(serviceContext,
107 mHal.getVendorExtensionHal());
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -0800108 mCarBluetoothService = new CarBluetoothService(serviceContext, mCarCabinService);
keunyounga74b9ca2015-10-21 13:33:58 -0700109
keunyounga3b28d82015-08-25 13:05:15 -0700110 // Be careful with order. Service depending on other service should be inited later.
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700111 mAllServices = new CarServiceBase[]{
Keun-young Park4727da32016-05-31 10:00:51 -0700112 mSystemActivityMonitoringService,
keunyoung4b0212c2015-10-29 17:11:57 -0700113 mCarPowerManagementService,
Keun-young Park4727da32016-05-31 10:00:51 -0700114 mCarSensorService,
Keun-young Park45fdcba2015-12-08 11:38:58 -0800115 mCarPackageManagerService,
Keun-young Parka28d7b22016-02-29 16:54:29 -0800116 mCarInputService,
117 mGarageModeService,
keunyounga3b28d82015-08-25 13:05:15 -0700118 mCarInfoService,
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700119 mAppFocusService,
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700120 mCarAudioService,
Steve Paik43c04a72016-07-08 19:12:09 -0700121 mCarCabinService,
Steve Paik66481982015-10-27 15:22:38 -0700122 mCarHvacService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800123 mCarRadioService,
124 mCarCameraService,
Joseph Pirozzo317343d2016-01-25 10:22:37 -0800125 mCarNightService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800126 mInstrumentClusterService,
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800127 mCarProjectionService,
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700128 mSystemStateControllerService,
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -0800129 mCarVendorExtensionService,
130 mCarBluetoothService
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700131 };
keunyoungca515072015-07-10 12:21:47 -0700132 }
133
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700134 public void init() {
135 mHal.init();
keunyounga3b28d82015-08-25 13:05:15 -0700136 for (CarServiceBase service: mAllServices) {
137 service.init();
138 }
keunyoungca515072015-07-10 12:21:47 -0700139 }
140
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700141 public void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700142 // release done in opposite order from init
143 for (int i = mAllServices.length - 1; i >= 0; i--) {
144 mAllServices[i].release();
145 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700146 mHal.release();
keunyoung1ab8e182015-09-24 09:25:22 -0700147 }
148
keunyoungca515072015-07-10 12:21:47 -0700149 @Override
keunyoungca515072015-07-10 12:21:47 -0700150 public IBinder getCarService(String serviceName) {
151 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800152 case Car.AUDIO_SERVICE:
153 return mCarAudioService;
keunyoungca515072015-07-10 12:21:47 -0700154 case Car.SENSOR_SERVICE:
155 return mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -0700156 case Car.INFO_SERVICE:
157 return mCarInfoService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700158 case Car.APP_FOCUS_SERVICE:
159 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800160 case Car.PACKAGE_SERVICE:
161 return mCarPackageManagerService;
Steve Paik43c04a72016-07-08 19:12:09 -0700162 case Car.CABIN_SERVICE:
163 assertCabinPermission(mContext);
164 return mCarCabinService;
Steve Paik875616c2016-02-05 10:55:59 -0800165 case Car.CAMERA_SERVICE:
166 assertCameraPermission(mContext);
167 return mCarCameraService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800168 case Car.HVAC_SERVICE:
Steve Paik66481982015-10-27 15:22:38 -0700169 assertHvacPermission(mContext);
170 return mCarHvacService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800171 case Car.RADIO_SERVICE:
keunyoung6b197692015-11-16 13:54:38 -0800172 assertRadioPermission(mContext);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700173 return mCarRadioService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800174 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700175 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700176 IInstrumentClusterNavigation navService =
177 mInstrumentClusterService.getNavigationService();
178 return navService == null ? null : navService.asBinder();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800179 case Car.PROJECTION_SERVICE:
180 assertProjectionPermission(mContext);
181 return mCarProjectionService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700182 case Car.VENDOR_EXTENSION_SERVICE:
183 assertVendorExtensionPermission(mContext);
184 return mCarVendorExtensionService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800185 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700186 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700187 synchronized (this) {
188 if (mCarTestService == null) {
189 mCarTestService = new CarTestService(mContext, this);
190 }
191 return mCarTestService;
192 }
193 }
keunyoungca515072015-07-10 12:21:47 -0700194 default:
195 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
196 return null;
197 }
198 }
199
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800200 @Override
201 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700202 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800203 }
204
Keun-young Parka28d7b22016-02-29 16:54:29 -0800205 public CarServiceBase getCarInternalService(String serviceName) {
206 switch (serviceName) {
207 case INTERNAL_INPUT_SERVICE:
208 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700209 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
210 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800211 default:
212 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
213 serviceName);
214 return null;
215 }
216 }
217
keunyoung1ab8e182015-09-24 09:25:22 -0700218 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700219 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700220 }
221
Steve Paik43c04a72016-07-08 19:12:09 -0700222 public static void assertCabinPermission(Context context) {
223 assertPermission(context, Car.PERMISSION_CAR_CABIN);
224 }
225
Steve Paik875616c2016-02-05 10:55:59 -0800226 public static void assertCameraPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700227 assertPermission(context, Car.PERMISSION_CAR_CAMERA);
Steve Paik875616c2016-02-05 10:55:59 -0800228 }
229
Keun-young Parke31a8b22016-03-16 17:34:08 -0700230 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700231 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800232 }
233
Steve Paik66481982015-10-27 15:22:38 -0700234 public static void assertHvacPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700235 assertPermission(context, Car.PERMISSION_CAR_HVAC);
Steve Paik66481982015-10-27 15:22:38 -0700236 }
237
keunyoung6b197692015-11-16 13:54:38 -0800238 private static void assertRadioPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700239 assertPermission(context, Car.PERMISSION_CAR_RADIO);
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700240 }
241
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800242 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700243 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
244 }
245
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700246 public static void assertVendorExtensionPermission(Context context) {
247 assertPermission(context, Car.PERMISSION_VENDOR_EXTENSION);
248 }
249
Steve Paik461ecc62016-06-08 15:28:32 -0700250 public static void assertPermission(Context context, String permission) {
251 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
252 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800253 }
254 }
255
keunyoungcc449f72015-08-12 10:46:27 -0700256 void dump(PrintWriter writer) {
keunyounga3b28d82015-08-25 13:05:15 -0700257 writer.println("*Dump all services*");
258 for (CarServiceBase service: mAllServices) {
259 service.dump(writer);
260 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700261 if (mCarTestService != null) {
262 mCarTestService.dump(writer);
keunyoung1ab8e182015-09-24 09:25:22 -0700263 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700264 writer.println("*Dump Vehicle HAL*");
265 mHal.dump(writer);
keunyoungcc449f72015-08-12 10:46:27 -0700266 }
Yao Chene33f07e2016-07-26 12:02:51 -0700267
268 void execShellCmd(String[] args, PrintWriter writer) {
269 new CarShellCommand().exec(args, writer);
270 }
271
272 private class CarShellCommand {
273 private static final String COMMAND_HELP = "-h";
274 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
275 private static final String PARAM_DAY_MODE = "day";
276 private static final String PARAM_NIGHT_MODE = "night";
277 private static final String PARAM_SENSOR_MODE = "sensor";
278
279 private void dumpHelp(PrintWriter pw) {
280 pw.println("Car service commands:");
281 pw.println("\t-h");
282 pw.println("\t Print this help text.");
283 pw.println("\tday-night-mode [day|night|sensor]");
284 pw.println("\t Force into day/night mode or restore to auto.");
285 }
286
287 public void exec(String[] args, PrintWriter writer) {
288 String arg = args[0];
289 switch (arg) {
290 case COMMAND_HELP:
291 dumpHelp(writer);
292 break;
293 case COMMAND_DAY_NIGHT_MODE:
294 String value = args.length < 1 ? "" : args[1];
295 forceDayNightMode(value, writer);
296 break;
297 default:
298 writer.println("Unknown command.");
299 dumpHelp(writer);
300 }
301 }
302
303 private void forceDayNightMode(String arg, PrintWriter writer) {
304 int mode;
305 switch (arg) {
306 case PARAM_DAY_MODE:
307 mode = CarNightService.FORCED_DAY_MODE;
308 break;
309 case PARAM_NIGHT_MODE:
310 mode = CarNightService.FORCED_NIGHT_MODE;
311 break;
312 case PARAM_SENSOR_MODE:
313 mode = CarNightService.FORCED_SENSOR_MODE;
314 break;
315 default:
316 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
317 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
318 return;
319 }
320 int current = mCarNightService.forceDayNightMode(mode);
321 String currentMode = null;
322 switch (current) {
323 case UiModeManager.MODE_NIGHT_AUTO:
324 currentMode = PARAM_SENSOR_MODE;
325 break;
326 case UiModeManager.MODE_NIGHT_YES:
327 currentMode = PARAM_NIGHT_MODE;
328 break;
329 case UiModeManager.MODE_NIGHT_NO:
330 currentMode = PARAM_DAY_MODE;
331 break;
332 }
333 writer.println("DayNightMode changed to: " + currentMode);
334 }
335 }
336}