launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/Bck2BrwsrLauncher.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 26 May 2014 17:52:56 +0200
branchclosure
changeset 1599 36746c46716a
parent 1598 ec62383beb7d
child 1746 001275142bf7
permissions -rw-r--r--
Moving the JAR file parsing and processing into a shared library
     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.File;
    21 import java.io.IOException;
    22 import java.io.InputStreamReader;
    23 import java.io.Reader;
    24 import java.net.MalformedURLException;
    25 import java.net.URISyntaxException;
    26 import java.net.URL;
    27 import java.util.HashSet;
    28 import java.util.Set;
    29 import java.util.logging.Level;
    30 
    31 /**
    32  * Lightweight server to launch Bck2Brwsr applications and tests.
    33  * Supports execution in native browser as well as Java's internal 
    34  * execution engine.
    35  */
    36 final class Bck2BrwsrLauncher extends BaseHTTPLauncher {
    37     private Set<String> testClasses = new HashSet<String>();
    38     
    39     public Bck2BrwsrLauncher(String cmd) {
    40         super(cmd);
    41     }
    42     
    43     @Override
    44     String harnessResource() {
    45         return "org/apidesign/bck2brwsr/launcher/harness.xhtml";
    46     }
    47 
    48     @Override
    49     String compileJar(URL jar) throws IOException {
    50         File f;
    51         try {
    52             f = new File(jar.toURI());
    53         } catch (URISyntaxException ex) {
    54             throw new IOException(ex);
    55         }
    56         return CompileCP.compileJAR(f, testClasses);
    57     }
    58 
    59     @Override
    60     public InvocationContext createInvocation(Class<?> clazz, String method) {
    61         testClasses.add(clazz.getName().replace('.', '/'));
    62         return super.createInvocation(clazz, method);
    63     }
    64 
    65     @Override String compileFromClassPath(URL f, Res loader) throws IOException {
    66         return CompileCP.compileFromClassPath(f, loader);
    67     }
    68     
    69     @Override
    70     void generateBck2BrwsrJS(StringBuilder sb, final Res loader) throws IOException {
    71         String b2b = System.getProperty("bck2brwsr.js");
    72         if (b2b != null) {
    73             LOG.log(Level.INFO, "Serving bck2brwsr.js from {0}", b2b);
    74             URL bu;
    75             try {
    76                 bu = new URL(b2b);
    77             } catch (MalformedURLException ex) {
    78                 File f = new File(b2b);
    79                 if (f.exists()) {
    80                     bu = f.toURI().toURL();
    81                 } else {
    82                     throw ex;
    83                 }
    84             }
    85             try (Reader r = new InputStreamReader(bu.openStream())) {
    86                 char[] arr = new char[4096];
    87                 for (;;) {
    88                    int len = r.read(arr);
    89                    if (len == -1) {
    90                        break;
    91                    }
    92                    sb.append(arr, 0, len);
    93                 }
    94             }
    95         } else {
    96             LOG.log(Level.INFO, "Generating bck2brwsr.js from scratch", b2b);
    97             CompileCP.compileVM(sb, loader);
    98         }
    99         sb.append(
   100               "(function WrapperVM(global) {\n"
   101             + "  var cache = {};\n"
   102             + "  var empty = {};\n"
   103             + "  function ldCls(res, skip) {\n"
   104             + "    var c = cache[res];\n"
   105             + "    if (c) {\n"
   106             + "      if (c[skip] === empty) return null;\n"
   107             + "      if (c[skip]) return c[skip];\n"
   108             + "    } else {\n"
   109             + "      cache[res] = c = new Array();\n"
   110             + "    }\n"
   111             + "    var request = new XMLHttpRequest();\n"
   112             + "    request.open('GET', '/classes/' + res + '?skip=' + skip, false);\n"
   113             + "    request.send();\n"
   114             + "    if (request.status !== 200) {\n"
   115             + "      c[skip] = null;\n"
   116             + "      return null;\n"
   117             + "    }\n"
   118             + "    var arr = eval(request.responseText);\n"
   119             + "    if (arr === null) c[skip] = empty;\n"
   120             + "    else c[skip] = arr;\n"
   121             + "    return arr;\n"
   122             + "  }\n"
   123             + "  var prevvm = global.bck2brwsr;\n"
   124             + "  global.bck2brwsr = function() {\n"
   125             + "    var args = Array.prototype.slice.apply(arguments);\n"
   126             + "    args.unshift(ldCls);\n"
   127             + "    return prevvm.apply(null, args);\n"
   128             + "  };\n"
   129             + "  global.bck2brwsr.register = prevvm.register;\n"
   130             + "})(this);\n"
   131         );
   132         LOG.log(Level.INFO, "Serving bck2brwsr.js", b2b);
   133     }
   134 
   135 }