提交 58626400 编写于 作者: E egahlin

6696970: Jconsole becomes unusable if a plugin throws an exception

Reviewed-by: mchung, jbachorik
上级 a45db9f8
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.tools.jconsole;
import java.util.HashMap;
import java.util.Map;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.SwingWorker;
import com.sun.tools.jconsole.JConsolePlugin;
/**
* Proxy that shields GUI from plug-in exceptions.
*
*/
final class ExceptionSafePlugin extends JConsolePlugin {
private static boolean ignoreExceptions;
private final JConsolePlugin plugin;
public ExceptionSafePlugin(JConsolePlugin plugin) {
this.plugin = plugin;
}
@Override
public Map<String, JPanel> getTabs() {
try {
return plugin.getTabs();
} catch (RuntimeException e) {
handleException(e);
}
return new HashMap<>();
}
@Override
public SwingWorker<?, ?> newSwingWorker() {
try {
return plugin.newSwingWorker();
} catch (RuntimeException e) {
handleException(e);
}
return null;
}
@Override
public void dispose() {
try {
plugin.dispose();
} catch (RuntimeException e) {
handleException(e);
}
}
public void executeSwingWorker(SwingWorker<?, ?> sw) {
try {
sw.execute();
} catch (RuntimeException e) {
handleException(e);
}
}
private void handleException(Exception e) {
if (JConsole.isDebug()) {
System.err.println("Plug-in exception:");
e.printStackTrace();
} else {
if (!ignoreExceptions) {
showExceptionDialog(e);
}
}
}
private void showExceptionDialog(Exception e) {
Object[] buttonTexts = {
Messages.PLUGIN_EXCEPTION_DIALOG_BUTTON_OK,
Messages.PLUGIN_EXCEPTION_DIALOG_BUTTON_EXIT,
Messages.PLUGIN_EXCEPTION_DIALOG_BUTTON_IGNORE
};
String message = String.format(
Messages.PLUGIN_EXCEPTION_DIALOG_MESSAGE,
plugin.getClass().getSimpleName(),
String.valueOf(e.getMessage())
);
int buttonIndex = JOptionPane.showOptionDialog(
null,
message,
Messages.PLUGIN_EXCEPTION_DIALOG_TITLE,
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.ERROR_MESSAGE,
null,
buttonTexts,
buttonTexts[0]
);
if (buttonIndex == 1) {
System.exit(0);
}
ignoreExceptions = buttonIndex == 2;
}
}
......@@ -240,6 +240,11 @@ final public class Messages {
public static String PLOTTER_ACCESSIBLE_NAME_NO_DATA;
public static String PLOTTER_SAVE_AS_MENU_ITEM;
public static String PLOTTER_TIME_RANGE_MENU;
public static String PLUGIN_EXCEPTION_DIALOG_BUTTON_EXIT;
public static String PLUGIN_EXCEPTION_DIALOG_BUTTON_IGNORE;
public static String PLUGIN_EXCEPTION_DIALOG_BUTTON_OK;
public static String PLUGIN_EXCEPTION_DIALOG_MESSAGE;
public static String PLUGIN_EXCEPTION_DIALOG_TITLE;
public static String PROBLEM_ADDING_LISTENER;
public static String PROBLEM_DISPLAYING_MBEAN;
public static String PROBLEM_INVOKING;
......
/*
* Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
......@@ -71,7 +71,7 @@ public class VMPanel extends JTabbedPane implements PropertyChangeListener {
// Each VMPanel has its own instance of the JConsolePlugin
// A map of JConsolePlugin to the previous SwingWorker
private Map<JConsolePlugin, SwingWorker<?, ?>> plugins = null;
private Map<ExceptionSafePlugin, SwingWorker<?, ?>> plugins = null;
private boolean pluginTabsAdded = false;
// Update these only on the EDT
......@@ -107,10 +107,10 @@ public class VMPanel extends JTabbedPane implements PropertyChangeListener {
}
}
plugins = new LinkedHashMap<JConsolePlugin, SwingWorker<?, ?>>();
plugins = new LinkedHashMap<ExceptionSafePlugin, SwingWorker<?, ?>>();
for (JConsolePlugin p : JConsole.getPlugins()) {
p.setContext(proxyClient);
plugins.put(p, null);
plugins.put(new ExceptionSafePlugin(p), null);
}
Utilities.updateTransparency(this);
......@@ -566,7 +566,7 @@ public class VMPanel extends JTabbedPane implements PropertyChangeListener {
}
// plugin GUI update
for (JConsolePlugin p : plugins.keySet()) {
for (ExceptionSafePlugin p : plugins.keySet()) {
SwingWorker<?, ?> sw = p.newSwingWorker();
SwingWorker<?, ?> prevSW = plugins.get(p);
// schedule SwingWorker to run only if the previous
......@@ -575,7 +575,7 @@ public class VMPanel extends JTabbedPane implements PropertyChangeListener {
if (sw == null || sw.getState() == SwingWorker.StateValue.PENDING) {
plugins.put(p, sw);
if (sw != null) {
sw.execute();
p.executeSwingWorker(sw);
}
}
}
......
......@@ -198,6 +198,11 @@ PLOTTER_ACCESSIBLE_NAME_KEY_AND_VALUE={0}={1}\n
PLOTTER_ACCESSIBLE_NAME_NO_DATA=No data plotted.
PLOTTER_SAVE_AS_MENU_ITEM=Save data &as...
PLOTTER_TIME_RANGE_MENU=&Time Range
PLUGIN_EXCEPTION_DIALOG_BUTTON_EXIT=Exit
PLUGIN_EXCEPTION_DIALOG_BUTTON_IGNORE=Ignore
PLUGIN_EXCEPTION_DIALOG_BUTTON_OK=OK
PLUGIN_EXCEPTION_DIALOG_MESSAGE=An unexpected exception has occurred in %s:\n\n%s\n\nStart with -debug for details. Ignore will suppress further exceptions.
PLUGIN_EXCEPTION_DIALOG_TITLE=Plug-in exception
PROBLEM_ADDING_LISTENER=Problem adding listener
PROBLEM_DISPLAYING_MBEAN=Problem displaying MBean
PROBLEM_INVOKING=Problem invoking
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册