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