Changeset 7487 in josm
- Timestamp:
- 2014-09-03T21:57:20+02:00 (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/JOSM.app/Contents/Info.plist_template.xml
r7475 r7487 10 10 <string>JOSM File</string> 11 11 <key>UTTypeIconFile</key> 12 <string> macosx/JOSM.app/Contents/Resources/JOSM.icns</string>12 <string>JOSM.icns</string> 13 13 <key>UTTypeReferenceURL</key> 14 14 <string>http://wiki.openstreetmap.org/wiki/JOSM_file_format</string> … … 82 82 <dict> 83 83 <key>CFBundleTypeIconFile</key> 84 <string> macosx/JOSM.app/Contents/Resources/JOSM.icns</string>84 <string>JOSM.icns</string> 85 85 <key>CFBundleTypeName</key> 86 86 <string>OSM Files</string> … … 105 105 <dict> 106 106 <key>CFBundleTypeIconFile</key> 107 <string> macosx/JOSM.app/Contents/Resources/JOSM.icns</string>107 <string>JOSM.icns</string> 108 108 <key>CFBundleTypeName</key> 109 109 <string>GPX Files</string> … … 125 125 <dict> 126 126 <key>CFBundleTypeIconFile</key> 127 <string> macosx/JOSM.app/Contents/Resources/JOSM.icns</string>127 <string>JOSM.icns</string> 128 128 <key>CFBundleTypeName</key> 129 129 <string>OSM Compressed Files</string> -
trunk/src/org/openstreetmap/josm/actions/RestartAction.java
r7335 r7487 12 12 import java.util.ArrayList; 13 13 import java.util.Arrays; 14 import java.util.Collections;15 14 import java.util.List; 16 15 … … 27 26 */ 28 27 public class RestartAction extends JosmAction { 28 29 // AppleScript to restart OS X package 30 private static final String RESTART_APPLE_SCRIPT = 31 "tell application \"System Events\"\n" 32 + "repeat until not (exists process \"JOSM\")\n" 33 + "delay 0.2\n" 34 + "end repeat\n" 35 + "end tell\n" 36 + "tell application \"JOSM\" to activate"; 29 37 30 38 /** … … 73 81 if (isRestartSupported() && !Main.exitJosm(false, 0)) return; 74 82 try { 75 // java binary 76 final String java = System.getProperty("java.home") + File.separator + "bin" + File.separator + 77 (Main.isPlatformWindows() ? "java.exe" : "java"); 78 if (!new File(java).isFile()) { 79 throw new IOException("Unable to find suitable java runtime at "+java); 83 final List<String> cmd = new ArrayList<>(); 84 // special handling for OSX .app package 85 if (Main.isPlatformOsx() && System.getProperty("java.library.path").contains("/JOSM.app/Contents/MacOS")) { 86 cmd.add("/usr/bin/osascript"); 87 for (String line : RESTART_APPLE_SCRIPT.split("\n")) { 88 cmd.add("-e"); 89 cmd.add(line); 90 } 91 } else { 92 // java binary 93 final String java = System.getProperty("java.home") + File.separator + "bin" + File.separator + 94 (Main.isPlatformWindows() ? "java.exe" : "java"); 95 if (!new File(java).isFile()) { 96 throw new IOException("Unable to find suitable java runtime at "+java); 97 } 98 cmd.add(java); 99 // vm arguments 100 for (String arg : ManagementFactory.getRuntimeMXBean().getInputArguments()) { 101 // if it's the agent argument : we ignore it otherwise the 102 // address of the old application and the new one will be in conflict 103 if (!arg.contains("-agentlib")) { 104 cmd.add(arg); 105 } 106 } 107 // program main and program arguments (be careful a sun property. might not be supported by all JVM) 108 String[] mainCommand = System.getProperty("sun.java.command").split(" "); 109 // look for a .jar in all chunks to support paths with spaces (fix #9077) 110 String jarPath = mainCommand[0]; 111 for (int i = 1; i < mainCommand.length && !jarPath.endsWith(".jar"); i++) { 112 jarPath += " " + mainCommand[i]; 113 } 114 // program main is a jar 115 if (jarPath.endsWith(".jar")) { 116 // if it's a jar, add -jar mainJar 117 cmd.add("-jar"); 118 cmd.add(new File(jarPath).getPath()); 119 } else { 120 // else it's a .class, add the classpath and mainClass 121 cmd.add("-cp"); 122 cmd.add("\"" + System.getProperty("java.class.path") + "\""); 123 cmd.add(mainCommand[0]); 124 } 125 // if it's webstart add JNLP file 126 String jnlp = System.getProperty("jnlp.application.href"); 127 if (jnlp != null) { 128 cmd.add(jnlp); 129 } 130 // finally add program arguments 131 cmd.addAll(Arrays.asList(Main.commandLineArgs)); 80 132 } 81 final List<String> cmd = new ArrayList<>(Collections.singleton(java));82 // vm arguments83 for (String arg : ManagementFactory.getRuntimeMXBean().getInputArguments()) {84 // if it's the agent argument : we ignore it otherwise the85 // address of the old application and the new one will be in conflict86 if (!arg.contains("-agentlib")) {87 cmd.add(arg);88 }89 }90 // program main and program arguments (be careful a sun property. might not be supported by all JVM)91 String[] mainCommand = System.getProperty("sun.java.command").split(" ");92 // look for a .jar in all chunks to support paths with spaces (fix #9077)93 String jarPath = mainCommand[0];94 for (int i = 1; i < mainCommand.length && !jarPath.endsWith(".jar"); i++) {95 jarPath += " " + mainCommand[i];96 }97 // program main is a jar98 if (jarPath.endsWith(".jar")) {99 // if it's a jar, add -jar mainJar100 cmd.add("-jar");101 cmd.add(new File(jarPath).getPath());102 } else {103 // else it's a .class, add the classpath and mainClass104 cmd.add("-cp");105 cmd.add("\"" + System.getProperty("java.class.path") + "\"");106 cmd.add(mainCommand[0]);107 }108 // if it's webstart add JNLP file109 String jnlp = System.getProperty("jnlp.application.href");110 if (jnlp != null) {111 cmd.add(jnlp);112 }113 // finally add program arguments114 cmd.addAll(Arrays.asList(Main.commandLineArgs));115 133 Main.info("Restart "+cmd); 116 134 // execute the command in a shutdown hook, to be sure that all the
Note:
See TracChangeset
for help on using the changeset viewer.