/* * Copyright 2000-2013 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.idea; import com.intellij.ide.Bootstrap; import com.intellij.openapi.util.SystemInfo; import com.intellij.util.ui.JBUI; import com.intellij.util.ui.UIUtil; import consulo.application.ApplicationProperties; import javax.swing.*; import java.awt.*; import java.io.PrintStream; import java.io.PrintWriter; import java.io.StringWriter; @SuppressWarnings({"UseOfSystemOutOrSystemErr", "MethodNamesDifferingOnlyByCase"}) public class Main { public static final int USAGE_INFO = 0; public static final int VERSION_INFO = 0; public static final int STARTUP_EXCEPTION = 1; public static final int INSTANCE_CHECK_FAILED = 2; public static final int PLUGIN_ERROR = 3; public static final int UNSUPPORTED_JAVA_VERSION = 4; private static final String AWT_HEADLESS = "java.awt.headless"; private static boolean isHeadless; private static boolean isCommandLine; private static boolean hasGraphics = true; private Main() { } public static void main(final String[] args) { setFlags(args); if (isHeadless()) { System.setProperty(AWT_HEADLESS, Boolean.TRUE.toString()); } else { if (GraphicsEnvironment.isHeadless()) { throw new HeadlessException("Unable to detect graphics environment"); } } if (!SystemInfo.isJavaVersionAtLeast("1.8")) { showMessage("Unsupported Java Version", "Cannot start under Java " + SystemInfo.JAVA_RUNTIME_VERSION + ": Java 1.8 or later is required.", true); System.exit(UNSUPPORTED_JAVA_VERSION); } try { Bootstrap.main(args, Main.class.getName() + "Impl", "start"); } catch (Throwable t) { if(t instanceof IllegalAccessError && SystemInfo.isJavaVersionAtLeast("1.9")) { showMessage("Unsupported Java Version", "Cannot start under Java " + SystemInfo.JAVA_RUNTIME_VERSION + ". Please read https://github" + ".com/consulo/consulo/wiki/Java-9-Runtime", true); System.exit(UNSUPPORTED_JAVA_VERSION); } showMessage("Start Failed", t); System.exit(STARTUP_EXCEPTION); } } public static boolean isHeadless() { return isHeadless; } public static boolean isCommandLine() { return isCommandLine; } public static void setFlags(String[] args) { isHeadless = isCommandLine = isHeadless(args); } private static boolean isHeadless(String[] args) { return Boolean.getBoolean(AWT_HEADLESS) || Boolean.getBoolean(ApplicationProperties.CONSULO_IN_UNIT_TEST); } public static void showMessage(String title, Throwable t) { StringWriter message = new StringWriter(); AWTError awtError = findGraphicsError(t); if (awtError != null) { message.append("Failed to initialize graphics environment\n\n"); hasGraphics = false; t = awtError; } else { message.append("Internal error. Please post to "); message.append("https://discuss.consulo.io"); message.append("\n\n"); } t.printStackTrace(new PrintWriter(message)); showMessage(title, message.toString(), true); } private static AWTError findGraphicsError(Throwable t) { while (t != null) { if (t instanceof AWTError) { return (AWTError)t; } t = t.getCause(); } return null; } @SuppressWarnings({"UseJBColor", "UndesirableClassUsage", "UseOfSystemOutOrSystemErr"}) public static void showMessage(String title, String message, boolean error) { PrintStream stream = error ? System.err : System.out; stream.println("\n" + title + ": " + message); boolean headless = !hasGraphics || isCommandLine() || GraphicsEnvironment.isHeadless(); if (!headless) { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Throwable ignore) { } try { JTextPane textPane = new JTextPane(); textPane.setEditable(false); textPane.setText(message.replaceAll("\t", " ")); textPane.setBackground(UIUtil.getPanelBackground()); textPane.setCaretPosition(0); JScrollPane scrollPane = new JScrollPane(textPane, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED); scrollPane.setBorder(null); int maxHeight = Math.min(JBUI.scale(600), Toolkit.getDefaultToolkit().getScreenSize().height - 150); int maxWidth = Math.min(JBUI.scale(600), Toolkit.getDefaultToolkit().getScreenSize().width - 150); Dimension component = scrollPane.getPreferredSize(); if (component.height > maxHeight || component.width > maxWidth) { scrollPane.setPreferredSize(new Dimension(Math.min(maxWidth, component.width), Math.min(maxHeight, component.height))); } int type = error ? JOptionPane.ERROR_MESSAGE : JOptionPane.WARNING_MESSAGE; JOptionPane.showMessageDialog(JOptionPane.getRootFrame(), scrollPane, title, type); } catch (Throwable t) { stream.println("\nAlso, an UI exception occurred on attempt to show above message:"); t.printStackTrace(stream); } } } }