source: josm/trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java@ 8231

Last change on this file since 8231 was 8061, checked in by bastiK, 9 years ago

see #11096 - strip .png

  • Property svn:eol-style set to native
File size: 8.7 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.Dimension;
8import java.awt.event.ActionEvent;
9import java.awt.event.KeyEvent;
10import java.lang.management.ManagementFactory;
11import java.util.ArrayList;
12import java.util.Arrays;
13import java.util.Collection;
14import java.util.HashSet;
15import java.util.List;
16import java.util.ListIterator;
17import java.util.Map;
18import java.util.Map.Entry;
19import java.util.Set;
20
21import javax.swing.JScrollPane;
22
23import org.openstreetmap.josm.Main;
24import org.openstreetmap.josm.data.Preferences.Setting;
25import org.openstreetmap.josm.data.Version;
26import org.openstreetmap.josm.data.osm.DataSet;
27import org.openstreetmap.josm.data.osm.DatasetConsistencyTest;
28import org.openstreetmap.josm.gui.ExtendedDialog;
29import org.openstreetmap.josm.gui.widgets.JosmTextArea;
30import org.openstreetmap.josm.plugins.PluginHandler;
31import org.openstreetmap.josm.tools.PlatformHookUnixoid;
32import org.openstreetmap.josm.tools.Shortcut;
33import org.openstreetmap.josm.tools.Utils;
34
35/**
36 * @author xeen
37 *
38 * Opens a dialog with useful status information like version numbers for Java, JOSM and plugins
39 * Also includes preferences with stripped username and password
40 */
41public final class ShowStatusReportAction extends JosmAction {
42
43 /**
44 * Constructs a new {@code ShowStatusReportAction}
45 */
46 public ShowStatusReportAction() {
47 super(
48 tr("Show Status Report"),
49 "clock",
50 tr("Show status report with useful information that can be attached to bugs"),
51 Shortcut.registerShortcut("help:showstatusreport", tr("Help: {0}",
52 tr("Show Status Report")), KeyEvent.CHAR_UNDEFINED, Shortcut.NONE), false);
53
54 putValue("help", ht("/Action/ShowStatusReport"));
55 putValue("toolbar", "help/showstatusreport");
56 Main.toolbar.register(this);
57 }
58
59 private static void shortenParam(ListIterator<String> it, String[] param, String source, String target) {
60 if (source != null && target.length() < source.length() && param[1].startsWith(source)) {
61 it.set(param[0] + "=" + param[1].replace(source, target));
62 }
63 }
64
65 /**
66 * Replies the report header (software and system info)
67 * @return The report header (software and system info)
68 */
69 public static String getReportHeader() {
70 StringBuilder text = new StringBuilder();
71 text.append(Version.getInstance().getReleaseAttributes());
72 text.append("\n");
73 text.append("Identification: " + Version.getInstance().getAgentString());
74 text.append("\n");
75 text.append("Memory Usage: ");
76 text.append(Runtime.getRuntime().totalMemory()/1024/1024);
77 text.append(" MB / ");
78 text.append(Runtime.getRuntime().maxMemory()/1024/1024);
79 text.append(" MB (");
80 text.append(Runtime.getRuntime().freeMemory()/1024/1024);
81 text.append(" MB allocated, but free)");
82 text.append("\n");
83 text.append("Java version: " + System.getProperty("java.version") + ", " + System.getProperty("java.vendor") + ", " + System.getProperty("java.vm.name"));
84 text.append("\n");
85 if (Main.platform.getClass() == PlatformHookUnixoid.class) {
86 // Add Java package details
87 String packageDetails = ((PlatformHookUnixoid) Main.platform).getJavaPackageDetails();
88 if (packageDetails != null) {
89 text.append("Java package: ");
90 text.append(packageDetails);
91 text.append("\n");
92 }
93 // Add WebStart package details if run from JNLP
94 if (Package.getPackage("javax.jnlp") != null) {
95 String webStartDetails = ((PlatformHookUnixoid) Main.platform).getWebStartPackageDetails();
96 if (webStartDetails != null) {
97 text.append("WebStart package: ");
98 text.append(webStartDetails);
99 text.append("\n");
100 }
101 }
102 }
103 try {
104 final String envJavaHome = System.getenv("JAVA_HOME");
105 final String envJavaHomeAlt = Main.isPlatformWindows() ? "%JAVA_HOME%" : "${JAVA_HOME}";
106 final String propJavaHome = System.getProperty("java.home");
107 final String propJavaHomeAlt = "<java.home>";
108 // Build a new list of VM parameters to modify it below if needed (default implementation returns an UnmodifiableList instance)
109 List<String> vmArguments = new ArrayList<>(ManagementFactory.getRuntimeMXBean().getInputArguments());
110 for (ListIterator<String> it = vmArguments.listIterator(); it.hasNext(); ) {
111 String value = it.next();
112 if (value.contains("=")) {
113 String[] param = value.split("=");
114 // Hide some parameters for privacy concerns
115 if (param[0].toLowerCase().startsWith("-dproxy")) {
116 it.set(param[0]+"=xxx");
117 // Shorten some parameters for readability concerns
118 } else {
119 shortenParam(it, param, envJavaHome, envJavaHomeAlt);
120 shortenParam(it, param, propJavaHome, propJavaHomeAlt);
121 }
122 } else if (value.startsWith("-X")) {
123 // Remove arguments like -Xbootclasspath/a, -Xverify:remote, that can be very long and unhelpful
124 it.remove();
125 }
126 }
127 if (!vmArguments.isEmpty()) {
128 text.append("VM arguments: "+ vmArguments.toString().replace("\\\\", "\\"));
129 text.append("\n");
130 }
131 } catch (SecurityException e) {
132 // Ignore exception
133 }
134 if (Main.commandLineArgs.length > 0) {
135 text.append("Program arguments: "+ Arrays.toString(Main.commandLineArgs));
136 text.append("\n");
137 }
138 if (Main.main != null) {
139 DataSet dataset = Main.main.getCurrentDataSet();
140 if (dataset != null) {
141 String result = DatasetConsistencyTest.runTests(dataset);
142 if (result.length() == 0) {
143 text.append("Dataset consistency test: No problems found\n");
144 } else {
145 text.append("\nDataset consistency test:\n"+result+"\n");
146 }
147 }
148 }
149 text.append("\n");
150 text.append(PluginHandler.getBugReportText());
151 text.append("\n");
152
153 Collection<String> errorsWarnings = Main.getLastErrorAndWarnings();
154 if (!errorsWarnings.isEmpty()) {
155 text.append("Last errors/warnings:\n");
156 for (String s : errorsWarnings) {
157 text.append("- ").append(s).append("\n");
158 }
159 text.append("\n");
160 }
161
162 return text.toString();
163 }
164
165 @Override
166 public void actionPerformed(ActionEvent e) {
167 StringBuilder text = new StringBuilder();
168 String reportHeader = getReportHeader();
169 text.append(reportHeader);
170 try {
171 Map<String, Setting<?>> settings = Main.pref.getAllSettings();
172 Set<String> keys = new HashSet<>(settings.keySet());
173 for (String key : keys) {
174 // Remove sensitive information from status report
175 if (key.startsWith("marker.show") || key.contains("username") || key.contains("password") || key.contains("access-token")) {
176 settings.remove(key);
177 }
178 }
179 for (Entry<String, Setting<?>> entry : settings.entrySet()) {
180 text.append(entry.getKey()).append("=").append(entry.getValue().getValue().toString()).append("\n");
181 }
182 } catch (Exception x) {
183 Main.error(x);
184 }
185
186 JosmTextArea ta = new JosmTextArea(text.toString());
187 ta.setWrapStyleWord(true);
188 ta.setLineWrap(true);
189 ta.setEditable(false);
190 JScrollPane sp = new JScrollPane(ta);
191
192 ExtendedDialog ed = new ExtendedDialog(Main.parent,
193 tr("Status Report"),
194 new String[] {tr("Copy to clipboard and close"), tr("Report bug"), tr("Close") });
195 ed.setButtonIcons(new String[] {"copy", "bug", "cancel" });
196 ed.setContent(sp, false);
197 ed.setMinimumSize(new Dimension(380, 200));
198 ed.setPreferredSize(new Dimension(700, Main.parent.getHeight()-50));
199
200 switch (ed.showDialog().getValue()) {
201 case 1: Utils.copyToClipboard(text.toString()); break;
202 case 2: ReportBugAction.reportBug(reportHeader) ; break;
203 }
204 }
205}
Note: See TracBrowser for help on using the repository browser.