launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Console.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 17 Dec 2012 11:58:48 +0100
branchlauncher
changeset 342 60f9aad12731
parent 332 6949044415df
child 343 8ecdd87e870a
permissions -rw-r--r--
Using URL.getContent to communicate with the launcher and execute two testing methods
     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 addAttr(String id, String attr, String newText) {
    46         setAttr(id, attr, getAttr(id, attr) + "\n" + newText);
    47     }
    48     
    49     public static void execute() throws Exception {
    50         String clazz = (String) getAttr("clazz", "value");
    51         String method = (String) getAttr("method", "value");
    52         Object res = invokeMethod(clazz, method);
    53         setAttr("result", "value", res);
    54     }
    55     
    56     public static void harness(String url) {
    57         setAttr("result", "value", "Connecting to " + url);
    58         try {
    59             URL u = new URL(url);
    60             for (;;) {
    61                 String data = (String) u.getContent(new Class[] { String.class });
    62                 addAttr("result", "value", data);
    63                 if (data.isEmpty()) {
    64                     addAttr("result", "value", "No data, exiting");
    65                     break;
    66                 }
    67                 
    68                 Case c = Case.parseData(data);
    69                 addAttr("result", "value", "className: " + c.getClassName());
    70                 addAttr("result", "value", "methodName: " + c.getMethodName());
    71                 addAttr("result", "value", "request: " + c.getRequestId());
    72 
    73                 Object result = invokeMethod(c.getClassName(), c.getMethodName());
    74 
    75                 addAttr("result", "value", "result: " + result);
    76                 
    77                 String toSend;
    78                 if (result == null) {
    79                     toSend = "null";
    80                 } else {
    81                     toSend = result.toString();
    82                 }
    83                 
    84                 addAttr("result", "value", "Sending back: " + url + "?request=" + c.getRequestId() + "&result=" + toSend);
    85                 u = new URL(url + "?request=" + c.getRequestId() + "&result=" + toSend);
    86             }
    87             
    88             
    89         } catch (Exception ex) {
    90             addAttr("result", "value", ex.getMessage());
    91         }
    92     }
    93 
    94     private static Object invokeMethod(String clazz, String method) 
    95     throws ClassNotFoundException, InvocationTargetException, 
    96     SecurityException, IllegalAccessException, IllegalArgumentException {
    97         Method found = null;
    98         Class<?> c = Class.forName(clazz);
    99         for (Method m : c.getMethods()) {
   100             if (m.getName().equals(method)) {
   101                 found = m;
   102             }
   103         }
   104         Object res;
   105         if (found != null) {
   106             res = found.invoke(null);
   107         } else {
   108             res = "Can't find method " + method + " in " + clazz;
   109         }
   110         return res;
   111     }
   112     
   113     private static final class Case {
   114         private final Object data;
   115 
   116         private Case(Object data) {
   117             this.data = data;
   118         }
   119         
   120         public static Case parseData(String s) {
   121             return new Case(toJSON(s));
   122         }
   123         
   124         public String getMethodName() {
   125             return value("methodName", data);
   126         }
   127 
   128         public String getClassName() {
   129             return value("className", data);
   130         }
   131         
   132         public String getRequestId() {
   133             return value("request", data);
   134         }
   135         
   136         @JavaScriptBody(args = "s", body = "return eval('(' + s + ')');")
   137         private static native Object toJSON(String s);
   138         
   139         @JavaScriptBody(args = {"p", "d"}, body = "return d[p].toString();")
   140         private static native String value(String p, Object d);
   141     }
   142 }