launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Console.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 17 Dec 2012 12:09:57 +0100
branchlauncher
changeset 343 8ecdd87e870a
parent 342 60f9aad12731
child 344 4adbde04e899
permissions -rw-r--r--
Keep scrolling to bottom
     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(data);
    66                 if (data.isEmpty()) {
    67                     log("No data, exiting");
    68                     break;
    69                 }
    70                 
    71                 Case c = Case.parseData(data);
    72                 log("className: " + c.getClassName());
    73                 log("methodName: " + c.getMethodName());
    74                 log("request: " + c.getRequestId());
    75 
    76                 Object result = invokeMethod(c.getClassName(), c.getMethodName());
    77 
    78                 log("result: " + result);
    79                 
    80                 String toSend;
    81                 if (result == null) {
    82                     toSend = "null";
    83                 } else {
    84                     toSend = result.toString();
    85                 }
    86                 
    87                 log("Sending back: " + url + "?request=" + c.getRequestId() + "&result=" + toSend);
    88                 u = new URL(url + "?request=" + c.getRequestId() + "&result=" + toSend);
    89             }
    90             
    91             
    92         } catch (Exception ex) {
    93             log(ex.getMessage());
    94         }
    95     }
    96 
    97     private static Object invokeMethod(String clazz, String method) 
    98     throws ClassNotFoundException, InvocationTargetException, 
    99     SecurityException, IllegalAccessException, IllegalArgumentException {
   100         Method found = null;
   101         Class<?> c = Class.forName(clazz);
   102         for (Method m : c.getMethods()) {
   103             if (m.getName().equals(method)) {
   104                 found = m;
   105             }
   106         }
   107         Object res;
   108         if (found != null) {
   109             res = found.invoke(null);
   110         } else {
   111             res = "Can't find method " + method + " in " + clazz;
   112         }
   113         return res;
   114     }
   115     
   116     private static final class Case {
   117         private final Object data;
   118 
   119         private Case(Object data) {
   120             this.data = data;
   121         }
   122         
   123         public static Case parseData(String s) {
   124             return new Case(toJSON(s));
   125         }
   126         
   127         public String getMethodName() {
   128             return value("methodName", data);
   129         }
   130 
   131         public String getClassName() {
   132             return value("className", data);
   133         }
   134         
   135         public String getRequestId() {
   136             return value("request", data);
   137         }
   138         
   139         @JavaScriptBody(args = "s", body = "return eval('(' + s + ')');")
   140         private static native Object toJSON(String s);
   141         
   142         @JavaScriptBody(args = {"p", "d"}, body = "return d[p].toString();")
   143         private static native String value(String p, Object d);
   144     }
   145 }