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; |
| 38 | private static final int MSG_MUTE = 8; |
| 39 | private static final int MSG_SET_AUDIO_ROUTE = 9; |
| 40 | |
| 41 | private final class InCallAdapterHandler extends Handler { |
| 42 | @Override |
| 43 | public void handleMessage(Message msg) { |
| 44 | switch (msg.what) { |
| 45 | case MSG_ANSWER_CALL: |
| 46 | mCallsManager.answerCall((String) msg.obj); |
| 47 | break; |
| 48 | case MSG_REJECT_CALL: |
| 49 | mCallsManager.rejectCall((String) msg.obj); |
| 50 | break; |
| 51 | case MSG_PLAY_DTMF_TONE: |
| 52 | mCallsManager.playDtmfTone((String) msg.obj, (char) msg.arg1); |
| 53 | break; |
| 54 | case MSG_STOP_DTMF_TONE: |
| 55 | mCallsManager.stopDtmfTone((String) msg.obj); |
| 56 | break; |
| 57 | case MSG_POST_DIAL_CONTINUE: |
| 58 | mCallsManager.postDialContinue((String) msg.obj); |
| 59 | break; |
| 60 | case MSG_DISCONNECT_CALL: |
| 61 | mCallsManager.disconnectCall((String) msg.obj); |
| 62 | break; |
| 63 | case MSG_HOLD_CALL: |
| 64 | mCallsManager.holdCall((String) msg.obj); |
| 65 | break; |
| 66 | case MSG_UNHOLD_CALL: |
| 67 | mCallsManager.unholdCall((String) msg.obj); |
| 68 | break; |
| 69 | case MSG_MUTE: |
| 70 | mCallsManager.mute(msg.arg1 == 1 ? true : false); |
| 71 | break; |
| 72 | case MSG_SET_AUDIO_ROUTE: |
| 73 | mCallsManager.setAudioRoute(msg.arg1); |
| 74 | break; |
| 75 | } |
| 76 | } |
| 77 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 78 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 79 | private final CallsManager mCallsManager; |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 80 | private final Handler mHandler = new InCallAdapterHandler(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 81 | |
| 82 | /** Persists the specified parameters. */ |
| 83 | public InCallAdapter(CallsManager callsManager) { |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 84 | ThreadUtil.checkOnMainThread(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 85 | mCallsManager = callsManager; |
| 86 | } |
| 87 | |
| 88 | /** {@inheritDoc} */ |
| 89 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 90 | public void answerCall(String callId) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 91 | Log.d(this, "answerCall(%s)", callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 92 | mHandler.obtainMessage(MSG_ANSWER_CALL, callId).sendToTarget(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /** {@inheritDoc} */ |
| 96 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 97 | public void rejectCall(String callId) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 98 | Log.d(this, "rejectCall(%s)", callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 99 | mHandler.obtainMessage(MSG_REJECT_CALL, callId).sendToTarget(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | /** {@inheritDoc} */ |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 103 | @Override |
| 104 | public void playDtmfTone(String callId, char digit) { |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 105 | Log.d(this, "playDtmfTone(%s,%c)", callId, digit); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 106 | mHandler.obtainMessage(MSG_PLAY_DTMF_TONE, (int) digit, 0, callId).sendToTarget(); |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /** {@inheritDoc} */ |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 110 | @Override |
| 111 | public void stopDtmfTone(String callId) { |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 112 | Log.d(this, "stopDtmfTone(%s)", callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 113 | mHandler.obtainMessage(MSG_STOP_DTMF_TONE, callId).sendToTarget(); |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /** {@inheritDoc} */ |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 117 | @Override |
| 118 | public void postDialContinue(String callId) { |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 119 | Log.d(this, "postDialContinue(%s)", callId); |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 120 | mHandler.obtainMessage(MSG_POST_DIAL_CONTINUE, callId).sendToTarget(); |
Ihab Awad | 74549ec | 2014-03-10 15:33:25 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | /** {@inheritDoc} */ |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 124 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 125 | public void disconnectCall(String callId) { |
| 126 | mHandler.obtainMessage(MSG_DISCONNECT_CALL, callId).sendToTarget(); |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 127 | } |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 128 | |
| 129 | /** {@inheritDoc} */ |
| 130 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 131 | public void holdCall(String callId) { |
| 132 | mHandler.obtainMessage(MSG_HOLD_CALL, callId).sendToTarget(); |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /** {@inheritDoc} */ |
| 136 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 137 | public void unholdCall(String callId) { |
| 138 | mHandler.obtainMessage(MSG_UNHOLD_CALL, callId).sendToTarget(); |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 139 | } |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 140 | |
| 141 | /** {@inheritDoc} */ |
| 142 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 143 | public void mute(boolean shouldMute) { |
| 144 | mHandler.obtainMessage(MSG_MUTE, shouldMute ? 1 : 0, 0).sendToTarget(); |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | /** {@inheritDoc} */ |
| 148 | @Override |
Sailesh Nepal | 10ea460 | 2014-04-01 17:23:32 -0700 | [diff] [blame^] | 149 | public void setAudioRoute(int route) { |
| 150 | mHandler.obtainMessage(MSG_SET_AUDIO_ROUTE, route, 0).sendToTarget(); |
Sailesh Nepal | 6aca10a | 2014-03-24 16:11:02 -0700 | [diff] [blame] | 151 | } |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 152 | } |