blob: 5051326c3e8429a27ab842a870aa99db828ce6b8 [file]
/*
* Copyright (C) 2022 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.server.telecom;
import android.os.Binder;
import android.os.RemoteException;
import android.telecom.DisconnectCause;
import android.telecom.Log;
import android.telecom.StreamingCall;
import com.android.internal.telecom.IStreamingCallAdapter;
/**
* Receives call commands and updates from general call streaming app and passes them through to
* the original voip call app. {@link android.telecom.CallStreamingService} creates an instance of
* this class and passes it to the general call streaming app after binding to it. This adapter can
* receive commands and updates until the general call streaming app is unbound.
*/
public class StreamingCallAdapter extends IStreamingCallAdapter.Stub {
private final static String TAG = "StreamingCallAdapter";
private final TransactionalServiceWrapper mTransactionalServiceWrapper;
private final Call mCall;
private final String mOwnerPackageAbbreviation;
public StreamingCallAdapter(TransactionalServiceWrapper wrapper, Call call,
String ownerPackageName) {
mTransactionalServiceWrapper = wrapper;
mCall = call;
mOwnerPackageAbbreviation = Log.getPackageAbbreviation(ownerPackageName);
}
@Override
public void setStreamingState(int state) throws RemoteException {
try {
Log.startSession(LogUtils.Sessions.CSA_SET_STATE, mOwnerPackageAbbreviation);
long token = Binder.clearCallingIdentity();
try {
Log.i(TAG, "setStreamingState(%s)", stateToString(state));
switch (state) {
case StreamingCall.STATE_STREAMING:
mTransactionalServiceWrapper.onSetActive(mCall);
break;
case StreamingCall.STATE_HOLDING:
mTransactionalServiceWrapper.onSetInactive(mCall);
break;
case StreamingCall.STATE_DISCONNECTED:
mTransactionalServiceWrapper.onDisconnect(mCall,
new DisconnectCause(DisconnectCause.LOCAL));
break;
default:
Log.w(TAG, "setStreamingState received an unhandled state: %d", state);
break;
}
} finally {
Binder.restoreCallingIdentity(token);
}
} finally {
Log.endSession();
}
}
/**
* Helper method to convert StreamingCall state integers into a human-readable string.
* This makes logs easier to understand.
*
* @param state The state integer, e.g., {@link StreamingCall#STATE_STREAMING}.
* @return A string representation of the state for logging purposes.
*/
private static String stateToString(int state) {
switch (state) {
case StreamingCall.STATE_STREAMING:
return "STATE_STREAMING";
case StreamingCall.STATE_HOLDING:
return "STATE_HOLDING";
case StreamingCall.STATE_DISCONNECTED:
return "STATE_DISCONNECTED";
default:
return "STATE_UNKNOWN(" + state + ")";
}
}
}