1 /* 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 package android.car.content.pm; 17 18 import android.annotation.SystemApi; 19 import android.app.Service; 20 import android.car.Car; 21 import android.car.annotation.AddedInOrBefore; 22 import android.content.Intent; 23 import android.os.IBinder; 24 import android.os.RemoteException; 25 import android.util.Log; 26 27 /** 28 * Service to be implemented by Service which wants to control app blocking policy. 29 * App should require android.car.permission.CONTROL_APP_BLOCKING to launch Service 30 * implementation. Additionally the APK should have the permission to be launched by Car Service. 31 * The implementing service should declare {@link #SERVICE_INTERFACE} in its intent filter as 32 * action. 33 * @hide 34 */ 35 @SystemApi 36 public abstract class CarAppBlockingPolicyService extends Service { 37 38 private static final String TAG = CarAppBlockingPolicyService.class.getSimpleName(); 39 40 @AddedInOrBefore(majorVersion = 33) 41 public static final String SERVICE_INTERFACE = 42 "android.car.content.pm.CarAppBlockingPolicyService"; 43 44 private final ICarAppBlockingPolicyImpl mBinder = new ICarAppBlockingPolicyImpl(); 45 46 /** 47 * Return the app blocking policy. This is called from binder thread. 48 * @return 49 */ 50 @AddedInOrBefore(majorVersion = 33) getAppBlockingPolicy()51 protected abstract CarAppBlockingPolicy getAppBlockingPolicy(); 52 53 @Override 54 @AddedInOrBefore(majorVersion = 33) onStartCommand(Intent intent, int flags, int startId)55 public int onStartCommand(Intent intent, int flags, int startId) { 56 return START_STICKY; 57 } 58 59 @Override 60 @AddedInOrBefore(majorVersion = 33) onBind(Intent intent)61 public IBinder onBind(Intent intent) { 62 Log.i(TAG, "onBind"); 63 return mBinder; 64 } 65 66 @Override 67 @AddedInOrBefore(majorVersion = 33) onUnbind(Intent intent)68 public boolean onUnbind(Intent intent) { 69 Log.i(TAG, "onUnbind"); 70 stopSelf(); 71 return false; 72 } 73 74 75 private class ICarAppBlockingPolicyImpl extends ICarAppBlockingPolicy.Stub { 76 77 @Override setAppBlockingPolicySetter(ICarAppBlockingPolicySetter setter)78 public void setAppBlockingPolicySetter(ICarAppBlockingPolicySetter setter) { 79 Log.i(TAG, "setAppBlockingPolicySetter will set policy"); 80 CarAppBlockingPolicy policy = CarAppBlockingPolicyService.this.getAppBlockingPolicy(); 81 try { 82 setter.setAppBlockingPolicy(policy); 83 } catch (RemoteException e) { 84 Car.handleRemoteExceptionFromCarService(CarAppBlockingPolicyService.this, e); 85 } 86 } 87 } 88 } 89