[go: nahoru, domu]

blob: f29bb662d7bb425687f4b551c1c59662e2207aeb [file] [log] [blame]
/*
* Copyright 2020 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 androidx.appsearch.app;
import androidx.annotation.IntDef;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.util.ObjectsCompat;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Information about the success or failure of an AppSearch call.
*
* @param <ValueType> The type of result object for successful calls.
*/
public final class AppSearchResult<ValueType> {
/**
* Result codes from {@link AppSearchManager} methods.
* @hide
*/
@IntDef(value = {
RESULT_OK,
RESULT_UNKNOWN_ERROR,
RESULT_INTERNAL_ERROR,
RESULT_INVALID_ARGUMENT,
RESULT_IO_ERROR,
RESULT_OUT_OF_SPACE,
RESULT_NOT_FOUND,
RESULT_INVALID_SCHEMA,
})
@Retention(RetentionPolicy.SOURCE)
public @interface ResultCode {}
/** The call was successful. */
public static final int RESULT_OK = 0;
/** An unknown error occurred while processing the call. */
public static final int RESULT_UNKNOWN_ERROR = 1;
/**
* An internal error occurred within AppSearch, which the caller cannot address.
*
* This error may be considered similar to {@link IllegalStateException}
*/
public static final int RESULT_INTERNAL_ERROR = 2;
/**
* The caller supplied invalid arguments to the call.
*
* This error may be considered similar to {@link IllegalArgumentException}.
*/
public static final int RESULT_INVALID_ARGUMENT = 3;
/**
* An issue occurred reading or writing to storage. The call might succeed if repeated.
*
* This error may be considered similar to {@link java.io.IOException}.
*/
public static final int RESULT_IO_ERROR = 4;
/** Storage is out of space, and no more space could be reclaimed. */
public static final int RESULT_OUT_OF_SPACE = 5;
/** An entity the caller requested to interact with does not exist in the system. */
public static final int RESULT_NOT_FOUND = 6;
/** The caller supplied a schema which is invalid or incompatible with the previous schema. */
public static final int RESULT_INVALID_SCHEMA = 7;
private final @ResultCode int mResultCode;
@Nullable private final ValueType mResultValue;
@Nullable private final String mErrorMessage;
private AppSearchResult(
@ResultCode int resultCode,
@Nullable ValueType resultValue,
@Nullable String errorMessage) {
mResultCode = resultCode;
mResultValue = resultValue;
mErrorMessage = errorMessage;
}
/** Returns {@code true} if {@link #getResultCode} equals {@link AppSearchResult#RESULT_OK}. */
public boolean isSuccess() {
return getResultCode() == RESULT_OK;
}
/** Returns one of the {@code RESULT} constants defined in {@link AppSearchResult}. */
public @ResultCode int getResultCode() {
return mResultCode;
}
/**
* Returns the result value associated with this result, if it was successful.
*
* <p>See the documentation of the particular {@code AppSearchManager} call producing this
* {@link AppSearchResult} for what is placed in the result value by that call.
*
* @throws IllegalStateException if this {@link AppSearchResult} is not successful.
*/
// TODO(b/157082794): Linkify AppSearchManager once that API is public
@Nullable
public ValueType getResultValue() {
if (!isSuccess()) {
throw new IllegalStateException("AppSearchResult is a failure: " + this);
}
return mResultValue;
}
/**
* Returns the error message associated with this result.
*
* <p>If {@link #isSuccess} is {@code true}, the error message is always {@code null}. The error
* message may be {@code null} even if {@link #isSuccess} is {@code false}. See the
* documentation of the particular {@code AppSearchManager} call producing this
* {@link AppSearchResult} for what is returned by {@link #getErrorMessage}.
*/
// TODO(b/157082794): Linkify AppSearchManager once that API is public
@Nullable
public String getErrorMessage() {
return mErrorMessage;
}
@Override
public boolean equals(@Nullable Object other) {
if (this == other) {
return true;
}
if (!(other instanceof AppSearchResult)) {
return false;
}
AppSearchResult<?> otherResult = (AppSearchResult<?>) other;
return mResultCode == otherResult.mResultCode
&& ObjectsCompat.equals(mResultValue, otherResult.mResultValue)
&& ObjectsCompat.equals(mErrorMessage, otherResult.mErrorMessage);
}
@Override
public int hashCode() {
return ObjectsCompat.hash(mResultCode, mResultValue, mErrorMessage);
}
@Override
@NonNull
public String toString() {
if (isSuccess()) {
return "[SUCCESS]: " + mResultValue;
}
return "[FAILURE(" + mResultCode + ")]: " + mErrorMessage;
}
/**
* Creates a new successful {@link AppSearchResult}.
* @hide
*/
@NonNull
public static <ValueType> AppSearchResult<ValueType> newSuccessfulResult(
@Nullable ValueType value) {
return new AppSearchResult<>(RESULT_OK, value, /*errorMessage=*/ null);
}
/**
* Creates a new failed {@link AppSearchResult}.
* @hide
*/
@NonNull
public static <ValueType> AppSearchResult<ValueType> newFailedResult(
@ResultCode int resultCode, @Nullable String errorMessage) {
return new AppSearchResult<>(resultCode, /*resultValue=*/ null, errorMessage);
}
}