ko4j/src/main/java/org/netbeans/html/ko4j/KOTech.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 13 Dec 2015 14:49:37 +0100
changeset 1027 5af9bfe37601
parent 1007 2ea65c6d3a8b
child 1028 453e44c757ff
permissions -rw-r--r--
Passing Boolean[] into JavaScript part is easier in JavaFX webview
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package org.netbeans.html.ko4j;
    44 
    45 import org.netbeans.html.context.spi.Contexts;
    46 import org.netbeans.html.json.spi.FunctionBinding;
    47 import org.netbeans.html.json.spi.PropertyBinding;
    48 import org.netbeans.html.json.spi.Technology;
    49 import static org.netbeans.html.ko4j.KO4J.LOG;
    50 
    51 /** This is an implementation package - just
    52  * include its JAR on classpath and use official {@link Context} API
    53  * to access the functionality.
    54  * <p>
    55  *
    56  * @author Jaroslav Tulach
    57  */
    58 @Contexts.Id("ko4j")
    59 final class KOTech
    60 implements Technology.BatchInit<Object>, Technology.ValueMutated<Object>, Technology.ApplyId<Object> {
    61     private Object[] jsObjects;
    62     private int jsIndex;
    63 
    64     public KOTech() {
    65     }
    66     
    67     @Override
    68     public Object wrapModel(Object model, PropertyBinding[] propArr, FunctionBinding[] funcArr) {
    69         return createKO(model, propArr, funcArr, null);
    70     }
    71 
    72     final Object createKO(Object model, PropertyBinding[] propArr, FunctionBinding[] funcArr, Knockout[] ko) {
    73         String[] propNames = new String[propArr.length];
    74         Boolean[] propReadOnly = new Boolean[propArr.length];
    75         Object[] propValues = new Object[propArr.length];
    76         for (int i = 0; i < propNames.length; i++) {
    77             propNames[i] = propArr[i].getPropertyName();
    78             propReadOnly[i] = propArr[i].isReadOnly();
    79             Object value = propArr[i].getValue();
    80             if (value instanceof Enum) {
    81                 value = value.toString();
    82             }
    83             propValues[i] = value;
    84         }
    85         String[] funcNames = new String[funcArr.length];
    86         for (int i = 0; i < funcNames.length; i++) {
    87             funcNames[i] = funcArr[i].getFunctionName();
    88         }
    89         Object ret = getJSObject();
    90         Knockout newKO = new Knockout(model, ret, propArr, funcArr);
    91         if (ko != null) {
    92             ko[0] = newKO;
    93         }
    94         newKO.wrapModel(
    95             ret,
    96             propNames, propReadOnly, propValues,
    97             funcNames
    98         );
    99         return ret;
   100     }
   101     
   102     private Object getJSObject() {
   103         int len = 64;
   104         if (jsObjects != null && jsIndex < (len = jsObjects.length)) {
   105             Object ret = jsObjects[jsIndex];
   106             jsObjects[jsIndex] = null;
   107             jsIndex++;
   108             return ret;
   109         }
   110         jsObjects = Knockout.allocJS(len * 2);
   111         jsIndex = 1;
   112         Object ret = jsObjects[0];
   113         jsObjects[0] = null;
   114         return ret;
   115     }
   116     
   117     @Override
   118     public Object wrapModel(Object model) {
   119         throw new UnsupportedOperationException();
   120     }
   121 
   122     @Override
   123     public void bind(PropertyBinding b, Object model, Object data) {
   124         throw new UnsupportedOperationException();
   125     }
   126 
   127     @Override
   128     public void valueHasMutated(Object data, String propertyName) {
   129         Knockout.cleanUp();
   130         Knockout.valueHasMutated(data, propertyName, null, null);
   131     }
   132     
   133     @Override
   134     public void valueHasMutated(Object data, String propertyName, Object oldValue, Object newValue) {
   135         Knockout.cleanUp();
   136         if (newValue instanceof Enum) {
   137             newValue = newValue.toString();
   138         }
   139         Knockout.valueHasMutated(data, propertyName, oldValue, newValue);
   140     }
   141 
   142     @Override
   143     public void expose(FunctionBinding fb, Object model, Object d) {
   144         throw new UnsupportedOperationException();
   145     }
   146 
   147     @Override
   148     public void applyBindings(Object data) {
   149         applyBindings(null, data);
   150     }
   151     @Override
   152     public void applyBindings(String id, Object data) {
   153         Object ko = Knockout.applyBindings(id, data);
   154         if (ko instanceof Knockout) {
   155             ((Knockout)ko).hold();
   156         }
   157     }
   158 
   159     @Override
   160     public Object wrapArray(Object[] arr) {
   161         return arr;
   162     }
   163     
   164     @Override
   165     public void runSafe(final Runnable r) {
   166         LOG.warning("Technology.runSafe has been deprecated. Use BrwsrCtx.execute!");
   167         r.run();
   168     }    
   169 
   170     @Override
   171     public <M> M toModel(Class<M> modelClass, Object data) {
   172         return modelClass.cast(Knockout.toModel(data));
   173     }
   174 }