blob: 33013ac07a3c33c26c11f24a19fac81f68ea71db [file] [log] [blame]
Sailesh Nepal4cff3922014-03-19 10:15:37 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tyler Gunnef9f6f92014-09-12 22:16:17 -070017package android.telecom;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070018
Yorke Lee4af59352015-05-13 14:14:54 -070019import android.annotation.SystemApi;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070020import android.os.Parcel;
21import android.os.Parcelable;
22
23import java.util.Locale;
24
25/**
Santos Cordond9e614f2014-10-28 13:10:36 -070026 * Encapsulates the telecom audio state, including the current audio routing, supported audio
27 * routing and mute.
Yorke Lee4af59352015-05-13 14:14:54 -070028 * @deprecated - use {@link CallAudioState} instead.
29 * @hide
Sailesh Nepal4cff3922014-03-19 10:15:37 -070030 */
Yorke Lee4af59352015-05-13 14:14:54 -070031@Deprecated
32@SystemApi
33public class AudioState implements Parcelable {
Sailesh Nepal4cff3922014-03-19 10:15:37 -070034 /** Direct the audio stream through the device's earpiece. */
Yorke Lee14260482014-08-20 16:16:26 -070035 public static final int ROUTE_EARPIECE = 0x00000001;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070036
37 /** Direct the audio stream through Bluetooth. */
Yorke Lee14260482014-08-20 16:16:26 -070038 public static final int ROUTE_BLUETOOTH = 0x00000002;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070039
40 /** Direct the audio stream through a wired headset. */
Yorke Lee14260482014-08-20 16:16:26 -070041 public static final int ROUTE_WIRED_HEADSET = 0x00000004;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070042
Nancy Chenea38cca2014-09-05 16:38:49 -070043 /** Direct the audio stream through the device's speakerphone. */
Yorke Lee14260482014-08-20 16:16:26 -070044 public static final int ROUTE_SPEAKER = 0x00000008;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070045
46 /**
47 * Direct the audio stream through the device's earpiece or wired headset if one is
48 * connected.
49 */
Yorke Lee14260482014-08-20 16:16:26 -070050 public static final int ROUTE_WIRED_OR_EARPIECE = ROUTE_EARPIECE | ROUTE_WIRED_HEADSET;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070051
Jay Shrauner55b97522015-04-09 15:15:43 -070052 /** Bit mask of all possible audio routes. */
53 private static final int ROUTE_ALL = ROUTE_EARPIECE | ROUTE_BLUETOOTH | ROUTE_WIRED_HEADSET |
Sailesh Nepal4cff3922014-03-19 10:15:37 -070054 ROUTE_SPEAKER;
55
Jay Shrauner164a0ac2015-04-14 18:16:10 -070056 private final boolean isMuted;
57 private final int route;
58 private final int supportedRouteMask;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070059
Ihab Awad5c9c86e2014-11-12 13:41:16 -080060 public AudioState(boolean muted, int route, int supportedRouteMask) {
61 this.isMuted = muted;
Sailesh Nepal4cff3922014-03-19 10:15:37 -070062 this.route = route;
63 this.supportedRouteMask = supportedRouteMask;
64 }
65
Ihab Awadb19a0bc2014-08-07 19:46:01 -070066 public AudioState(AudioState state) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -080067 isMuted = state.isMuted();
68 route = state.getRoute();
69 supportedRouteMask = state.getSupportedRouteMask();
Sailesh Nepal4cff3922014-03-19 10:15:37 -070070 }
71
Yorke Lee4af59352015-05-13 14:14:54 -070072 public AudioState(CallAudioState state) {
73 isMuted = state.isMuted();
74 route = state.getRoute();
75 supportedRouteMask = state.getSupportedRouteMask();
76 }
77
Sailesh Nepal4cff3922014-03-19 10:15:37 -070078 @Override
79 public boolean equals(Object obj) {
80 if (obj == null) {
81 return false;
82 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -070083 if (!(obj instanceof AudioState)) {
Sailesh Nepal4cff3922014-03-19 10:15:37 -070084 return false;
85 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -070086 AudioState state = (AudioState) obj;
Ihab Awad5c9c86e2014-11-12 13:41:16 -080087 return isMuted() == state.isMuted() && getRoute() == state.getRoute() &&
88 getSupportedRouteMask() == state.getSupportedRouteMask();
Sailesh Nepal4cff3922014-03-19 10:15:37 -070089 }
90
91 @Override
92 public String toString() {
93 return String.format(Locale.US,
Nancy Chenddf15a12014-12-02 15:59:35 -080094 "[AudioState isMuted: %b, route: %s, supportedRouteMask: %s]",
Ihab Awad5c9c86e2014-11-12 13:41:16 -080095 isMuted,
96 audioRouteToString(route),
97 audioRouteToString(supportedRouteMask));
Sailesh Nepal4cff3922014-03-19 10:15:37 -070098 }
99
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700100 public static String audioRouteToString(int route) {
101 if (route == 0 || (route & ~ROUTE_ALL) != 0x0) {
102 return "UNKNOWN";
103 }
104
105 StringBuffer buffer = new StringBuffer();
106 if ((route & ROUTE_EARPIECE) == ROUTE_EARPIECE) {
107 listAppend(buffer, "EARPIECE");
108 }
109 if ((route & ROUTE_BLUETOOTH) == ROUTE_BLUETOOTH) {
110 listAppend(buffer, "BLUETOOTH");
111 }
112 if ((route & ROUTE_WIRED_HEADSET) == ROUTE_WIRED_HEADSET) {
113 listAppend(buffer, "WIRED_HEADSET");
114 }
115 if ((route & ROUTE_SPEAKER) == ROUTE_SPEAKER) {
116 listAppend(buffer, "SPEAKER");
117 }
118
119 return buffer.toString();
120 }
121
122 private static void listAppend(StringBuffer buffer, String str) {
123 if (buffer.length() > 0) {
124 buffer.append(", ");
125 }
126 buffer.append(str);
127 }
128
129 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700130 * Responsible for creating AudioState objects for deserialized Parcels.
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700131 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700132 public static final Parcelable.Creator<AudioState> CREATOR =
133 new Parcelable.Creator<AudioState> () {
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700134
135 @Override
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700136 public AudioState createFromParcel(Parcel source) {
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700137 boolean isMuted = source.readByte() == 0 ? false : true;
138 int route = source.readInt();
139 int supportedRouteMask = source.readInt();
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700140 return new AudioState(isMuted, route, supportedRouteMask);
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700141 }
142
143 @Override
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700144 public AudioState[] newArray(int size) {
145 return new AudioState[size];
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700146 }
147 };
148
149 /**
150 * {@inheritDoc}
151 */
152 @Override
153 public int describeContents() {
154 return 0;
155 }
156
157 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700158 * Writes AudioState object into a serializeable Parcel.
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700159 */
160 @Override
161 public void writeToParcel(Parcel destination, int flags) {
162 destination.writeByte((byte) (isMuted ? 1 : 0));
163 destination.writeInt(route);
164 destination.writeInt(supportedRouteMask);
165 }
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800166
167 /**
168 * @return {@code true} if the call is muted, false otherwise.
169 */
170 public boolean isMuted() {
171 return isMuted;
172 }
173
174 /**
175 * @return The current audio route being used.
176 */
177 public int getRoute() {
178 return route;
179 }
180
181 /**
182 * @return Bit mask of all routes supported by this call.
183 */
184 public int getSupportedRouteMask() {
185 return supportedRouteMask;
186 }
Sailesh Nepal4cff3922014-03-19 10:15:37 -0700187}