summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-02-25 20:11:48 +0800
committerPo Lu <luangruo@yahoo.com>2023-02-25 20:11:48 +0800
commitdf29bb71fc47b5e24fa971b668e4fa09dd6d244d (patch)
tree78672c8e9f3b3db96f59a2bf6f81107d9eadb4af /java
parent8e4c5db193dc7baee5846520fe8b63d8bea99148 (diff)
Update Android port
* java/org/gnu/emacs/EmacsNoninteractive.java (main): Port to Android 2.2. * src/android-asset.h (AAsset_openFileDescriptor): Delete stub function. * src/android.c (android_check_compressed_file): Delete function. (android_open): Stop trying to find compressed files or to use the system provided file descriptor. Explain why.
Diffstat (limited to 'java')
-rw-r--r--java/org/gnu/emacs/EmacsNoninteractive.java118
1 files changed, 76 insertions, 42 deletions
diff --git a/java/org/gnu/emacs/EmacsNoninteractive.java b/java/org/gnu/emacs/EmacsNoninteractive.java
index 4da82f2f894..30901edb75f 100644
--- a/java/org/gnu/emacs/EmacsNoninteractive.java
+++ b/java/org/gnu/emacs/EmacsNoninteractive.java
@@ -87,56 +87,23 @@ public class EmacsNoninteractive
/* Create and attach the activity thread. */
activityThread = method.invoke (null);
+ context = null;
/* Now get an LoadedApk. */
- loadedApkClass = Class.forName ("android.app.LoadedApk");
- /* Get a LoadedApk. How to do this varies by Android version.
- On Android 2.3.3 and earlier, there is no
- ``compatibilityInfo'' argument to getPackageInfo. */
-
- if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD_MR1)
+ try
{
- method
- = activityThreadClass.getMethod ("getPackageInfo",
- String.class,
- int.class);
- loadedApk = method.invoke (activityThread, "org.gnu.emacs",
- 0);
+ loadedApkClass = Class.forName ("android.app.LoadedApk");
}
- else
+ catch (ClassNotFoundException exception)
{
- compatibilityInfoClass
- = Class.forName ("android.content.res.CompatibilityInfo");
-
- method
- = activityThreadClass.getMethod ("getPackageInfo",
- String.class,
- compatibilityInfoClass,
- int.class);
- loadedApk = method.invoke (activityThread, "org.gnu.emacs", null,
- 0);
- }
-
- if (loadedApk == null)
- throw new RuntimeException ("getPackageInfo returned NULL");
+ /* Android 2.2 has no LoadedApk class, but fortunately it
+ does not need to be used, since contexts can be
+ directly created. */
- /* Now, get a context. */
- contextImplClass = Class.forName ("android.app.ContextImpl");
+ loadedApkClass = null;
+ contextImplClass = Class.forName ("android.app.ContextImpl");
- try
- {
- method = contextImplClass.getDeclaredMethod ("createAppContext",
- activityThreadClass,
- loadedApkClass);
- method.setAccessible (true);
- context = (Context) method.invoke (null, activityThread, loadedApk);
- }
- catch (NoSuchMethodException exception)
- {
- /* Older Android versions don't have createAppContext, but
- instead require creating a ContextImpl, and then
- calling createPackageContext. */
method = activityThreadClass.getDeclaredMethod ("getSystemContext");
context = (Context) method.invoke (activityThread);
method = contextImplClass.getDeclaredMethod ("createPackageContext",
@@ -147,6 +114,73 @@ public class EmacsNoninteractive
0);
}
+ /* If the context has not already been created, then do what
+ is appropriate for newer versions of Android. */
+
+ if (context == null)
+ {
+ /* Get a LoadedApk. How to do this varies by Android version.
+ On Android 2.3.3 and earlier, there is no
+ ``compatibilityInfo'' argument to getPackageInfo. */
+
+ if (Build.VERSION.SDK_INT
+ <= Build.VERSION_CODES.GINGERBREAD_MR1)
+ {
+ method
+ = activityThreadClass.getMethod ("getPackageInfo",
+ String.class,
+ int.class);
+ loadedApk = method.invoke (activityThread, "org.gnu.emacs",
+ 0);
+ }
+ else
+ {
+ compatibilityInfoClass
+ = Class.forName ("android.content.res.CompatibilityInfo");
+
+ method
+ = activityThreadClass.getMethod ("getPackageInfo",
+ String.class,
+ compatibilityInfoClass,
+ int.class);
+ loadedApk = method.invoke (activityThread, "org.gnu.emacs",
+ null, 0);
+ }
+
+ if (loadedApk == null)
+ throw new RuntimeException ("getPackageInfo returned NULL");
+
+ /* Now, get a context. */
+ contextImplClass = Class.forName ("android.app.ContextImpl");
+
+ try
+ {
+ method
+ = contextImplClass.getDeclaredMethod ("createAppContext",
+ activityThreadClass,
+ loadedApkClass);
+ method.setAccessible (true);
+ context = (Context) method.invoke (null, activityThread,
+ loadedApk);
+ }
+ catch (NoSuchMethodException exception)
+ {
+ /* Older Android versions don't have createAppContext, but
+ instead require creating a ContextImpl, and then
+ calling createPackageContext. */
+ method
+ = activityThreadClass.getDeclaredMethod ("getSystemContext");
+ context = (Context) method.invoke (activityThread);
+ method
+ = contextImplClass.getDeclaredMethod ("createPackageContext",
+ String.class,
+ int.class);
+ method.setAccessible (true);
+ context = (Context) method.invoke (context, "org.gnu.emacs",
+ 0);
+ }
+ }
+
/* Don't actually start the looper or anything. Instead, obtain
an AssetManager. */
assets = context.getAssets ();