Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | package com.android.telecomm; |
| 18 | |
| 19 | import android.content.ComponentName; |
| 20 | import android.content.Context; |
| 21 | import android.content.Intent; |
| 22 | import android.content.ServiceConnection; |
| 23 | import android.os.IBinder; |
| 24 | import android.os.RemoteException; |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 25 | import android.telecomm.CallAudioState; |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 26 | import android.telecomm.CallInfo; |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 27 | import android.telecomm.CallState; |
Sailesh Nepal | a439e1b | 2014-03-11 18:19:58 -0700 | [diff] [blame] | 28 | |
| 29 | import com.android.internal.telecomm.IInCallService; |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 30 | import com.google.common.collect.ImmutableCollection; |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 31 | |
| 32 | /** |
| 33 | * Binds to {@link IInCallService} and provides the service to {@link CallsManager} through which it |
| 34 | * can send updates to the in-call app. This class is created and owned by CallsManager and retains |
| 35 | * a binding to the {@link IInCallService} (implemented by the in-call app) until CallsManager |
| 36 | * explicitly disconnects it. CallsManager starts the connection by calling {@link #connect} and |
| 37 | * retains the connection as long as it has calls which need UI. When all calls are disconnected, |
| 38 | * CallsManager will invoke {@link #disconnect} to sever the binding until the in-call UI is needed |
| 39 | * again. |
| 40 | */ |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 41 | public final class InCallController extends CallsManagerListenerBase { |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 42 | /** |
| 43 | * Used to bind to the in-call app and triggers the start of communication between |
| 44 | * CallsManager and in-call app. |
| 45 | */ |
| 46 | private class InCallServiceConnection implements ServiceConnection { |
| 47 | /** {@inheritDoc} */ |
| 48 | @Override public void onServiceConnected(ComponentName name, IBinder service) { |
| 49 | onConnected(service); |
| 50 | } |
| 51 | |
| 52 | /** {@inheritDoc} */ |
| 53 | @Override public void onServiceDisconnected(ComponentName name) { |
| 54 | onDisconnected(); |
| 55 | } |
| 56 | } |
| 57 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 58 | /** |
| 59 | * Package name of the in-call app. Although in-call code in kept in its own namespace, it is |
Ben Gilad | 13329fd | 2014-02-11 17:20:29 -0800 | [diff] [blame] | 60 | * ultimately compiled into the dialer APK, hence the difference in namespaces between this and |
| 61 | * {@link #IN_CALL_SERVICE_CLASS_NAME}. |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 62 | * TODO(santoscordon): Change this into config.xml resource entry. |
| 63 | */ |
| 64 | private static final String IN_CALL_PACKAGE_NAME = "com.google.android.dialer"; |
| 65 | |
| 66 | /** |
| 67 | * Class name of the component within in-call app which implements {@link IInCallService}. |
| 68 | */ |
Sailesh Nepal | a439e1b | 2014-03-11 18:19:58 -0700 | [diff] [blame] | 69 | private static final String IN_CALL_SERVICE_CLASS_NAME = |
| 70 | "com.android.incallui.InCallServiceImpl"; |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 71 | |
| 72 | /** Maintains a binding connection to the in-call app. */ |
| 73 | private final InCallServiceConnection mConnection = new InCallServiceConnection(); |
| 74 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 75 | /** The in-call app implementation, see {@link IInCallService}. */ |
| 76 | private IInCallService mInCallService; |
| 77 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 78 | // TODO(santoscordon): May be better to expose the IInCallService methods directly from this |
| 79 | // class as its own method to make the CallsManager code easier to read. |
| 80 | IInCallService getService() { |
| 81 | return mInCallService; |
| 82 | } |
| 83 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 84 | @Override |
| 85 | public void onCallAdded(Call call) { |
| 86 | if (mInCallService == null) { |
| 87 | bind(); |
| 88 | } else { |
| 89 | Log.i(this, "Adding call: %s", call); |
| 90 | try { |
| 91 | mInCallService.addCall(call.toCallInfo()); |
| 92 | } catch (RemoteException e) { |
| 93 | Log.e(this, e, "Exception attempting to addCall."); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 94 | } |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 98 | @Override |
| 99 | public void onCallRemoved(Call call) { |
| 100 | if (CallsManager.getInstance().getCalls().isEmpty()) { |
| 101 | // TODO(sail): Wait for all messages to be delivered to the service before unbinding. |
| 102 | unbind(); |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 103 | } |
| 104 | } |
| 105 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 106 | @Override |
| 107 | public void onCallStateChanged(Call call, CallState oldState, CallState newState) { |
| 108 | if (mInCallService == null) { |
| 109 | return; |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 110 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 111 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 112 | switch (newState) { |
| 113 | case ACTIVE: |
| 114 | Log.i(this, "Mark call as ACTIVE: %s", call.getId()); |
| 115 | try { |
| 116 | mInCallService.setActive(call.getId()); |
| 117 | } catch (RemoteException e) { |
| 118 | Log.e(this, e, "Exception attempting to call setActive."); |
| 119 | } |
| 120 | break; |
| 121 | case ON_HOLD: |
| 122 | Log.i(this, "Mark call as HOLD: %s", call.getId()); |
| 123 | try { |
| 124 | mInCallService.setOnHold(call.getId()); |
| 125 | } catch (RemoteException e) { |
| 126 | Log.e(this, e, "Exception attempting to call setOnHold."); |
| 127 | } |
| 128 | break; |
| 129 | case DISCONNECTED: |
| 130 | Log.i(this, "Mark call as DISCONNECTED: %s", call.getId()); |
| 131 | try { |
Santos Cordon | 79ff2bc | 2014-03-27 15:31:27 -0700 | [diff] [blame] | 132 | mInCallService.setDisconnected(call.getId(), call.getDisconnectCause()); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 133 | } catch (RemoteException e) { |
| 134 | Log.e(this, e, "Exception attempting to call setDisconnected."); |
| 135 | } |
| 136 | break; |
| 137 | default: |
| 138 | break; |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 142 | @Override |
| 143 | public void onAudioStateChanged(CallAudioState oldAudioState, CallAudioState newAudioState) { |
| 144 | if (mInCallService != null) { |
| 145 | Log.i(this, "Calling onAudioStateChanged, audioState: %s -> %s", oldAudioState, |
| 146 | newAudioState); |
| 147 | try { |
| 148 | mInCallService.onAudioStateChanged(newAudioState); |
| 149 | } catch (RemoteException e) { |
| 150 | Log.e(this, e, "Exception attempting to update audio state."); |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 155 | /** |
| 156 | * Unbinds an existing bound connection to the in-call app. |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 157 | */ |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 158 | private void unbind() { |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 159 | ThreadUtil.checkOnMainThread(); |
| 160 | if (mInCallService != null) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 161 | Log.i(this, "Unbinding from InCallService"); |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 162 | TelecommApp.getInstance().unbindService(mConnection); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 163 | mInCallService = null; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /** |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 168 | * Binds to the in-call app if not already connected by binding directly to the saved |
| 169 | * component name of the {@link IInCallService} implementation. |
| 170 | */ |
| 171 | private void bind() { |
| 172 | ThreadUtil.checkOnMainThread(); |
| 173 | if (mInCallService == null) { |
| 174 | ComponentName component = |
| 175 | new ComponentName(IN_CALL_PACKAGE_NAME, IN_CALL_SERVICE_CLASS_NAME); |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 176 | Log.i(this, "Attempting to bind to InCallService: %s", component); |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 177 | |
| 178 | Intent serviceIntent = new Intent(IInCallService.class.getName()); |
| 179 | serviceIntent.setComponent(component); |
| 180 | |
| 181 | Context context = TelecommApp.getInstance(); |
| 182 | if (!context.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 183 | Log.w(this, "Could not connect to the in-call app (%s)", component); |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 184 | |
| 185 | // TODO(santoscordon): Implement retry or fall-back-to-default logic. |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | /** |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 191 | * Persists the {@link IInCallService} instance and starts the communication between |
| 192 | * CallsManager and in-call app by sending the first update to in-call app. This method is |
| 193 | * called after a successful binding connection is established. |
| 194 | * |
| 195 | * @param service The {@link IInCallService} implementation. |
| 196 | */ |
| 197 | private void onConnected(IBinder service) { |
| 198 | ThreadUtil.checkOnMainThread(); |
| 199 | mInCallService = IInCallService.Stub.asInterface(service); |
| 200 | |
| 201 | try { |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 202 | mInCallService.setInCallAdapter(new InCallAdapter(CallsManager.getInstance())); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 203 | } catch (RemoteException e) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 204 | Log.e(this, e, "Failed to set the in-call adapter."); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 205 | mInCallService = null; |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 206 | return; |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 207 | } |
| 208 | |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 209 | // Upon successful connection, send the state of the world to the in-call app. |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 210 | ImmutableCollection<Call> calls = CallsManager.getInstance().getCalls(); |
| 211 | if (!calls.isEmpty()) { |
| 212 | for (Call call : calls) { |
| 213 | onCallAdded(call); |
| 214 | } |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 215 | onAudioStateChanged(null, CallsManager.getInstance().getAudioState()); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame] | 216 | } else { |
| 217 | unbind(); |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 218 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Cleans up the instance of in-call app after the service has been unbound. |
| 223 | */ |
| 224 | private void onDisconnected() { |
| 225 | ThreadUtil.checkOnMainThread(); |
| 226 | mInCallService = null; |
| 227 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 228 | } |