launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Console.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 16 Dec 2012 20:11:18 +0100
branchlauncher
changeset 332 6949044415df
parent 323 d41cfd77842d
child 342 60f9aad12731
permissions -rw-r--r--
First steps towards execution harness
     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.InputStream;
    21 import java.lang.reflect.InvocationTargetException;
    22 import java.lang.reflect.Method;
    23 import java.net.URL;
    24 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 public class Console {
    31     public static String welcome() {
    32         final String msg = "Hello from Bck2Brwsr!";
    33         alert(msg);
    34         return msg;
    35     }
    36     
    37     @JavaScriptBody(args = "msg", body = "alert(msg);")
    38     private static native void alert(String msg);
    39     
    40     @JavaScriptBody(args = {"id", "attr"}, body = 
    41         "return window.document.getElementById(id)[attr].toString();")
    42     private static native Object getAttr(String id, String attr);
    43 
    44     @JavaScriptBody(args = {"id", "attr", "value"}, body = 
    45         "window.document.getElementById(id)[attr] = value;")
    46     private static native void setAttr(String id, String attr, Object value);
    47     
    48     public static void execute() throws Exception {
    49         String clazz = (String) getAttr("clazz", "value");
    50         String method = (String) getAttr("method", "value");
    51         Object res = invokeMethod(clazz, method);
    52         setAttr("result", "value", res);
    53     }
    54     
    55     public static void harness() {
    56         try {
    57             URL u = new URL("/execute/data");
    58             String data = (String) u.getContent(new Class[] { String.class });
    59             setAttr("result", "value", data);
    60         } catch (Exception ex) {
    61             setAttr("result", "value", ex.getMessage());
    62         }
    63     }
    64 
    65     private static Object invokeMethod(String clazz, String method) 
    66     throws ClassNotFoundException, InvocationTargetException, 
    67     SecurityException, IllegalAccessException, IllegalArgumentException {
    68         Method found = null;
    69         Class<?> c = Class.forName(clazz);
    70         for (Method m : c.getMethods()) {
    71             if (m.getName().equals(method)) {
    72                 found = m;
    73             }
    74         }
    75         Object res;
    76         if (found != null) {
    77             res = found.invoke(null);
    78         } else {
    79             res = "Can't find method " + method + " in " + clazz;
    80         }
    81         return res;
    82     }
    83 }