blob: 0dfcae82b0faeca93a90ef54dc3c1580b312d35a [file] [log] [blame]
Santos Cordone3d76ab2014-01-28 17:25:20 -08001/*
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 Gilad9f2bed32013-12-12 17:43:26 -080017package com.android.telecomm;
18
Santos Cordone3d76ab2014-01-28 17:25:20 -080019import android.os.Handler;
Sailesh Nepal10ea4602014-04-01 17:23:32 -070020import android.os.Message;
Sailesh Nepala439e1b2014-03-11 18:19:58 -070021
Evan Charlton352105c2014-06-03 14:10:54 -070022import com.android.internal.os.SomeArgs;
Sailesh Nepala439e1b2014-03-11 18:19:58 -070023import com.android.internal.telecomm.IInCallAdapter;
Ben Gilad9f2bed32013-12-12 17:43:26 -080024
Santos Cordone3d76ab2014-01-28 17:25:20 -080025/**
26 * Receives call commands and updates from in-call app and passes them through to CallsManager.
27 * {@link InCallController} creates an instance of this class and passes it to the in-call app after
28 * binding to it. This adapter can receive commands and updates until the in-call app is unbound.
29 */
30class InCallAdapter extends IInCallAdapter.Stub {
Sailesh Nepal10ea4602014-04-01 17:23:32 -070031 private static final int MSG_ANSWER_CALL = 0;
32 private static final int MSG_REJECT_CALL = 1;
33 private static final int MSG_PLAY_DTMF_TONE = 2;
34 private static final int MSG_STOP_DTMF_TONE = 3;
35 private static final int MSG_POST_DIAL_CONTINUE = 4;
36 private static final int MSG_DISCONNECT_CALL = 5;
37 private static final int MSG_HOLD_CALL = 6;
38 private static final int MSG_UNHOLD_CALL = 7;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070039 private static final int MSG_HANDOFF_CALL = 8;
40 private static final int MSG_MUTE = 9;
41 private static final int MSG_SET_AUDIO_ROUTE = 10;
Sailesh Nepal10ea4602014-04-01 17:23:32 -070042
43 private final class InCallAdapterHandler extends Handler {
44 @Override
45 public void handleMessage(Message msg) {
Sailesh Nepale59bb192014-04-01 18:33:59 -070046 Call call = null;
47 if (msg.obj != null) {
48 call = mCallIdMapper.getCall(msg.obj);
49 if (call == null) {
50 Log.w(this, "Unknown call id: %s, msg: %d", msg.obj, msg.what);
51 return;
52 }
53 }
54
Sailesh Nepal10ea4602014-04-01 17:23:32 -070055 switch (msg.what) {
56 case MSG_ANSWER_CALL:
Sailesh Nepale59bb192014-04-01 18:33:59 -070057 mCallsManager.answerCall(call);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070058 break;
59 case MSG_REJECT_CALL:
Sailesh Nepale59bb192014-04-01 18:33:59 -070060 mCallsManager.rejectCall(call);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070061 break;
62 case MSG_PLAY_DTMF_TONE:
Sailesh Nepale59bb192014-04-01 18:33:59 -070063 mCallsManager.playDtmfTone(call, (char) msg.arg1);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070064 break;
65 case MSG_STOP_DTMF_TONE:
Sailesh Nepale59bb192014-04-01 18:33:59 -070066 mCallsManager.stopDtmfTone(call);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070067 break;
68 case MSG_POST_DIAL_CONTINUE:
Evan Charlton352105c2014-06-03 14:10:54 -070069 mCallsManager.postDialContinue(call, msg.arg1 == 1);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070070 break;
71 case MSG_DISCONNECT_CALL:
Sailesh Nepale59bb192014-04-01 18:33:59 -070072 mCallsManager.disconnectCall(call);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070073 break;
74 case MSG_HOLD_CALL:
Sailesh Nepale59bb192014-04-01 18:33:59 -070075 mCallsManager.holdCall(call);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070076 break;
77 case MSG_UNHOLD_CALL:
Sailesh Nepale59bb192014-04-01 18:33:59 -070078 mCallsManager.unholdCall(call);
Sailesh Nepal10ea4602014-04-01 17:23:32 -070079 break;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070080 case MSG_HANDOFF_CALL:
81 mCallsManager.startHandoffForCall(call);
82 break;
Sailesh Nepal10ea4602014-04-01 17:23:32 -070083 case MSG_MUTE:
84 mCallsManager.mute(msg.arg1 == 1 ? true : false);
85 break;
86 case MSG_SET_AUDIO_ROUTE:
87 mCallsManager.setAudioRoute(msg.arg1);
88 break;
89 }
90 }
91 }
Santos Cordon61d0f702014-02-19 02:52:23 -080092
Santos Cordone3d76ab2014-01-28 17:25:20 -080093 private final CallsManager mCallsManager;
Sailesh Nepal10ea4602014-04-01 17:23:32 -070094 private final Handler mHandler = new InCallAdapterHandler();
Sailesh Nepale59bb192014-04-01 18:33:59 -070095 private final CallIdMapper mCallIdMapper;
Santos Cordone3d76ab2014-01-28 17:25:20 -080096
97 /** Persists the specified parameters. */
Sailesh Nepale59bb192014-04-01 18:33:59 -070098 public InCallAdapter(CallsManager callsManager, CallIdMapper callIdMapper) {
Sailesh Nepal10ea4602014-04-01 17:23:32 -070099 ThreadUtil.checkOnMainThread();
Santos Cordone3d76ab2014-01-28 17:25:20 -0800100 mCallsManager = callsManager;
Sailesh Nepale59bb192014-04-01 18:33:59 -0700101 mCallIdMapper = callIdMapper;
Santos Cordone3d76ab2014-01-28 17:25:20 -0800102 }
103
104 /** {@inheritDoc} */
105 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700106 public void answerCall(String callId) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800107 Log.d(this, "answerCall(%s)", callId);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700108 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700109 mHandler.obtainMessage(MSG_ANSWER_CALL, callId).sendToTarget();
Santos Cordone3d76ab2014-01-28 17:25:20 -0800110 }
111
112 /** {@inheritDoc} */
113 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700114 public void rejectCall(String callId) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800115 Log.d(this, "rejectCall(%s)", callId);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700116 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700117 mHandler.obtainMessage(MSG_REJECT_CALL, callId).sendToTarget();
Santos Cordone3d76ab2014-01-28 17:25:20 -0800118 }
119
120 /** {@inheritDoc} */
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700121 @Override
122 public void playDtmfTone(String callId, char digit) {
Ihab Awad74549ec2014-03-10 15:33:25 -0700123 Log.d(this, "playDtmfTone(%s,%c)", callId, digit);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700124 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700125 mHandler.obtainMessage(MSG_PLAY_DTMF_TONE, (int) digit, 0, callId).sendToTarget();
Ihab Awad74549ec2014-03-10 15:33:25 -0700126 }
127
128 /** {@inheritDoc} */
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700129 @Override
130 public void stopDtmfTone(String callId) {
Ihab Awad74549ec2014-03-10 15:33:25 -0700131 Log.d(this, "stopDtmfTone(%s)", callId);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700132 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700133 mHandler.obtainMessage(MSG_STOP_DTMF_TONE, callId).sendToTarget();
Ihab Awad74549ec2014-03-10 15:33:25 -0700134 }
135
136 /** {@inheritDoc} */
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700137 @Override
Evan Charlton352105c2014-06-03 14:10:54 -0700138 public void postDialContinue(String callId, boolean proceed) {
Ihab Awad74549ec2014-03-10 15:33:25 -0700139 Log.d(this, "postDialContinue(%s)", callId);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700140 mCallIdMapper.checkValidCallId(callId);
Evan Charlton352105c2014-06-03 14:10:54 -0700141 mHandler.obtainMessage(MSG_POST_DIAL_CONTINUE, proceed ? 1 : 0, 0, callId).sendToTarget();
Ihab Awad74549ec2014-03-10 15:33:25 -0700142 }
143
144 /** {@inheritDoc} */
Santos Cordone3d76ab2014-01-28 17:25:20 -0800145 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700146 public void disconnectCall(String callId) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700147 Log.v(this, "disconnectCall: %s", callId);
148 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700149 mHandler.obtainMessage(MSG_DISCONNECT_CALL, callId).sendToTarget();
Santos Cordone3d76ab2014-01-28 17:25:20 -0800150 }
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700151
152 /** {@inheritDoc} */
153 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700154 public void holdCall(String callId) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700155 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700156 mHandler.obtainMessage(MSG_HOLD_CALL, callId).sendToTarget();
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700157 }
158
159 /** {@inheritDoc} */
160 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700161 public void unholdCall(String callId) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700162 mCallIdMapper.checkValidCallId(callId);
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700163 mHandler.obtainMessage(MSG_UNHOLD_CALL, callId).sendToTarget();
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700164 }
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700165
166 /** {@inheritDoc} */
167 @Override
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700168 public void handoffCall(String callId) {
169 mCallIdMapper.checkValidCallId(callId);
170 mHandler.obtainMessage(MSG_HANDOFF_CALL, callId).sendToTarget();
171 }
172
173 /** {@inheritDoc} */
174 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700175 public void mute(boolean shouldMute) {
176 mHandler.obtainMessage(MSG_MUTE, shouldMute ? 1 : 0, 0).sendToTarget();
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700177 }
178
179 /** {@inheritDoc} */
180 @Override
Sailesh Nepal10ea4602014-04-01 17:23:32 -0700181 public void setAudioRoute(int route) {
182 mHandler.obtainMessage(MSG_SET_AUDIO_ROUTE, route, 0).sendToTarget();
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700183 }
Santos Cordon8f3282c2014-06-01 13:56:02 -0700184
185 /** ${inheritDoc} */
186 @Override
187 public void conferenceWith(String arg0, String arg1) {
188 }
189
190 /** ${inheritDoc} */
191 @Override
192 public void splitFromConference(String arg0) {
193 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800194}