Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [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 | R* limitations under the License. |
| 15 | */ |
| 16 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 18 | |
| 19 | import android.content.ComponentName; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 20 | import android.os.RemoteException; |
| 21 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 22 | import com.android.internal.telecom.IConnectionService; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 23 | |
| 24 | import java.util.HashMap; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 25 | import java.util.Map; |
| 26 | |
| 27 | /** |
| 28 | * @hide |
| 29 | */ |
| 30 | public class RemoteConnectionManager { |
Ihab Awad | b8e85c7 | 2014-08-23 20:34:57 -0700 | [diff] [blame] | 31 | private final Map<ComponentName, RemoteConnectionService> mRemoteConnectionServices = |
| 32 | new HashMap<>(); |
| 33 | private final ConnectionService mOurConnectionServiceImpl; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 34 | |
Ihab Awad | b8e85c7 | 2014-08-23 20:34:57 -0700 | [diff] [blame] | 35 | public RemoteConnectionManager(ConnectionService ourConnectionServiceImpl) { |
| 36 | mOurConnectionServiceImpl = ourConnectionServiceImpl; |
| 37 | } |
| 38 | |
| 39 | void addConnectionService( |
| 40 | ComponentName componentName, |
| 41 | IConnectionService outgoingConnectionServiceRpc) { |
Mateus Azis | ddcbe63 | 2023-08-16 09:31:20 -0700 | [diff] [blame] | 42 | mRemoteConnectionServices.computeIfAbsent( |
| 43 | componentName, |
| 44 | key -> { |
| 45 | try { |
| 46 | return new RemoteConnectionService( |
| 47 | outgoingConnectionServiceRpc, mOurConnectionServiceImpl); |
| 48 | } catch (RemoteException e) { |
| 49 | Log.w( |
| 50 | RemoteConnectionManager.this, |
| 51 | "error when addConnectionService of %s: %s", |
| 52 | componentName, |
| 53 | e.toString()); |
| 54 | return null; |
| 55 | } |
| 56 | }); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Evan Charlton | bf11f98 | 2014-07-20 22:06:28 -0700 | [diff] [blame] | 59 | public RemoteConnection createRemoteConnection( |
Ihab Awad | f8b6988 | 2014-07-25 15:14:01 -0700 | [diff] [blame] | 60 | PhoneAccountHandle connectionManagerPhoneAccount, |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 61 | ConnectionRequest request, |
Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 62 | boolean isIncoming) { |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 63 | PhoneAccountHandle accountHandle = request.getAccountHandle(); |
| 64 | if (accountHandle == null) { |
| 65 | throw new IllegalArgumentException("accountHandle must be specified."); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 68 | ComponentName componentName = request.getAccountHandle().getComponentName(); |
Mateus Azis | ddcbe63 | 2023-08-16 09:31:20 -0700 | [diff] [blame] | 69 | RemoteConnectionService remoteService = mRemoteConnectionServices.get(componentName); |
| 70 | if (remoteService == null) { |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 71 | throw new UnsupportedOperationException("accountHandle not supported: " |
| 72 | + componentName); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 73 | } |
Evan Charlton | bf11f98 | 2014-07-20 22:06:28 -0700 | [diff] [blame] | 74 | |
Mateus Azis | ddcbe63 | 2023-08-16 09:31:20 -0700 | [diff] [blame] | 75 | return remoteService.createRemoteConnection( |
| 76 | connectionManagerPhoneAccount, request, isIncoming); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 77 | } |
Ihab Awad | b8e85c7 | 2014-08-23 20:34:57 -0700 | [diff] [blame] | 78 | |
Grace Jia | 9a09c67 | 2020-08-04 12:52:09 -0700 | [diff] [blame] | 79 | /** |
| 80 | * Ask a {@code RemoteConnectionService} to create a {@code RemoteConference}. |
| 81 | * @param connectionManagerPhoneAccount See description at |
| 82 | * {@link ConnectionService#onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}. |
| 83 | * @param request Details about the incoming conference call. |
| 84 | * @param isIncoming {@code true} if it's an incoming conference. |
| 85 | * @return |
| 86 | */ |
| 87 | public RemoteConference createRemoteConference( |
| 88 | PhoneAccountHandle connectionManagerPhoneAccount, |
| 89 | ConnectionRequest request, |
| 90 | boolean isIncoming) { |
| 91 | PhoneAccountHandle accountHandle = request.getAccountHandle(); |
| 92 | if (accountHandle == null) { |
| 93 | throw new IllegalArgumentException("accountHandle must be specified."); |
| 94 | } |
| 95 | |
| 96 | ComponentName componentName = request.getAccountHandle().getComponentName(); |
Mateus Azis | ddcbe63 | 2023-08-16 09:31:20 -0700 | [diff] [blame] | 97 | RemoteConnectionService remoteService = mRemoteConnectionServices.get(componentName); |
| 98 | if (remoteService == null) { |
Grace Jia | 9a09c67 | 2020-08-04 12:52:09 -0700 | [diff] [blame] | 99 | throw new UnsupportedOperationException("accountHandle not supported: " |
| 100 | + componentName); |
| 101 | } |
| 102 | |
Mateus Azis | ddcbe63 | 2023-08-16 09:31:20 -0700 | [diff] [blame] | 103 | return remoteService.createRemoteConference( |
| 104 | connectionManagerPhoneAccount, request, isIncoming); |
Grace Jia | 9a09c67 | 2020-08-04 12:52:09 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Ihab Awad | b8e85c7 | 2014-08-23 20:34:57 -0700 | [diff] [blame] | 107 | public void conferenceRemoteConnections(RemoteConnection a, RemoteConnection b) { |
| 108 | if (a.getConnectionService() == b.getConnectionService()) { |
| 109 | try { |
Brad Ebinger | b32d4f8 | 2016-10-24 16:40:49 -0700 | [diff] [blame] | 110 | a.getConnectionService().conference(a.getId(), b.getId(), null /*Session.Info*/); |
Ihab Awad | b8e85c7 | 2014-08-23 20:34:57 -0700 | [diff] [blame] | 111 | } catch (RemoteException e) { |
| 112 | } |
| 113 | } else { |
| 114 | Log.w(this, "Request to conference incompatible remote connections (%s,%s) (%s,%s)", |
| 115 | a.getConnectionService(), a.getId(), |
| 116 | b.getConnectionService(), b.getId()); |
| 117 | } |
| 118 | } |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 119 | } |