blob: 8d30fdf60ada53ff6da40169cbb9e2b9fba190be [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.car;
import android.content.Context;
import android.os.Handler;
import android.os.RemoteException;
/**
* Common base class for Car*Manager
* @hide
*/
public abstract class CarManagerBase {
protected final Car mCar;
public CarManagerBase(Car car) {
mCar = car;
}
protected Context getContext() {
return mCar.getContext();
}
protected Handler getEventHandler() {
return mCar.getEventHandler();
}
protected <T> T handleRemoteExceptionFromCarService(RemoteException e, T returnValue) {
return mCar.handleRemoteExceptionFromCarService(e, returnValue);
}
protected void handleRemoteExceptionFromCarService(RemoteException e) {
mCar.handleRemoteExceptionFromCarService(e);
}
/**
* Handle disconnection of car service (=crash). As car service has crashed already, this call
* should only clean up any listeners / callbacks passed from client. Clearing object passed
* to car service is not necessary as car service has crashed. Note that Car*Manager will not
* work any more as all binders are invalid. Client should re-create all Car*Managers when
* car service is restarted.
*/
protected abstract void onCarDisconnected();
}