/* * This file is part of LanternServer, licensed under the MIT License (MIT). * * Copyright (c) LanternPowered <https://www.lanternpowered.org> * Copyright (c) SpongePowered <https://www.spongepowered.org> * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the Software), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.lanternpowered.launch; import org.lanternpowered.server.LanternServer; import java.awt.GraphicsEnvironment; import javax.swing.JOptionPane; public class VersionCheckingMain { private static final String REQUIRED_VERSION = "1.8.0_40"; private static final String ERROR_MESSAGE = "We have detected that you are JRE version %s, which is out of date!\n" + "In order to run LanternServer, you **must** be running JRE version %s (or above).\n" + "Previous builds of JRE version 1.8 will not work with the LanternServer.\n" + "This can be downloaded from Oracle: http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html"; public static void main(String[] args) throws Exception { final String current = System.getProperty("java.version"); if (getVersionValue(current) < getVersionValue(REQUIRED_VERSION)) { final String error = String.format(ERROR_MESSAGE, current, REQUIRED_VERSION); if (!GraphicsEnvironment.isHeadless()) { JOptionPane.showMessageDialog(null, error, "PEBKACException!", JOptionPane.ERROR_MESSAGE); } throw new RuntimeException(error); } LanternServer.main(args); } /** * Calculates a double value based on a Java version string such that a * higher version will produce a higher value * * @param version The Java version * @return The double value of the Java version */ private static double getVersionValue(String version) { // Get rid of any dashes, such as those in early access versions which have "-ea" on the end of the version if (version.contains("-")) { version = version.substring(0, version.indexOf('-')); } // Replace underscores with periods for easier String splitting version = version.replace('_', '.'); // Split the version up into parts final String[] versionParts = version.split("\\."); double versionValue = 0; for (int i = 0; i < versionParts.length; i++) { try { final int part = Integer.valueOf(versionParts[i]); // The value of the part of the version is related to it's proximity to the beginning // Multiply by 3 to "pad" each of the parts a bit more so a higher value // of a less significant version part couldn't as easily outweight the // more significant version parts. versionValue += part * Math.pow(10, versionParts.length - (i - 1) * 3); } catch (NumberFormatException ignored) { } } return versionValue; } }