// License: GPL. For details, see LICENSE file.
package org.openstreetmap.josm.tools;
import static org.openstreetmap.josm.tools.I18n.tr;
import java.awt.Desktop;
import java.awt.Dimension;
import java.awt.GraphicsEnvironment;
import java.awt.event.KeyEvent;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.CertificateException;
import java.util.Arrays;
import javax.swing.JOptionPane;
import org.openstreetmap.josm.Main;
import org.openstreetmap.josm.gui.ExtendedDialog;
import org.openstreetmap.josm.gui.util.GuiHelper;
/**
* {@code PlatformHook} base implementation.
*
* Don't write (Main.platform instanceof PlatformHookUnixoid) because other platform
* hooks are subclasses of this class.
*/
public class PlatformHookUnixoid implements PlatformHook {
private String osDescription;
@Override
public void preStartupHook() {
}
@Override
public void startupHook() {
}
@Override
public void openUrl(String url) throws IOException {
for (String program : Main.pref.getCollection("browser.unix",
Arrays.asList("xdg-open", "#DESKTOP#", "$BROWSER", "gnome-open", "kfmclient openURL", "firefox"))) {
try {
if ("#DESKTOP#".equals(program)) {
Desktop.getDesktop().browse(new URI(url));
} else if (program.startsWith("$")) {
program = System.getenv().get(program.substring(1));
Runtime.getRuntime().exec(new String[]{program, url});
} else {
Runtime.getRuntime().exec(new String[]{program, url});
}
return;
} catch (IOException | URISyntaxException e) {
Main.warn(e);
}
}
}
@Override
public void initSystemShortcuts() {
// TODO: Insert system shortcuts here. See Windows and especially OSX to see how to.
for(int i = KeyEvent.VK_F1; i <= KeyEvent.VK_F12; ++i)
Shortcut.registerSystemShortcut("screen:toogle"+i, tr("reserved"), i, KeyEvent.CTRL_DOWN_MASK | KeyEvent.ALT_DOWN_MASK).setAutomatic();
Shortcut.registerSystemShortcut("system:reset", tr("reserved"), KeyEvent.VK_DELETE, KeyEvent.CTRL_DOWN_MASK | KeyEvent.ALT_DOWN_MASK).setAutomatic();
Shortcut.registerSystemShortcut("system:resetX", tr("reserved"), KeyEvent.VK_BACK_SPACE, KeyEvent.CTRL_DOWN_MASK | KeyEvent.ALT_DOWN_MASK).setAutomatic();
}
/**
* This should work for all platforms. Yeah, should.
* See PlatformHook.java for a list of reasons why
* this is implemented here...
*/
@Override
public String makeTooltip(String name, Shortcut sc) {
String result = "";
result += "<html>";
result += name;
if (sc != null && sc.getKeyText().length() != 0) {
result += " ";
result += "<font size='-2'>";
result += "("+sc.getKeyText()+")";
result += "</font>";
}
result += " </html>";
return result;
}
@Override
public String getDefaultStyle() {
return "javax.swing.plaf.metal.MetalLookAndFeel";
}
@Override
public boolean canFullscreen() {
return !GraphicsEnvironment.isHeadless() &&
GraphicsEnvironment.getLocalGraphicsEnvironment()
.getDefaultScreenDevice().isFullScreenSupported();
}
@Override
public boolean rename(File from, File to) {
return from.renameTo(to);
}
/**
* Determines if the JVM is OpenJDK-based.
* @return {@code true} if {@code java.home} contains "openjdk", {@code false} otherwise
* @since 6951
*/
public static boolean isOpenJDK() {
String javaHome = System.getProperty("java.home");
return javaHome != null && javaHome.contains("openjdk");
}
/**
* Get the package name including detailed version.
* @param packageNames The possible package names (when a package can have different names on different distributions)
* @return The package name and package version if it can be identified, null otherwise
* @since 7314
*/
public static String getPackageDetails(String ... packageNames) {
try {
boolean dpkg = Files.exists(Paths.get("/usr/bin/dpkg-query"));
boolean eque = Files.exists(Paths.get("/usr/bin/equery"));
boolean rpm = Files.exists(Paths.get("/bin/rpm"));
if (dpkg || rpm || eque) {
for (String packageName : packageNames) {
String[] args = null;
if (dpkg) {
args = new String[] {"dpkg-query", "--show", "--showformat", "${Architecture}-${Version}", packageName};
} else if (eque) {
args = new String[] {"equery", "-q", "list", "-e", "--format=$fullversion", packageName};
} else {
args = new String[] {"rpm", "-q", "--qf", "%{arch}-%{version}", packageName};
}
String version = Utils.execOutput(Arrays.asList(args));
if (version != null && !version.contains("not installed")) {
return packageName + ":" + version;
}
}
}
} catch (IOException e) {
Main.warn(e);
}
return null;
}
/**
* Get the Java package name including detailed version.
*
* Some Java bugs are specific to a certain security update, so in addition
* to the Java version, we also need the exact package version.
*
* @return The package name and package version if it can be identified, null otherwise
*/
public String getJavaPackageDetails() {
String home = System.getProperty("java.home");
if (home.contains("java-7-openjdk") || home.contains("java-1.7.0-openjdk")) {
return getPackageDetails("openjdk-7-jre", "java-1_7_0-openjdk", "java-1.7.0-openjdk");
} else if (home.contains("icedtea")) {
return getPackageDetails("icedtea-bin");
} else if (home.contains("oracle")) {
return getPackageDetails("oracle-jdk-bin", "oracle-jre-bin");
}
return null;
}
/**
* Get the Web Start package name including detailed version.
*
* OpenJDK packages are shipped with icedtea-web package,
* but its version generally does not match main java package version.
*
* Simply return {@code null} if there's no separate package for Java WebStart.
*
* @return The package name and package version if it can be identified, null otherwise
*/
public String getWebStartPackageDetails() {
if (isOpenJDK()) {
return getPackageDetails("icedtea-netx", "icedtea-web");
}
return null;
}
protected String buildOSDescription() {
String osName = System.getProperty("os.name");
if ("Linux".equalsIgnoreCase(osName)) {
try {
// Try lsb_release (only available on LSB-compliant Linux systems, see https://www.linuxbase.org/lsb-cert/productdir.php?by_prod )
Process p = Runtime.getRuntime().exec("lsb_release -ds");
try (BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream(), StandardCharsets.UTF_8))) {
String line = Utils.strip(input.readLine());
if (line != null && !line.isEmpty()) {
line = line.replaceAll("\"+","");
line = line.replaceAll("NAME=",""); // strange code for some Gentoo's
if(line.startsWith("Linux ")) // e.g. Linux Mint
return line;
else if(!line.isEmpty())
return "Linux " + line;
}
}
} catch (IOException e) {
// Non LSB-compliant Linux system. List of common fallback release files: http://linuxmafia.com/faq/Admin/release-files.html
for (LinuxReleaseInfo info : new LinuxReleaseInfo[]{
new LinuxReleaseInfo("/etc/lsb-release", "DISTRIB_DESCRIPTION", "DISTRIB_ID", "DISTRIB_RELEASE"),
new LinuxReleaseInfo("/etc/os-release", "PRETTY_NAME", "NAME", "VERSION"),
new LinuxReleaseInfo("/etc/arch-release"),
new LinuxReleaseInfo("/etc/debian_version", "Debian GNU/Linux "),
new LinuxReleaseInfo("/etc/fedora-release"),
new LinuxReleaseInfo("/etc/gentoo-release"),
new LinuxReleaseInfo("/etc/redhat-release"),
new LinuxReleaseInfo("/etc/SuSE-release")
}) {
String description = info.extractDescription();
if (description != null && !description.isEmpty()) {
return "Linux " + description;
}
}
}
}
return osName;
}
@Override
public String getOSDescription() {
if (osDescription == null) {
osDescription = buildOSDescription();
}
return osDescription;
}
protected static class LinuxReleaseInfo {
private final String path;
private final String descriptionField;
private final String idField;
private final String releaseField;
private final boolean plainText;
private final String prefix;
public LinuxReleaseInfo(String path, String descriptionField, String idField, String releaseField) {
this(path, descriptionField, idField, releaseField, false, null);
}
public LinuxReleaseInfo(String path) {
this(path, null, null, null, true, null);
}
public LinuxReleaseInfo(String path, String prefix) {
this(path, null, null, null, true, prefix);
}
private LinuxReleaseInfo(String path, String descriptionField, String idField, String releaseField, boolean plainText, String prefix) {
this.path = path;
this.descriptionField = descriptionField;
this.idField = idField;
this.releaseField = releaseField;
this.plainText = plainText;
this.prefix = prefix;
}
@Override public String toString() {
return "ReleaseInfo [path=" + path + ", descriptionField=" + descriptionField +
", idField=" + idField + ", releaseField=" + releaseField + "]";
}
/**
* Extracts OS detailed information from a Linux release file (/etc/xxx-release)
* @return The OS detailed information, or {@code null}
*/
public String extractDescription() {
String result = null;
if (path != null) {
Path p = Paths.get(path);
if (Files.exists(p)) {
try (BufferedReader reader = Files.newBufferedReader(p, StandardCharsets.UTF_8)) {
String id = null;
String release = null;
String line;
while (result == null && (line = reader.readLine()) != null) {
if (line.contains("=")) {
String[] tokens = line.split("=");
if (tokens.length >= 2) {
// Description, if available, contains exactly what we need
if (descriptionField != null && descriptionField.equalsIgnoreCase(tokens[0])) {
result = Utils.strip(tokens[1]);
} else if (idField != null && idField.equalsIgnoreCase(tokens[0])) {
id = Utils.strip(tokens[1]);
} else if (releaseField != null && releaseField.equalsIgnoreCase(tokens[0])) {
release = Utils.strip(tokens[1]);
}
}
} else if (plainText && !line.isEmpty()) {
// Files composed of a single line
result = Utils.strip(line);
}
}
// If no description has been found, try to rebuild it with "id" + "release" (i.e. "name" + "version")
if (result == null && id != null && release != null) {
result = id + " " + release;
}
} catch (IOException e) {
// Ignore
}
}
}
// Append prefix if any
if (result != null && !result.isEmpty() && prefix != null && !prefix.isEmpty()) {
result = prefix + result;
}
if(result != null)
result = result.replaceAll("\"+","");
return result;
}
}
protected void askUpdateJava(String version) {
askUpdateJava(version, "https://www.java.com/download");
}
// Method kept because strings have already been translated. To enable for Java 8 migration somewhere in 2016
protected void askUpdateJava(final String version, final String url) {
GuiHelper.runInEDTAndWait(new Runnable() {
@Override
public void run() {
ExtendedDialog ed = new ExtendedDialog(
Main.parent,
tr("Outdated Java version"),
new String[]{tr("Update Java"), tr("Cancel")});
// Check if the dialog has not already been permanently hidden by user
if (!ed.toggleEnable("askUpdateJava8").toggleCheckState()) {
ed.setButtonIcons(new String[]{"java.png", "cancel.png"}).setCancelButton(2);
ed.setMinimumSize(new Dimension(480, 300));
ed.setIcon(JOptionPane.WARNING_MESSAGE);
String content = tr("You are running version {0} of Java.", "<b>"+version+"</b>")+"<br><br>";
if ("Sun Microsystems Inc.".equals(System.getProperty("java.vendor")) && !isOpenJDK()) {
content += "<b>"+tr("This version is no longer supported by {0} since {1} and is not recommended for use.",
"Oracle", tr("April 2015"))+"</b><br><br>";
}
content += "<b>"+tr("JOSM will soon stop working with this version; we highly recommend you to update to Java {0}.", "8")+"</b><br><br>"+
tr("Would you like to update now ?");
ed.setContent(content);
if (ed.showDialog().getValue() == 1) {
try {
openUrl(url);
} catch (IOException e) {
Main.warn(e);
}
}
}
}
});
}
@Override
public boolean setupHttpsCertificate(String entryAlias, KeyStore.TrustedCertificateEntry trustedCert)
throws KeyStoreException, NoSuchAlgorithmException, CertificateException, IOException {
// TODO setup HTTPS certificate on Unix systems
return false;
}
}