blob: 3d183db56d23cd3367c5b17070438306907699f4 [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;
Keun young Parkf3523cd2019-04-08 10:09:17 -070020import android.app.ActivityManager;
Yao Chene33f07e2016-07-26 12:02:51 -070021import android.app.UiModeManager;
Keun-young Parke54ac272016-02-16 19:02:18 -080022import android.car.Car;
23import android.car.ICar;
Pavel Maltsev0477e292016-05-27 12:22:36 -070024import android.car.cluster.renderer.IInstrumentClusterNavigation;
Ying Zheng9fc99402018-09-19 14:23:59 -070025import android.car.userlib.CarUserManagerHelper;
keunyoungca515072015-07-10 12:21:47 -070026import android.content.Context;
keunyoung1ab8e182015-09-24 09:25:22 -070027import android.content.pm.PackageManager;
Keun young Parkf3523cd2019-04-08 10:09:17 -070028import android.content.res.Resources;
Pavel Maltsevcfe93102017-02-02 12:38:08 -080029import android.hardware.automotive.vehicle.V2_0.IVehicle;
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -080030import android.hardware.automotive.vehicle.V2_0.VehicleArea;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070031import android.os.Binder;
Enrico Granatae8056ca2018-04-03 13:19:52 -070032import android.os.Build;
keunyoungca515072015-07-10 12:21:47 -070033import android.os.IBinder;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070034import android.os.Process;
Steve Paikc302c7c2017-08-04 14:01:58 -070035import android.os.Trace;
keunyoungca515072015-07-10 12:21:47 -070036import android.util.Log;
Steve Paikc302c7c2017-08-04 14:01:58 -070037import android.util.Slog;
Keun-young Park4a79a382017-08-10 18:19:14 -070038import android.util.TimingsTraceLog;
Gregory Clark26fa6012018-03-14 18:38:56 -070039
Hongwei Wang38549092018-08-22 12:32:42 -070040import com.android.car.audio.CarAudioService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080041import com.android.car.cluster.InstrumentClusterService;
Serik Beketayev06a66682018-06-12 16:54:29 -070042import com.android.car.garagemode.GarageModeService;
keunyoungcc449f72015-08-12 10:46:27 -070043import com.android.car.hal.VehicleHal;
Antonio Cortesc52d5f92017-02-06 08:47:38 -080044import com.android.car.internal.FeatureConfiguration;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080045import com.android.car.pm.CarPackageManagerService;
Enrico Granatab19bc322017-10-12 12:25:06 -070046import com.android.car.systeminterface.SystemInterface;
Ram Periathiruvadide0ca082019-03-20 11:16:44 -070047import com.android.car.trust.CarTrustedDeviceService;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070048import com.android.car.user.CarUserService;
Mark Tabry76cfaaa2019-02-01 14:28:30 -080049import com.android.car.vms.VmsBrokerService;
Mark Tabrya8fce562019-01-16 16:24:01 -080050import com.android.car.vms.VmsClientManager;
keunyoungca515072015-07-10 12:21:47 -070051import com.android.internal.annotations.GuardedBy;
Steve Paik1d8bea22018-02-03 01:54:06 +000052import com.android.internal.car.ICarServiceHelper;
Gregory Clark26fa6012018-03-14 18:38:56 -070053
Enrico Granatae8056ca2018-04-03 13:19:52 -070054import java.io.FileDescriptor;
keunyounga3b28d82015-08-25 13:05:15 -070055import java.io.PrintWriter;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070056import java.util.ArrayList;
Antonio Cortese4619c72017-02-02 07:53:27 -080057import java.util.Arrays;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070058import java.util.List;
keunyounga3b28d82015-08-25 13:05:15 -070059
keunyoungca515072015-07-10 12:21:47 -070060public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070061
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -080062 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070063 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
64 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080065
keunyoungca515072015-07-10 12:21:47 -070066 private final Context mContext;
Pavel Maltsevec83b632017-01-05 15:10:55 -080067 private final VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070068
Anthony Chen12aec302018-04-25 16:41:48 -070069 private final SystemInterface mSystemInterface;
70
Keun-young Park4727da32016-05-31 10:00:51 -070071 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070072 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080073 private final CarPackageManagerService mCarPackageManagerService;
74 private final CarInputService mCarInputService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -080075 private final CarDrivingStateService mCarDrivingStateService;
Ram Periathiruvadi4526a432018-01-24 13:00:54 -080076 private final CarUxRestrictionsManagerService mCarUXRestrictionsService;
keunyoungd32f4e62015-09-21 11:33:06 -070077 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080078 private final CarProjectionService mCarProjectionService;
Steve Paik9ec53d72018-04-27 13:28:31 -070079 private final CarPropertyService mCarPropertyService;
Joseph Pirozzo317343d2016-01-25 10:22:37 -080080 private final CarNightService mCarNightService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -070081 private final AppFocusService mAppFocusService;
Yao Chen3a7976d2016-01-20 17:27:08 -080082 private final GarageModeService mGarageModeService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080083 private final InstrumentClusterService mInstrumentClusterService;
Gregory Clarkd8136062017-12-11 14:27:53 -080084 private final CarLocationService mCarLocationService;
Keun-young Parkd73afae2016-04-08 20:03:32 -070085 private final SystemStateControllerService mSystemStateControllerService;
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -080086 private final CarBluetoothService mCarBluetoothService;
Ram Periathiruvadiacb60242017-04-13 16:19:09 -070087 private final PerUserCarServiceHelper mPerUserCarServiceHelper;
Enrico Granata9a916d72017-09-19 14:33:08 -070088 private final CarDiagnosticService mCarDiagnosticService;
89 private final CarStorageMonitoringService mCarStorageMonitoringService;
Anthony Chen12aec302018-04-25 16:41:48 -070090 private final CarConfigurationService mCarConfigurationService;
Ram Periathiruvadide0ca082019-03-20 11:16:44 -070091 private final CarTrustedDeviceService mCarTrustedDeviceService;
Simon Dai527eb552019-02-12 13:06:15 -080092 private final CarMediaService mCarMediaService;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070093 private final CarUserManagerHelper mUserManagerHelper;
Keun-young Parkd462a912019-02-11 08:53:42 -080094 private final CarUserService mCarUserService;
Mark Tabrya8fce562019-01-16 16:24:01 -080095 private final VmsClientManager mVmsClientManager;
Mark Tabry76cfaaa2019-02-01 14:28:30 -080096 private final VmsBrokerService mVmsBrokerService;
Mark Tabrya8fce562019-01-16 16:24:01 -080097 private final VmsSubscriberService mVmsSubscriberService;
98 private final VmsPublisherService mVmsPublisherService;
keunyounga74b9ca2015-10-21 13:33:58 -070099
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700100 private final CarServiceBase[] mAllServices;
101
Steve Paikc302c7c2017-08-04 14:01:58 -0700102 private static final String TAG = "ICarImpl";
103 private static final String VHAL_TIMING_TAG = "VehicleHalTiming";
Serik Beketayev74debf22018-10-04 12:18:09 -0700104
105 private TimingsTraceLog mBootTiming;
Steve Paikc302c7c2017-08-04 14:01:58 -0700106
keunyoung1ab8e182015-09-24 09:25:22 -0700107 /** Test only service. Populate it only when necessary. */
108 @GuardedBy("this")
109 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -0700110
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700111 @GuardedBy("this")
112 private ICarServiceHelper mICarServiceHelper;
113
Enrico Granatae8056ca2018-04-03 13:19:52 -0700114 private final String mVehicleInterfaceName;
115
Pavel Maltsevec83b632017-01-05 15:10:55 -0800116 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
Enrico Granatae8056ca2018-04-03 13:19:52 -0700117 CanBusErrorNotifier errorNotifier, String vehicleInterfaceName) {
keunyoungca515072015-07-10 12:21:47 -0700118 mContext = serviceContext;
Steve Paik0f9fc002018-02-09 17:42:00 -0800119 mSystemInterface = systemInterface;
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700120 mHal = new VehicleHal(vehicle);
Enrico Granatae8056ca2018-04-03 13:19:52 -0700121 mVehicleInterfaceName = vehicleInterfaceName;
Yao, Yuxing0811d5a2018-11-29 16:18:53 -0800122 mUserManagerHelper = new CarUserManagerHelper(serviceContext);
Keun young Parkf3523cd2019-04-08 10:09:17 -0700123 final Resources res = mContext.getResources();
124 final int maxRunningUsers = res.getInteger(
125 com.android.internal.R.integer.config_multiuserMaxRunningUsers);
126 mCarUserService = new CarUserService(serviceContext, mUserManagerHelper,
127 ActivityManager.getService(), maxRunningUsers);
Keun-young Park4727da32016-05-31 10:00:51 -0700128 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Steve Paik388d7772018-02-12 10:54:51 -0800129 mCarPowerManagementService = new CarPowerManagementService(mContext, mHal.getPowerHal(),
Keun young Park9b3f2662019-03-19 10:30:25 -0700130 systemInterface, mUserManagerHelper);
Steve Paik9ec53d72018-04-27 13:28:31 -0700131 mCarPropertyService = new CarPropertyService(serviceContext, mHal.getPropertyHal());
132 mCarDrivingStateService = new CarDrivingStateService(serviceContext, mCarPropertyService);
Ram Periathiruvadi4526a432018-01-24 13:00:54 -0800133 mCarUXRestrictionsService = new CarUxRestrictionsManagerService(serviceContext,
Yao, Yuxing9bfb7492019-02-15 11:53:34 -0800134 mCarDrivingStateService, mCarPropertyService);
Ram Periathiruvadi2da6d0e2018-01-26 18:02:10 -0800135 mCarPackageManagerService = new CarPackageManagerService(serviceContext,
136 mCarUXRestrictionsService,
Keun-young Park4727da32016-05-31 10:00:51 -0700137 mSystemActivityMonitoringService);
Justin Paupore44985ba2019-01-30 18:53:41 -0800138 mPerUserCarServiceHelper = new PerUserCarServiceHelper(serviceContext);
139 mCarBluetoothService = new CarBluetoothService(serviceContext, mCarPropertyService,
140 mPerUserCarServiceHelper, mCarUXRestrictionsService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700141 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Justin Paupore44985ba2019-01-30 18:53:41 -0800142 mCarProjectionService = new CarProjectionService(
Pavel Maltsev079873b2019-02-25 12:15:09 -0800143 serviceContext, null /* handler */, mCarInputService, mCarBluetoothService);
Serik Beketayevc6ab8be2018-08-28 21:20:53 -0700144 mGarageModeService = new GarageModeService(mContext);
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -0700145 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Hongwei Wang30557232018-01-02 10:25:08 -0800146 mCarAudioService = new CarAudioService(serviceContext);
Steve Paik9ec53d72018-04-27 13:28:31 -0700147 mCarNightService = new CarNightService(serviceContext, mCarPropertyService);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700148 mInstrumentClusterService = new InstrumentClusterService(serviceContext,
Pavel Maltsev03cf60c2016-06-27 15:11:51 -0700149 mAppFocusService, mCarInputService);
Serik Beketayevf9f2ef02018-09-06 12:37:02 -0700150 mSystemStateControllerService = new SystemStateControllerService(
151 serviceContext, mCarAudioService, this);
Mark Tabry76cfaaa2019-02-01 14:28:30 -0800152 mVmsBrokerService = new VmsBrokerService();
Mark Tabry1534c062019-03-29 01:30:49 -0700153 mVmsClientManager = new VmsClientManager(
Mark Tabry41437562019-04-04 10:37:33 -0700154 serviceContext, mCarUserService, mUserManagerHelper, mHal.getVmsHal());
Mark Tabry76cfaaa2019-02-01 14:28:30 -0800155 mVmsSubscriberService = new VmsSubscriberService(
156 serviceContext, mVmsBrokerService, mHal.getVmsHal());
157 mVmsPublisherService = new VmsPublisherService(
Mark Tabry1534c062019-03-29 01:30:49 -0700158 serviceContext, mVmsBrokerService, mVmsClientManager);
Enrico Granatab3634e22017-05-05 18:02:31 -0700159 mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
Enrico Granata517a1e02017-09-20 16:15:50 -0700160 mCarStorageMonitoringService = new CarStorageMonitoringService(serviceContext,
161 systemInterface);
Anthony Chen12aec302018-04-25 16:41:48 -0700162 mCarConfigurationService =
163 new CarConfigurationService(serviceContext, new JsonReaderImpl());
Gregory Clarka440e812019-02-14 16:05:51 -0800164 mCarLocationService = new CarLocationService(mContext, mCarPropertyService,
165 mUserManagerHelper);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700166 mCarTrustedDeviceService = new CarTrustedDeviceService(serviceContext);
Simon Dai527eb552019-02-12 13:06:15 -0800167 mCarMediaService = new CarMediaService(serviceContext);
keunyounga74b9ca2015-10-21 13:33:58 -0700168
Keun-young Parkd462a912019-02-11 08:53:42 -0800169 CarLocalServices.addService(CarUserService.class, mCarUserService);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700170 Log.d(TAG, "Adding CarTrustedDeviceService");
171 CarLocalServices.addService(CarTrustedDeviceService.class,
172 mCarTrustedDeviceService);
Gregory Clarka440e812019-02-14 16:05:51 -0800173 CarLocalServices.addService(SystemInterface.class, mSystemInterface);
Keun-young Parkd462a912019-02-11 08:53:42 -0800174
keunyounga3b28d82015-08-25 13:05:15 -0700175 // Be careful with order. Service depending on other service should be inited later.
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700176 List<CarServiceBase> allServices = new ArrayList<>();
Keun-young Parkd462a912019-02-11 08:53:42 -0800177 allServices.add(mCarUserService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700178 allServices.add(mSystemActivityMonitoringService);
179 allServices.add(mCarPowerManagementService);
180 allServices.add(mCarPropertyService);
181 allServices.add(mCarDrivingStateService);
182 allServices.add(mCarUXRestrictionsService);
183 allServices.add(mCarPackageManagerService);
184 allServices.add(mCarInputService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700185 allServices.add(mGarageModeService);
186 allServices.add(mAppFocusService);
187 allServices.add(mCarAudioService);
188 allServices.add(mCarNightService);
189 allServices.add(mInstrumentClusterService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700190 allServices.add(mSystemStateControllerService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700191 allServices.add(mPerUserCarServiceHelper);
Justin Paupore44985ba2019-01-30 18:53:41 -0800192 allServices.add(mCarBluetoothService);
193 allServices.add(mCarProjectionService);
194 allServices.add(mCarDiagnosticService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700195 allServices.add(mCarStorageMonitoringService);
196 allServices.add(mCarConfigurationService);
Mark Tabrya8fce562019-01-16 16:24:01 -0800197 allServices.add(mVmsClientManager);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700198 allServices.add(mVmsSubscriberService);
199 allServices.add(mVmsPublisherService);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700200 allServices.add(mCarTrustedDeviceService);
Simon Dai527eb552019-02-12 13:06:15 -0800201 allServices.add(mCarMediaService);
Gregory Clarka63ba022018-06-07 16:42:12 -0700202 allServices.add(mCarLocationService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700203 mAllServices = allServices.toArray(new CarServiceBase[allServices.size()]);
keunyoungca515072015-07-10 12:21:47 -0700204 }
205
Pavel Maltsevabd47232017-10-10 16:54:57 -0700206 @MainThread
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700207 void init() {
Serik Beketayev74debf22018-10-04 12:18:09 -0700208 mBootTiming = new TimingsTraceLog(VHAL_TIMING_TAG, Trace.TRACE_TAG_HAL);
Steve Paikc302c7c2017-08-04 14:01:58 -0700209 traceBegin("VehicleHal.init");
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700210 mHal.init();
Steve Paikc302c7c2017-08-04 14:01:58 -0700211 traceEnd();
212 traceBegin("CarService.initAllServices");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800213 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700214 service.init();
215 }
Steve Paikc302c7c2017-08-04 14:01:58 -0700216 traceEnd();
keunyoungca515072015-07-10 12:21:47 -0700217 }
218
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700219 void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700220 // release done in opposite order from init
221 for (int i = mAllServices.length - 1; i >= 0; i--) {
222 mAllServices[i].release();
223 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700224 mHal.release();
Keun-young Parkd462a912019-02-11 08:53:42 -0800225 CarLocalServices.removeAllServices();
keunyoung1ab8e182015-09-24 09:25:22 -0700226 }
227
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700228 void vehicleHalReconnected(IVehicle vehicle) {
Pavel Maltsevec83b632017-01-05 15:10:55 -0800229 mHal.vehicleHalReconnected(vehicle);
230 for (CarServiceBase service : mAllServices) {
231 service.vehicleHalReconnected();
232 }
233 }
234
keunyoungca515072015-07-10 12:21:47 -0700235 @Override
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700236 public void setCarServiceHelper(IBinder helper) {
Pavel Maltsev17e81832019-04-04 14:38:41 -0700237 assertCallingFromSystemProcess();
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700238 synchronized (this) {
239 mICarServiceHelper = ICarServiceHelper.Stub.asInterface(helper);
Steve Paik0f9fc002018-02-09 17:42:00 -0800240 mSystemInterface.setCarServiceHelper(mICarServiceHelper);
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700241 }
242 }
243
244 @Override
Keun-young Parkd462a912019-02-11 08:53:42 -0800245 public void setUserLockStatus(int userHandle, int unlocked) {
Pavel Maltsev17e81832019-04-04 14:38:41 -0700246 assertCallingFromSystemProcess();
247 mCarUserService.setUserLockStatus(userHandle, unlocked == 1);
248 }
249
250 @Override
251 public void onSwitchUser(int userHandle) {
252 assertCallingFromSystemProcess();
253
254 Log.i(TAG, "Foreground user switched to " + userHandle);
255 mCarUserService.onSwitchUser(userHandle);
256 }
257
258 private static void assertCallingFromSystemProcess() {
Keun-young Parkd462a912019-02-11 08:53:42 -0800259 int uid = Binder.getCallingUid();
260 if (uid != Process.SYSTEM_UID) {
261 throw new SecurityException("Only allowed from system");
262 }
Keun-young Parkd462a912019-02-11 08:53:42 -0800263 }
264
265 @Override
keunyoungca515072015-07-10 12:21:47 -0700266 public IBinder getCarService(String serviceName) {
267 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800268 case Car.AUDIO_SERVICE:
269 return mCarAudioService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700270 case Car.APP_FOCUS_SERVICE:
271 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800272 case Car.PACKAGE_SERVICE:
273 return mCarPackageManagerService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800274 case Car.DIAGNOSTIC_SERVICE:
Enrico Granatab3634e22017-05-05 18:02:31 -0700275 assertAnyDiagnosticPermission(mContext);
276 return mCarDiagnosticService;
Steve Paik388d7772018-02-12 10:54:51 -0800277 case Car.POWER_SERVICE:
278 assertPowerPermission(mContext);
279 return mCarPowerManagementService;
Steve Paik9ec53d72018-04-27 13:28:31 -0700280 case Car.CABIN_SERVICE:
281 case Car.HVAC_SERVICE:
282 case Car.INFO_SERVICE:
283 case Car.PROPERTY_SERVICE:
284 case Car.SENSOR_SERVICE:
285 case Car.VENDOR_EXTENSION_SERVICE:
286 return mCarPropertyService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800287 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700288 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700289 IInstrumentClusterNavigation navService =
290 mInstrumentClusterService.getNavigationService();
291 return navService == null ? null : navService.asBinder();
Pavel Maltsev905968c2017-07-16 19:48:57 -0700292 case Car.CAR_INSTRUMENT_CLUSTER_SERVICE:
293 assertClusterManagerPermission(mContext);
294 return mInstrumentClusterService.getManagerService();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800295 case Car.PROJECTION_SERVICE:
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800296 return mCarProjectionService;
Antonio Cortese4619c72017-02-02 07:53:27 -0800297 case Car.VMS_SUBSCRIBER_SERVICE:
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700298 assertVmsSubscriberPermission(mContext);
299 return mVmsSubscriberService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800300 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700301 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700302 synchronized (this) {
303 if (mCarTestService == null) {
304 mCarTestService = new CarTestService(mContext, this);
305 }
306 return mCarTestService;
307 }
308 }
Ram Periathiruvadi76a84892017-07-27 18:10:35 -0700309 case Car.BLUETOOTH_SERVICE:
310 return mCarBluetoothService;
Enrico Granata9a916d72017-09-19 14:33:08 -0700311 case Car.STORAGE_MONITORING_SERVICE:
Enrico Granata1172f882017-09-21 14:51:30 -0700312 assertPermission(mContext, Car.PERMISSION_STORAGE_MONITORING);
Enrico Granata9a916d72017-09-19 14:33:08 -0700313 return mCarStorageMonitoringService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800314 case Car.CAR_DRIVING_STATE_SERVICE:
315 assertDrivingStatePermission(mContext);
316 return mCarDrivingStateService;
317 case Car.CAR_UX_RESTRICTION_SERVICE:
318 return mCarUXRestrictionsService;
Anthony Chend4203d82018-05-16 16:21:52 -0700319 case Car.CAR_CONFIGURATION_SERVICE:
320 return mCarConfigurationService;
Ram Periathiruvadi194ce1b2019-01-14 09:42:12 -0800321 case Car.CAR_TRUST_AGENT_ENROLLMENT_SERVICE:
322 assertTrustAgentEnrollmentPermission(mContext);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700323 return mCarTrustedDeviceService.getCarTrustAgentEnrollmentService();
Simon Dai527eb552019-02-12 13:06:15 -0800324 case Car.CAR_MEDIA_SERVICE:
325 return mCarMediaService;
keunyoungca515072015-07-10 12:21:47 -0700326 default:
327 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
328 return null;
329 }
330 }
331
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800332 @Override
333 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700334 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800335 }
336
Keun-young Parka28d7b22016-02-29 16:54:29 -0800337 public CarServiceBase getCarInternalService(String serviceName) {
338 switch (serviceName) {
339 case INTERNAL_INPUT_SERVICE:
340 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700341 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
342 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800343 default:
344 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
345 serviceName);
346 return null;
347 }
348 }
349
keunyoung1ab8e182015-09-24 09:25:22 -0700350 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700351 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700352 }
353
Keun-young Parke31a8b22016-03-16 17:34:08 -0700354 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700355 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800356 }
357
Pavel Maltsev905968c2017-07-16 19:48:57 -0700358 public static void assertClusterManagerPermission(Context context) {
359 assertPermission(context, Car.PERMISSION_CAR_INSTRUMENT_CLUSTER_CONTROL);
360 }
361
Steve Paik388d7772018-02-12 10:54:51 -0800362 public static void assertPowerPermission(Context context) {
363 assertPermission(context, Car.PERMISSION_CAR_POWER);
364 }
365
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800366 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700367 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
368 }
369
Pavel Maltsev079873b2019-02-25 12:15:09 -0800370 /** Verify the calling context has the {@link Car#PERMISSION_CAR_PROJECTION_STATUS} */
371 public static void assertProjectionStatusPermission(Context context) {
372 assertPermission(context, Car.PERMISSION_CAR_PROJECTION_STATUS);
373 }
374
Enrico Granata3c7a6662017-02-23 18:07:59 -0800375 public static void assertAnyDiagnosticPermission(Context context) {
376 assertAnyPermission(context,
Enrico Granataae25b922017-07-07 11:28:15 -0700377 Car.PERMISSION_CAR_DIAGNOSTIC_READ_ALL,
Enrico Granata3c7a6662017-02-23 18:07:59 -0800378 Car.PERMISSION_CAR_DIAGNOSTIC_CLEAR);
379 }
380
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800381 public static void assertDrivingStatePermission(Context context) {
382 assertPermission(context, Car.PERMISSION_CAR_DRIVING_STATE);
383 }
384
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800385 public static void assertVmsPublisherPermission(Context context) {
386 assertPermission(context, Car.PERMISSION_VMS_PUBLISHER);
387 }
388
Antonio Cortese4619c72017-02-02 07:53:27 -0800389 public static void assertVmsSubscriberPermission(Context context) {
390 assertPermission(context, Car.PERMISSION_VMS_SUBSCRIBER);
391 }
392
Ram Periathiruvadi194ce1b2019-01-14 09:42:12 -0800393 /**
394 * Ensures the caller has the permission to enroll a Trust Agent.
395 * @param context
396 */
397 public static void assertTrustAgentEnrollmentPermission(Context context) {
398 assertPermission(context, Car.PERMISSION_CAR_ENROLL_TRUST);
399 }
400
Steve Paik461ecc62016-06-08 15:28:32 -0700401 public static void assertPermission(Context context, String permission) {
402 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
403 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800404 }
405 }
406
Steve Paik9ec53d72018-04-27 13:28:31 -0700407 /**
408 * Checks to see if the caller has a permission.
409 * @param context
410 * @param permission
411 *
412 * @return boolean TRUE if caller has the permission.
413 */
414 public static boolean hasPermission(Context context, String permission) {
415 return context.checkCallingOrSelfPermission(permission)
416 == PackageManager.PERMISSION_GRANTED;
417 }
418
Enrico Granata3c7a6662017-02-23 18:07:59 -0800419 public static void assertAnyPermission(Context context, String... permissions) {
420 for (String permission : permissions) {
421 if (context.checkCallingOrSelfPermission(permission) ==
422 PackageManager.PERMISSION_GRANTED) {
423 return;
424 }
425 }
426 throw new SecurityException("requires any of " + Arrays.toString(permissions));
427 }
428
Enrico Granatae8056ca2018-04-03 13:19:52 -0700429 @Override
430 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
431 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
Anthony Chen12aec302018-04-25 16:41:48 -0700432 != PackageManager.PERMISSION_GRANTED) {
Enrico Granatae8056ca2018-04-03 13:19:52 -0700433 writer.println("Permission Denial: can't dump CarService from from pid="
Anthony Chen12aec302018-04-25 16:41:48 -0700434 + Binder.getCallingPid() + ", uid=" + Binder.getCallingUid()
435 + " without permission " + android.Manifest.permission.DUMP);
Enrico Granatae8056ca2018-04-03 13:19:52 -0700436 return;
keunyounga3b28d82015-08-25 13:05:15 -0700437 }
Enrico Granatae8056ca2018-04-03 13:19:52 -0700438 if (args == null || args.length == 0) {
439 writer.println("*dump car service*");
440
441 writer.println("*FutureConfig, DEFAULT:" + FeatureConfiguration.DEFAULT);
442 writer.println("*Dump all services*");
443 for (CarServiceBase service : mAllServices) {
444 dumpService(service, writer);
445 }
446 if (mCarTestService != null) {
447 dumpService(mCarTestService, writer);
448 }
449 writer.println("*Dump Vehicle HAL*");
450 writer.println("Vehicle HAL Interface: " + mVehicleInterfaceName);
451 try {
452 // TODO dump all feature flags by creating a dumpable interface
453 mHal.dump(writer);
454 } catch (Exception e) {
455 writer.println("Failed dumping: " + mHal.getClass().getName());
456 e.printStackTrace(writer);
457 }
458 } else if (Build.IS_USERDEBUG || Build.IS_ENG) {
459 execShellCmd(args, writer);
460 } else {
461 writer.println("Commands not supported in " + Build.TYPE);
Brad Stenninged3d59b2017-11-09 16:15:17 -0800462 }
463 }
464
465 private void dumpService(CarServiceBase service, PrintWriter writer) {
466 try {
467 service.dump(writer);
468 } catch (Exception e) {
469 writer.println("Failed dumping: " + service.getClass().getName());
470 e.printStackTrace(writer);
471 }
keunyoungcc449f72015-08-12 10:46:27 -0700472 }
Yao Chene33f07e2016-07-26 12:02:51 -0700473
474 void execShellCmd(String[] args, PrintWriter writer) {
475 new CarShellCommand().exec(args, writer);
476 }
477
Pavel Maltsevabd47232017-10-10 16:54:57 -0700478 @MainThread
Serik Beketayev74debf22018-10-04 12:18:09 -0700479 private void traceBegin(String name) {
Steve Paikc302c7c2017-08-04 14:01:58 -0700480 Slog.i(TAG, name);
481 mBootTiming.traceBegin(name);
482 }
483
Pavel Maltsevabd47232017-10-10 16:54:57 -0700484 @MainThread
Serik Beketayev74debf22018-10-04 12:18:09 -0700485 private void traceEnd() {
Steve Paikc302c7c2017-08-04 14:01:58 -0700486 mBootTiming.traceEnd();
487 }
488
Yao Chene33f07e2016-07-26 12:02:51 -0700489 private class CarShellCommand {
490 private static final String COMMAND_HELP = "-h";
491 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800492 private static final String COMMAND_INJECT_VHAL_EVENT = "inject-vhal-event";
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800493 private static final String COMMAND_ENABLE_UXR = "enable-uxr";
Bryan Eylera32a7c12018-02-27 15:40:00 -0800494 private static final String COMMAND_GARAGE_MODE = "garage-mode";
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800495 private static final String COMMAND_GET_DO_ACTIVITIES = "get-do-activities";
Kaidd4ef5a2019-03-04 14:07:26 -0800496 private static final String COMMAND_GET_CARPROPERTYCONFIG = "get-carpropertyconfig";
Pavel Maltsev48a31942019-03-03 22:08:28 -0800497 private static final String COMMAND_PROJECTION_UI_MODE = "projection-ui-mode";
Jim Kayed76c2742019-04-02 11:33:27 -0700498 private static final String COMMAND_RESUME = "resume";
499 private static final String COMMAND_SUSPEND = "suspend";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800500
Yao Chene33f07e2016-07-26 12:02:51 -0700501 private static final String PARAM_DAY_MODE = "day";
502 private static final String PARAM_NIGHT_MODE = "night";
503 private static final String PARAM_SENSOR_MODE = "sensor";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800504 private static final String PARAM_VEHICLE_PROPERTY_AREA_GLOBAL = "0";
Bryan Eylera32a7c12018-02-27 15:40:00 -0800505 private static final String PARAM_ON_MODE = "on";
506 private static final String PARAM_OFF_MODE = "off";
507 private static final String PARAM_QUERY_MODE = "query";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800508
Yao Chene33f07e2016-07-26 12:02:51 -0700509
510 private void dumpHelp(PrintWriter pw) {
511 pw.println("Car service commands:");
512 pw.println("\t-h");
513 pw.println("\t Print this help text.");
514 pw.println("\tday-night-mode [day|night|sensor]");
515 pw.println("\t Force into day/night mode or restore to auto.");
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800516 pw.println("\tinject-vhal-event property [zone] data(can be comma separated list)");
Jim Kayef10b7d82019-02-26 12:53:22 -0800517 pw.println("\t Inject a vehicle property for testing.");
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800518 pw.println("\tdisable-uxr true|false");
519 pw.println("\t Disable UX restrictions and App blocking.");
Bryan Eylera32a7c12018-02-27 15:40:00 -0800520 pw.println("\tgarage-mode [on|off|query]");
521 pw.println("\t Force into garage mode or check status.");
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800522 pw.println("\tget-do-activities pkgname");
Jim Kayef10b7d82019-02-26 12:53:22 -0800523 pw.println("\t Get Distraction Optimized activities in given package.");
Kaidd4ef5a2019-03-04 14:07:26 -0800524 pw.println("\tget-carpropertyconfig [propertyId]");
525 pw.println("\t Get a CarPropertyConfig by Id in Hex or list all CarPropertyConfigs");
Jim Kayed76c2742019-04-02 11:33:27 -0700526 pw.println("\tsuspend");
527 pw.println("\t Suspend the system to Deep Sleep.");
528 pw.println("\tresume");
529 pw.println("\t Wake the system up after a 'suspend.'");
Yao Chene33f07e2016-07-26 12:02:51 -0700530 }
531
532 public void exec(String[] args, PrintWriter writer) {
533 String arg = args[0];
534 switch (arg) {
535 case COMMAND_HELP:
536 dumpHelp(writer);
537 break;
Bryan Eylera32a7c12018-02-27 15:40:00 -0800538 case COMMAND_DAY_NIGHT_MODE: {
Jim Kayef10b7d82019-02-26 12:53:22 -0800539 String value = args.length < 2 ? "" : args[1];
Yao Chene33f07e2016-07-26 12:02:51 -0700540 forceDayNightMode(value, writer);
541 break;
Bryan Eylera32a7c12018-02-27 15:40:00 -0800542 }
543 case COMMAND_GARAGE_MODE: {
Jim Kayef10b7d82019-02-26 12:53:22 -0800544 String value = args.length < 2 ? "" : args[1];
Bryan Eylera32a7c12018-02-27 15:40:00 -0800545 forceGarageMode(value, writer);
546 break;
547 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800548 case COMMAND_INJECT_VHAL_EVENT:
549 String zone = PARAM_VEHICLE_PROPERTY_AREA_GLOBAL;
550 String data;
Jim Kayef10b7d82019-02-26 12:53:22 -0800551 if (args.length != 3 && args.length != 4) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800552 writer.println("Incorrect number of arguments.");
553 dumpHelp(writer);
554 break;
Jim Kayef10b7d82019-02-26 12:53:22 -0800555 } else if (args.length == 4) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800556 // Zoned
557 zone = args[2];
558 data = args[3];
559 } else {
560 // Global
561 data = args[2];
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800562 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800563 injectVhalEvent(args[1], zone, data, writer);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800564 break;
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800565 case COMMAND_ENABLE_UXR:
Jim Kayef10b7d82019-02-26 12:53:22 -0800566 if (args.length != 2) {
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800567 writer.println("Incorrect number of arguments");
568 dumpHelp(writer);
569 break;
570 }
571 boolean enableBlocking = Boolean.valueOf(args[1]);
572 if (mCarPackageManagerService != null) {
573 mCarPackageManagerService.setEnableActivityBlocking(enableBlocking);
574 }
575 break;
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800576 case COMMAND_GET_DO_ACTIVITIES:
Jim Kayef10b7d82019-02-26 12:53:22 -0800577 if (args.length != 2) {
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800578 writer.println("Incorrect number of arguments");
579 dumpHelp(writer);
580 break;
581 }
582 String pkgName = args[1].toLowerCase();
583 if (mCarPackageManagerService != null) {
584 String[] doActivities =
585 mCarPackageManagerService.getDistractionOptimizedActivities(
586 pkgName);
587 if (doActivities != null) {
588 writer.println("DO Activities for " + pkgName);
589 for (String a : doActivities) {
590 writer.println(a);
591 }
592 } else {
593 writer.println("No DO Activities for " + pkgName);
594 }
595 }
596 break;
Kaidd4ef5a2019-03-04 14:07:26 -0800597 case COMMAND_GET_CARPROPERTYCONFIG:
598 String propertyId = args.length < 2 ? "" : args[1];
599 mHal.dumpPropertyConfigs(writer, propertyId);
600 break;
Pavel Maltsev48a31942019-03-03 22:08:28 -0800601 case COMMAND_PROJECTION_UI_MODE:
602 if (args.length != 2) {
603 writer.println("Incorrect number of arguments");
604 dumpHelp(writer);
605 break;
606 }
607 mCarProjectionService.setUiMode(Integer.valueOf(args[1]));
Pavel Maltsevd6961f62019-03-26 10:22:31 -0700608 break;
Jim Kayed76c2742019-04-02 11:33:27 -0700609 case COMMAND_RESUME:
610 mCarPowerManagementService.forceSimulatedResume();
611 writer.println("Resume: Simulating resuming from Deep Sleep");
612 break;
613 case COMMAND_SUSPEND:
614 mCarPowerManagementService.forceSimulatedSuspend();
615 writer.println("Resume: Simulating powering down to Deep Sleep");
616 break;
Yao Chene33f07e2016-07-26 12:02:51 -0700617 default:
Jim Kayef10b7d82019-02-26 12:53:22 -0800618 writer.println("Unknown command: \"" + arg + "\"");
Yao Chene33f07e2016-07-26 12:02:51 -0700619 dumpHelp(writer);
620 }
621 }
622
623 private void forceDayNightMode(String arg, PrintWriter writer) {
624 int mode;
625 switch (arg) {
626 case PARAM_DAY_MODE:
627 mode = CarNightService.FORCED_DAY_MODE;
628 break;
629 case PARAM_NIGHT_MODE:
630 mode = CarNightService.FORCED_NIGHT_MODE;
631 break;
632 case PARAM_SENSOR_MODE:
633 mode = CarNightService.FORCED_SENSOR_MODE;
634 break;
635 default:
636 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
637 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
638 return;
639 }
640 int current = mCarNightService.forceDayNightMode(mode);
641 String currentMode = null;
642 switch (current) {
643 case UiModeManager.MODE_NIGHT_AUTO:
644 currentMode = PARAM_SENSOR_MODE;
645 break;
646 case UiModeManager.MODE_NIGHT_YES:
647 currentMode = PARAM_NIGHT_MODE;
648 break;
649 case UiModeManager.MODE_NIGHT_NO:
650 currentMode = PARAM_DAY_MODE;
651 break;
652 }
653 writer.println("DayNightMode changed to: " + currentMode);
654 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800655
Bryan Eylera32a7c12018-02-27 15:40:00 -0800656 private void forceGarageMode(String arg, PrintWriter writer) {
657 switch (arg) {
658 case PARAM_ON_MODE:
Serik Beketayeve0e7ff22018-07-31 21:04:12 -0700659 mGarageModeService.forceStartGarageMode();
Bryan Eylera32a7c12018-02-27 15:40:00 -0800660 break;
661 case PARAM_OFF_MODE:
Serik Beketayeve0e7ff22018-07-31 21:04:12 -0700662 mGarageModeService.stopAndResetGarageMode();
Bryan Eylera32a7c12018-02-27 15:40:00 -0800663 break;
664 case PARAM_QUERY_MODE:
665 // Nothing to do. Always query at the end anyway.
666 break;
667 default:
668 writer.println("Unknown value. Valid argument: " + PARAM_ON_MODE + "|"
669 + PARAM_OFF_MODE + "|" + PARAM_QUERY_MODE);
670 return;
671 }
Serik Beketayeve0e7ff22018-07-31 21:04:12 -0700672 writer.println("Garage mode: " + mGarageModeService.isGarageModeActive());
Bryan Eylera32a7c12018-02-27 15:40:00 -0800673 }
674
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800675 /**
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800676 * Inject a fake VHAL event
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800677 *
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800678 * @param property the Vehicle property Id as defined in the HAL
679 * @param zone Zone that this event services
680 * @param value Data value of the event
681 * @param writer PrintWriter
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800682 */
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800683 private void injectVhalEvent(String property, String zone, String value,
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800684 PrintWriter writer) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800685 if (zone != null && (zone.equalsIgnoreCase(PARAM_VEHICLE_PROPERTY_AREA_GLOBAL))) {
686 if (!isPropertyAreaTypeGlobal(property)) {
687 writer.println("Property area type inconsistent with given zone");
688 return;
689 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800690 }
691 try {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800692 mHal.injectVhalEvent(property, zone, value);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800693 } catch (NumberFormatException e) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800694 writer.println("Invalid property Id zone Id or value" + e);
695 dumpHelp(writer);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800696 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800697 }
698
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800699 // Check if the given property is global
700 private boolean isPropertyAreaTypeGlobal(String property) {
701 if (property == null) {
702 return false;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800703 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800704 return (Integer.decode(property) & VehicleArea.MASK) == VehicleArea.GLOBAL;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800705 }
Yao Chene33f07e2016-07-26 12:02:51 -0700706 }
kevinjm55822c42018-08-15 11:26:00 -0700707}