forked from processing/processing-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAVD.java
More file actions
342 lines (294 loc) · 10.9 KB
/
AVD.java
File metadata and controls
342 lines (294 loc) · 10.9 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
Part of the Processing project - http://processing.org
Copyright (c) 2013-16 The Processing Foundation
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.
This program 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 this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package processing.mode.android;
import processing.app.Base;
import processing.app.Messages;
import processing.app.exec.ProcessHelper;
import processing.app.exec.ProcessResult;
import processing.core.PApplet;
import java.awt.Frame;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class AVD {
static private final String AVD_CREATE_PRIMARY =
"An error occurred while running “android create avd”";
static private final String AVD_CREATE_SECONDARY =
"The default Android emulator could not be set up. Make sure<br>" +
"that the Android SDK is installed properly, and that the<br>" +
"system images are installed for level %s.<br>" +
"(Between you and me, occasionally, this error is a red herring,<br>" +
"and your sketch may be launching shortly.)";
static private final String AVD_LOAD_PRIMARY =
"There is an error with the Processing AVD.";
static private final String AVD_LOAD_SECONDARY =
"This could mean that the Android tools need to be updated,<br>" +
"or that the Processing AVD should be deleted (it will<br>" +
"automatically re-created the next time you run Processing).<br>" +
"Open the Android SDK Manager (underneath the Android menu)<br>" +
"to check for any errors.";
static private final String AVD_TARGET_PRIMARY =
"The Google APIs are not installed properly";
static private final String AVD_TARGET_SECONDARY =
"Please re-read the installation instructions for Processing<br>" +
"found at http://android.processing.org and try again.";
static final String DEFAULT_SDCARD_SIZE = "64M";
static final String DEFAULT_SKIN = "WVGA800";
static final String WEAR_SKIN = "AndroidWearSquare";
/** Name of this avd. */
protected String name;
/** "android-7" or "Google Inc.:Google APIs:7" */
protected String target;
static ArrayList<String> avdList;
static ArrayList<String> badList;
// static ArrayList<String> skinList;
private Map<String, String> preferredAbi = new HashMap<>(30);
private List<String> abiList = new ArrayList<>();
private String skin;
/** Default virtual device used by Processing. */
static public final AVD mobileAVD =
new AVD("Processing-0" + Base.getRevision(),
AndroidBuild.target_platform, SysImageDownloader.SYSTEM_IMAGE_TAG, DEFAULT_SKIN);
// "Google Inc.:Google APIs:" + AndroidBuild.sdkVersion);
/** Default virtual wear device used by Processing. */
static public final AVD wearAVD =
new AVD("Processing-Wear-0" + Base.getRevision(),
AndroidBuild.target_platform, SysImageDownloader.SYSTEM_IMAGE_WEAR_TAG, WEAR_SKIN);
public AVD(final String name, final String target,
final String tag, final String skin) {
this.name = name;
this.target = target;
this.skin = skin;
initializeAbiList(tag);
}
private void initializeAbiList(String tag) {
if (abiList.size() == 0) {
// The order in this list determines the preference of one abi over the other
abiList.add(tag + "/x86");
abiList.add(tag + "/x86_64");
abiList.add(tag + "/armeabi-v7a");
// abiList.add("google_apis/x86");
// abiList.add("google_apis/x86_64");
// abiList.add("google_apis/armeabi-v7a");
}
}
static protected void list(final AndroidSDK sdk) throws IOException {
try {
avdList = new ArrayList<String>();
badList = new ArrayList<String>();
ProcessResult listResult =
new ProcessHelper(sdk.getAndroidToolPath(), "list", "avds").execute();
if (listResult.succeeded()) {
boolean badness = false;
for (String line : listResult) {
String[] m = PApplet.match(line, "\\s+Name\\:\\s+(\\S+)");
if (m != null) {
if (!badness) {
// System.out.println("good: " + m[1]);
avdList.add(m[1]);
} else {
// System.out.println("bad: " + m[1]);
badList.add(m[1]);
}
// } else {
// System.out.println("nope: " + line);
}
// "The following Android Virtual Devices could not be loaded:"
if (line.contains("could not be loaded:")) {
// System.out.println("starting the bad list");
// System.err.println("Could not list AVDs:");
// System.err.println(listResult);
badness = true;
// break;
}
}
} else {
System.err.println("Unhappy inside exists()");
System.err.println(listResult);
}
} catch (final InterruptedException ie) { }
}
protected boolean exists(final AndroidSDK sdk) throws IOException {
if (avdList == null) {
list(sdk);
}
for (String avd : avdList) {
if (Base.DEBUG) {
System.out.println("AVD.exists() checking for " + name + " against " + avd);
}
if (avd.equals(name)) {
return true;
}
}
return false;
}
/**
* Return true if a member of the renowned and prestigious
* "The following Android Virtual Devices could not be loaded:" club.
* (Prestigious may also not be the right word.)
*/
protected boolean badness() {
for (String avd : badList) {
if (avd.equals(name)) {
return true;
}
}
return false;
}
protected void initTargets(final AndroidSDK sdk) throws IOException {
preferredAbi.clear();
final String[] list_abi = {
sdk.getAndroidToolPath(),
"list", "targets"
};
ProcessHelper p = new ProcessHelper(list_abi);
try {
final ProcessResult abiListResult = p.execute();
String api = null;
String[] abis = null;
for (String line : abiListResult) {
line = line.trim();
if (line.equals("")) continue;
if (line.indexOf("API level") == 0) {
String[] m = line.split(":");
if (1 < m.length) {
api = m[1];
api = api.trim();
}
}
if (line.indexOf("Tag/ABIs") == 0) {
String[] m = line.split(":");
if (1 < m.length) {
String str = m[1];
abis = str.split(",");
for (int i = 0; i < abis.length; i++) {
abis[i] = abis[i].trim();
}
}
}
if (api != null && abis != null) {
for (String abi: abis) {
if (abiList.indexOf(abi) == -1) continue;
if (preferredAbi.get(api) == null) {
preferredAbi.put(api, abi);
} else if (abiList.indexOf(preferredAbi.get(api)) < abiList.indexOf(abi)) {
preferredAbi.put(api, abi);
}
}
api = null;
abis = null;
}
}
} catch (InterruptedException e) {
}
}
protected boolean noTargets(final AndroidSDK sdk) throws IOException {
initTargets(sdk);
// return preferredAbi.size() == 0;
return preferredAbi.get(AndroidBuild.target_sdk) == null;
}
protected boolean create(final AndroidSDK sdk) throws IOException {
initTargets(sdk);
final String[] params = {
sdk.getAndroidToolPath(),
"create", "avd",
"-n", name,
"-t", target,
"-c", DEFAULT_SDCARD_SIZE,
"-s", skin,
"--abi", preferredAbi.get(AndroidBuild.target_sdk)
};
// sdk/tools/android create avd -n "Wear-Processing-0254" -t android-23 -c 64M -s AndroidWearSquare --abi android-wear/x86
// Set the list to null so that exists() will check again
avdList = null;
ProcessHelper p = new ProcessHelper(params);
try {
// Passes 'no' to "Do you wish to create a custom hardware profile [no]"
final ProcessResult createAvdResult = p.execute("no");
if (createAvdResult.succeeded()) {
return true;
}
if (createAvdResult.toString().contains("Target id is not valid")) {
// They didn't install the Google APIs
Messages.showWarningTiered("Android Error", AVD_TARGET_PRIMARY, AVD_TARGET_SECONDARY, null);
} else {
// Just generally not working
Messages.showWarningTiered("Android Error", AVD_CREATE_PRIMARY, AVD_CREATE_SECONDARY, null);
// Messages.showWarningTiered("Android Error", AVD_CREATE_PRIMARY, "UCKCUCKKDKDDKD", null);
System.out.println(createAvdResult);
}
//System.err.println(createAvdResult);
} catch (final InterruptedException ie) {
ie.printStackTrace();
}
return false;
}
static public String getPort(boolean wear) {
if (wear) {
return EmulatorController.WEAR_PORT;
} else {
return EmulatorController.DEFAULT_PORT;
}
}
static public boolean ensureProperAVD(final Frame window, final AndroidMode mode,
final AndroidSDK sdk, boolean wear) {
try {
if (wear) {
if (wearAVD.exists(sdk)) {
return true;
}
if (wearAVD.badness()) {
Messages.showWarningTiered("Android Error", AVD_LOAD_PRIMARY, AVD_LOAD_SECONDARY, null);
return false;
}
if (wearAVD.noTargets(sdk)) {
boolean res = AndroidSDK.locateSysImage(window, mode, true);
if (!res) {
return false;
}
}
if (wearAVD.create(sdk)) {
return true;
}
} else {
if (mobileAVD.exists(sdk)) {
return true;
}
if (mobileAVD.badness()) {
Messages.showWarningTiered("Android Error", AVD_LOAD_PRIMARY, AVD_LOAD_SECONDARY, null);
return false;
}
if (mobileAVD.noTargets(sdk)) {
boolean res = AndroidSDK.locateSysImage(window, mode, false);
if (!res) {
return false;
}
}
if (mobileAVD.create(sdk)) {
return true;
}
}
} catch (final Exception e) {
e.printStackTrace();
Messages.showWarningTiered("Android Error", AVD_CREATE_PRIMARY,
String.format(AVD_CREATE_SECONDARY,
AndroidBuild.target_sdk), null);
}
return false;
}
}