blob: 752c92bbca2aedd4fe7c0bf2f261cfa6bec0658f [file] [log] [blame]
/*
* Copyright (C) 2018 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.app.prediction;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.annotation.TestApi;
import android.content.pm.ShortcutInfo;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.UserHandle;
import com.android.internal.util.Preconditions;
/**
* A representation of a launchable target.
* @hide
*/
@SystemApi
@TestApi
public final class AppTarget implements Parcelable {
private final AppTargetId mId;
private final String mPackageName;
private final String mClassName;
private final UserHandle mUser;
private final ShortcutInfo mShortcutInfo;
private int mRank;
/**
* TODO(b/123591863): Add java docs
*
* @hide
*/
@SystemApi
@TestApi
public AppTarget(@NonNull AppTargetId id, @NonNull String packageName,
@Nullable String className, @NonNull UserHandle user) {
mId = id;
mShortcutInfo = null;
mPackageName = Preconditions.checkNotNull(packageName);
mClassName = className;
mUser = Preconditions.checkNotNull(user);
}
/**
* TODO(b/123591863): Add java docs
*
* @hide
*/
@SystemApi
public AppTarget(@NonNull AppTargetId id, @NonNull ShortcutInfo shortcutInfo,
@Nullable String className) {
mId = id;
mShortcutInfo = Preconditions.checkNotNull(shortcutInfo);
mPackageName = mShortcutInfo.getPackage();
mUser = mShortcutInfo.getUserHandle();
mClassName = className;
}
private AppTarget(Parcel parcel) {
mId = parcel.readTypedObject(AppTargetId.CREATOR);
mShortcutInfo = parcel.readTypedObject(ShortcutInfo.CREATOR);
if (mShortcutInfo == null) {
mPackageName = parcel.readString();
mUser = UserHandle.of(parcel.readInt());
} else {
mPackageName = mShortcutInfo.getPackage();
mUser = mShortcutInfo.getUserHandle();
}
mClassName = parcel.readString();
mRank = parcel.readInt();
}
/**
* Returns the target id.
*/
@NonNull
public AppTargetId getId() {
return mId;
}
/**
* Returns the class name for the app target.
*/
@Nullable
public String getClassName() {
return mClassName;
}
/**
* Returns the package name for the app target.
*/
@NonNull
public String getPackageName() {
return mPackageName;
}
/**
* Returns the user for the app target.
*/
@NonNull
public UserHandle getUser() {
return mUser;
}
/**
* Returns the shortcut info for the target.
*/
@Nullable
public ShortcutInfo getShortcutInfo() {
return mShortcutInfo;
}
/**
* Sets the rank of the for the target.
* @hide
*/
public void setRank(int rank) {
mRank = rank;
}
/**
* Returns the rank for the target.
*/
public int getRank() {
return mRank;
}
@Override
public boolean equals(Object o) {
if (!getClass().equals(o != null ? o.getClass() : null)) return false;
AppTarget other = (AppTarget) o;
boolean sameClassName = (mClassName == null && other.mClassName == null)
|| (mClassName != null && mClassName.equals(other.mClassName));
boolean sameShortcutInfo = (mShortcutInfo == null && other.mShortcutInfo == null)
|| (mShortcutInfo != null && other.mShortcutInfo != null
&& mShortcutInfo.getId() == other.mShortcutInfo.getId());
return mId.equals(other.mId)
&& mPackageName.equals(other.mPackageName)
&& sameClassName
&& mUser.equals(other.mUser)
&& sameShortcutInfo
&& mRank == other.mRank;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeTypedObject(mId, flags);
dest.writeTypedObject(mShortcutInfo, flags);
if (mShortcutInfo == null) {
dest.writeString(mPackageName);
dest.writeInt(mUser.getIdentifier());
}
dest.writeString(mClassName);
dest.writeInt(mRank);
}
/**
* @see Parcelable.Creator
*/
public static final @android.annotation.NonNull Parcelable.Creator<AppTarget> CREATOR =
new Parcelable.Creator<AppTarget>() {
public AppTarget createFromParcel(Parcel parcel) {
return new AppTarget(parcel);
}
public AppTarget[] newArray(int size) {
return new AppTarget[size];
}
};
}