All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.androidannotations.api.sharedpreferences.SharedPreferencesCompat Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2010-2016 eBusiness Information, Excilys Group
 *
 * 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 org.androidannotations.api.sharedpreferences;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Set;

import android.content.SharedPreferences;

/**
 * Reflection utils to call most efficient methods of SharedPreferences and
 * SharedPreferences$Editor or fall back to another implementations.
 */
public abstract class SharedPreferencesCompat {

	private SharedPreferencesCompat() {
	}

	private static final Method APPLY_METHOD = findMethod(SharedPreferences.Editor.class, "apply");
	private static final Method GET_STRING_SET_METHOD = findMethod(SharedPreferences.class, "getStringSet", String.class, Set.class);
	private static final Method PUT_STRING_SET_METHOD = findMethod(SharedPreferences.Editor.class, "putStringSet", String.class, Set.class);

	public static void apply(SharedPreferences.Editor editor) {
		try {
			invoke(APPLY_METHOD, editor);
			return;
		} catch (NoSuchMethodException e) {
			editor.commit();
		}
	}

	public static Set getStringSet(SharedPreferences preferences, String key, Set defValues) {
		try {
			return invoke(GET_STRING_SET_METHOD, preferences, key, defValues);
		} catch (NoSuchMethodException e) {
			String serializedSet = preferences.getString(key, null);
			if (serializedSet == null) {
				return defValues;
			}
			return SetXmlSerializer.deserialize(serializedSet);
		}
	}

	public static void putStringSet(SharedPreferences.Editor editor, String key, Set values) {
		try {
			invoke(PUT_STRING_SET_METHOD, editor, key, values);
		} catch (NoSuchMethodException e1) {
			editor.putString(key, SetXmlSerializer.serialize(values));
		}
	}

	private static Method findMethod(Class clazz, String name, Class... parameterTypes) {
		try {
			return clazz.getMethod(name, parameterTypes);
		} catch (NoSuchMethodException unused) {
			// fall through
		}
		return null;
	}

	@SuppressWarnings("unchecked")
	public static  T invoke(Method method, Object obj, Object... args) throws NoSuchMethodException {
		if (method == null) {
			throw new NoSuchMethodException();
		}

		try {
			return (T) method.invoke(obj, args);
		} catch (IllegalAccessException | InvocationTargetException | IllegalArgumentException e) {
			// fall through
		}

		throw new NoSuchMethodException(method.getName());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy