blob: 9d210cd82c2354458408650e1f8b7aaf624e1817 [file] [log] [blame]
/*
* Copyright (C) 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 android.service.quickaccesswallet;
import android.annotation.NonNull;
import android.os.Handler;
import android.os.RemoteException;
import android.util.Log;
/**
* Handles response from the {@link QuickAccessWalletService} for {@link GetWalletCardsRequest}
*/
public final class GetWalletCardsCallback {
private static final String TAG = "QAWalletCallback";
private final IQuickAccessWalletServiceCallbacks mCallback;
private final Handler mHandler;
private boolean mCalled;
/**
* @hide
*/
GetWalletCardsCallback(IQuickAccessWalletServiceCallbacks callback, Handler handler) {
mCallback = callback;
mHandler = handler;
}
/**
* Notifies the Android System that an {@link QuickAccessWalletService#onWalletCardsRequested}
* was successfully handled by the service.
*
* @param response The response contains the list of {@link WalletCard walletCards} to be shown
* to the user as well as the index of the card that should initially be
* presented as the selected card.
*/
public void onSuccess(@NonNull GetWalletCardsResponse response) {
mHandler.post(() -> onSuccessInternal(response));
}
/**
* Notifies the Android System that an {@link QuickAccessWalletService#onWalletCardsRequested}
* could not be handled by the service.
*
* @param error The error message. <b>Note: </b> this message should <b>not</b> contain PII
* (Personally Identifiable Information, such as username or email address).
* @throws IllegalStateException if this method or {@link #onSuccess} was already called.
*/
public void onFailure(@NonNull GetWalletCardsError error) {
mHandler.post(() -> onFailureInternal(error));
}
private void onSuccessInternal(GetWalletCardsResponse response) {
if (mCalled) {
Log.w(TAG, "already called");
return;
}
mCalled = true;
try {
mCallback.onGetWalletCardsSuccess(response);
} catch (RemoteException e) {
Log.e(TAG, "Error returning wallet cards", e);
}
}
private void onFailureInternal(GetWalletCardsError error) {
if (mCalled) {
Log.w(TAG, "already called");
return;
}
mCalled = true;
try {
mCallback.onGetWalletCardsFailure(error);
} catch (RemoteException e) {
Log.e(TAG, "Error returning failure message", e);
}
}
}