blob: cecc603081ee283133a09781a5bf6f5557e75b89 [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.telecom.cts;
import android.telecom.Call;
import android.telecom.InCallService;
import java.util.ArrayList;
import java.util.concurrent.Semaphore;
public class MockInCallService extends InCallService {
private ArrayList<Call> mCalls = new ArrayList<>();
private static InCallServiceCallbacks sCallbacks;
private static final Object sLock = new Object();
public static abstract class InCallServiceCallbacks {
private MockInCallService mService;
public Semaphore lock = new Semaphore(0);
public void onCallAdded(Call call, int numCalls) {};
public void onCallRemoved(Call call, int numCalls) {};
public void onCallStateChanged(Call call, int state) {};
final public MockInCallService getService() {
return mService;
}
final public void setService(MockInCallService service) {
mService = service;
}
}
private Call.Callback mCallCallback = new Call.Callback() {
@Override
public void onStateChanged(Call call, int state) {
if (getCallbacks() != null) {
getCallbacks().onCallStateChanged(call, state);
}
}
};
@Override
public android.os.IBinder onBind(android.content.Intent intent) {
if (getCallbacks() != null) {
getCallbacks().setService(this);
}
return super.onBind(intent);
}
@Override
public void onCallAdded(Call call) {
if (!mCalls.contains(call)) {
mCalls.add(call);
call.registerCallback(mCallCallback);
}
if (getCallbacks() != null) {
getCallbacks().onCallAdded(call, mCalls.size());
}
}
@Override
public void onCallRemoved(Call call) {
mCalls.remove(call);
if (getCallbacks() != null) {
getCallbacks().onCallRemoved(call, mCalls.size());
}
}
/**
* @return the number of calls currently added to the {@code InCallService}.
*/
public int getCallCount() {
return mCalls.size();
}
/**
* @return the most recently added call that exists inside the {@code InCallService}
*/
public Call getLastCall() {
if (mCalls.size() >= 1) {
return mCalls.get(mCalls.size() - 1);
}
return null;
}
public void disconnectLastCall() {
final Call call = getLastCall();
if (call != null) {
call.disconnect();
}
}
public static void setCallbacks(InCallServiceCallbacks callbacks) {
synchronized (sLock) {
sCallbacks = callbacks;
}
}
private InCallServiceCallbacks getCallbacks() {
synchronized (sLock) {
if (sCallbacks != null) {
sCallbacks.setService(this);
}
return sCallbacks;
}
}
}