| 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; |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 35 | |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 36 | /** |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 37 | * @param accountHandle The accountHandle which should be used to place the call. |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 38 | * @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] | 39 | * @param extras Application-specific extra data. |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 40 | */ |
| 41 | public ConnectionRequest( |
| 42 | PhoneAccountHandle accountHandle, |
| 43 | Uri handle, |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 44 | Bundle extras) { |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 45 | this(accountHandle, handle, extras, VideoProfile.VideoState.AUDIO_ONLY); |
| Tyler Gunn | be74de0 | 2014-08-29 14:51:48 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | /** |
| 49 | * @param accountHandle The accountHandle which should be used to place the call. |
| 50 | * @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] | 51 | * @param extras Application-specific extra data. |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 52 | * @param videoState Determines the video state for the connection. |
| 53 | */ |
| 54 | public ConnectionRequest( |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 55 | PhoneAccountHandle accountHandle, |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 56 | Uri handle, |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 57 | Bundle extras, |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 58 | int videoState) { |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 59 | mAccountHandle = accountHandle; |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 60 | mAddress = handle; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 61 | mExtras = extras; |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 62 | mVideoState = videoState; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 65 | private ConnectionRequest(Parcel in) { |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 66 | mAccountHandle = in.readParcelable(getClass().getClassLoader()); |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 67 | mAddress = in.readParcelable(getClass().getClassLoader()); |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 68 | mExtras = in.readParcelable(getClass().getClassLoader()); |
| 69 | mVideoState = in.readInt(); |
| 70 | } |
| 71 | |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 72 | /** |
| Ihab Awad | 9c3f188 | 2014-06-30 21:17:13 -0700 | [diff] [blame] | 73 | * The account which should be used to place the call. |
| Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 74 | */ |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 75 | public PhoneAccountHandle getAccountHandle() { return mAccountHandle; } |
| Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 76 | |
| 77 | /** |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 78 | * The handle (e.g., phone number) to which the {@link Connection} is to connect. |
| 79 | */ |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 80 | public Uri getAddress() { return mAddress; } |
| Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 81 | |
| 82 | /** |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 83 | * Application-specific extra data. Used for passing back information from an incoming |
| 84 | * call {@code Intent}, and for any proprietary extensions arranged between a client |
| 85 | * and servant {@code ConnectionService} which agree on a vocabulary for such data. |
| 86 | */ |
| 87 | public Bundle getExtras() { return mExtras; } |
| 88 | |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 89 | /** |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 90 | * Describes the video states supported by the client requesting the connection. |
| Yorke Lee | 32f2473 | 2015-05-12 16:18:03 -0700 | [diff] [blame] | 91 | * Valid values: {@link VideoProfile#STATE_AUDIO_ONLY}, |
| 92 | * {@link VideoProfile#STATE_BIDIRECTIONAL}, |
| 93 | * {@link VideoProfile#STATE_TX_ENABLED}, |
| 94 | * {@link VideoProfile#STATE_RX_ENABLED}. |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 95 | * |
| 96 | * @return The video state for the connection. |
| 97 | */ |
| 98 | public int getVideoState() { |
| 99 | return mVideoState; |
| 100 | } |
| 101 | |
| Evan Charlton | bf11f98 | 2014-07-20 22:06:28 -0700 | [diff] [blame] | 102 | @Override |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 103 | public String toString() { |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 104 | return String.format("ConnectionRequest %s %s", |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 105 | mAddress == null |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 106 | ? Uri.EMPTY |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 107 | : Connection.toLogSafePhoneNumber(mAddress.toString()), |
| Ihab Awad | 542e0ea | 2014-05-16 10:22:16 -0700 | [diff] [blame] | 108 | mExtras == null ? "" : mExtras); |
| 109 | } |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 110 | |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 111 | public static final Creator<ConnectionRequest> CREATOR = new Creator<ConnectionRequest> () { |
| 112 | @Override |
| 113 | public ConnectionRequest createFromParcel(Parcel source) { |
| 114 | return new ConnectionRequest(source); |
| 115 | } |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 116 | |
| Sailesh Nepal | c5b0157 | 2014-07-14 16:29:44 -0700 | [diff] [blame] | 117 | @Override |
| 118 | public ConnectionRequest[] newArray(int size) { |
| 119 | return new ConnectionRequest[size]; |
| 120 | } |
| 121 | }; |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 122 | |
| 123 | /** |
| 124 | * {@inheritDoc} |
| 125 | */ |
| 126 | @Override |
| 127 | public int describeContents() { |
| 128 | return 0; |
| 129 | } |
| 130 | |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 131 | @Override |
| 132 | public void writeToParcel(Parcel destination, int flags) { |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 133 | destination.writeParcelable(mAccountHandle, 0); |
| Nancy Chen | ea38cca | 2014-09-05 16:38:49 -0700 | [diff] [blame] | 134 | destination.writeParcelable(mAddress, 0); |
| Ihab Awad | fbb092f | 2014-06-03 18:40:45 -0700 | [diff] [blame] | 135 | destination.writeParcelable(mExtras, 0); |
| Tyler Gunn | 12013ad | 2014-07-08 14:04:58 -0700 | [diff] [blame] | 136 | destination.writeInt(mVideoState); |
| 137 | } |
| 138 | } |