ko/bck2brwsr/src/main/java/org/apidesign/html/ko2brwsr/Knockout.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 26 Jun 2013 18:44:21 +0200
branchclassloader
changeset 1227 5a907f38608d
parent 1225 73c0973e8e0a
permissions -rw-r--r--
Successfully compiles the new support for knockout
     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.html.ko2brwsr;
    19 
    20 import java.lang.reflect.Method;
    21 import java.util.List;
    22 import org.apidesign.bck2brwsr.core.ExtraJavaScript;
    23 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    24 
    25 /** Provides binding between models and bck2brwsr VM.
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 @ExtraJavaScript(resource = "/org/apidesign/bck2brwsr/htmlpage/knockout-2.2.1.js")
    30 final class Knockout {
    31     /** used by tests */
    32     static Knockout next;
    33     private final Object model;
    34 
    35     Knockout(Object model) {
    36         this.model = model == null ? this : model;
    37     }
    38     
    39     public static <M> Knockout applyBindings(
    40         Object model, String[] propsGettersAndSetters,
    41         String[] methodsAndSignatures
    42     ) {
    43         applyImpl(propsGettersAndSetters, model.getClass(), model, model, methodsAndSignatures);
    44         return new Knockout(model);
    45     }
    46     public static <M> Knockout applyBindings(
    47         Class<M> modelClass, M model, String[] propsGettersAndSetters,
    48         String[] methodsAndSignatures
    49     ) {
    50         Knockout bindings = next;
    51         next = null;
    52         if (bindings == null) {
    53             bindings = new Knockout(null);
    54         }
    55         applyImpl(propsGettersAndSetters, modelClass, bindings, model, methodsAndSignatures);
    56         applyBindings(bindings);
    57         return bindings;
    58     }
    59 
    60     public void valueHasMutated(String prop) {
    61         valueHasMutated(model, prop);
    62     }
    63     @JavaScriptBody(args = { "self", "prop" }, body =
    64         "var p = self[prop]; if (p) p.valueHasMutated();"
    65     )
    66     public static void valueHasMutated(Object self, String prop) {
    67     }
    68     
    69 
    70     @JavaScriptBody(args = { "id", "ev" }, body = "ko.utils.triggerEvent(window.document.getElementById(id), ev.substring(2));")
    71     public static void triggerEvent(String id, String ev) {
    72     }
    73     
    74     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter", "primitive", "array" }, body =
    75           "var bnd = {\n"
    76         + "  'read': function() {\n"
    77         + "    var v = model[getter]();\n"
    78         + "    if (array) v = v.koArray(); else if (v !== null) v = v.valueOf();\n"
    79         + "    return v;\n"
    80         + "  },\n"
    81         + "  'owner': bindings\n"
    82         + "};\n"
    83         + "if (setter != null) {\n"
    84         + "  bnd['write'] = function(val) {\n"
    85         + "    var v = val === null ? null : val.valueOf();"
    86         + "    model[setter](v);\n"
    87         + "  };\n"
    88         + "}\n"
    89         + "bindings[prop] = ko['computed'](bnd);"
    90     )
    91     static void bind(
    92         Object bindings, Object model, String prop, String getter, String setter, boolean primitive, boolean array
    93     ) {
    94     }
    95 
    96     @JavaScriptBody(args = { "bindings", "model", "prop", "sig" }, body = 
    97         "bindings[prop] = function(data, ev) { model[sig](data, ev); };"
    98     )
    99     static void expose(
   100         Object bindings, Object model, String prop, String sig
   101     ) {
   102     }
   103     
   104     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
   105     static void applyBindings(Object bindings) {}
   106     
   107     private static void applyImpl(
   108         String[] propsGettersAndSetters,
   109         Class<?> modelClass,
   110         Object bindings,
   111         Object model,
   112         String[] methodsAndSignatures
   113     ) throws IllegalStateException, SecurityException {
   114         for (int i = 0; i < propsGettersAndSetters.length; i += 4) {
   115             try {
   116                 Method getter = modelClass.getMethod(propsGettersAndSetters[i + 3]);
   117                 bind(bindings, model, propsGettersAndSetters[i],
   118                     propsGettersAndSetters[i + 1],
   119                     propsGettersAndSetters[i + 2],
   120                     getter.getReturnType().isPrimitive(),
   121                     List.class.isAssignableFrom(getter.getReturnType()));
   122             } catch (NoSuchMethodException ex) {
   123                 throw new IllegalStateException(ex.getMessage());
   124             }
   125         }
   126         for (int i = 0; i < methodsAndSignatures.length; i += 2) {
   127             expose(
   128                 bindings, model, methodsAndSignatures[i], methodsAndSignatures[i + 1]);
   129         }
   130     }
   131 }