blob: 5b080d174654b49f47c14a8055a39e8f26c2fb63 [file] [log] [blame]
/*
* Copyright (C) 2018 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 com.android.internal.telephony.ims;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.util.Log;
import com.android.ims.internal.IImsFeatureStatusCallback;
import com.android.ims.internal.IImsService;
/**
* A compat layer for communicating with older devices that still used the ServiceManager to get
* the ImsService.
*/
public class ImsServiceControllerStaticCompat extends ImsServiceControllerCompat {
private static final String TAG = "ImsSCStaticCompat";
private static final String IMS_SERVICE_NAME = "ims";
private IImsService mImsServiceCompat = null;
public ImsServiceControllerStaticCompat(Context context, ComponentName componentName,
ImsServiceController.ImsServiceControllerCallbacks callbacks) {
super(context, componentName, callbacks);
}
@Override
public boolean startBindToService(Intent intent, ImsServiceConnection connection, int flags) {
IBinder binder = ServiceManager.checkService(IMS_SERVICE_NAME);
if (binder == null) {
return false;
}
// This is a little hacky, but we are going to call the onServiceConnected to "pretend" like
// bindService has completed here, which will pass the binder to setServiceController and
// set up all supporting structures.
connection.onServiceConnected(new ComponentName(mContext,
ImsServiceControllerStaticCompat.class), binder);
return true;
}
@Override
protected void setServiceController(IBinder serviceController) {
mImsServiceCompat = IImsService.Stub.asInterface(serviceController);
}
@Override
protected MmTelInterfaceAdapter getInterface(int slotId, IImsFeatureStatusCallback c)
throws RemoteException {
if (mImsServiceCompat == null) {
Log.w(TAG, "getInterface: IImsService returned null.");
return null;
}
return new ImsServiceInterfaceAdapter(slotId, mImsServiceCompat.asBinder());
}
}