forked from flutter/flutter-intellij
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidSdk.java
135 lines (116 loc) · 4.23 KB
/
AndroidSdk.java
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
/*
* Copyright 2017 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
package io.flutter.android;
import com.intellij.execution.ExecutionException;
import com.intellij.execution.configurations.GeneralCommandLine;
import com.intellij.execution.process.ColoredProcessHandler;
import com.intellij.execution.process.ProcessAdapter;
import com.intellij.execution.process.ProcessEvent;
import com.intellij.execution.process.ProcessOutputTypes;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Key;
import com.intellij.openapi.util.SystemInfo;
import com.intellij.openapi.vfs.LocalFileSystem;
import com.intellij.openapi.vfs.VirtualFile;
import io.flutter.FlutterUtils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* A wrapper around an Android SDK on disk.
*/
public class AndroidSdk {
private static final Logger LOG = Logger.getInstance(AndroidSdk.class);
@Nullable
public static AndroidSdk createFromProject(@NotNull Project project) {
final String sdkPath = IntelliJAndroidSdk.chooseAndroidHome(project, true);
if (sdkPath == null) {
return null;
}
final VirtualFile file = LocalFileSystem.getInstance().findFileByPath(sdkPath);
if (file == null) {
return null;
}
return new AndroidSdk(project, file);
}
@NotNull Project project;
@NotNull
private final VirtualFile home;
AndroidSdk(@NotNull Project project, @NotNull VirtualFile home) {
this.project = project;
this.home = home;
}
/**
* Returns android home directory for this SDK.
*/
@NotNull
public VirtualFile getHome() {
return home;
}
@Nullable
public VirtualFile getEmulatorToolExecutable() {
// Look for $ANDROID_HOME/emulator/emulator.
final VirtualFile file = home.findFileByRelativePath("emulator/" + (SystemInfo.isWindows ? "emulator.exe" : "emulator"));
if (file != null) {
return file;
}
// Look for $ANDROID_HOME/tools/emulator.
return home.findFileByRelativePath("tools/" + (SystemInfo.isWindows ? "emulator.exe" : "emulator"));
}
@NotNull
public List<AndroidEmulator> getEmulators() {
// Execute $ANDROID_HOME/emulator/emulator -list-avds and parse the results.
final VirtualFile emulator = getEmulatorToolExecutable();
if (emulator == null) {
return Collections.emptyList();
}
final String emulatorPath = emulator.getCanonicalPath();
assert (emulatorPath != null);
final GeneralCommandLine cmd = new GeneralCommandLine()
.withParentEnvironmentType(GeneralCommandLine.ParentEnvironmentType.CONSOLE)
.withWorkDirectory(home.getCanonicalPath())
.withExePath(emulatorPath)
.withParameters("-list-avds");
try {
final StringBuilder stringBuilder = new StringBuilder();
final ColoredProcessHandler process = new ColoredProcessHandler(cmd);
process.addProcessListener(new ProcessAdapter() {
@Override
public void onTextAvailable(@NotNull ProcessEvent event, @NotNull Key outputType) {
if (outputType == ProcessOutputTypes.STDOUT) {
stringBuilder.append(event.getText());
}
}
});
process.startNotify();
// We wait a maximum of 10s.
if (!process.waitFor(10000)) {
return Collections.emptyList();
}
final Integer exitCode = process.getExitCode();
if (exitCode == null || process.getExitCode() != 0) {
return Collections.emptyList();
}
// 'emulator -list-avds' results are in the form "foo\nbar\nbaz\n".
final List<AndroidEmulator> emulators = new ArrayList<>();
for (String str : stringBuilder.toString().split("\n")) {
str = str.trim();
if (str.isEmpty()) {
continue;
}
emulators.add(new AndroidEmulator(this, str));
}
return emulators;
}
catch (ExecutionException | RuntimeException e) {
FlutterUtils.warn(LOG, "Error listing android emulators. Please check your Android SDK configuration.", e);
return Collections.emptyList();
}
}
}