| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -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 | * limitations under the License. |
| 15 | */ |
| 16 | |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 18 | |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 19 | import android.net.Uri; |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 20 | import android.os.Bundle; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 21 | import android.os.Parcel; |
| 22 | import android.os.Parcelable; |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 23 | |
| 24 | /** |
| 25 | * Simple data container encapsulating a request to some entity to |
| 26 | * create a new {@link Connection}. |
| 27 | */ |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 28 | public final class ConnectionRequest implements Parcelable { |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 29 | |
| 30 | // TODO: Token to limit recursive invocations |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 31 | private final PhoneAccountHandle mAccountHandle; |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 32 | private final Uri mAddress; |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 33 | private final Bundle mExtras; |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 34 | private final int mVideoState; |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 35 | private final String mTelecomCallId; |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 36 | |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 37 | /** |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 38 | * @param accountHandle The accountHandle which should be used to place the call. |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 39 | * @param handle The handle (e.g., phone number) to which the {@link Connection} is to connect. |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 40 | * @param extras Application-specific extra data. |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 41 | */ |
| 42 | public ConnectionRequest( |
| 43 | PhoneAccountHandle accountHandle, |
| 44 | Uri handle, |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 45 | Bundle extras) { |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 46 | this(accountHandle, handle, extras, VideoProfile.STATE_AUDIO_ONLY, null); |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | /** |
| 50 | * @param accountHandle The accountHandle which should be used to place the call. |
| 51 | * @param handle The handle (e.g., phone number) to which the {@link Connection} is to connect. |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 52 | * @param extras Application-specific extra data. |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 53 | * @param videoState Determines the video state for the connection. |
| 54 | */ |
| 55 | public ConnectionRequest( |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 56 | PhoneAccountHandle accountHandle, |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 57 | Uri handle, |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 58 | Bundle extras, |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 59 | int videoState) { |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 60 | this(accountHandle, handle, extras, videoState, null); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * @param accountHandle The accountHandle which should be used to place the call. |
| 65 | * @param handle The handle (e.g., phone number) to which the {@link Connection} is to connect. |
| 66 | * @param extras Application-specific extra data. |
| 67 | * @param videoState Determines the video state for the connection. |
| 68 | * @param telecomCallId The telecom call ID. |
| 69 | * @hide |
| 70 | */ |
| 71 | public ConnectionRequest( |
| 72 | PhoneAccountHandle accountHandle, |
| 73 | Uri handle, |
| 74 | Bundle extras, |
| 75 | int videoState, |
| 76 | String telecomCallId) { |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 77 | mAccountHandle = accountHandle; |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 78 | mAddress = handle; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 79 | mExtras = extras; |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 80 | mVideoState = videoState; |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 81 | mTelecomCallId = telecomCallId; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 84 | private ConnectionRequest(Parcel in) { |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 85 | mAccountHandle = in.readParcelable(getClass().getClassLoader()); |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 86 | mAddress = in.readParcelable(getClass().getClassLoader()); |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 87 | mExtras = in.readParcelable(getClass().getClassLoader()); |
| 88 | mVideoState = in.readInt(); |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 89 | mTelecomCallId = in.readString(); |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 92 | /** |
| Ihab Awad | 9c3f188 | 2014-06-30 21:17:13 -0700 | [diff] [blame] | 93 | * The account which should be used to place the call. |
| Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 94 | */ |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 95 | public PhoneAccountHandle getAccountHandle() { return mAccountHandle; } |
| Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 96 | |
| 97 | /** |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 98 | * The handle (e.g., phone number) to which the {@link Connection} is to connect. |
| 99 | */ |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 100 | public Uri getAddress() { return mAddress; } |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 101 | |
| 102 | /** |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 103 | * Application-specific extra data. Used for passing back information from an incoming |
| 104 | * call {@code Intent}, and for any proprietary extensions arranged between a client |
| 105 | * and servant {@code ConnectionService} which agree on a vocabulary for such data. |
| 106 | */ |
| 107 | public Bundle getExtras() { return mExtras; } |
| 108 | |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 109 | /** |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 110 | * Describes the video states supported by the client requesting the connection. |
| Yorke Lee | 32f2473 | 2015-05-12 16:18:03 -0700 | [diff] [blame] | 111 | * Valid values: {@link VideoProfile#STATE_AUDIO_ONLY}, |
| 112 | * {@link VideoProfile#STATE_BIDIRECTIONAL}, |
| 113 | * {@link VideoProfile#STATE_TX_ENABLED}, |
| 114 | * {@link VideoProfile#STATE_RX_ENABLED}. |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 115 | * |
| 116 | * @return The video state for the connection. |
| 117 | */ |
| 118 | public int getVideoState() { |
| 119 | return mVideoState; |
| 120 | } |
| 121 | |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 122 | /** |
| 123 | * Returns the internal Telecom ID associated with the connection request. |
| 124 | * |
| 125 | * @return The Telecom ID. |
| 126 | * @hide |
| 127 | */ |
| 128 | public String getTelecomCallId() { |
| 129 | return mTelecomCallId; |
| 130 | } |
| 131 | |
| Evan Charlton | bf11f98 | 2014-07-20 22:06:28 -0700 | [diff] [blame] | 132 | @Override |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 133 | public String toString() { |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 134 | return String.format("ConnectionRequest %s %s", |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 135 | mAddress == null |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 136 | ? Uri.EMPTY |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 137 | : Connection.toLogSafePhoneNumber(mAddress.toString()), |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 138 | mExtras == null ? "" : mExtras); |
| 139 | } |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 140 | |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 141 | public static final Creator<ConnectionRequest> CREATOR = new Creator<ConnectionRequest> () { |
| 142 | @Override |
| 143 | public ConnectionRequest createFromParcel(Parcel source) { |
| 144 | return new ConnectionRequest(source); |
| 145 | } |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 146 | |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 147 | @Override |
| 148 | public ConnectionRequest[] newArray(int size) { |
| 149 | return new ConnectionRequest[size]; |
| 150 | } |
| 151 | }; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 152 | |
| 153 | /** |
| 154 | * {@inheritDoc} |
| 155 | */ |
| 156 | @Override |
| 157 | public int describeContents() { |
| 158 | return 0; |
| 159 | } |
| 160 | |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 161 | @Override |
| 162 | public void writeToParcel(Parcel destination, int flags) { |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 163 | destination.writeParcelable(mAccountHandle, 0); |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 164 | destination.writeParcelable(mAddress, 0); |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 165 | destination.writeParcelable(mExtras, 0); |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 166 | destination.writeInt(mVideoState); |
| Tyler Gunn | f0500bd | 2015-09-01 10:59:48 -0700 | [diff] [blame] | 167 | destination.writeString(mTelecomCallId); |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 168 | } |
| 169 | } |