blob: a1aaf35f81efdc3c45dc3da989d43b6f3755ea5c [file] [log] [blame]
/*
* Copyright (C) 2019 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.api29incallservice;
import android.telecom.Call;
import android.telecom.cts.MockInCallService;
import android.util.Log;
import java.util.HashSet;
import java.util.Set;
public class CtsApi29InCallService extends MockInCallService {
public static final String PACKAGE_NAME = CtsApi29InCallService.class.getPackage().getName();
private static final String TAG = CtsApi29InCallService.class.getSimpleName();
protected static final int TIMEOUT = 10000;
static Set<Call> sCalls = new HashSet<>();
static int sHistoricalCallCount = 0;
@Override
public void onCallAdded(Call call) {
Log.i(TAG, "onCallAdded");
super.onCallAdded(call);
if (!sCalls.contains(call)) {
sHistoricalCallCount++;
}
sCalls.add(call);
}
@Override
public void onCallRemoved(Call call) {
Log.i(TAG, "onCallRemoved");
super.onCallRemoved(call);
sCalls.remove(call);
}
public static int getLocalCallCount() {
synchronized (sLock) {
return sCalls.size();
}
}
static void reset() {
sCalls.clear();
sHistoricalCallCount = 0;
}
}