javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Knockout.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 15 Apr 2013 07:08:55 +0200
branchfx
changeset 989 b41a01a6d998
parent 987 5d8eea9d2831
child 990 9ddce13e8ff9
permissions -rw-r--r--
One liner to convert to array
     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.htmlpage;
    19 
    20 import java.io.BufferedReader;
    21 import java.io.IOException;
    22 import java.io.InputStreamReader;
    23 import java.lang.reflect.Method;
    24 import java.util.List;
    25 import java.util.logging.Level;
    26 import java.util.logging.Logger;
    27 import javafx.scene.web.WebEngine;
    28 import netscape.javascript.JSObject;
    29 import org.apidesign.bck2brwsr.core.ExtraJavaScript;
    30 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    31 
    32 /** Provides binding between models and 
    33  *
    34  * @author Jaroslav Tulach <jtulach@netbeans.org>
    35  */
    36 @ExtraJavaScript(resource = "/org/apidesign/bck2brwsr/htmlpage/knockout-2.2.1.js")
    37 public class Knockout {
    38     private static final Logger LOG = Logger.getLogger(Knockout.class.getName());
    39     /** used by tests */
    40     static Knockout next;
    41     private final Object model;
    42 
    43     static {
    44         BufferedReader r = new BufferedReader(new InputStreamReader(Knockout.class.getResourceAsStream("knockout-2.2.1.js")));
    45         StringBuilder sb = new StringBuilder();
    46         for (;;) {
    47             try {
    48                 String l = r.readLine();
    49                 if (l == null) {
    50                     break;
    51                 }
    52                 sb.append(l).append('\n');
    53             } catch (IOException ex) {
    54                 throw new IllegalStateException(ex);
    55             }
    56         }
    57         web().executeScript(sb.toString());
    58         Object ko = web().executeScript("ko");
    59         assert ko != null : "Knockout library successfully defined 'ko'";
    60         
    61         Console.register(web());
    62     }
    63     
    64     
    65     Knockout(Object model) {
    66         this.model = model == null ? this : model;
    67     }
    68     
    69     public Object koData() {
    70         return model;
    71     }
    72 
    73     private static final JSObject KObject;
    74     static {
    75         KObject = (JSObject) web().executeScript(
    76             "(function(scope) {"
    77             + "  var kCnt = 0; "
    78             + "  scope.KObject = {};"
    79             + "  scope.KObject.create= function(value) {"
    80             + "    var cnt = ++kCnt;"
    81             + "    var ret = {};"
    82             + "    ret.toString = function() { return 'KObject' + cnt + ' value: ' + value + ' props: ' + Object.keys(this); };"
    83             + "    return ret;"
    84             + "  };"
    85             + "  scope.KObject.array= function() {"
    86             + "    return Array.prototype.slice.call(arguments);"
    87             + "  };"
    88             + "})(window); window.KObject"
    89             );
    90     }
    91     
    92     static Object toArray(Object[] arr) {
    93         return KObject.call("array", arr);
    94     }
    95     
    96     public static <M> Knockout applyBindings(
    97         Object model, String[] propsGettersAndSetters,
    98         String[] methodsAndSignatures
    99     ) {
   100         Object bindings = KObject.call("create", model);
   101         applyImpl(propsGettersAndSetters, model.getClass(), bindings, model, methodsAndSignatures);
   102         return new Knockout(bindings);
   103     }
   104     public static <M> Knockout applyBindings(
   105         Class<M> modelClass, M model, String[] propsGettersAndSetters,
   106         String[] methodsAndSignatures
   107     ) {
   108         Object bindings = next;
   109         next = null;
   110         if (bindings == null) {
   111             bindings = KObject.call("create", model);
   112         }
   113         applyImpl(propsGettersAndSetters, modelClass, bindings, model, methodsAndSignatures);
   114         applyBindings(bindings);
   115         return new Knockout(bindings);
   116     }
   117 
   118     public void valueHasMutated(String prop) {
   119         LOG.log(Level.INFO, "property mutated: {0}", prop);
   120         try {
   121             JSObject koProp = (JSObject) ((JSObject) model).getMember(prop);
   122             koProp.call("valueHasMutated");
   123         } catch (Throwable t) {
   124             LOG.log(Level.WARNING, "valueHasMutated failed for {0}", model);
   125         }
   126     }
   127     
   128 
   129     @JavaScriptBody(args = { "id", "ev" }, body = "ko.utils.triggerEvent(window.document.getElementById(id), ev.substring(2));")
   130     public static void triggerEvent(String id, String ev) {
   131     }
   132     
   133     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter", "primitive", "array" }, body =
   134           "var bnd = {\n"
   135         + "  'read': function() {\n"
   136         + "    var v = model[getter]();\n"
   137         + "    if (array) v = v.koArray();\n"
   138         + "    return v;\n"
   139         + "  },\n"
   140         + "  'owner': bindings\n"
   141         + "};\n"
   142         + "if (setter != null) {\n"
   143         + "  bnd['write'] = function(val) {\n"
   144         + "    model[setter](primitive ? new Number(val) : val);\n"
   145         + "  };\n"
   146         + "}\n"
   147         + "bindings[prop] = ko['computed'](bnd);"
   148     )
   149     private static void bind(
   150         Object bindings, Object model, String prop, String getter, String setter, boolean primitive, boolean array
   151     ) {
   152         WebEngine e = web();
   153         JSObject bnd = (JSObject) e.executeScript("var x = {}; x.bnd = "
   154         + "new Function('ko', 'bindings', 'model', 'prop', 'getter', 'setter', 'primitive', 'array', '"
   155         + "var bnd = {"
   156         + "  read: function() {"
   157         + "    try {"
   158         + "      var v = model[getter]();"
   159         + "      console.log(\" getter value \" + v + \" for property \" + prop);"
   160         + "      try { v = v.koData(); } catch (ignore) {"
   161         + "        console.log(\"Cannot convert to koData: \" + ignore);"
   162         + "      };"
   163         + "      console.log(\" getter ret value \" + v);"
   164         + "      for (var pn in v) {"
   165         + "         console.log(\"  prop: \" + pn + \" + in + \" + v + \" = \" + v[pn]);"
   166         + "         if (typeof v[pn] == \"function\") console.log(\"  its function value:\" + v[pn]());"
   167         + "      }"
   168         + "      console.log(\" all props printed for \" + (typeof v));"
   169         + "      return v;"
   170         + "    } catch (e) {"
   171         + "      alert(\"Cannot call \" + getter + \" on \" + model + \" error: \" + e);"
   172         + "    }"
   173         + "  },"
   174         + "  owner: bindings,"
   175         + "  deferEvaluation: true"
   176         + "};"
   177         + "if (setter != null) {"
   178         + "  bnd.write = function(val) {"
   179         + "    model[setter](primitive ? new Number(val) : val);"
   180         + "  };"
   181         + "};"
   182         + "bindings[prop] = ko.computed(bnd);'"
   183         + "); x;");
   184         
   185         Object ko = e.executeScript("ko");
   186         try {
   187             KOProperty kop = new KOProperty(model, strip(getter), strip(setter));
   188             bnd.call("bnd", ko, bindings, kop, prop, "get", "set", primitive, array);
   189             LOG.log(Level.INFO, "binding defined for {0}: {1}", new Object[]{prop, ((JSObject)bindings).getMember(prop)});
   190         } catch (Throwable ex) {
   191             LOG.log(Level.INFO, "binding failed for {0} on {1}", new Object[]{prop, bindings});
   192         }
   193     }
   194     
   195     private static String strip(String mangled) {
   196         if (mangled == null) {
   197             return null;
   198         }
   199         int under = mangled.indexOf("__");
   200         return mangled.substring(0, under);
   201     }
   202     @JavaScriptBody(args = { "bindings", "model", "prop", "sig" }, body = 
   203         "bindings[prop] = function(data, ev) { model[sig](data, ev); };"
   204     )
   205     private static void expose(
   206         Object bindings, Object model, String prop, String sig
   207     ) {
   208     }
   209     
   210     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
   211     private static void applyBindings(Object bindings) {
   212         JSObject ko = (JSObject) web().executeScript("ko");
   213         ko.call("applyBindings", bindings);
   214     }
   215     
   216     private static WebEngine web() {
   217         return (WebEngine) System.getProperties().get("webEngine");
   218     }
   219     
   220     
   221     private static void applyImpl(
   222         String[] propsGettersAndSetters,
   223         Class<?> modelClass,
   224         Object bindings,
   225         Object model,
   226         String[] methodsAndSignatures
   227     ) throws IllegalStateException, SecurityException {
   228         for (int i = 0; i < propsGettersAndSetters.length; i += 4) {
   229             try {
   230                 Method getter = modelClass.getMethod(propsGettersAndSetters[i + 3]);
   231                 bind(bindings, model, propsGettersAndSetters[i],
   232                     propsGettersAndSetters[i + 1],
   233                     propsGettersAndSetters[i + 2],
   234                     getter.getReturnType().isPrimitive(),
   235                     List.class.isAssignableFrom(getter.getReturnType()));
   236             } catch (NoSuchMethodException ex) {
   237                 throw new IllegalStateException(ex.getMessage());
   238             }
   239         }
   240         for (int i = 0; i < methodsAndSignatures.length; i += 2) {
   241             expose(
   242                 bindings, model, methodsAndSignatures[i], methodsAndSignatures[i + 1]);
   243         }
   244     }
   245 }