/* * 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.incallui; import android.content.Context; import android.support.annotation.NonNull; import com.android.dialer.activecalls.ActiveCallInfo; import com.android.dialer.activecalls.ActiveCallsComponent; import com.android.incallui.call.CallList; import com.android.incallui.call.DialerCall; import com.android.incallui.call.state.DialerCallState; import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; /** Updates {@link com.android.dialer.activecalls.ActiveCalls} */ @SuppressWarnings("Guava") public class ActiveCallsCallListListener implements CallList.Listener { private final Context appContext; ActiveCallsCallListListener(Context appContext) { this.appContext = appContext; } @Override public void onIncomingCall(DialerCall call) {} @Override public void onUpgradeToVideo(DialerCall call) {} @Override public void onSessionModificationStateChange(DialerCall call) {} @Override public void onCallListChange(CallList callList) { ImmutableList.Builder activeCalls = ImmutableList.builder(); for (DialerCall call : callList.getAllCalls()) { if (call.getState() != DialerCallState.DISCONNECTED && call.getAccountHandle() != null) { activeCalls.add( ActiveCallInfo.builder() .setPhoneAccountHandle(Optional.of(call.getAccountHandle())) .build()); } } ActiveCallsComponent.get(appContext).activeCalls().setActiveCalls(activeCalls.build()); } @Override public void onDisconnect(DialerCall call) {} @Override public void onWiFiToLteHandover(DialerCall call) {} @Override public void onHandoverToWifiFailed(DialerCall call) {} @Override public void onInternationalCallOnWifi(@NonNull DialerCall call) {} }