blob: 7b6968de187d1f31da38db075c8613c01b5c91cf [file] [log] [blame]
/*
* Copyright (C) 2015 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.core.app;
import android.os.Build;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/**
* Helper for accessing features in {@link Bundle}.
*/
public final class BundleCompat {
static class BundleCompatBaseImpl {
private static final String TAG = "BundleCompatBaseImpl";
private static Method sGetIBinderMethod;
private static boolean sGetIBinderMethodFetched;
private static Method sPutIBinderMethod;
private static boolean sPutIBinderMethodFetched;
private BundleCompatBaseImpl() {
}
public static IBinder getBinder(Bundle bundle, String key) {
if (!sGetIBinderMethodFetched) {
try {
sGetIBinderMethod = Bundle.class.getMethod("getIBinder", String.class);
sGetIBinderMethod.setAccessible(true);
} catch (NoSuchMethodException e) {
Log.i(TAG, "Failed to retrieve getIBinder method", e);
}
sGetIBinderMethodFetched = true;
}
if (sGetIBinderMethod != null) {
try {
return (IBinder) sGetIBinderMethod.invoke(bundle, key);
} catch (InvocationTargetException | IllegalAccessException
| IllegalArgumentException e) {
Log.i(TAG, "Failed to invoke getIBinder via reflection", e);
sGetIBinderMethod = null;
}
}
return null;
}
public static void putBinder(Bundle bundle, String key, IBinder binder) {
if (!sPutIBinderMethodFetched) {
try {
sPutIBinderMethod =
Bundle.class.getMethod("putIBinder", String.class, IBinder.class);
sPutIBinderMethod.setAccessible(true);
} catch (NoSuchMethodException e) {
Log.i(TAG, "Failed to retrieve putIBinder method", e);
}
sPutIBinderMethodFetched = true;
}
if (sPutIBinderMethod != null) {
try {
sPutIBinderMethod.invoke(bundle, key, binder);
} catch (InvocationTargetException | IllegalAccessException
| IllegalArgumentException e) {
Log.i(TAG, "Failed to invoke putIBinder via reflection", e);
sPutIBinderMethod = null;
}
}
}
}
private BundleCompat() {}
/**
* A convenience method to handle getting an {@link IBinder} inside a {@link Bundle} for all
* Android versions.
* @param bundle The bundle to get the {@link IBinder}.
* @param key The key to use while getting the {@link IBinder}.
* @return The {@link IBinder} that was obtained.
*/
@Nullable
public static IBinder getBinder(@NonNull Bundle bundle, @Nullable String key) {
if (Build.VERSION.SDK_INT >= 18) {
return bundle.getBinder(key);
} else {
return BundleCompatBaseImpl.getBinder(bundle, key);
}
}
/**
* A convenience method to handle putting an {@link IBinder} inside a {@link Bundle} for all
* Android versions.
* @param bundle The bundle to insert the {@link IBinder}.
* @param key The key to use while putting the {@link IBinder}.
* @param binder The {@link IBinder} to put.
*/
public static void putBinder(@NonNull Bundle bundle, @Nullable String key,
@Nullable IBinder binder) {
if (Build.VERSION.SDK_INT >= 18) {
bundle.putBinder(key, binder);
} else {
BundleCompatBaseImpl.putBinder(bundle, key, binder);
}
}
}