launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/Bck2BrwsrLauncher.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 23 Sep 2013 00:59:14 +0200
branchjavac
changeset 1295 5b3ae17babdf
parent 1088 4b65abc39565
child 1336 804f6f982f4e
permissions -rw-r--r--
Can we run Javac in the bck2brwsr VM?
     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.IOException;
    21 import java.io.InputStream;
    22 import org.apidesign.vm4brwsr.Bck2Brwsr;
    23 
    24 /**
    25  * Lightweight server to launch Bck2Brwsr applications and tests.
    26  * Supports execution in native browser as well as Java's internal 
    27  * execution engine.
    28  */
    29 final class Bck2BrwsrLauncher extends BaseHTTPLauncher {
    30     
    31     public Bck2BrwsrLauncher(String cmd) {
    32         super(cmd);
    33     }
    34     
    35     @Override
    36     String harnessResource() {
    37         return "org/apidesign/bck2brwsr/launcher/harness.xhtml";
    38     }
    39     
    40     @Override
    41     void generateBck2BrwsrJS(StringBuilder sb, final Res loader) throws IOException {
    42         class R implements Bck2Brwsr.Resources {
    43             @Override
    44             public InputStream get(String resource) throws IOException {
    45                 return loader.get(resource);
    46             }
    47         }
    48 
    49         Bck2Brwsr.generate(sb, new R());
    50         sb.append(
    51               "(function WrapperVM(global) {"
    52             + "  function ldCls(res) {\n"
    53             + "    var request = new XMLHttpRequest();\n"
    54             + "    console.log('Loading ' + res);\n"
    55             + "    request.open('GET', '/classes/' + res, false);\n"
    56             + "    request.send();\n"
    57             + "    if (request.status !== 200) {\n"
    58             + "      console.warn('  cannot load ' + res);\n"
    59             + "      return null;\n"
    60             + "    }\n"
    61             + "    var arr = eval('(' + request.responseText + ')');\n"
    62             + "    return arr;\n"
    63             + "  }\n"
    64             + "  var prevvm = global.bck2brwsr;\n"
    65             + "  global.bck2brwsr = function() {\n"
    66             + "    var args = Array.prototype.slice.apply(arguments);\n"
    67             + "    args.unshift(ldCls);\n"
    68             + "    return prevvm.apply(null, args);\n"
    69             + "  };\n"
    70             + "})(this);\n"
    71         );
    72     }
    73 
    74 }