rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 18 Apr 2013 23:09:30 +0200
branchfx
changeset 1016 6dc2c6c752df
parent 1006 691c5cd3fb93
permissions -rw-r--r--
Can execute 'dual' tests: bck2brwsr can use regular launcher, javaquery.api can use FX Web View one
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.launcher;
    19 
    20 import java.io.Closeable;
    21 import java.io.File;
    22 import java.io.IOException;
    23 import org.apidesign.vm4brwsr.Bck2Brwsr;
    24 
    25 /** An abstraction for executing tests in a Bck2Brwsr virtual machine.
    26  * Either in {@linkm Launcher#createJavaScript JavaScript engine}, 
    27  * or in {@linkm Launcher#createBrowser external browser}.
    28  * <p>
    29  * There also are methods to {@link #showDir(java.io.File, java.lang.String) display pages} 
    30  * in an external browser served by internal HTTP server.
    31  *
    32  * @author Jaroslav Tulach <jtulach@netbeans.org>
    33  */
    34 public abstract class Launcher {
    35 
    36     Launcher() {
    37     }
    38 
    39     /** Initializes the launcher. This may mean starting a web browser or
    40      * initializing execution engine.
    41      * @throws IOException if something goes wrong
    42      */
    43     public abstract void initialize() throws IOException;
    44     
    45     /** Shuts down the launcher.
    46      * @throws IOException if something goes wrong
    47      */
    48     public abstract void shutdown() throws IOException;
    49     
    50     
    51     /** Builds an invocation context. The context can later be customized
    52      * and {@link InvocationContext#invoke() invoked}.
    53      * 
    54      * @param clazz the class to execute method from
    55      * @param method the method to execute
    56      * @return the context pointing to the selected method
    57      */
    58     public InvocationContext createInvocation(Class<?> clazz, String method) {
    59         return new InvocationContext(this, clazz, method);
    60     }
    61     
    62 
    63     /** Creates launcher that uses internal JavaScript engine (Rhino).
    64      * @return the launcher
    65      */
    66     public static Launcher createJavaScript() {
    67         final JSLauncher l = new JSLauncher();
    68         l.addClassLoader(Bck2Brwsr.class.getClassLoader());
    69         return l;
    70     }
    71     
    72     /** Creates launcher that is using external browser. Value of <code>cmd</code>
    73      * may be <code>"fx"</code> to indicate one wants to use JavaFX's WebView
    74      * instead of command line browser.
    75      * 
    76      * @param cmd <code>null</code> to use <code>java.awt.Desktop</code> to show the launcher
    77      *    or a string to execute in an external process (with a parameter to the URL)
    78      * @return launcher executing in external browser.
    79      */
    80     public static Launcher createBrowser(String cmd) {
    81         final Bck2BrwsrLauncher l;
    82         if ("fx".equals(cmd)) {
    83             l = new WebViewLauncher();
    84         } else {
    85             l = new Bck2BrwsrLauncher(cmd);
    86         }
    87         l.addClassLoader(Bck2Brwsr.class.getClassLoader());
    88         l.setTimeout(180000);
    89         return l;
    90     }
    91     
    92     /** Starts an HTTP server which provides access to classes and resources
    93      * available in the <code>classes</code> URL and shows a start page
    94      * available as {@link ClassLoader#getResource(java.lang.String)} from the
    95      * provide classloader. Opens a browser with URL showing the start page.
    96      * 
    97      * @param classes classloader offering access to classes and resources
    98      * @param startpage page to show in the browser
    99      * @return interface that allows one to stop the server
   100      * @throws IOException if something goes wrong
   101      */
   102     public static Closeable showURL(ClassLoader classes, String startpage) throws IOException {
   103         Bck2BrwsrLauncher l = new WebViewLauncher();
   104         l.addClassLoader(classes);
   105         l.showURL(startpage);
   106         return l;
   107     }
   108     /** Starts an HTTP server which provides access to certain directory.
   109      * The <code>startpage</code> should be relative location inside the root 
   110      * directory. Opens a browser with URL showing the start page.
   111      * 
   112      * @param directory the root directory on disk
   113      * @param startpage relative path from the root to the page
   114      * @exception IOException if something goes wrong.
   115      */
   116     public static Closeable showDir(File directory, String startpage) throws IOException {
   117         Bck2BrwsrLauncher l = new WebViewLauncher();
   118         l.showDirectory(directory, startpage);
   119         return l;
   120     }
   121 
   122     abstract InvocationContext runMethod(InvocationContext c) throws IOException; 
   123 }