ko4j/src/main/java/org/netbeans/html/ko4j/KOTech.java
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 22 Feb 2016 19:58:32 +0100
branchNonMutable258088
changeset 1055 c61d247f087a
parent 1028 453e44c757ff
child 1073 076297c6bca3
permissions -rw-r--r--
#258088: Non-mutable values aren't wrapped into ko.observable, but rather stored as primitive values
     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.BatchCopy<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, Object copyFrom, PropertyBinding[] propArr, FunctionBinding[] funcArr) {
    69         return createKO(model, copyFrom, propArr, funcArr, null);
    70     }
    71 
    72     final Object createKO(Object model, Object copyFrom, PropertyBinding[] propArr, FunctionBinding[] funcArr, Knockout[] ko) {
    73         String[] propNames = new String[propArr.length];
    74         Boolean[] propReadOnly = new Boolean[propArr.length];
    75         Boolean[] propConstant = new Boolean[propArr.length];
    76         Object[] propValues = new Object[propArr.length];
    77         for (int i = 0; i < propNames.length; i++) {
    78             propNames[i] = propArr[i].getPropertyName();
    79             propReadOnly[i] = propArr[i].isReadOnly();
    80             propConstant[i] = propArr[i].isConstant();
    81             Object value = propArr[i].getValue();
    82             if (value instanceof Enum) {
    83                 value = value.toString();
    84             }
    85             propValues[i] = value;
    86         }
    87         String[] funcNames = new String[funcArr.length];
    88         for (int i = 0; i < funcNames.length; i++) {
    89             funcNames[i] = funcArr[i].getFunctionName();
    90         }
    91         Object ret = getJSObject();
    92         Knockout newKO = new Knockout(model, ret, propArr, funcArr);
    93         if (ko != null) {
    94             ko[0] = newKO;
    95         }
    96         newKO.wrapModel(
    97             ret, copyFrom,
    98             propNames, propReadOnly, propConstant, propValues,
    99             funcNames
   100         );
   101         return ret;
   102     }
   103     
   104     private Object getJSObject() {
   105         int len = 64;
   106         if (jsObjects != null && jsIndex < (len = jsObjects.length)) {
   107             Object ret = jsObjects[jsIndex];
   108             jsObjects[jsIndex] = null;
   109             jsIndex++;
   110             return ret;
   111         }
   112         jsObjects = Knockout.allocJS(len * 2);
   113         jsIndex = 1;
   114         Object ret = jsObjects[0];
   115         jsObjects[0] = null;
   116         return ret;
   117     }
   118     
   119     @Override
   120     public Object wrapModel(Object model) {
   121         throw new UnsupportedOperationException();
   122     }
   123 
   124     @Override
   125     public void bind(PropertyBinding b, Object model, Object data) {
   126         throw new UnsupportedOperationException();
   127     }
   128 
   129     @Override
   130     public void valueHasMutated(Object data, String propertyName) {
   131         Knockout.cleanUp();
   132         Knockout.valueHasMutated(data, propertyName, null, null);
   133     }
   134     
   135     @Override
   136     public void valueHasMutated(Object data, String propertyName, Object oldValue, Object newValue) {
   137         Knockout.cleanUp();
   138         if (newValue instanceof Enum) {
   139             newValue = newValue.toString();
   140         }
   141         Knockout.valueHasMutated(data, propertyName, oldValue, newValue);
   142     }
   143 
   144     @Override
   145     public void expose(FunctionBinding fb, Object model, Object d) {
   146         throw new UnsupportedOperationException();
   147     }
   148 
   149     @Override
   150     public void applyBindings(Object data) {
   151         applyBindings(null, data);
   152     }
   153     @Override
   154     public void applyBindings(String id, Object data) {
   155         Object ko = Knockout.applyBindings(id, data);
   156         if (ko instanceof Knockout) {
   157             ((Knockout)ko).hold();
   158         }
   159     }
   160 
   161     @Override
   162     public Object wrapArray(Object[] arr) {
   163         return arr;
   164     }
   165     
   166     @Override
   167     public void runSafe(final Runnable r) {
   168         LOG.warning("Technology.runSafe has been deprecated. Use BrwsrCtx.execute!");
   169         r.run();
   170     }    
   171 
   172     @Override
   173     public <M> M toModel(Class<M> modelClass, Object data) {
   174         return modelClass.cast(Knockout.toModel(data));
   175     }
   176 }