2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
24 import java.io.IOException;
25 import java.lang.reflect.Constructor;
26 import java.lang.reflect.Field;
27 import java.lang.reflect.InvocationTargetException;
28 import java.lang.reflect.Method;
31 * BrowserLauncher is a class that provides one static method, openURL, which
32 * opens the default web browser for the current user of the system to the given
33 * URL. It may support other protocols depending on the system -- mailto, ftp,
34 * etc. -- but that has not been rigorously tested and is not guaranteed to
37 * Yes, this is platform-specific code, and yes, it may rely on classes on
38 * certain platforms that are not part of the standard JDK. What we're trying to
39 * do, though, is to take something that's frequently desirable but inherently
40 * platform-specific -- opening a default browser -- and allow programmers (you,
41 * for example) to do so without worrying about dropping into native code or
42 * doing anything else similarly evil.
44 * Anyway, this code is completely in Java and will run on all JDK 1.1-compliant
45 * systems without modification or a need for additional libraries. All classes
46 * that are required on certain platforms to allow this to run are dynamically
47 * loaded at runtime via reflection and, if not found, will not cause this to do
48 * anything other than returning an error when opening the browser.
50 * There are certain system requirements for this class, as it's running through
51 * Runtime.exec(), which is Java's way of making a native system call.
52 * Currently, this requires that a Macintosh have a Finder which supports the
53 * GURL event, which is true for Mac OS 8.0 and 8.1 systems that have the
54 * Internet Scripting AppleScript dictionary installed in the Scripting
55 * Additions folder in the Extensions folder (which is installed by default as
56 * far as I know under Mac OS 8.0 and 8.1), and for all Mac OS 8.5 and later
57 * systems. On Windows, it only runs under Win32 systems (Windows 95, 98, and NT
58 * 4.0, as well as later versions of all). On other systems, this drops back
59 * from the inherently platform-sensitive concept of a default browser and
60 * simply attempts to launch Netscape via a shell command.
62 * This code is Copyright 1999-2001 by Eric Albert (ejalbert\@cs.stanford.edu)
63 * and may be redistributed or modified in any form without restrictions as long
64 * as the portion of this comment from this paragraph through the end of the
65 * comment is not removed. The author requests that he be notified of any
66 * application, applet, or other binary that makes use of this code, but that's
67 * more out of curiosity than anything and is not required. This software
68 * includes no warranty. The author is not repsonsible for any loss of data or
69 * functionality or any adverse or unexpected effects of using this software.
72 * Steven Spencer, JavaWorld magazine (<a
73 * href="http://www.javaworld.com/javaworld/javatips/jw-javatip66.html">Java Tip
75 * Thanks also to Ron B. Yeh, Eric Shapiro, Ben Engber, Paul Teitlebaum, Andrea
76 * Cantatore, Larry Barowski, Trevor Bedzek, Frank Miedrich, and Ron Rabakukk
78 * @author Eric Albert (<a
79 * href="mailto:ejalbert@cs.stanford.edu">ejalbert@cs.stanford.edu</a>)
80 * @version 1.4b1 (Released June 20, 2001)
82 public class BrowserLauncher
85 * The Java virtual machine that we are running on. Actually, in most cases we
86 * only care about the operating system, but some operating systems require us
87 * to switch on the VM.
89 private static int jvm;
91 /** The browser for the system */
92 private static Object browser;
95 * Caches whether any classes, methods, and fields that are not part of the
96 * JDK and need to be dynamically loaded at runtime loaded successfully.
98 * Note that if this is <code>false</code>, <code>openURL()</code> will always
99 * return an IOException.
101 private static boolean loadedWithoutErrors;
103 /** The com.apple.mrj.MRJFileUtils class */
104 private static Class mrjFileUtilsClass;
106 /** The com.apple.mrj.MRJOSType class */
107 private static Class mrjOSTypeClass;
109 /** The com.apple.MacOS.AEDesc class */
110 private static Class aeDescClass;
112 /** The <init>(int) method of com.apple.MacOS.AETarget */
113 private static Constructor aeTargetConstructor;
115 /** The <init>(int, int, int) method of com.apple.MacOS.AppleEvent */
116 private static Constructor appleEventConstructor;
118 /** The <init>(String) method of com.apple.MacOS.AEDesc */
119 private static Constructor aeDescConstructor;
121 /** The findFolder method of com.apple.mrj.MRJFileUtils */
122 private static Method findFolder;
124 /** The getFileCreator method of com.apple.mrj.MRJFileUtils */
125 private static Method getFileCreator;
127 /** The getFileType method of com.apple.mrj.MRJFileUtils */
128 private static Method getFileType;
130 /** The openURL method of com.apple.mrj.MRJFileUtils */
131 private static Method openURL;
133 /** The makeOSType method of com.apple.MacOS.OSUtils */
134 private static Method makeOSType;
136 /** The putParameter method of com.apple.MacOS.AppleEvent */
137 private static Method putParameter;
139 /** The sendNoReply method of com.apple.MacOS.AppleEvent */
140 private static Method sendNoReply;
142 /** Actually an MRJOSType pointing to the System Folder on a Macintosh */
143 private static Object kSystemFolderType;
145 /** The keyDirectObject AppleEvent parameter type */
146 private static Integer keyDirectObject;
148 /** The kAutoGenerateReturnID AppleEvent code */
149 private static Integer kAutoGenerateReturnID;
151 /** The kAnyTransactionID AppleEvent code */
152 private static Integer kAnyTransactionID;
154 /** The linkage object required for JDirect 3 on Mac OS X. */
155 private static Object linkage;
157 /** The framework to reference on Mac OS X */
158 private static final String JDirect_MacOSX = "/System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework/HIToolbox";
160 /** JVM constant for MRJ 2.0 */
161 private static final int MRJ_2_0 = 0;
163 /** JVM constant for MRJ 2.1 or later */
164 private static final int MRJ_2_1 = 1;
166 /** JVM constant for Java on Mac OS X 10.0 (MRJ 3.0) */
167 private static final int MRJ_3_0 = 3;
169 /** JVM constant for MRJ 3.1 */
170 private static final int MRJ_3_1 = 4;
172 /** JVM constant for any Windows NT JVM */
173 private static final int WINDOWS_NT = 5;
175 /** JVM constant for any Windows 9x JVM */
176 private static final int WINDOWS_9x = 6;
178 /** JVM constant for any other platform */
179 private static final int OTHER = -1;
182 * The file type of the Finder on a Macintosh. Hardcoding "Finder" would keep
183 * non-U.S. English systems from working properly.
185 private static final String FINDER_TYPE = "FNDR";
188 * The creator code of the Finder on a Macintosh, which is needed to send
189 * AppleEvents to the application.
191 private static final String FINDER_CREATOR = "MACS";
193 /** The name for the AppleEvent type corresponding to a GetURL event. */
194 private static final String GURL_EVENT = "GURL";
197 * The first parameter that needs to be passed into Runtime.exec() to open the
198 * default web browser on Windows.
200 private static final String FIRST_WINDOWS_PARAMETER = "/c";
202 /** The second parameter for Runtime.exec() on Windows. */
203 private static final String SECOND_WINDOWS_PARAMETER = "start";
206 * The third parameter for Runtime.exec() on Windows. This is a "title"
207 * parameter that the command line expects. Setting this parameter allows URLs
208 * containing spaces to work.
210 private static final String THIRD_WINDOWS_PARAMETER = "\"\"";
213 * The shell parameters for Netscape that opens a given URL in an already-open
214 * copy of Netscape on many command-line systems.
216 private static final String NETSCAPE_REMOTE_PARAMETER = "-remote";
218 private static final String NETSCAPE_OPEN_PARAMETER_START = "openURL(";
220 private static final String NETSCAPE_OPEN_NEW_WINDOW = ", new-window";
222 private static final String NETSCAPE_OPEN_PARAMETER_END = ")";
225 * The message from any exception thrown throughout the initialization
228 private static String errorMessage;
231 * An initialization block that determines the operating system and loads the
232 * necessary runtime data.
236 loadedWithoutErrors = true;
238 String osName = System.getProperty("os.name");
240 if (osName.startsWith("Mac OS"))
242 String mrjVersion = System.getProperty("mrj.version");
243 String majorMRJVersion;
244 if (mrjVersion == null)
246 // must be on some later build with mrj support
247 majorMRJVersion = "3.1";
251 majorMRJVersion = mrjVersion.substring(0, 3);
256 double version = Double.valueOf(majorMRJVersion).doubleValue();
262 else if ((version >= 2.1) && (version < 3))
264 // Assume that all 2.x versions of MRJ work the same. MRJ 2.1 actually
265 // works via Runtime.exec() and 2.2 supports that but has an openURL()
267 // as well that we currently ignore.
270 else if (version == 3.0)
274 else if (version >= 3.1)
276 // Assume that all 3.1 and later versions of MRJ work the same.
281 loadedWithoutErrors = false;
282 errorMessage = "Unsupported MRJ version: " + version;
284 } catch (NumberFormatException nfe)
286 loadedWithoutErrors = false;
287 errorMessage = "Invalid MRJ version: " + mrjVersion;
290 else if (osName.startsWith("Windows"))
292 if (osName.indexOf("9") != -1)
306 if (loadedWithoutErrors)
307 { // if we haven't hit any errors yet
308 loadedWithoutErrors = loadClasses();
313 * This class should be never be instantiated; this just ensures so.
315 private BrowserLauncher()
320 * Called by a static initializer to load any classes, fields, and methods
321 * required at runtime to locate the user's web browser.
323 * @return <code>true</code> if all intialization succeeded <code>false</code>
324 * if any portion of the initialization failed
326 private static boolean loadClasses()
334 Class aeTargetClass = Class.forName("com.apple.MacOS.AETarget");
335 Class osUtilsClass = Class.forName("com.apple.MacOS.OSUtils");
336 Class appleEventClass = Class.forName("com.apple.MacOS.AppleEvent");
337 Class aeClass = Class.forName("com.apple.MacOS.ae");
338 aeDescClass = Class.forName("com.apple.MacOS.AEDesc");
340 aeTargetConstructor = aeTargetClass
341 .getDeclaredConstructor(new Class[] { int.class });
342 appleEventConstructor = appleEventClass
343 .getDeclaredConstructor(new Class[] { int.class, int.class,
344 aeTargetClass, int.class, int.class });
345 aeDescConstructor = aeDescClass
346 .getDeclaredConstructor(new Class[] { String.class });
348 makeOSType = osUtilsClass.getDeclaredMethod("makeOSType",
349 new Class[] { String.class });
350 putParameter = appleEventClass.getDeclaredMethod("putParameter",
351 new Class[] { int.class, aeDescClass });
352 sendNoReply = appleEventClass.getDeclaredMethod("sendNoReply",
355 Field keyDirectObjectField = aeClass
356 .getDeclaredField("keyDirectObject");
357 keyDirectObject = (Integer) keyDirectObjectField.get(null);
359 Field autoGenerateReturnIDField = appleEventClass
360 .getDeclaredField("kAutoGenerateReturnID");
361 kAutoGenerateReturnID = (Integer) autoGenerateReturnIDField
364 Field anyTransactionIDField = appleEventClass
365 .getDeclaredField("kAnyTransactionID");
366 kAnyTransactionID = (Integer) anyTransactionIDField.get(null);
367 } catch (ClassNotFoundException cnfe)
369 errorMessage = cnfe.getMessage();
372 } catch (NoSuchMethodException nsme)
374 errorMessage = nsme.getMessage();
377 } catch (NoSuchFieldException nsfe)
379 errorMessage = nsfe.getMessage();
382 } catch (IllegalAccessException iae)
384 errorMessage = iae.getMessage();
395 mrjFileUtilsClass = Class.forName("com.apple.mrj.MRJFileUtils");
396 mrjOSTypeClass = Class.forName("com.apple.mrj.MRJOSType");
398 Field systemFolderField = mrjFileUtilsClass
399 .getDeclaredField("kSystemFolderType");
400 kSystemFolderType = systemFolderField.get(null);
401 findFolder = mrjFileUtilsClass.getDeclaredMethod("findFolder",
402 new Class[] { mrjOSTypeClass });
403 getFileCreator = mrjFileUtilsClass.getDeclaredMethod(
404 "getFileCreator", new Class[] { File.class });
405 getFileType = mrjFileUtilsClass.getDeclaredMethod("getFileType",
406 new Class[] { File.class });
407 } catch (ClassNotFoundException cnfe)
409 errorMessage = cnfe.getMessage();
412 } catch (NoSuchFieldException nsfe)
414 errorMessage = nsfe.getMessage();
417 } catch (NoSuchMethodException nsme)
419 errorMessage = nsme.getMessage();
422 } catch (SecurityException se)
424 errorMessage = se.getMessage();
427 } catch (IllegalAccessException iae)
429 errorMessage = iae.getMessage();
440 Class linker = Class.forName("com.apple.mrj.jdirect.Linker");
441 Constructor constructor = linker
442 .getConstructor(new Class[] { Class.class });
443 linkage = constructor
444 .newInstance(new Object[] { BrowserLauncher.class });
445 } catch (ClassNotFoundException cnfe)
447 errorMessage = cnfe.getMessage();
450 } catch (NoSuchMethodException nsme)
452 errorMessage = nsme.getMessage();
455 } catch (InvocationTargetException ite)
457 errorMessage = ite.getMessage();
460 } catch (InstantiationException ie)
462 errorMessage = ie.getMessage();
465 } catch (IllegalAccessException iae)
467 errorMessage = iae.getMessage();
478 mrjFileUtilsClass = Class.forName("com.apple.mrj.MRJFileUtils");
479 openURL = mrjFileUtilsClass.getDeclaredMethod("openURL",
480 new Class[] { String.class });
481 } catch (ClassNotFoundException cnfe)
483 errorMessage = cnfe.getMessage();
486 } catch (NoSuchMethodException nsme)
488 errorMessage = nsme.getMessage();
503 * Attempts to locate the default web browser on the local system. s results
504 * so it only locates the browser once for each use of this class per JVM
507 * @return The browser for the system. Note that this may not be what you
508 * would consider to be a standard web browser; instead, it's the
509 * application that gets called to open the default web browser. In
510 * some cases, this will be a non-String object that provides the
511 * means of calling the default browser.
513 private static Object locateBrowser()
526 Integer finderCreatorCode = (Integer) makeOSType.invoke(null,
527 new Object[] { FINDER_CREATOR });
528 Object aeTarget = aeTargetConstructor
529 .newInstance(new Object[] { finderCreatorCode });
530 Integer gurlType = (Integer) makeOSType.invoke(null,
531 new Object[] { GURL_EVENT });
532 Object appleEvent = appleEventConstructor.newInstance(new Object[] {
533 gurlType, gurlType, aeTarget, kAutoGenerateReturnID,
534 kAnyTransactionID });
536 // Don't set browser = appleEvent because then the next time we call
537 // locateBrowser(), we'll get the same AppleEvent, to which we'll
539 // added the relevant parameter. Instead, regenerate the AppleEvent
541 // There's probably a way to do this better; if any has any ideas,
545 } catch (IllegalAccessException iae)
548 errorMessage = iae.getMessage();
551 } catch (InstantiationException ie)
554 errorMessage = ie.getMessage();
557 } catch (InvocationTargetException ite)
560 errorMessage = ite.getMessage();
571 systemFolder = (File) findFolder.invoke(null,
572 new Object[] { kSystemFolderType });
573 } catch (IllegalArgumentException iare)
576 errorMessage = iare.getMessage();
579 } catch (IllegalAccessException iae)
582 errorMessage = iae.getMessage();
585 } catch (InvocationTargetException ite)
588 errorMessage = ite.getTargetException().getClass() + ": "
589 + ite.getTargetException().getMessage();
594 String[] systemFolderFiles = systemFolder.list();
596 // Avoid a FilenameFilter because that can't be stopped mid-list
597 for (int i = 0; i < systemFolderFiles.length; i++)
601 File file = new File(systemFolder, systemFolderFiles[i]);
608 // We're looking for a file with a creator code of 'MACS' and
609 // a type of 'FNDR'. Only requiring the type results in non-Finder
610 // applications being picked up on certain Mac OS 9 systems,
611 // especially German ones, and sending a GURL event to those
612 // applications results in a logout under Multiple Users.
613 Object fileType = getFileType.invoke(null, new Object[] { file });
615 if (FINDER_TYPE.equals(fileType.toString()))
617 Object fileCreator = getFileCreator.invoke(null,
618 new Object[] { file });
620 if (FINDER_CREATOR.equals(fileCreator.toString()))
622 browser = file.toString(); // Actually the Finder, but that's OK
627 } catch (IllegalArgumentException iare)
629 errorMessage = iare.getMessage();
632 } catch (IllegalAccessException iae)
635 errorMessage = iae.getMessage();
638 } catch (InvocationTargetException ite)
641 errorMessage = ite.getTargetException().getClass() + ": "
642 + ite.getTargetException().getMessage();
654 browser = ""; // Return something non-null
664 browser = "command.com";
670 browser = jalview.bin.Cache.getDefault("DEFAULT_BROWSER", "firefox");
679 * used to ensure that browser is up-to-date after a configuration change
680 * (Unix DEFAULT_BROWSER property change).
682 public static void resetBrowser()
688 * Attempts to open the default web browser to the given URL.
692 * @throws IOException
693 * If the web browser could not be located or does not run
695 public static void openURL(String url) throws IOException
697 if (!loadedWithoutErrors)
699 throw new IOException(MessageManager.formatMessage(
700 "exception.browser_not_found", new String[] { errorMessage }));
703 Object browser = locateBrowser();
707 throw new IOException(MessageManager.formatMessage(
708 "exception.browser_unable_to_locate",
709 new String[] { errorMessage }));
716 Object aeDesc = null;
720 aeDesc = aeDescConstructor.newInstance(new Object[] { url });
721 putParameter.invoke(browser,
722 new Object[] { keyDirectObject, aeDesc });
723 sendNoReply.invoke(browser, new Object[] {});
724 } catch (InvocationTargetException ite)
726 throw new IOException(MessageManager.formatMessage(
727 "exception.invocation_target_exception_creating_aedesc",
728 new String[] { ite.getMessage() }));
729 } catch (IllegalAccessException iae)
731 throw new IOException(MessageManager.formatMessage(
732 "exception.illegal_access_building_apple_evt", new String[]
733 { iae.getMessage() }));
734 } catch (InstantiationException ie)
736 throw new IOException(MessageManager.formatMessage(
737 "exception.illegal_access_building_apple_evt", new String[]
738 { ie.getMessage() }));
741 aeDesc = null; // Encourage it to get disposed if it was created
742 browser = null; // Ditto
748 Runtime.getRuntime().exec(new String[] { (String) browser, url });
754 int[] instance = new int[1];
755 int result = ICStart(instance, 0);
759 int[] selectionStart = new int[] { 0 };
760 byte[] urlBytes = url.getBytes();
761 int[] selectionEnd = new int[] { urlBytes.length };
762 result = ICLaunchURL(instance[0], new byte[] { 0 }, urlBytes,
763 urlBytes.length, selectionStart, selectionEnd);
767 // Ignore the return value; the URL was launched successfully
768 // regardless of what happens here.
773 throw new IOException(MessageManager.formatMessage(
774 "exception.unable_to_launch_url", new String[] { Integer
775 .valueOf(result).toString() }));
780 throw new IOException(MessageManager.formatMessage(
781 "exception.unable_to_create_internet_config",
782 new String[] { Integer.valueOf(result).toString() }));
791 openURL.invoke(null, new Object[] { url });
792 } catch (InvocationTargetException ite)
794 throw new IOException(MessageManager.formatMessage(
795 "exception.invocation_target_calling_url",
796 new String[] { ite.getMessage() }));
797 } catch (IllegalAccessException iae)
799 throw new IOException(MessageManager.formatMessage(
800 "exception.illegal_access_calling_url",
801 new String[] { iae.getMessage() }));
809 // Add quotes around the URL to allow ampersands and other special
810 // characters to work.
811 Process process = Runtime.getRuntime().exec(
812 new String[] { (String) browser, FIRST_WINDOWS_PARAMETER,
813 SECOND_WINDOWS_PARAMETER, THIRD_WINDOWS_PARAMETER,
816 // This avoids a memory leak on some versions of Java on Windows.
817 // That's hinted at in
818 // <http://developer.java.sun.com/developer/qow/archive/68/>.
823 } catch (InterruptedException ie)
825 throw new IOException(MessageManager.formatMessage(
826 "exception.interrupted_launching_browser",
827 new String[] { ie.getMessage() }));
834 // Assume that we're on Unix and that Netscape (actually Firefox) is
836 // First, attempt to open the URL in a currently running session of
841 * System.out.println("Executing : "+browser+" "+
842 * NETSCAPE_REMOTE_PARAMETER+" "+ NETSCAPE_OPEN_PARAMETER_START + url +
843 * NETSCAPE_OPEN_NEW_WINDOW + NETSCAPE_OPEN_PARAMETER_END);
845 process = Runtime.getRuntime().exec(
848 NETSCAPE_REMOTE_PARAMETER,
850 NETSCAPE_OPEN_PARAMETER_START + url
851 + NETSCAPE_OPEN_NEW_WINDOW
852 + NETSCAPE_OPEN_PARAMETER_END });
856 int exitCode = process.waitFor();
859 { // if Netscape was not open
860 Runtime.getRuntime().exec(new String[] { (String) browser, url });
862 } catch (InterruptedException ie)
864 throw new IOException(MessageManager.formatMessage(
865 "exception.interrupted_launching_browser",
866 new String[] { ie.getMessage() }));
873 // This should never occur, but if it does, we'll try the simplest thing
875 Runtime.getRuntime().exec(new String[] { (String) browser, url });
882 * Methods required for Mac OS X. The presence of native methods does not
883 * cause any problems on other platforms.
885 private native static int ICStart(int[] instance, int signature);
887 private native static int ICStop(int[] instance);
889 private native static int ICLaunchURL(int instance, byte[] hint,
890 byte[] data, int len, int[] selectionStart, int[] selectionEnd);