launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Console.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 15 Dec 2012 16:25:28 +0100
branchlauncher
changeset 323 d41cfd77842d
child 332 6949044415df
permissions -rw-r--r--
Basic sketch of an HTTP server for launching bck2brwsr applications
     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.Method;
    21 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    22 
    23 /**
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 public class Console {
    28     public static String welcome() {
    29         final String msg = "Hello from Bck2Brwsr!";
    30         alert(msg);
    31         return msg;
    32     }
    33     
    34     @JavaScriptBody(args = "msg", body = "alert(msg);")
    35     private static native void alert(String msg);
    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     public static void execute() throws Exception {
    46         String clazz = (String) getAttr("clazz", "value");
    47         String method = (String) getAttr("method", "value");
    48 
    49         Method found = null;
    50         Class<?> c = Class.forName(clazz);
    51         for (Method m : c.getMethods()) {
    52             if (m.getName().equals(method)) {
    53                 found = m;
    54             }
    55         }
    56         Object res;
    57         if (found != null) {
    58             res = found.invoke(null);
    59         } else {
    60             res = "Can't find method " + method + " in " + clazz;
    61         }
    62         
    63         setAttr("result", "value", res);
    64     }
    65 }