blob: 15ec20dc50f480d17b09f727c74f90afebf2c401 [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;
Santos Cordon63aeb162014-02-10 09:20:40 -080025import android.telecomm.ICallService;
26import android.telecomm.ICallServiceAdapter;
Ben Gilad28e8ad62014-03-06 17:01:54 -080027import android.telecomm.ICallServiceProvider;
Santos Cordon63aeb162014-02-10 09:20:40 -080028
29/**
30 * Wrapper for {@link ICallService}s, handles binding to {@link ICallService} and keeps track of
31 * when the object can safely be unbound. Other classes should not use {@link ICallService} directly
32 * and instead should use this class to invoke methods of {@link ICallService}.
33 * TODO(santoscordon): Keep track of when the service can be safely unbound.
34 * TODO(santoscordon): Look into combining with android.telecomm.CallService.
35 */
36public class CallServiceWrapper extends ServiceBinder<ICallService> {
Santos Cordon63aeb162014-02-10 09:20:40 -080037
38 /**
39 * The service action used to bind to ICallService implementations.
40 * TODO(santoscordon): Move this to TelecommConstants.
41 */
42 static final String CALL_SERVICE_ACTION = ICallService.class.getName();
43
Santos Cordonc195e362014-02-11 17:05:31 -080044 /** The descriptor of this call service as supplied by the call-service provider. */
Ben Giladc5b22692014-02-18 20:03:22 -080045 private final CallServiceDescriptor mDescriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080046
47 /**
48 * The adapter used by the underlying call-service implementation to communicate with Telecomm.
49 */
50 private final CallServiceAdapter mAdapter;
51
52 /** The actual service implementation. */
53 private ICallService mServiceInterface;
54
Santos Cordon63aeb162014-02-10 09:20:40 -080055 /**
56 * Creates a call-service provider for the specified component.
Santos Cordonc195e362014-02-11 17:05:31 -080057 *
Santos Cordon61d0f702014-02-19 02:52:23 -080058 * @param descriptor The call-service descriptor from
59 * {@link ICallServiceProvider#lookupCallServices}.
Santos Cordonc195e362014-02-11 17:05:31 -080060 * @param adapter The call-service adapter.
Santos Cordon63aeb162014-02-10 09:20:40 -080061 */
Ben Giladc5b22692014-02-18 20:03:22 -080062 public CallServiceWrapper(CallServiceDescriptor descriptor, CallServiceAdapter adapter) {
63 super(CALL_SERVICE_ACTION, descriptor.getServiceComponent());
64 mDescriptor = descriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080065 mAdapter = adapter;
Santos Cordon63aeb162014-02-10 09:20:40 -080066 }
67
Ben Giladc5b22692014-02-18 20:03:22 -080068 public CallServiceDescriptor getDescriptor() {
69 return mDescriptor;
Santos Cordonc195e362014-02-11 17:05:31 -080070 }
71
Santos Cordon63aeb162014-02-10 09:20:40 -080072 /** See {@link ICallService#setCallServiceAdapter}. */
73 public void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter) {
Santos Cordon61d0f702014-02-19 02:52:23 -080074 if (isServiceValid("setCallServiceAdapter")) {
75 try {
Santos Cordon63aeb162014-02-10 09:20:40 -080076 mServiceInterface.setCallServiceAdapter(callServiceAdapter);
Santos Cordon61d0f702014-02-19 02:52:23 -080077 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -080078 Log.e(this, e, "Failed to setCallServiceAdapter.");
Santos Cordon63aeb162014-02-10 09:20:40 -080079 }
Santos Cordon63aeb162014-02-10 09:20:40 -080080 }
81 }
82
83 /** See {@link ICallService#isCompatibleWith}. */
84 public void isCompatibleWith(CallInfo callInfo) {
Santos Cordon61d0f702014-02-19 02:52:23 -080085 if (isServiceValid("isCompatibleWith")) {
86 try {
Santos Cordon63aeb162014-02-10 09:20:40 -080087 mServiceInterface.isCompatibleWith(callInfo);
Santos Cordon61d0f702014-02-19 02:52:23 -080088 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -080089 Log.e(this, e, "Failed checking isCompatibleWith.");
Santos Cordon63aeb162014-02-10 09:20:40 -080090 }
Santos Cordon63aeb162014-02-10 09:20:40 -080091 }
92 }
93
94 /** See {@link ICallService#call}. */
95 public void call(CallInfo callInfo) {
Ben Gilad28e8ad62014-03-06 17:01:54 -080096 String callId = callInfo.getId();
Santos Cordon61d0f702014-02-19 02:52:23 -080097 if (isServiceValid("call")) {
98 try {
Santos Cordon63aeb162014-02-10 09:20:40 -080099 mServiceInterface.call(callInfo);
Ben Gilad28e8ad62014-03-06 17:01:54 -0800100 mAdapter.addPendingOutgoingCallId(callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800101 } catch (RemoteException e) {
Ben Gilad28e8ad62014-03-06 17:01:54 -0800102 Log.e(this, e, "Failed to place call " + callId + ".");
103 }
104 }
105 }
106
107 /** See {@link ICallService#abort}. */
108 public void abort(String callId) {
109 mAdapter.removePendingOutgoingCallId(callId);
110 if (isServiceValid("abort")) {
111 try {
112 mServiceInterface.abort(callId);
113 } catch (RemoteException e) {
114 Log.e(this, e, "Failed to abort call %s", callId);
Santos Cordon63aeb162014-02-10 09:20:40 -0800115 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800116 }
117 }
118
119 /** See {@link ICallService#setIncomingCallId}. */
Evan Charltona05805b2014-03-05 08:21:46 -0800120 public void setIncomingCallId(String callId, Bundle extras) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800121 if (isServiceValid("setIncomingCallId")) {
122 mAdapter.addPendingIncomingCallId(callId);
123 try {
Evan Charltona05805b2014-03-05 08:21:46 -0800124 mServiceInterface.setIncomingCallId(callId, extras);
Santos Cordon61d0f702014-02-19 02:52:23 -0800125 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800126 Log.e(this, e, "Failed to setIncomingCallId for call %s", callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800127 mAdapter.removePendingIncomingCallId(callId);
128 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800129 }
130 }
131
132 /** See {@link ICallService#disconnect}. */
133 public void disconnect(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800134 if (isServiceValid("disconnect")) {
135 try {
Santos Cordon63aeb162014-02-10 09:20:40 -0800136 mServiceInterface.disconnect(callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800137 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800138 Log.e(this, e, "Failed to disconnect call %s", callId);
Santos Cordon63aeb162014-02-10 09:20:40 -0800139 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800140 }
141 }
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800142
Santos Cordon61d0f702014-02-19 02:52:23 -0800143 /** See {@link ICallService#answer}. */
144 public void answer(String callId) {
145 if (isServiceValid("answer")) {
146 try {
147 mServiceInterface.answer(callId);
148 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800149 Log.e(this, e, "Failed to answer call %s", callId);
Santos Cordon7917d382014-02-14 02:31:18 -0800150 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800151 }
152 }
153
154 /** See {@link ICallService#reject}. */
155 public void reject(String callId) {
156 if (isServiceValid("reject")) {
157 try {
158 mServiceInterface.reject(callId);
159 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800160 Log.e(this, e, "Failed to reject call %s");
Santos Cordon61d0f702014-02-19 02:52:23 -0800161 }
Santos Cordon7917d382014-02-14 02:31:18 -0800162 }
163 }
164
165 /**
Santos Cordon493e8f22014-02-19 03:15:12 -0800166 * Starts retrieval of details for an incoming call. Details are returned through the
167 * call-service adapter using the specified call ID. Upon failure, the specified error callback
168 * is invoked. Can be invoked even when the call service is unbound.
169 *
Evan Charltona05805b2014-03-05 08:21:46 -0800170 * @param callId The call ID used for the incoming call.
171 * @param extras The {@link CallService}-provided extras which need to be sent back.
Santos Cordon493e8f22014-02-19 03:15:12 -0800172 * @param errorCallback The callback invoked upon failure.
173 */
Evan Charltona05805b2014-03-05 08:21:46 -0800174 void retrieveIncomingCall(final String callId, final Bundle extras,
175 final Runnable errorCallback) {
176
Santos Cordon493e8f22014-02-19 03:15:12 -0800177 BindCallback callback = new BindCallback() {
178 @Override public void onSuccess() {
Evan Charltona05805b2014-03-05 08:21:46 -0800179 setIncomingCallId(callId, extras);
Santos Cordon493e8f22014-02-19 03:15:12 -0800180 }
181 @Override public void onFailure() {
182 errorCallback.run();
183 }
184 };
185
186 bind(callback);
187 }
188
189 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800190 * Cancels the incoming call for the specified call ID.
191 * TODO(santoscordon): This method should be called by IncomingCallsManager when the incoming
192 * call has failed.
Santos Cordon7917d382014-02-14 02:31:18 -0800193 *
194 * @param callId The ID of the call.
195 */
196 void cancelIncomingCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800197 mAdapter.removePendingIncomingCallId(callId);
Santos Cordon7917d382014-02-14 02:31:18 -0800198 }
199
Santos Cordon5c12c6e2014-02-13 14:35:31 -0800200 /** {@inheritDoc} */
201 @Override protected void setServiceInterface(IBinder binder) {
202 mServiceInterface = ICallService.Stub.asInterface(binder);
203 setCallServiceAdapter(mAdapter);
204 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800205
206 private boolean isServiceValid(String actionName) {
207 if (mServiceInterface != null) {
208 return true;
209 }
210
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800211 Log.wtf(this, "%s invoked while service is unbound", actionName);
Santos Cordon61d0f702014-02-19 02:52:23 -0800212 return false;
213 }
Santos Cordon63aeb162014-02-10 09:20:40 -0800214}