/* Copyright 2008-2010 Gephi Authors : Mathieu Bastian <mathieu.bastian@gephi.org> Website : http://www.gephi.org This file is part of Gephi. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright 2011 Gephi Consortium. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 3 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at http://gephi.org/about/legal/license-notice/ or /cddl-1.0.txt and /gpl-3.0.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License files at /cddl-1.0.txt and /gpl-3.0.txt. If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyrighted [year] [name of copyright owner]" If you wish your version of this file to be governed by only the CDDL or only the GPL Version 3, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 3] license." If you do not indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 3 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 3 code and therefore, elected the GPL Version 3 license, then the option applies only if the new code is made subject to such option by the copyright holder. Contributor(s): Portions Copyrighted 2011 Gephi Consortium. */ package org.gephi.branding.desktop; import java.awt.Color; import java.awt.Desktop; import java.io.*; import java.net.URI; import java.net.URL; import java.net.URLConnection; import java.util.logging.Formatter; import java.util.logging.Handler; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.Logger; import javax.swing.JCheckBox; import javax.swing.JOptionPane; import javax.swing.UIManager; import org.gephi.branding.desktop.reporter.ReporterHandler; import org.gephi.desktop.project.api.ProjectControllerUI; import org.gephi.project.api.ProjectController; import org.openide.modules.ModuleInstall; import org.openide.util.Lookup; import org.openide.util.NbBundle; import org.openide.util.NbPreferences; import org.openide.windows.IOColorLines; import org.openide.windows.IOProvider; import org.openide.windows.InputOutput; import org.openide.windows.OutputWriter; import org.openide.windows.WindowManager; /** * Manages a module's lifecycle. Remember that an installer is optional and * often not needed at all. */ public class Installer extends ModuleInstall { private static final String LATEST_GEPHI_VERSION_URL = "https://raw.githubusercontent.com/gephi/gephi/gh-pages/latest"; @Override public void restored() { //Init initGephi(); //GTK Slider issue #529913 UIManager.put("Slider.paintValue", Boolean.FALSE); //Handler if (System.getProperty("org.gephi.crashReporter.enabled", "true").equals("true")) { Logger.getLogger("").addHandler(new ReporterHandler()); } //Memory Starvation Manager if (System.getProperty("org.gephiMemoryStarvationManager.enabled", "true").equals("true")) { MemoryStarvationManager memoryStarvationManager = new MemoryStarvationManager(); memoryStarvationManager.startup(); } //Check for new major release: WindowManager.getDefault().invokeWhenUIReady(new Runnable() { @Override public void run() { new Thread() { @Override public void run() { checkForNewMajorRelease(); } }.start(); } }); //Output logger installOutputLogger(); } private void initGephi() { final ProjectController pc = Lookup.getDefault().lookup(ProjectController.class); WindowManager.getDefault().invokeWhenUIReady(new Runnable() { @Override public void run() { pc.startup(); DragNDropFrameAdapter.register(); } }); } @Override public boolean closing() { if (Lookup.getDefault().lookup(ProjectController.class).getCurrentProject() == null) { //Close directly if no project open return true; } int option = JOptionPane.showConfirmDialog(WindowManager.getDefault().getMainWindow(), NbBundle.getMessage(Installer.class, "CloseConfirmation.message"), NbBundle.getMessage(Installer.class, "CloseConfirmation.message"), JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE); if (option == JOptionPane.YES_OPTION) { Lookup.getDefault().lookup(ProjectControllerUI.class).saveProject(); } else if (option == JOptionPane.CANCEL_OPTION || option == JOptionPane.CLOSED_OPTION) { return false;//Exit canceled } Lookup.getDefault().lookup(ProjectController.class).closeCurrentProject(); return true; } private void checkForNewMajorRelease() { boolean doCheck = NbPreferences.forModule(Installer.class).getBoolean("check_latest_version", true); if (doCheck) { InputStream stream = null; BufferedReader reader = null; try { String gephiVersion = System.getProperty("netbeans.productversion"); if (gephiVersion.contains("SNAPSHOT")) { return; } URL url = new URL(LATEST_GEPHI_VERSION_URL); URLConnection connection = url.openConnection(); connection.setRequestProperty("User-Agent", ""); connection.connect(); stream = connection.getInputStream(); reader = new BufferedReader(new InputStreamReader(stream)); String latest = reader.readLine(); latest = latest.replaceAll("[a-zA-Z .-]", ""); String gephiVersionTst = gephiVersion.replaceAll("[0-9]{12}", "").replaceAll("[a-zA-Z .-]", ""); if (Integer.parseInt(latest) > Integer.parseInt(gephiVersionTst)) { //Show update dialog JCheckBox checkbox = new JCheckBox(NbBundle.getMessage(Installer.class, "MajorReleaseCheck.dontShowAgain"), false); String message = NbBundle.getMessage(Installer.class, "MajorReleaseCheck.message", latest, gephiVersion); int option = JOptionPane.showConfirmDialog(null, new Object[]{message, checkbox}, NbBundle.getMessage(Installer.class, "MajorReleaseCheck.newVersion"), JOptionPane.OK_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE); NbPreferences.forModule(Installer.class).putBoolean("check_latest_version", !checkbox.isSelected()); if (option == JOptionPane.OK_OPTION) { Desktop.getDesktop().browse(new URI("http://gephi.org/users/download/")); } } } catch (Exception ex) { Logger.getLogger("").warning("Error while checking latest Gephi version"); } finally { try { if (reader != null) { reader.close(); } if (stream != null) { stream.close(); } } catch (IOException e) { } } } } private void installOutputLogger() { Logger.getLogger("").addHandler(new OutputHandler()); } private static class OutputHandler extends Handler { private final InputOutput io; private final OutputWriter outputWriter; private final MsgFormatter formatter; public OutputHandler() { io = IOProvider.getDefault().getIO("Log", true); outputWriter = io.getOut(); formatter = new MsgFormatter(); } @Override public void publish(LogRecord record) { if ((record.getMessage() == null || record.getMessage().isEmpty()) && record.getThrown() == null) { //Nothing to log return; } Color color = Color.BLACK; if (record.getLevel().equals(Level.WARNING)) { color = Color.ORANGE; } else if (record.getLevel().equals(Level.SEVERE)) { color = Color.RED; } String msg = formatter.format(record); if (IOColorLines.isSupported(io)) { try { IOColorLines.println(io, msg, color); } catch (IOException ex) { outputWriter.println(msg); } } else { outputWriter.println(msg); } } @Override public void flush() { outputWriter.flush(); } @Override public void close() throws SecurityException { outputWriter.close(); } public class MsgFormatter extends Formatter { @Override public synchronized String format(LogRecord record) { String formattedMessage = formatMessage(record); String throwable = ""; String outputFormat = "[%1$s] %2$s %3$s"; //Also adding for logging exceptions if (record.getThrown() != null) { StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); pw.println(); record.getThrown().printStackTrace(pw); pw.close(); throwable = sw.toString(); } return String.format(outputFormat, record.getLevel().getName(), formattedMessage, throwable); } } } }