-
Notifications
You must be signed in to change notification settings - Fork 16
/
quarkusissue.java
executable file
·202 lines (159 loc) · 7.21 KB
/
quarkusissue.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
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
//usr/bin/env jbang "$0" "$@" ; exit $?
//REPOS mavencentral,jcenter
//DEPS info.picocli:picocli:4.2.0
//DEPS de.vandermeer:asciitable:0.3.2
//DEPS org.jline:jline:3.16.0
//DEPS org.zeroturnaround:zt-exec:1.11
//DEPS org.slf4j:slf4j-nop:1.7.30
//DEPS net.steppschuh.markdowngenerator:markdowngenerator:1.3.2
//JAVA 8+
import static java.lang.System.out;
import java.awt.Toolkit;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.StringSelection;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.Callable;
import java.util.concurrent.TimeoutException;
import org.zeroturnaround.exec.ProcessExecutor;
import de.vandermeer.asciitable.AsciiTable;
import de.vandermeer.asciitable.*;
import de.vandermeer.skb.interfaces.transformers.textformat.TextAlignment;
import net.steppschuh.markdowngenerator.table.Table;
import picocli.CommandLine;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;
@Command(name = "quarkusissue", mixinStandardHelpOptions = true, version = "quarkusissue 1.0",
description = "Gathers system info for when reporting Quarkus made with jbang.dev")
class quarkusissue implements Callable<Integer> {
@Option(names={ "-c", "--columns"}, description = "Columns to use for console rendering.")
Integer columns;
@Option(names={ "-m", "--print-markdown"}, description = "Prints markdown to standard output instead of copying it to clipboard.")
boolean printMarkdown;
boolean isWindows = System.getProperty("os.name")
.toLowerCase().startsWith("windows");
int getColumns() {
if(columns==null || columns<=0) {
// best guess in java on terminal width
int colwidth = 0;
try {
colwidth = org.jline.terminal.TerminalBuilder.terminal().getWidth();
} catch(IOException ie) {
//ignore
}
if(colwidth==0) colwidth = 80;
return colwidth;
} else {
return columns;
}
}
public static void main(String... args) {
int exitCode = new CommandLine(new quarkusissue()).execute(args);
System.exit(exitCode);
}
String run(String... command) {
try {
System.out.println("Running...[" + String.join(" ", command) + "]...");
return new ProcessExecutor().command(command).readOutput(true).execute().outputUTF8();
} catch (InterruptedException | TimeoutException | IOException e) {
return e.getMessage();
}
}
String mvnproperty(String property) {
if(isWindows) {
return run("mvn.cmd", "help:evaluate", "-Dexpression=" + property, "-q", "-DforceStdout");
} else {
return run("mvn", "help:evaluate", "-Dexpression=" + property, "-q", "-DforceStdout");
}
}
Map<String, String> gatherInfo() throws Exception {
Map<String, String> results = new LinkedHashMap<>();
if(isWindows) {
results.put("ver", run("cmd.exe", "/C", "ver"));
} else {
results.put("uname -a", run("uname", "-a"));
}
results.put("java -version", run("java", "-version"));
if(System.getenv("GRAALVM_HOME")!=null) {
// results.put("GRAALVM_HOME", System.getenv("GRAALVM_HOME"));
if(isWindows) {
results.put("graalvm java -version", run(System.getenv("GRAALVM_HOME") + "/bin/java.exe", "-version"));
} else {
results.put("graalvm java -version", run(System.getenv("GRAALVM_HOME") + "/bin/java", "-version"));
}
}
if(new File("mvnw").exists()) {
if(isWindows) {
results.put("mvnw --version", run("./mvnw.cmd", "--version"));
} else {
results.put("mvnw --version", run("./mvnw", "--version"));
}
results.put("quarkus-plugin.version", mvnproperty("quarkus-plugin.version") );
results.put("quarkus.platform.artifact-id", mvnproperty("quarkus.platform.artifact-id"));
results.put("quarkus.platform.group-id", mvnproperty("quarkus.platform.group-id"));
results.put("quarkus.platform.version", mvnproperty("quarkus.platform.version"));
}
if(new File("gradlew").exists()) {
if(isWindows) {
results.put("mvnw --version", run("./gradlew.bat", "--version"));
} else {
results.put("mvnw --version", run("./gradlew", "--version"));
}
}
if(new File("gradle.properties").exists()) {
Properties p = new Properties();
try (FileInputStream f = new FileInputStream((new File("gradle.properties")))) {
p.load(f);
results.put("quarkusPluginVersion", p.getProperty("quarkusPluginVersion","N/A") );
results.put("quarkusPlatformGroupId", p.getProperty("quarkusPlatformGroupId", "N/A"));
results.put("quarkusPlatformArtifactId", p.getProperty("quarkusPlatformArtifactId", "N/A"));
results.put("quarkusPlatformVersion", p.getProperty("quarkusPlatformVersion", "N/A"));
}
}
return results;
}
void print(Map<String, String> results) throws Exception {
int[] maxkey = { 0 };
Table.Builder tableBuilder = new Table.Builder();
tableBuilder.addRow("Key", "Value");
AsciiTable at = new AsciiTable();
at.addRule();
results.keySet().stream()
.forEach(key -> {
maxkey[0] = Math.max(maxkey[0], ((String) key).length());
String value = results.get((String) key).replace(System.lineSeparator(), "<br>");
AT_Row row = at.addRow(key, value);
row.getCells().getLast().getContext().setTextAlignment(TextAlignment.LEFT);
at.addRule();
tableBuilder.addRow(key, value);
});
int colwidth = getColumns();
int maxwidth = colwidth-maxkey[0]-3;
int minwidth = maxkey[0];
out.println(minwidth + ", " + maxwidth);
at.getRenderer().setCWC(new CWC_FixedWidth().add(minwidth).add(maxwidth));
String table = at.render(colwidth);
out.println(table);
final String markdownTable = tableBuilder.build().toString();
if (printMarkdown) {
System.out.println(markdownTable);
} else {
System.out.println("Copied markdown version to clipboard.");
StringSelection stringSelection = new StringSelection(markdownTable);
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(stringSelection, null);
}
}
@Override
public Integer call() throws Exception { // your business logic goes here...
out.println("Gathering information...");
Map<String, String> info = gatherInfo();
print(info);
System.out.println("Paste the markdown in issue at https://github.com/quarkusio/quarkus/issues/new?assignees=&labels=kind%2Fbug&template=bug_report.md");
return 0;
}
}