forked from flutter/flutter-intellij
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlutterDoctorAction.java
70 lines (60 loc) · 2.6 KB
/
FlutterDoctorAction.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
/*
* Copyright 2016 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.actions;
import com.intellij.execution.ExecutionException;
import com.intellij.execution.configurations.GeneralCommandLine;
import com.intellij.execution.process.ColoredProcessHandler;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.io.FileUtil;
import io.flutter.FlutterUtils;
import io.flutter.bazel.Workspace;
import io.flutter.console.FlutterConsoles;
import io.flutter.pub.PubRoot;
import io.flutter.sdk.FlutterSdk;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.nio.charset.StandardCharsets;
public class FlutterDoctorAction extends FlutterSdkAction {
private static final Logger LOG = Logger.getInstance(FlutterDoctorAction.class);
public void startCommand(@NotNull Project project, @NotNull FlutterSdk sdk, @Nullable PubRoot root) {
sdk.flutterDoctor().startInConsole(project);
}
@Override
public void startCommand(@NotNull Project project, @NotNull FlutterSdk sdk, @Nullable PubRoot root, @NotNull DataContext context) {
startCommand(project, sdk, root);
}
@Override
public void startCommandInBazelContext(@NotNull Project project, @NotNull Workspace workspace, @NotNull AnActionEvent event) {
final String doctorScript = workspace.getDoctorScript();
if (doctorScript != null) {
runWorkspaceFlutterDoctorScript(project, workspace.getRoot().getPath(), doctorScript);
}
else {
FlutterUtils.warn(LOG, "No \"doctorScript\" script in the flutter.json file.");
// TODO: Update the Bazel workspace's flutter.json file to include the correct path to the doctorScript.
}
}
private void runWorkspaceFlutterDoctorScript(@NotNull Project project, @NotNull String workDir, @NotNull String doctorScript) {
final GeneralCommandLine cmdLine = new GeneralCommandLine().withWorkDirectory(workDir);
cmdLine.setCharset(StandardCharsets.UTF_8);
cmdLine.setExePath(FileUtil.toSystemDependentName(doctorScript));
final ColoredProcessHandler handler;
try {
handler = new ColoredProcessHandler(cmdLine);
FlutterConsoles.displayProcessLater(handler, project, null, handler::startNotify);
}
catch (ExecutionException e) {
LOG.error(e);
}
}
@Override
public boolean enableActionInBazelContext() {
return true;
}
}