blob: 46e99cb21d5ff314d83ecc29a25c06a5a1c3d61c [file] [log] [blame]
Santos Cordon63aeb162014-02-10 09:20:40 -08001/*
2 * Copyright 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
17package com.android.telecomm;
18
Evan Charltona05805b2014-03-05 08:21:46 -080019import android.os.Bundle;
Santos Cordon63aeb162014-02-10 09:20:40 -080020import android.os.IBinder;
21import android.os.RemoteException;
22import android.telecomm.CallInfo;
Evan Charltona05805b2014-03-05 08:21:46 -080023import android.telecomm.CallService;
Ben Giladc5b22692014-02-18 20:03:22 -080024import android.telecomm.CallServiceDescriptor;
Sailesh Nepal83cfe7c2014-03-11 19:54:22 -070025import android.telecomm.TelecommConstants;
Sailesh Nepala439e1b2014-03-11 18:19:58 -070026
27import com.android.internal.telecomm.ICallService;
28import com.android.internal.telecomm.ICallServiceAdapter;
29import com.android.internal.telecomm.ICallServiceProvider;
Santos Cordon63aeb162014-02-10 09:20:40 -080030
31/**
32 * Wrapper for {@link ICallService}s, handles binding to {@link ICallService} and keeps track of
33 * when the object can safely be unbound. Other classes should not use {@link ICallService} directly
34 * and instead should use this class to invoke methods of {@link ICallService}.
Santos Cordon63aeb162014-02-10 09:20:40 -080035 */
Ben Gilad61925612014-03-11 19:06:36 -070036final class CallServiceWrapper extends ServiceBinder<ICallService> {
Santos Cordon63aeb162014-02-10 09:20:40 -080037
Santos Cordonc195e362014-02-11 17:05:31 -080038 /** The descriptor of this call service as supplied by the call-service provider. */
Ben Giladc5b22692014-02-18 20:03:22 -080039 private final CallServiceDescriptor mDescriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080040
41 /**
42 * The adapter used by the underlying call-service implementation to communicate with Telecomm.
43 */
44 private final CallServiceAdapter mAdapter;
45
46 /** The actual service implementation. */
47 private ICallService mServiceInterface;
48
Ben Gilad61925612014-03-11 19:06:36 -070049 private Binder mBinder = new Binder();
50
Santos Cordon63aeb162014-02-10 09:20:40 -080051 /**
Sailesh Nepal18386a82014-03-19 10:22:40 -070052 * Creates a call-service provider for the specified descriptor.
Santos Cordonc195e362014-02-11 17:05:31 -080053 *
Santos Cordon61d0f702014-02-19 02:52:23 -080054 * @param descriptor The call-service descriptor from
55 * {@link ICallServiceProvider#lookupCallServices}.
Santos Cordonc195e362014-02-11 17:05:31 -080056 * @param adapter The call-service adapter.
Santos Cordon63aeb162014-02-10 09:20:40 -080057 */
Ben Gilad61925612014-03-11 19:06:36 -070058 CallServiceWrapper(CallServiceDescriptor descriptor, CallServiceAdapter adapter) {
Sailesh Nepala439e1b2014-03-11 18:19:58 -070059 super(TelecommConstants.ACTION_CALL_SERVICE, descriptor.getServiceComponent());
Ben Giladc5b22692014-02-18 20:03:22 -080060 mDescriptor = descriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080061 mAdapter = adapter;
Santos Cordon63aeb162014-02-10 09:20:40 -080062 }
63
Ben Gilad61925612014-03-11 19:06:36 -070064 CallServiceDescriptor getDescriptor() {
Ben Giladc5b22692014-02-18 20:03:22 -080065 return mDescriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080066 }
67
Santos Cordon63aeb162014-02-10 09:20:40 -080068 /** See {@link ICallService#setCallServiceAdapter}. */
Ben Gilad61925612014-03-11 19:06:36 -070069 void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter) {
Santos Cordon61d0f702014-02-19 02:52:23 -080070 if (isServiceValid("setCallServiceAdapter")) {
71 try {
Santos Cordon63aeb162014-02-10 09:20:40 -080072 mServiceInterface.setCallServiceAdapter(callServiceAdapter);
Santos Cordon61d0f702014-02-19 02:52:23 -080073 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -080074 Log.e(this, e, "Failed to setCallServiceAdapter.");
Santos Cordon63aeb162014-02-10 09:20:40 -080075 }
Santos Cordon63aeb162014-02-10 09:20:40 -080076 }
77 }
78
Ben Gilad61925612014-03-11 19:06:36 -070079 /**
80 * Checks whether or not the specified call is compatible with this call-service implementation,
81 * see {@link ICallService#isCompatibleWith}. Upon failure, the specified error callback is
82 * invoked. Can be invoked even when the call service is unbound.
83 *
84 * @param callInfo The details of the call.
85 * @param errorCallback The callback to invoke upon failure.
86 */
87 void isCompatibleWith(final CallInfo callInfo, final Runnable errorCallback) {
Santos Cordon4b2c1192014-03-19 18:15:38 -070088 Log.d(this, "isCompatibleWith(%s) via %s.", callInfo, getComponentName());
Ben Gilad61925612014-03-11 19:06:36 -070089 BindCallback callback = new BindCallback() {
90 @Override public void onSuccess() {
91 if (isServiceValid("isCompatibleWith")) {
92 try {
Yorke Leeadee12d2014-03-13 12:08:30 -070093 mAdapter.addPendingOutgoingCallId(callInfo.getId());
Ben Gilad61925612014-03-11 19:06:36 -070094 mServiceInterface.isCompatibleWith(callInfo);
95 } catch (RemoteException e) {
Yorke Leeadee12d2014-03-13 12:08:30 -070096 mAdapter.removePendingOutgoingCallId(callInfo.getId());
Ben Gilad61925612014-03-11 19:06:36 -070097 Log.e(CallServiceWrapper.this, e, "Failed checking isCompatibleWith.");
98 }
99 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800100 }
Ben Gilad61925612014-03-11 19:06:36 -0700101 @Override public void onFailure() {
102 errorCallback.run();
103 }
104 };
105
106 mBinder.bind(callback);
Santos Cordon63aeb162014-02-10 09:20:40 -0800107 }
108
Ben Gilad61925612014-03-11 19:06:36 -0700109 /**
110 * Attempts to place the specified call, see {@link ICallService#call}. Upon failure, the
111 * specified error callback is invoked. Can be invoked even when the call service is unbound.
112 *
113 * @param callInfo The details of the call.
114 * @param errorCallback The callback to invoke upon failure.
115 */
116 void call(final CallInfo callInfo, final Runnable errorCallback) {
Santos Cordon4b2c1192014-03-19 18:15:38 -0700117 Log.d(this, "call(%s) via %s.", callInfo, getComponentName());
Ben Gilad61925612014-03-11 19:06:36 -0700118 BindCallback callback = new BindCallback() {
119 @Override public void onSuccess() {
120 String callId = callInfo.getId();
121 if (isServiceValid("call")) {
122 try {
123 mServiceInterface.call(callInfo);
Ben Gilad61925612014-03-11 19:06:36 -0700124 } catch (RemoteException e) {
125 Log.e(CallServiceWrapper.this, e, "Failed to place call %s", callId);
126 }
127 }
Ben Gilad28e8ad62014-03-06 17:01:54 -0800128 }
Ben Gilad61925612014-03-11 19:06:36 -0700129 @Override public void onFailure() {
130 errorCallback.run();
131 }
132 };
133
134 mBinder.bind(callback);
Ben Gilad28e8ad62014-03-06 17:01:54 -0800135 }
136
137 /** See {@link ICallService#abort}. */
Ben Gilad61925612014-03-11 19:06:36 -0700138 void abort(String callId) {
Ben Gilad28e8ad62014-03-06 17:01:54 -0800139 mAdapter.removePendingOutgoingCallId(callId);
140 if (isServiceValid("abort")) {
141 try {
142 mServiceInterface.abort(callId);
143 } catch (RemoteException e) {
144 Log.e(this, e, "Failed to abort call %s", callId);
Santos Cordon63aeb162014-02-10 09:20:40 -0800145 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800146 }
147 }
148
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700149 /** See {@link ICallService#hold}. */
150 public void hold(String callId) {
151 if (isServiceValid("hold")) {
152 try {
153 mServiceInterface.hold(callId);
154 } catch (RemoteException e) {
155 Log.e(this, e, "Failed to put on hold for call %s", callId);
156 }
157 }
158 }
159
160 /** See {@link ICallService#unhold}. */
161 public void unhold(String callId) {
162 if (isServiceValid("unhold")) {
163 try {
164 mServiceInterface.unhold(callId);
165 } catch (RemoteException e) {
166 Log.e(this, e, "Failed to remove from hold for call %s", callId);
167 }
168 }
169 }
170
Ben Gilad61925612014-03-11 19:06:36 -0700171 /**
172 * Starts retrieval of details for an incoming call. Details are returned through the
173 * call-service adapter using the specified call ID. Upon failure, the specified error callback
174 * is invoked. Can be invoked even when the call service is unbound.
175 * See {@link ICallService#setIncomingCallId}.
176 *
177 * @param callId The call ID used for the incoming call.
178 * @param extras The {@link CallService}-provided extras which need to be sent back.
179 * @param errorCallback The callback to invoke upon failure.
180 */
181 void setIncomingCallId(
182 final String callId,
183 final Bundle extras,
184 final Runnable errorCallback) {
185
Santos Cordon4b2c1192014-03-19 18:15:38 -0700186 Log.d(this, "setIncomingCall(%s) via %s.", callId, getComponentName());
Ben Gilad61925612014-03-11 19:06:36 -0700187 BindCallback callback = new BindCallback() {
188 @Override public void onSuccess() {
189 if (isServiceValid("setIncomingCallId")) {
190 mAdapter.addPendingIncomingCallId(callId);
191 try {
192 mServiceInterface.setIncomingCallId(callId, extras);
193 } catch (RemoteException e) {
194 Log.e(CallServiceWrapper.this, e,
195 "Failed to setIncomingCallId for call %s", callId);
196 mAdapter.removePendingIncomingCallId(callId);
197 }
198 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800199 }
Ben Gilad61925612014-03-11 19:06:36 -0700200 @Override public void onFailure() {
201 errorCallback.run();
202 }
203 };
204
205 mBinder.bind(callback);
Santos Cordon63aeb162014-02-10 09:20:40 -0800206 }
207
208 /** See {@link ICallService#disconnect}. */
Ben Gilad61925612014-03-11 19:06:36 -0700209 void disconnect(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800210 if (isServiceValid("disconnect")) {
211 try {
Santos Cordon63aeb162014-02-10 09:20:40 -0800212 mServiceInterface.disconnect(callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800213 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800214 Log.e(this, e, "Failed to disconnect call %s", callId);
Santos Cordon63aeb162014-02-10 09:20:40 -0800215 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800216 }
217 }
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800218
Santos Cordon61d0f702014-02-19 02:52:23 -0800219 /** See {@link ICallService#answer}. */
Ben Gilad61925612014-03-11 19:06:36 -0700220 void answer(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800221 if (isServiceValid("answer")) {
222 try {
223 mServiceInterface.answer(callId);
224 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800225 Log.e(this, e, "Failed to answer call %s", callId);
Santos Cordon7917d382014-02-14 02:31:18 -0800226 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800227 }
228 }
229
230 /** See {@link ICallService#reject}. */
Ben Gilad61925612014-03-11 19:06:36 -0700231 void reject(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800232 if (isServiceValid("reject")) {
233 try {
234 mServiceInterface.reject(callId);
235 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800236 Log.e(this, e, "Failed to reject call %s");
Santos Cordon61d0f702014-02-19 02:52:23 -0800237 }
Santos Cordon7917d382014-02-14 02:31:18 -0800238 }
239 }
240
241 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800242 * Cancels the incoming call for the specified call ID.
243 * TODO(santoscordon): This method should be called by IncomingCallsManager when the incoming
244 * call has failed.
Santos Cordon7917d382014-02-14 02:31:18 -0800245 *
246 * @param callId The ID of the call.
247 */
248 void cancelIncomingCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800249 mAdapter.removePendingIncomingCallId(callId);
Santos Cordon7917d382014-02-14 02:31:18 -0800250 }
251
Yorke Leeadee12d2014-03-13 12:08:30 -0700252 /**
253 * Cancels the outgoing call for the specified call ID.
254 *
255 * @param callId The ID of the call.
256 */
257 void cancelOutgoingCall(String callId) {
258 mAdapter.removePendingOutgoingCallId(callId);
259 }
260
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800261 /** {@inheritDoc} */
262 @Override protected void setServiceInterface(IBinder binder) {
Santos Cordon4b2c1192014-03-19 18:15:38 -0700263 if (binder == null) {
264 // We have lost our service connection. Notify the world that this call service is done.
265 // We must notify the adapter before CallsManager. The adapter will force any pending
266 // outgoing calls to try the next call service. This needs to happen before CallsManager
267 // tries to clean up any calls still associated with this call service.
268 mAdapter.handleCallServiceDeath();
269 CallsManager.getInstance().handleCallServiceDeath(this);
270 mServiceInterface = null;
271 } else {
272 mServiceInterface = ICallService.Stub.asInterface(binder);
273 setCallServiceAdapter(mAdapter);
274 }
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800275 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800276}