New XSharedPreferences

This commit is contained in:
LoveSy 2020-12-03 04:22:16 +08:00 committed by solohsu
parent 4672edc4ad
commit 70f967944c
4 changed files with 289 additions and 243 deletions

View File

@ -8,8 +8,6 @@ import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.res.CompatibilityInfo;
import android.content.res.XResources;
import android.graphics.Bitmap;
import android.os.UserHandle;
import com.elderdrivers.riru.edxp.config.ConfigManager;
import com.elderdrivers.riru.edxp.util.Hookers;
@ -18,7 +16,6 @@ import com.elderdrivers.riru.edxp.util.Utils;
import java.io.File;
import de.robv.android.xposed.XC_MethodHook;
import de.robv.android.xposed.XC_MethodReplacement;
import de.robv.android.xposed.XposedBridge;
import de.robv.android.xposed.XposedHelpers;
import de.robv.android.xposed.XposedInit;

View File

@ -4,6 +4,7 @@ import com.elderdrivers.riru.edxp.config.ConfigManager;
import com.elderdrivers.riru.edxp.deopt.PrebuiltMethodsDeopter;
import de.robv.android.xposed.SELinuxHelper;
import de.robv.android.xposed.XposedInit;
import static com.elderdrivers.riru.edxp.util.FileUtils.getDataPathPrefix;
@ -55,6 +56,7 @@ public class NormalProxy extends BaseProxy {
private void forkPostCommon(int pid, boolean isSystem, String appDataDir, String niceName) {
ConfigManager.appDataDir = appDataDir;
ConfigManager.niceName = niceName;
XposedInit.prefsBasePath = ConfigManager.getPrefsPath("");
mRouter.prepare(isSystem);
mRouter.onEnterChildProcess();
mRouter.loadModulesSafely(true);

View File

@ -1,8 +1,11 @@
package de.robv.android.xposed;
import android.annotation.SuppressLint;
import android.app.ActivityThread;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Environment;
import android.preference.PreferenceManager;
import android.util.Log;
@ -38,6 +41,7 @@ public final class XSharedPreferences implements SharedPreferences {
/**
* Read settings from the specified file.
*
* @param prefFile The file to read the preferences from.
*/
public XSharedPreferences(File prefFile) {
@ -49,6 +53,7 @@ public final class XSharedPreferences implements SharedPreferences {
/**
* Read settings from the default preferences for a package.
* These preferences are returned by {@link PreferenceManager#getDefaultSharedPreferences}.
*
* @param packageName The package name.
*/
public XSharedPreferences(String packageName) {
@ -58,11 +63,24 @@ public final class XSharedPreferences implements SharedPreferences {
/**
* Read settings from a custom preferences file for a package.
* These preferences are returned by {@link Context#getSharedPreferences(String, int)}.
*
* @param packageName The package name.
* @param prefFileName The file name without ".xml".
*/
public XSharedPreferences(String packageName, String prefFileName) {
boolean newModule = false;
Set<String> modules = XposedInit.getLoadedModules();
for (String m : modules) {
if (m.contains("/" + packageName + "-")) {
PackageInfo packageInfo = ((Context) ActivityThread.currentActivityThread().getSystemContext()).getPackageManager().getPackageArchiveInfo(m, PackageManager.GET_META_DATA);
newModule = packageInfo != null && packageInfo.applicationInfo != null && packageInfo.applicationInfo.metaData.getBoolean("xposedmodule") && packageInfo.applicationInfo.metaData.getInt("xposedminversion", -1) > 92;
}
}
if (newModule && XposedInit.prefsBasePath != null) {
mFile = new File(XposedInit.prefsBasePath, packageName + "/" + prefFileName + ".xml");
} else {
mFile = new File(Environment.getDataDirectory(), "data/" + packageName + "/shared_prefs/" + prefFileName + ".xml");
}
mFilename = mFile.getAbsolutePath();
startLoadFromDisk();
}
@ -194,7 +212,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public Map<String, ?> getAll() {
synchronized (this) {
@ -203,7 +223,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public String getString(String key, String defValue) {
synchronized (this) {
@ -213,7 +235,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
@SuppressWarnings("unchecked")
public Set<String> getStringSet(String key, Set<String> defValues) {
@ -224,7 +248,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public int getInt(String key, int defValue) {
synchronized (this) {
@ -234,7 +260,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public long getLong(String key, long defValue) {
synchronized (this) {
@ -244,7 +272,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public float getFloat(String key, float defValue) {
synchronized (this) {
@ -254,7 +284,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public boolean getBoolean(String key, boolean defValue) {
synchronized (this) {
@ -264,7 +296,9 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @hide */
/**
* @hide
*/
@Override
public boolean contains(String key) {
synchronized (this) {
@ -273,21 +307,27 @@ public final class XSharedPreferences implements SharedPreferences {
}
}
/** @deprecated Not supported by this implementation. */
/**
* @deprecated Not supported by this implementation.
*/
@Deprecated
@Override
public Editor edit() {
throw new UnsupportedOperationException("read-only implementation");
}
/** @deprecated Not supported by this implementation. */
/**
* @deprecated Not supported by this implementation.
*/
@Deprecated
@Override
public void registerOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {
throw new UnsupportedOperationException("listeners are not supported in this implementation");
}
/** @deprecated Not supported by this implementation. */
/**
* @deprecated Not supported by this implementation.
*/
@Deprecated
@Override
public void unregisterOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {

View File

@ -69,6 +69,7 @@ public final class XposedInit {
private static final String INSTANT_RUN_CLASS = "com.android.tools.fd.runtime.BootstrapApplication";
public static volatile boolean disableResources = false;
private static final String[] XRESOURCES_CONFLICTING_PACKAGES = {"com.sygic.aura"};
public static String prefsBasePath = null;
private XposedInit() {
}
@ -310,6 +311,12 @@ public final class XposedInit {
// @GuardedBy("moduleLoadLock")
private static final ArraySet<String> loadedModules = new ArraySet<>();
public static ArraySet<String> getLoadedModules() {
synchronized (moduleLoadLock) {
return loadedModules;
}
}
public static boolean loadModules(boolean callInitZygote) throws IOException {
boolean hasLoaded = !modulesLoaded.compareAndSet(false, true);
if (hasLoaded) {