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 | |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 17 | package com.android.telecomm; |
| 18 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 19 | import android.os.Handler; |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 20 | import android.os.Message; |
Sailesh Nepal | a439e1b | 2014-03-11 18:19:58 -0700 | [diff] [blame] | 21 | |
| 22 | import com.android.internal.telecomm.IInCallAdapter; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 23 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 24 | /** |
| 25 | * Receives call commands and updates from in-call app and passes them through to CallsManager. |
| 26 | * {@link InCallController} creates an instance of this class and passes it to the in-call app after |
| 27 | * binding to it. This adapter can receive commands and updates until the in-call app is unbound. |
| 28 | */ |
| 29 | class InCallAdapter extends IInCallAdapter.Stub { |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 30 | private static final int MSG_ANSWER_CALL = 0; |
| 31 | private static final int MSG_REJECT_CALL = 1; |
| 32 | private static final int MSG_PLAY_DTMF_TONE = 2; |
| 33 | private static final int MSG_STOP_DTMF_TONE = 3; |
| 34 | private static final int MSG_POST_DIAL_CONTINUE = 4; |
| 35 | private static final int MSG_DISCONNECT_CALL = 5; |
| 36 | private static final int MSG_HOLD_CALL = 6; |
| 37 | private static final int MSG_UNHOLD_CALL = 7; |
Sailesh Nepal | 84fa5f8 | 2014-04-02 11:01:11 -0700 | [diff] [blame^] | 38 | private static final int MSG_HANDOFF_CALL = 8; |
| 39 | private static final int MSG_MUTE = 9; |
| 40 | private static final int MSG_SET_AUDIO_ROUTE = 10; |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 41 | |
| 42 | private final class InCallAdapterHandler extends Handler { |
| 43 | @Override |
| 44 | public void handleMessage(Message msg) { |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 45 | Call call = null; |
| 46 | if (msg.obj != null) { |
| 47 | call = mCallIdMapper.getCall(msg.obj); |
| 48 | if (call == null) { |
| 49 | Log.w(this, "Unknown call id: %s, msg: %d", msg.obj, msg.what); |
| 50 | return; |
| 51 | } |
| 52 | } |
| 53 | |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 54 | switch (msg.what) { |
| 55 | case MSG_ANSWER_CALL: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 56 | mCallsManager.answerCall(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 57 | break; |
| 58 | case MSG_REJECT_CALL: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 59 | mCallsManager.rejectCall(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 60 | break; |
| 61 | case MSG_PLAY_DTMF_TONE: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 62 | mCallsManager.playDtmfTone(call, (char) msg.arg1); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 63 | break; |
| 64 | case MSG_STOP_DTMF_TONE: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 65 | mCallsManager.stopDtmfTone(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 66 | break; |
| 67 | case MSG_POST_DIAL_CONTINUE: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 68 | mCallsManager.postDialContinue(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 69 | break; |
| 70 | case MSG_DISCONNECT_CALL: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 71 | mCallsManager.disconnectCall(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 72 | break; |
| 73 | case MSG_HOLD_CALL: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 74 | mCallsManager.holdCall(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 75 | break; |
| 76 | case MSG_UNHOLD_CALL: |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 77 | mCallsManager.unholdCall(call); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 78 | break; |
Sailesh Nepal | 84fa5f8 | 2014-04-02 11:01:11 -0700 | [diff] [blame^] | 79 | case MSG_HANDOFF_CALL: |
| 80 | mCallsManager.startHandoffForCall(call); |
| 81 | break; |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 82 | case MSG_MUTE: |
| 83 | mCallsManager.mute(msg.arg1 == 1 ? true : false); |
| 84 | break; |
| 85 | case MSG_SET_AUDIO_ROUTE: |
| 86 | mCallsManager.setAudioRoute(msg.arg1); |
| 87 | break; |
| 88 | } |
| 89 | } |
| 90 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 91 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 92 | private final CallsManager mCallsManager; |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 93 | private final Handler mHandler = new InCallAdapterHandler(); |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 94 | private final CallIdMapper mCallIdMapper; |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 95 | |
| 96 | /** Persists the specified parameters. */ |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 97 | public InCallAdapter(CallsManager callsManager, CallIdMapper callIdMapper) { |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 98 | ThreadUtil.checkOnMainThread(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 99 | mCallsManager = callsManager; |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 100 | mCallIdMapper = callIdMapper; |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | /** {@inheritDoc} */ |
| 104 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 105 | public void answerCall(String callId) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 106 | Log.d(this, "answerCall(%s)", callId); |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 107 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 108 | mHandler.obtainMessage(MSG_ANSWER_CALL, callId).sendToTarget(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /** {@inheritDoc} */ |
| 112 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 113 | public void rejectCall(String callId) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 114 | Log.d(this, "rejectCall(%s)", callId); |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 115 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 116 | mHandler.obtainMessage(MSG_REJECT_CALL, callId).sendToTarget(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | /** {@inheritDoc} */ |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 120 | @Override |
| 121 | public void playDtmfTone(String callId, char digit) { |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 122 | Log.d(this, "playDtmfTone(%s,%c)", callId, digit); |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 123 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 124 | mHandler.obtainMessage(MSG_PLAY_DTMF_TONE, (int) digit, 0, callId).sendToTarget(); |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /** {@inheritDoc} */ |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 128 | @Override |
| 129 | public void stopDtmfTone(String callId) { |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 130 | Log.d(this, "stopDtmfTone(%s)", callId); |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 131 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 132 | mHandler.obtainMessage(MSG_STOP_DTMF_TONE, callId).sendToTarget(); |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /** {@inheritDoc} */ |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 136 | @Override |
| 137 | public void postDialContinue(String callId) { |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 138 | Log.d(this, "postDialContinue(%s)", callId); |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 139 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 140 | mHandler.obtainMessage(MSG_POST_DIAL_CONTINUE, callId).sendToTarget(); |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | /** {@inheritDoc} */ |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 144 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 145 | public void disconnectCall(String callId) { |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 146 | Log.v(this, "disconnectCall: %s", callId); |
| 147 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 148 | mHandler.obtainMessage(MSG_DISCONNECT_CALL, callId).sendToTarget(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 149 | } |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 150 | |
| 151 | /** {@inheritDoc} */ |
| 152 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 153 | public void holdCall(String callId) { |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 154 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 155 | mHandler.obtainMessage(MSG_HOLD_CALL, callId).sendToTarget(); |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /** {@inheritDoc} */ |
| 159 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 160 | public void unholdCall(String callId) { |
Sailesh Nepal | e59bb19 | 2014-04-01 18:33:59 -0700 | [diff] [blame] | 161 | mCallIdMapper.checkValidCallId(callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 162 | mHandler.obtainMessage(MSG_UNHOLD_CALL, callId).sendToTarget(); |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 163 | } |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 164 | |
| 165 | /** {@inheritDoc} */ |
| 166 | @Override |
Sailesh Nepal | 84fa5f8 | 2014-04-02 11:01:11 -0700 | [diff] [blame^] | 167 | public void handoffCall(String callId) { |
| 168 | mCallIdMapper.checkValidCallId(callId); |
| 169 | mHandler.obtainMessage(MSG_HANDOFF_CALL, callId).sendToTarget(); |
| 170 | } |
| 171 | |
| 172 | /** {@inheritDoc} */ |
| 173 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 174 | public void mute(boolean shouldMute) { |
| 175 | mHandler.obtainMessage(MSG_MUTE, shouldMute ? 1 : 0, 0).sendToTarget(); |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /** {@inheritDoc} */ |
| 179 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame] | 180 | public void setAudioRoute(int route) { |
| 181 | mHandler.obtainMessage(MSG_SET_AUDIO_ROUTE, route, 0).sendToTarget(); |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 182 | } |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 183 | } |