diff options
Diffstat (limited to 'telecomm/java/android/telecomm/ConnectionRequest.java')
-rw-r--r-- | telecomm/java/android/telecomm/ConnectionRequest.java | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/telecomm/java/android/telecomm/ConnectionRequest.java b/telecomm/java/android/telecomm/ConnectionRequest.java new file mode 100644 index 000000000000..bf5727bd0dd3 --- /dev/null +++ b/telecomm/java/android/telecomm/ConnectionRequest.java @@ -0,0 +1,107 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.telecomm; + +import android.os.Bundle; +import android.net.Uri; +import android.os.Parcel; +import android.os.Parcelable; + +/** + * Simple data container encapsulating a request to some entity to + * create a new {@link Connection}. + */ +public final class ConnectionRequest implements Parcelable { + + // TODO: Token to limit recursive invocations + // TODO: Consider upgrading "mHandle" to ordered list of handles, indicating a set of phone + // numbers that would satisfy the client's needs, in order of preference + private final String mCallId; + private final Uri mHandle; + private final Bundle mExtras; + + public ConnectionRequest(Uri handle, Bundle extras) { + this(null, handle, extras); + } + + public ConnectionRequest(String callId, Uri handle, Bundle extras) { + mCallId = callId; + mHandle = handle; + mExtras = extras; + } + + /** + * An identifier for this call. + */ + public String getCallId() { return mCallId; } + + /** + * The handle (e.g., phone number) to which the {@link Connection} is to connect. + */ + public Uri getHandle() { return mHandle; } + + /** + * Application-specific extra data. Used for passing back information from an incoming + * call {@code Intent}, and for any proprietary extensions arranged between a client + * and servant {@code ConnectionService} which agree on a vocabulary for such data. + */ + public Bundle getExtras() { return mExtras; } + + public String toString() { + return String.format("PhoneConnectionRequest %s %s", + mHandle == null + ? Uri.EMPTY + : ConnectionService.toLogSafePhoneNumber(mHandle.toString()), + mExtras == null ? "" : mExtras); + } + + /** + * Responsible for creating CallInfo objects for deserialized Parcels. + */ + public static final Parcelable.Creator<ConnectionRequest> CREATOR = + new Parcelable.Creator<ConnectionRequest> () { + @Override + public ConnectionRequest createFromParcel(Parcel source) { + String callId = source.readString(); + Uri handle = (Uri) source.readParcelable(getClass().getClassLoader()); + Bundle extras = (Bundle) source.readParcelable(getClass().getClassLoader()); + return new ConnectionRequest(callId, handle, extras); + } + + @Override + public ConnectionRequest[] newArray(int size) { + return new ConnectionRequest[size]; + } + }; + + /** + * {@inheritDoc} + */ + @Override + public int describeContents() { + return 0; + } + + /** + * Writes CallInfo object into a serializeable Parcel. + */ + @Override + public void writeToParcel(Parcel destination, int flags) { + destination.writeString(mCallId); + destination.writeParcelable(mHandle, 0); + destination.writeParcelable(mExtras, 0); + }} |