launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Console.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 17 Dec 2012 12:21:05 +0100
branchlauncher
changeset 344 4adbde04e899
parent 343 8ecdd87e870a
child 349 3fe5a86bd123
permissions -rw-r--r--
Console width expanded to 100%. More structured output messages.
     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.lang.reflect.InvocationTargetException;
    21 import java.lang.reflect.Method;
    22 import java.net.URL;
    23 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public class Console {
    30     public static String welcome() {
    31         return "HellofromBck2Brwsr";
    32     }
    33     public static String multiply() {
    34         return String.valueOf(Integer.MAX_VALUE / 2 + Integer.MAX_VALUE);
    35     }
    36     
    37     @JavaScriptBody(args = {"id", "attr"}, body = 
    38         "return window.document.getElementById(id)[attr].toString();")
    39     private static native Object getAttr(String id, String attr);
    40 
    41     @JavaScriptBody(args = {"id", "attr", "value"}, body = 
    42         "window.document.getElementById(id)[attr] = value;")
    43     private static native void setAttr(String id, String attr, Object value);
    44 
    45     private static void log(String newText) {
    46         String id = "result";
    47         String attr = "value";
    48         setAttr(id, attr, getAttr(id, attr) + "\n" + newText);
    49         setAttr(id, "scrollTop", getAttr(id, "scrollHeight"));
    50     }
    51     
    52     public static void execute() throws Exception {
    53         String clazz = (String) getAttr("clazz", "value");
    54         String method = (String) getAttr("method", "value");
    55         Object res = invokeMethod(clazz, method);
    56         setAttr("result", "value", res);
    57     }
    58     
    59     public static void harness(String url) {
    60         log("Connecting to " + url);
    61         try {
    62             URL u = new URL(url);
    63             for (;;) {
    64                 String data = (String) u.getContent(new Class[] { String.class });
    65                 log("\nGot \"" + data + "\"");
    66                 if (data.isEmpty()) {
    67                     log("No data, exiting");
    68                     break;
    69                 }
    70                 
    71                 Case c = Case.parseData(data);
    72                 log("Invoking " + c.getClassName() + '.' + c.getMethodName() + " as request: " + c.getRequestId());
    73 
    74                 Object result = invokeMethod(c.getClassName(), c.getMethodName());
    75 
    76                 log("Result: " + result);
    77                 
    78                 String toSend;
    79                 if (result == null) {
    80                     toSend = "null";
    81                 } else {
    82                     toSend = result.toString();
    83                 }
    84                 
    85                 log("Sending back: " + url + "?request=" + c.getRequestId() + "&result=" + toSend);
    86                 u = new URL(url + "?request=" + c.getRequestId() + "&result=" + toSend);
    87             }
    88             
    89             
    90         } catch (Exception ex) {
    91             log(ex.getMessage());
    92         }
    93     }
    94 
    95     private static Object invokeMethod(String clazz, String method) 
    96     throws ClassNotFoundException, InvocationTargetException, 
    97     SecurityException, IllegalAccessException, IllegalArgumentException {
    98         Method found = null;
    99         Class<?> c = Class.forName(clazz);
   100         for (Method m : c.getMethods()) {
   101             if (m.getName().equals(method)) {
   102                 found = m;
   103             }
   104         }
   105         Object res;
   106         if (found != null) {
   107             res = found.invoke(null);
   108         } else {
   109             res = "Can't find method " + method + " in " + clazz;
   110         }
   111         return res;
   112     }
   113     
   114     private static final class Case {
   115         private final Object data;
   116 
   117         private Case(Object data) {
   118             this.data = data;
   119         }
   120         
   121         public static Case parseData(String s) {
   122             return new Case(toJSON(s));
   123         }
   124         
   125         public String getMethodName() {
   126             return value("methodName", data);
   127         }
   128 
   129         public String getClassName() {
   130             return value("className", data);
   131         }
   132         
   133         public String getRequestId() {
   134             return value("request", data);
   135         }
   136         
   137         @JavaScriptBody(args = "s", body = "return eval('(' + s + ')');")
   138         private static native Object toJSON(String s);
   139         
   140         @JavaScriptBody(args = {"p", "d"}, body = "return d[p].toString();")
   141         private static native String value(String p, Object d);
   142     }
   143 }