blob: c4d033c226a2d976338dcf386652b99aaecf7330 [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}.
35 * TODO(santoscordon): Keep track of when the service can be safely unbound.
36 * TODO(santoscordon): Look into combining with android.telecomm.CallService.
37 */
Ben Gilad61925612014-03-11 19:06:36 -070038final class CallServiceWrapper extends ServiceBinder<ICallService> {
Santos Cordon63aeb162014-02-10 09:20:40 -080039
Santos Cordonc195e362014-02-11 17:05:31 -080040 /** The descriptor of this call service as supplied by the call-service provider. */
Ben Giladc5b22692014-02-18 20:03:22 -080041 private final CallServiceDescriptor mDescriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080042
43 /**
44 * The adapter used by the underlying call-service implementation to communicate with Telecomm.
45 */
46 private final CallServiceAdapter mAdapter;
47
48 /** The actual service implementation. */
49 private ICallService mServiceInterface;
50
Ben Gilad61925612014-03-11 19:06:36 -070051 private Binder mBinder = new Binder();
52
Santos Cordon63aeb162014-02-10 09:20:40 -080053 /**
54 * Creates a call-service provider for the specified component.
Santos Cordonc195e362014-02-11 17:05:31 -080055 *
Santos Cordon61d0f702014-02-19 02:52:23 -080056 * @param descriptor The call-service descriptor from
57 * {@link ICallServiceProvider#lookupCallServices}.
Santos Cordonc195e362014-02-11 17:05:31 -080058 * @param adapter The call-service adapter.
Santos Cordon63aeb162014-02-10 09:20:40 -080059 */
Ben Gilad61925612014-03-11 19:06:36 -070060 CallServiceWrapper(CallServiceDescriptor descriptor, CallServiceAdapter adapter) {
Sailesh Nepala439e1b2014-03-11 18:19:58 -070061 super(TelecommConstants.ACTION_CALL_SERVICE, descriptor.getServiceComponent());
Ben Giladc5b22692014-02-18 20:03:22 -080062 mDescriptor = descriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080063 mAdapter = adapter;
Santos Cordon63aeb162014-02-10 09:20:40 -080064 }
65
Ben Gilad61925612014-03-11 19:06:36 -070066 CallServiceDescriptor getDescriptor() {
Ben Giladc5b22692014-02-18 20:03:22 -080067 return mDescriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080068 }
69
Santos Cordon63aeb162014-02-10 09:20:40 -080070 /** See {@link ICallService#setCallServiceAdapter}. */
Ben Gilad61925612014-03-11 19:06:36 -070071 void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter) {
Santos Cordon61d0f702014-02-19 02:52:23 -080072 if (isServiceValid("setCallServiceAdapter")) {
73 try {
Santos Cordon63aeb162014-02-10 09:20:40 -080074 mServiceInterface.setCallServiceAdapter(callServiceAdapter);
Santos Cordon61d0f702014-02-19 02:52:23 -080075 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -080076 Log.e(this, e, "Failed to setCallServiceAdapter.");
Santos Cordon63aeb162014-02-10 09:20:40 -080077 }
Santos Cordon63aeb162014-02-10 09:20:40 -080078 }
79 }
80
Ben Gilad61925612014-03-11 19:06:36 -070081 /**
82 * Checks whether or not the specified call is compatible with this call-service implementation,
83 * see {@link ICallService#isCompatibleWith}. Upon failure, the specified error callback is
84 * invoked. Can be invoked even when the call service is unbound.
85 *
86 * @param callInfo The details of the call.
87 * @param errorCallback The callback to invoke upon failure.
88 */
89 void isCompatibleWith(final CallInfo callInfo, final Runnable errorCallback) {
90 BindCallback callback = new BindCallback() {
91 @Override public void onSuccess() {
92 if (isServiceValid("isCompatibleWith")) {
93 try {
94 mServiceInterface.isCompatibleWith(callInfo);
95 } catch (RemoteException e) {
96 Log.e(CallServiceWrapper.this, e, "Failed checking isCompatibleWith.");
97 }
98 }
Santos Cordon63aeb162014-02-10 09:20:40 -080099 }
Ben Gilad61925612014-03-11 19:06:36 -0700100 @Override public void onFailure() {
101 errorCallback.run();
102 }
103 };
104
105 mBinder.bind(callback);
Santos Cordon63aeb162014-02-10 09:20:40 -0800106 }
107
Ben Gilad61925612014-03-11 19:06:36 -0700108 /**
109 * Attempts to place the specified call, see {@link ICallService#call}. Upon failure, the
110 * specified error callback is invoked. Can be invoked even when the call service is unbound.
111 *
112 * @param callInfo The details of the call.
113 * @param errorCallback The callback to invoke upon failure.
114 */
115 void call(final CallInfo callInfo, final Runnable errorCallback) {
116 BindCallback callback = new BindCallback() {
117 @Override public void onSuccess() {
118 String callId = callInfo.getId();
119 if (isServiceValid("call")) {
120 try {
121 mServiceInterface.call(callInfo);
122 mAdapter.addPendingOutgoingCallId(callId);
123 } catch (RemoteException e) {
124 Log.e(CallServiceWrapper.this, e, "Failed to place call %s", callId);
125 }
126 }
Ben Gilad28e8ad62014-03-06 17:01:54 -0800127 }
Ben Gilad61925612014-03-11 19:06:36 -0700128 @Override public void onFailure() {
129 errorCallback.run();
130 }
131 };
132
133 mBinder.bind(callback);
Ben Gilad28e8ad62014-03-06 17:01:54 -0800134 }
135
136 /** See {@link ICallService#abort}. */
Ben Gilad61925612014-03-11 19:06:36 -0700137 void abort(String callId) {
Ben Gilad28e8ad62014-03-06 17:01:54 -0800138 mAdapter.removePendingOutgoingCallId(callId);
139 if (isServiceValid("abort")) {
140 try {
141 mServiceInterface.abort(callId);
142 } catch (RemoteException e) {
143 Log.e(this, e, "Failed to abort call %s", callId);
Santos Cordon63aeb162014-02-10 09:20:40 -0800144 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800145 }
146 }
147
Ben Gilad61925612014-03-11 19:06:36 -0700148 /**
149 * Starts retrieval of details for an incoming call. Details are returned through the
150 * call-service adapter using the specified call ID. Upon failure, the specified error callback
151 * is invoked. Can be invoked even when the call service is unbound.
152 * See {@link ICallService#setIncomingCallId}.
153 *
154 * @param callId The call ID used for the incoming call.
155 * @param extras The {@link CallService}-provided extras which need to be sent back.
156 * @param errorCallback The callback to invoke upon failure.
157 */
158 void setIncomingCallId(
159 final String callId,
160 final Bundle extras,
161 final Runnable errorCallback) {
162
163 BindCallback callback = new BindCallback() {
164 @Override public void onSuccess() {
165 if (isServiceValid("setIncomingCallId")) {
166 mAdapter.addPendingIncomingCallId(callId);
167 try {
168 mServiceInterface.setIncomingCallId(callId, extras);
169 } catch (RemoteException e) {
170 Log.e(CallServiceWrapper.this, e,
171 "Failed to setIncomingCallId for call %s", callId);
172 mAdapter.removePendingIncomingCallId(callId);
173 }
174 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800175 }
Ben Gilad61925612014-03-11 19:06:36 -0700176 @Override public void onFailure() {
177 errorCallback.run();
178 }
179 };
180
181 mBinder.bind(callback);
Santos Cordon63aeb162014-02-10 09:20:40 -0800182 }
183
184 /** See {@link ICallService#disconnect}. */
Ben Gilad61925612014-03-11 19:06:36 -0700185 void disconnect(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800186 if (isServiceValid("disconnect")) {
187 try {
Santos Cordon63aeb162014-02-10 09:20:40 -0800188 mServiceInterface.disconnect(callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800189 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800190 Log.e(this, e, "Failed to disconnect call %s", callId);
Santos Cordon63aeb162014-02-10 09:20:40 -0800191 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800192 }
193 }
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800194
Santos Cordon61d0f702014-02-19 02:52:23 -0800195 /** See {@link ICallService#answer}. */
Ben Gilad61925612014-03-11 19:06:36 -0700196 void answer(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800197 if (isServiceValid("answer")) {
198 try {
199 mServiceInterface.answer(callId);
200 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800201 Log.e(this, e, "Failed to answer call %s", callId);
Santos Cordon7917d382014-02-14 02:31:18 -0800202 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800203 }
204 }
205
206 /** See {@link ICallService#reject}. */
Ben Gilad61925612014-03-11 19:06:36 -0700207 void reject(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800208 if (isServiceValid("reject")) {
209 try {
210 mServiceInterface.reject(callId);
211 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800212 Log.e(this, e, "Failed to reject call %s");
Santos Cordon61d0f702014-02-19 02:52:23 -0800213 }
Santos Cordon7917d382014-02-14 02:31:18 -0800214 }
215 }
216
217 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800218 * Cancels the incoming call for the specified call ID.
219 * TODO(santoscordon): This method should be called by IncomingCallsManager when the incoming
220 * call has failed.
Santos Cordon7917d382014-02-14 02:31:18 -0800221 *
222 * @param callId The ID of the call.
223 */
224 void cancelIncomingCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800225 mAdapter.removePendingIncomingCallId(callId);
Santos Cordon7917d382014-02-14 02:31:18 -0800226 }
227
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800228 /** {@inheritDoc} */
229 @Override protected void setServiceInterface(IBinder binder) {
230 mServiceInterface = ICallService.Stub.asInterface(binder);
231 setCallServiceAdapter(mAdapter);
232 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800233}