2021-01-10 23:37:09 +01:00
|
|
|
/* Copyright (C) 2016-2021 Carsten Pfeiffer, JohnnySun
|
2017-03-10 14:53:19 +01:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2016-04-25 23:18:55 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.util;
|
|
|
|
|
|
|
|
import android.content.SharedPreferences;
|
2016-05-08 21:39:23 +02:00
|
|
|
import android.util.Log;
|
2016-04-25 23:18:55 +02:00
|
|
|
|
2017-08-01 00:10:10 +02:00
|
|
|
import java.util.HashSet;
|
2016-04-25 23:18:55 +02:00
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wraps SharedPreferences to avoid ClassCastExceptions and others.
|
|
|
|
*/
|
|
|
|
public class Prefs {
|
2016-05-08 21:39:23 +02:00
|
|
|
private static final String TAG = "Prefs";
|
|
|
|
// DO NOT use slf4j logger here, this would break its configuration via GBApplication
|
|
|
|
// private static final Logger LOG = LoggerFactory.getLogger(Prefs.class);
|
2016-04-25 23:18:55 +02:00
|
|
|
|
|
|
|
private final SharedPreferences preferences;
|
|
|
|
|
|
|
|
public Prefs(SharedPreferences preferences) {
|
|
|
|
this.preferences = preferences;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getString(String key, String defaultValue) {
|
|
|
|
String value = preferences.getString(key, defaultValue);
|
|
|
|
if (value == null || "".equals(value)) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Set<String> getStringSet(String key, Set<String> defaultValue) {
|
|
|
|
Set<String> value = preferences.getStringSet(key, defaultValue);
|
|
|
|
if (value == null || value.isEmpty()) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2016-04-26 00:02:35 +02:00
|
|
|
/**
|
|
|
|
* Returns the preference saved under the given key as an integer value.
|
|
|
|
* Note that it is irrelevant whether the preference value was actually
|
|
|
|
* saved as an integer value or a string value.
|
|
|
|
* @param key the preference key
|
|
|
|
* @param defaultValue the default value to return if the preference value is unset
|
|
|
|
* @return the saved preference value or the given defaultValue
|
|
|
|
*/
|
2016-04-25 23:18:55 +02:00
|
|
|
public int getInt(String key, int defaultValue) {
|
|
|
|
try {
|
|
|
|
return preferences.getInt(key, defaultValue);
|
|
|
|
} catch (Exception ex) {
|
|
|
|
try {
|
|
|
|
String value = preferences.getString(key, String.valueOf(defaultValue));
|
|
|
|
if ("".equals(value)) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
return Integer.parseInt(value);
|
|
|
|
} catch (Exception ex2) {
|
|
|
|
logReadError(key, ex);
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-26 00:02:35 +02:00
|
|
|
/**
|
|
|
|
* Returns the preference saved under the given key as a long value.
|
|
|
|
* Note that it is irrelevant whether the preference value was actually
|
|
|
|
* saved as a long value or a string value.
|
|
|
|
* @param key the preference key
|
|
|
|
* @param defaultValue the default value to return if the preference value is unset
|
|
|
|
* @return the saved preference value or the given defaultValue
|
|
|
|
*/
|
2016-04-25 23:18:55 +02:00
|
|
|
public long getLong(String key, long defaultValue) {
|
|
|
|
try {
|
|
|
|
return preferences.getLong(key, defaultValue);
|
|
|
|
} catch (Exception ex) {
|
|
|
|
try {
|
|
|
|
String value = preferences.getString(key, String.valueOf(defaultValue));
|
|
|
|
if ("".equals(value)) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
return Long.parseLong(value);
|
|
|
|
} catch (Exception ex2) {
|
|
|
|
logReadError(key, ex);
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-26 00:02:35 +02:00
|
|
|
/**
|
|
|
|
* Returns the preference saved under the given key as a float value.
|
|
|
|
* Note that it is irrelevant whether the preference value was actually
|
|
|
|
* saved as a float value or a string value.
|
|
|
|
* @param key the preference key
|
|
|
|
* @param defaultValue the default value to return if the preference value is unset
|
|
|
|
* @return the saved preference value or the given defaultValue
|
|
|
|
*/
|
2016-04-25 23:18:55 +02:00
|
|
|
public float getFloat(String key, float defaultValue) {
|
|
|
|
try {
|
|
|
|
return preferences.getFloat(key, defaultValue);
|
|
|
|
} catch (Exception ex) {
|
|
|
|
try {
|
|
|
|
String value = preferences.getString(key, String.valueOf(defaultValue));
|
|
|
|
if ("".equals(value)) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
return Float.parseFloat(value);
|
|
|
|
} catch (Exception ex2) {
|
|
|
|
logReadError(key, ex);
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-26 00:02:35 +02:00
|
|
|
/**
|
|
|
|
* Returns the preference saved under the given key as a boolean value.
|
|
|
|
* Note that it is irrelevant whether the preference value was actually
|
|
|
|
* saved as a boolean value or a string value.
|
|
|
|
* @param key the preference key
|
|
|
|
* @param defaultValue the default value to return if the preference value is unset
|
|
|
|
* @return the saved preference value or the given defaultValue
|
|
|
|
*/
|
2016-04-25 23:18:55 +02:00
|
|
|
public boolean getBoolean(String key, boolean defaultValue) {
|
|
|
|
try {
|
|
|
|
return preferences.getBoolean(key, defaultValue);
|
|
|
|
} catch (Exception ex) {
|
|
|
|
try {
|
|
|
|
String value = preferences.getString(key, String.valueOf(defaultValue));
|
|
|
|
if ("".equals(value)) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
return Boolean.parseBoolean(value);
|
|
|
|
} catch (Exception ex2) {
|
|
|
|
logReadError(key, ex);
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void logReadError(String key, Exception ex) {
|
2016-05-08 21:39:23 +02:00
|
|
|
Log.e(TAG, "Error reading preference value: " + key + "; returning default value", ex); // log the first exception
|
2016-04-25 23:18:55 +02:00
|
|
|
}
|
2016-04-25 23:45:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Access to the underlying SharedPreferences, typically only used for editing values.
|
|
|
|
* @return the underlying SharedPreferences object.
|
|
|
|
*/
|
|
|
|
public SharedPreferences getPreferences() {
|
|
|
|
return preferences;
|
|
|
|
}
|
2017-08-01 00:10:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ugly workaround for Set<String> preferences not consistently applying.
|
|
|
|
* @param editor
|
|
|
|
* @param preference
|
|
|
|
* @param value
|
|
|
|
*/
|
|
|
|
public static void putStringSet(SharedPreferences.Editor editor, String preference, HashSet<String> value) {
|
|
|
|
editor.putStringSet(preference, null);
|
|
|
|
editor.commit();
|
|
|
|
editor.putStringSet(preference, new HashSet<>(value));
|
|
|
|
}
|
2016-04-25 23:18:55 +02:00
|
|
|
}
|