Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f539f788 authored by yueg's avatar yueg Committed by Copybara-Service
Browse files

Bubble v2 logging.

Log the following actions:
- expand/collapse bubble
- return to call
- mute/unmute
- switch audio route to speaker/bluetooth/wired or earpiece
- end call

Bug: 67605985
Test: AudioRouteSelectorActivityTest, NewReturnToCallControllerTest
PiperOrigin-RevId: 179484647
Change-Id: I4e2ee34f5550382b2e51bab16ce33e9e16caa3b2
parent b35b0e20
Loading
Loading
Loading
Loading
+20 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ message DialerImpression {
  // Event enums to be used for Impression Logging in Dialer.
  // It's perfectly acceptable for this enum to be large
  // Values should be from 1000 to 100000.
  // Next Tag: 1311
  // Next Tag: 1320
  enum Type {
    UNKNOWN_AOSP_EVENT_TYPE = 1000;

@@ -625,5 +625,24 @@ message DialerImpression {
    DUO_CALL_LOG_SET_UP_INSTALL = 1308;
    DUO_CALL_LOG_SET_UP_ACTIVATE = 1309;
    DUO_CALL_LOG_INVITE = 1310;

    // Bubble primary button first click to expand bubble
    BUBBLE_V2_CLICK_TO_EXPAND = 1311;
    // Bubble primary button second click to collapse bubble
    BUBBLE_V2_CLICK_TO_COLLAPSE = 1312;
    // User return to call from bubble call action menu
    BUBBLE_V2_RETURN_TO_CALL = 1313;
    // User muted call from bubble call action menu
    BUBBLE_V2_MUTE_CALL = 1314;
    // User unmuted call from bubble call action menu
    BUBBLE_V2_UNMUTE_CALL = 1315;
    // User choose audio route speakerphone from bubble call action menu
    BUBBLE_V2_SPEAKERPHONE = 1316;
    // User choose audio route wired or earpiece from bubble call action menu
    BUBBLE_V2_WIRED_OR_EARPIECE = 1317;
    // User choose audio route bluetooth from bubble call action menu
    BUBBLE_V2_BLUETOOTH = 1318;
    // User ended call from bubble call action menu
    BUBBLE_V2_END_CALL = 1319;
  }
}
+3 −0
Original line number Diff line number Diff line
@@ -109,6 +109,9 @@
    <receiver
        android:exported="false"
        android:name=".ReturnToCallActionReceiver"/>
    <receiver
        android:exported="false"
        android:name=".NewReturnToCallActionReceiver"/>

  </application>

+39 −0
Original line number Diff line number Diff line
@@ -19,18 +19,29 @@ package com.android.incallui;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.FragmentActivity;
import android.telecom.CallAudioState;
import com.android.dialer.logging.DialerImpression;
import com.android.dialer.logging.Logger;
import com.android.incallui.audiomode.AudioModeProvider;
import com.android.incallui.audioroute.AudioRouteSelectorDialogFragment;
import com.android.incallui.audioroute.AudioRouteSelectorDialogFragment.AudioRouteSelectorPresenter;
import com.android.incallui.call.CallList;
import com.android.incallui.call.DialerCall;
import com.android.incallui.call.TelecomAdapter;

/** Simple activity that just shows the audio route selector fragment */
public class AudioRouteSelectorActivity extends FragmentActivity
    implements AudioRouteSelectorPresenter {

  public static final String SHOULD_LOG_BUBBLE_V2_IMPRESSION_EXTRA = "shouldLogBubbleV2Impression";

  private boolean shouldLogBubbleV2Impression;

  @Override
  protected void onCreate(@Nullable Bundle bundle) {
    super.onCreate(bundle);
    shouldLogBubbleV2Impression =
        getIntent().getBooleanExtra(SHOULD_LOG_BUBBLE_V2_IMPRESSION_EXTRA, false);
    AudioRouteSelectorDialogFragment.newInstance(AudioModeProvider.getInstance().getAudioState())
        .show(getSupportFragmentManager(), AudioRouteSelectorDialogFragment.TAG);
  }
@@ -39,6 +50,34 @@ public class AudioRouteSelectorActivity extends FragmentActivity
  public void onAudioRouteSelected(int audioRoute) {
    TelecomAdapter.getInstance().setAudioRoute(audioRoute);
    finish();

    if (!shouldLogBubbleV2Impression) {
      return;
    }

    // Log the select action with audio route and call
    DialerImpression.Type impressionType = null;
    if ((audioRoute & CallAudioState.ROUTE_WIRED_OR_EARPIECE) != 0) {
      impressionType = DialerImpression.Type.BUBBLE_V2_WIRED_OR_EARPIECE;
    } else if (audioRoute == CallAudioState.ROUTE_SPEAKER) {
      impressionType = DialerImpression.Type.BUBBLE_V2_SPEAKERPHONE;
    } else if (audioRoute == CallAudioState.ROUTE_BLUETOOTH) {
      impressionType = DialerImpression.Type.BUBBLE_V2_BLUETOOTH;
    }
    if (impressionType == null) {
      return;
    }

    DialerCall call = CallList.getInstance().getOutgoingCall();
    if (call == null) {
      call = CallList.getInstance().getActiveOrBackgroundCall();
    }
    if (call != null) {
      Logger.get(this)
          .logCallImpression(impressionType, call.getUniqueCallId(), call.getTimeAddedMs());
    } else {
      Logger.get(this).logImpression(impressionType);
    }
  }

  @Override
+156 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 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.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telecom.CallAudioState;
import com.android.dialer.common.Assert;
import com.android.dialer.common.LogUtil;
import com.android.dialer.logging.DialerImpression;
import com.android.dialer.logging.Logger;
import com.android.incallui.audiomode.AudioModeProvider;
import com.android.incallui.call.CallList;
import com.android.incallui.call.DialerCall;
import com.android.incallui.call.TelecomAdapter;

/** Handles clicks on the return-to-call bubble */
public class NewReturnToCallActionReceiver extends BroadcastReceiver {

  public static final String ACTION_RETURN_TO_CALL = "returnToCallV2";
  public static final String ACTION_TOGGLE_SPEAKER = "toggleSpeakerV2";
  public static final String ACTION_SHOW_AUDIO_ROUTE_SELECTOR = "showAudioRouteSelectorV2";
  public static final String ACTION_TOGGLE_MUTE = "toggleMuteV2";
  public static final String ACTION_END_CALL = "endCallV2";

  @Override
  public void onReceive(Context context, Intent intent) {
    switch (intent.getAction()) {
      case ACTION_RETURN_TO_CALL:
        returnToCall(context);
        break;
      case ACTION_TOGGLE_SPEAKER:
        toggleSpeaker(context);
        break;
      case ACTION_SHOW_AUDIO_ROUTE_SELECTOR:
        showAudioRouteSelector(context);
        break;
      case ACTION_TOGGLE_MUTE:
        toggleMute(context);
        break;
      case ACTION_END_CALL:
        endCall(context);
        break;
      default:
        throw Assert.createIllegalStateFailException(
            "Invalid intent action: " + intent.getAction());
    }
  }

  private void returnToCall(Context context) {
    DialerCall call = getCall();
    Logger.get(context)
        .logCallImpression(
            DialerImpression.Type.BUBBLE_V2_RETURN_TO_CALL,
            call != null ? call.getUniqueCallId() : "",
            call != null ? call.getTimeAddedMs() : 0);

    Intent activityIntent = InCallActivity.getIntent(context, false, false, false);
    activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(activityIntent);
  }

  private void toggleSpeaker(Context context) {
    CallAudioState audioState = AudioModeProvider.getInstance().getAudioState();

    if ((audioState.getSupportedRouteMask() & CallAudioState.ROUTE_BLUETOOTH)
        == CallAudioState.ROUTE_BLUETOOTH) {
      LogUtil.w(
          "ReturnToCallActionReceiver.toggleSpeaker",
          "toggleSpeaker() called when bluetooth available."
              + " Probably should have shown audio route selector");
    }

    DialerCall call = getCall();

    int newRoute;
    if (audioState.getRoute() == CallAudioState.ROUTE_SPEAKER) {
      newRoute = CallAudioState.ROUTE_WIRED_OR_EARPIECE;
      Logger.get(context)
          .logCallImpression(
              DialerImpression.Type.BUBBLE_V2_WIRED_OR_EARPIECE,
              call != null ? call.getUniqueCallId() : "",
              call != null ? call.getTimeAddedMs() : 0);
    } else {
      newRoute = CallAudioState.ROUTE_SPEAKER;
      Logger.get(context)
          .logCallImpression(
              DialerImpression.Type.BUBBLE_V2_SPEAKERPHONE,
              call != null ? call.getUniqueCallId() : "",
              call != null ? call.getTimeAddedMs() : 0);
    }
    TelecomAdapter.getInstance().setAudioRoute(newRoute);
  }

  public void showAudioRouteSelector(Context context) {
    Intent intent = new Intent(context, AudioRouteSelectorActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
    intent.putExtra(AudioRouteSelectorActivity.SHOULD_LOG_BUBBLE_V2_IMPRESSION_EXTRA, true);
    context.startActivity(intent);
  }

  private void toggleMute(Context context) {
    DialerCall call = getCall();
    boolean shouldMute = !AudioModeProvider.getInstance().getAudioState().isMuted();
    Logger.get(context)
        .logCallImpression(
            shouldMute
                ? DialerImpression.Type.BUBBLE_V2_MUTE_CALL
                : DialerImpression.Type.BUBBLE_V2_UNMUTE_CALL,
            call != null ? call.getUniqueCallId() : "",
            call != null ? call.getTimeAddedMs() : 0);
    TelecomAdapter.getInstance().mute(shouldMute);
  }

  private void endCall(Context context) {
    DialerCall call = getCall();

    Logger.get(context)
        .logCallImpression(
            DialerImpression.Type.BUBBLE_V2_END_CALL,
            call != null ? call.getUniqueCallId() : "",
            call != null ? call.getTimeAddedMs() : 0);
    if (call != null) {
      call.disconnect();
    }
  }

  private DialerCall getCall() {
    CallList callList = InCallPresenter.getInstance().getCallList();
    if (callList != null) {
      DialerCall call = callList.getOutgoingCall();
      if (call == null) {
        call = callList.getActiveOrBackgroundCall();
      }
      if (call != null) {
        return call;
      }
    }
    return null;
  }
}
+8 −16
Original line number Diff line number Diff line
@@ -53,8 +53,6 @@ import java.util.List;
 */
public class NewReturnToCallController implements InCallUiListener, Listener, AudioModeListener {

  public static final String RETURN_TO_CALL_EXTRA_KEY = "RETURN_TO_CALL_BUBBLE";

  private final Context context;

  @VisibleForTesting(otherwise = VisibleForTesting.PRIVATE)
@@ -78,18 +76,12 @@ public class NewReturnToCallController implements InCallUiListener, Listener, Au
    this.context = context;
    this.contactInfoCache = contactInfoCache;

    toggleSpeaker = createActionIntent(ReturnToCallActionReceiver.ACTION_TOGGLE_SPEAKER);
    toggleSpeaker = createActionIntent(NewReturnToCallActionReceiver.ACTION_TOGGLE_SPEAKER);
    showSpeakerSelect =
        createActionIntent(ReturnToCallActionReceiver.ACTION_SHOW_AUDIO_ROUTE_SELECTOR);
    toggleMute = createActionIntent(ReturnToCallActionReceiver.ACTION_TOGGLE_MUTE);
    endCall = createActionIntent(ReturnToCallActionReceiver.ACTION_END_CALL);

    Intent activityIntent = InCallActivity.getIntent(context, false, false, false);
    activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    activityIntent.putExtra(RETURN_TO_CALL_EXTRA_KEY, true);
    fullScreen =
        PendingIntent.getActivity(
            context, InCallActivity.PendingIntentRequestCodes.BUBBLE, activityIntent, 0);
        createActionIntent(NewReturnToCallActionReceiver.ACTION_SHOW_AUDIO_ROUTE_SELECTOR);
    toggleMute = createActionIntent(NewReturnToCallActionReceiver.ACTION_TOGGLE_MUTE);
    endCall = createActionIntent(NewReturnToCallActionReceiver.ACTION_END_CALL);
    fullScreen = createActionIntent(NewReturnToCallActionReceiver.ACTION_RETURN_TO_CALL);

    InCallPresenter.getInstance().addInCallUiListener(this);
    CallList.getInstance().addListener(this);
@@ -280,9 +272,9 @@ public class NewReturnToCallController implements InCallUiListener, Listener, Au

  @NonNull
  private PendingIntent createActionIntent(String action) {
    Intent toggleSpeaker = new Intent(context, ReturnToCallActionReceiver.class);
    toggleSpeaker.setAction(action);
    return PendingIntent.getBroadcast(context, 0, toggleSpeaker, 0);
    Intent intent = new Intent(context, NewReturnToCallActionReceiver.class);
    intent.setAction(action);
    return PendingIntent.getBroadcast(context, 0, intent, 0);
  }

  @NonNull
Loading