1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/* Android initialization for GNU Emacs.
Copyright (C) 2023 Free Software Foundation, Inc.
This file is part of GNU Emacs.
GNU Emacs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
GNU Emacs 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
#include <stdio.h>
#include <alloca.h>
#include <string.h>
#include <unistd.h>
/* android-emacs is a wrapper around /system/bin/app_process(64).
It invokes app_process(64) with the right class path and then
starts org.gnu.emacs.EmacsNoninteractive.
The main function in that class tries to load an activity thread
and obtain a context and asset manager before calling
android_emacs_init, which is required for Emacs to find required
preloaded Lisp. */
int
main (int argc, char **argv)
{
char **args;
int i;
char *bootclasspath, *emacs_class_path;
/* Allocate enough to hold the arguments to app_process. */
args = alloca ((10 + argc) * sizeof *args);
/* Clear args. */
memset (args, 0, (10 + argc) * sizeof *args);
/* First, figure out what program to start. */
#if defined __x86_64__ || defined __aarch64__
args[0] = (char *) "/system/bin/app_process64";
#else
args[0] = (char *) "/system/bin/app_process";
#endif
/* Machines with ART require the boot classpath to be manually
specified. Machines with Dalvik however refuse to do so, as they
open the jars inside the BOOTCLASSPATH environment variable at
startup, resulting in the following crash:
W/dalvikvm( 1608): Refusing to reopen boot DEX
'/system/framework/core.jar'
W/dalvikvm( 1608): Refusing to reopen boot DEX
'/system/framework/bouncycastle.jar'
E/dalvikvm( 1608): Too many exceptions during init (failed on
'Ljava/io/IOException;' 'Re-opening BOOTCLASSPATH DEX files is
not allowed')
E/dalvikvm( 1608): VM aborting */
#if HAVE_DECL_ANDROID_GET_DEVICE_API_LEVEL
if (android_get_device_api_level () < 21)
{
bootclasspath = NULL;
goto skip_setup;
}
#else
if (__ANDROID_API__ < 21)
{
bootclasspath = NULL;
goto skip_setup;
}
#endif
/* Next, obtain the boot class path. */
bootclasspath = getenv ("BOOTCLASSPATH");
if (!bootclasspath)
{
fprintf (stderr, "The BOOTCLASSPATH environment variable"
" is not set. As a result, Emacs does not know"
" how to start app_process.\n"
"This is likely a change in the Android platform."
" Please report this to bug-gnu-emacs@gnu.org.\n");
return 1;
}
skip_setup:
/* And the Emacs class path. */
emacs_class_path = getenv ("EMACS_CLASS_PATH");
if (!emacs_class_path)
{
fprintf (stderr, "EMACS_CLASS_PATH not set."
" Please make sure Emacs is being started"
" from within a running copy of Emacs.\n");
return 1;
}
if (bootclasspath)
{
if (asprintf (&bootclasspath, "-Djava.class.path=%s:%s",
bootclasspath, emacs_class_path) < 0)
{
perror ("asprintf");
return 1;
}
}
else
{
if (asprintf (&bootclasspath, "-Djava.class.path=%s",
emacs_class_path) < 0)
{
perror ("asprintf");
return 1;
}
}
args[1] = bootclasspath;
args[2] = (char *) "/system/bin";
#if HAVE_DECL_ANDROID_GET_DEVICE_API_LEVEL
/* I don't know exactly when --nice-name was introduced; this is
just a guess. */
if (android_get_device_api_level () >= 26)
{
args[3] = (char *) "--nice-name=emacs";
args[4] = (char *) "org.gnu.emacs.EmacsNoninteractive";
/* Arguments from here on are passed to main in
EmacsNoninteractive.java. */
args[5] = argv[0];
/* Now copy the rest of the arguments over. */
for (i = 1; i < argc; ++i)
args[5 + i] = argv[i];
}
else
{
#endif
args[3] = (char *) "org.gnu.emacs.EmacsNoninteractive";
/* Arguments from here on are passed to main in
EmacsNoninteractive.java. */
args[4] = argv[0];
/* Now copy the rest of the arguments over. */
for (i = 1; i < argc; ++i)
args[4 + i] = argv[i];
#if HAVE_DECL_ANDROID_GET_DEVICE_API_LEVEL
}
#endif
/* Finally, try to start the app_process. */
execvp (args[0], args);
/* If exit fails, return an error indication. */
perror ("exec");
return 1;
}
|