Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | package com.android.telecomm; |
| 18 | |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 19 | import android.os.IBinder; |
| 20 | import android.os.RemoteException; |
| 21 | import android.telecomm.CallInfo; |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 22 | import android.telecomm.CallServiceDescriptor; |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 23 | import android.telecomm.ICallService; |
| 24 | import android.telecomm.ICallServiceAdapter; |
| 25 | import android.util.Log; |
| 26 | |
| 27 | /** |
| 28 | * Wrapper for {@link ICallService}s, handles binding to {@link ICallService} and keeps track of |
| 29 | * when the object can safely be unbound. Other classes should not use {@link ICallService} directly |
| 30 | * and instead should use this class to invoke methods of {@link ICallService}. |
| 31 | * TODO(santoscordon): Keep track of when the service can be safely unbound. |
| 32 | * TODO(santoscordon): Look into combining with android.telecomm.CallService. |
| 33 | */ |
| 34 | public class CallServiceWrapper extends ServiceBinder<ICallService> { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 35 | |
| 36 | /** |
| 37 | * The service action used to bind to ICallService implementations. |
| 38 | * TODO(santoscordon): Move this to TelecommConstants. |
| 39 | */ |
| 40 | static final String CALL_SERVICE_ACTION = ICallService.class.getName(); |
| 41 | |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 42 | private static final String TAG = CallServiceWrapper.class.getSimpleName(); |
| 43 | |
| 44 | /** The descriptor of this call service as supplied by the call-service provider. */ |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 45 | private final CallServiceDescriptor mDescriptor; |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 46 | |
| 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 Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 55 | /** |
| 56 | * Creates a call-service provider for the specified component. |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 57 | * |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 58 | * @param descriptor The call-service descriptor from |
| 59 | * {@link ICallServiceProvider#lookupCallServices}. |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 60 | * @param adapter The call-service adapter. |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 61 | */ |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 62 | public CallServiceWrapper(CallServiceDescriptor descriptor, CallServiceAdapter adapter) { |
| 63 | super(CALL_SERVICE_ACTION, descriptor.getServiceComponent()); |
| 64 | mDescriptor = descriptor; |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 65 | mAdapter = adapter; |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 66 | } |
| 67 | |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 68 | public CallServiceDescriptor getDescriptor() { |
| 69 | return mDescriptor; |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 70 | } |
| 71 | |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 72 | /** See {@link ICallService#setCallServiceAdapter}. */ |
| 73 | public void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 74 | if (isServiceValid("setCallServiceAdapter")) { |
| 75 | try { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 76 | mServiceInterface.setCallServiceAdapter(callServiceAdapter); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 77 | } catch (RemoteException e) { |
| 78 | Log.e(TAG, "Failed to setCallServiceAdapter.", e); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 79 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 80 | } |
| 81 | } |
| 82 | |
| 83 | /** See {@link ICallService#isCompatibleWith}. */ |
| 84 | public void isCompatibleWith(CallInfo callInfo) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 85 | if (isServiceValid("isCompatibleWith")) { |
| 86 | try { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 87 | mServiceInterface.isCompatibleWith(callInfo); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 88 | } catch (RemoteException e) { |
| 89 | Log.e(TAG, "Failed checking isCompatibleWith.", e); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 90 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | |
| 94 | /** See {@link ICallService#call}. */ |
| 95 | public void call(CallInfo callInfo) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 96 | if (isServiceValid("call")) { |
| 97 | try { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 98 | mServiceInterface.call(callInfo); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 99 | } catch (RemoteException e) { |
| 100 | Log.e(TAG, "Failed to place call " + callInfo.getId() + ".", e); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 101 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 102 | } |
| 103 | } |
| 104 | |
| 105 | /** See {@link ICallService#setIncomingCallId}. */ |
| 106 | public void setIncomingCallId(String callId) { |
| 107 | if (isServiceValid("setIncomingCallId")) { |
| 108 | mAdapter.addPendingIncomingCallId(callId); |
| 109 | try { |
| 110 | mServiceInterface.setIncomingCallId(callId); |
| 111 | } catch (RemoteException e) { |
| 112 | Log.e(TAG, "Failed to setIncomingCallId for call " + callId, e); |
| 113 | mAdapter.removePendingIncomingCallId(callId); |
| 114 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 115 | } |
| 116 | } |
| 117 | |
| 118 | /** See {@link ICallService#disconnect}. */ |
| 119 | public void disconnect(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 120 | if (isServiceValid("disconnect")) { |
| 121 | try { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 122 | mServiceInterface.disconnect(callId); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 123 | } catch (RemoteException e) { |
| 124 | Log.e(TAG, "Failed to disconnect call " + callId + ".", e); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 125 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 126 | } |
| 127 | } |
Santos Cordon | 5c12c6e | 2014-02-13 14:35:31 -0800 | [diff] [blame] | 128 | |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 129 | /** See {@link ICallService#answer}. */ |
| 130 | public void answer(String callId) { |
| 131 | if (isServiceValid("answer")) { |
| 132 | try { |
| 133 | mServiceInterface.answer(callId); |
| 134 | } catch (RemoteException e) { |
| 135 | Log.e(TAG, "Failed to answer call " + callId, e); |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 136 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 137 | } |
| 138 | } |
| 139 | |
| 140 | /** See {@link ICallService#reject}. */ |
| 141 | public void reject(String callId) { |
| 142 | if (isServiceValid("reject")) { |
| 143 | try { |
| 144 | mServiceInterface.reject(callId); |
| 145 | } catch (RemoteException e) { |
| 146 | Log.e(TAG, "Failed to reject call " + callId, e); |
| 147 | } |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 148 | } |
| 149 | } |
| 150 | |
| 151 | /** |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 152 | * Cancels the incoming call for the specified call ID. |
| 153 | * TODO(santoscordon): This method should be called by IncomingCallsManager when the incoming |
| 154 | * call has failed. |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 155 | * |
| 156 | * @param callId The ID of the call. |
| 157 | */ |
| 158 | void cancelIncomingCall(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 159 | mAdapter.removePendingIncomingCallId(callId); |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 160 | } |
| 161 | |
Santos Cordon | 5c12c6e | 2014-02-13 14:35:31 -0800 | [diff] [blame] | 162 | /** {@inheritDoc} */ |
| 163 | @Override protected void setServiceInterface(IBinder binder) { |
| 164 | mServiceInterface = ICallService.Stub.asInterface(binder); |
| 165 | setCallServiceAdapter(mAdapter); |
| 166 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame^] | 167 | |
| 168 | private boolean isServiceValid(String actionName) { |
| 169 | if (mServiceInterface != null) { |
| 170 | return true; |
| 171 | } |
| 172 | |
| 173 | Log.wtf(TAG, actionName + " invoked while service is unbound"); |
| 174 | return false; |
| 175 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 176 | } |