ko4j/src/main/java/org/netbeans/html/ko4j/KOTech.java
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 09 Dec 2014 08:33:22 +0100
branchgc
changeset 892 de02b7c13379
parent 877 ko4j/src/main/java/org/netbeans/html/ko4j/FXContext.java@75fff3637abe
parent 886 ko4j/src/main/java/org/netbeans/html/ko4j/FXContext.java@88d62267a0b5
child 898 18e17d0cd066
permissions -rw-r--r--
Bringing the most recent changes in default branch to gc
     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> {
    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         String[] propNames = new String[propArr.length];
    70         boolean[] propReadOnly = new boolean[propArr.length];
    71         Object[] propValues = new Object[propArr.length];
    72         for (int i = 0; i < propNames.length; i++) {
    73             propNames[i] = propArr[i].getPropertyName();
    74             propReadOnly[i] = propArr[i].isReadOnly();
    75             propValues[i] = propArr[i].getValue();
    76         }
    77         String[] funcNames = new String[funcArr.length];
    78         for (int i = 0; i < funcNames.length; i++) {
    79             funcNames[i] = funcArr[i].getFunctionName();
    80         }
    81         Object ret = getJSObject();
    82         Knockout.wrapModel(new Knockout(model, ret, propArr, funcArr),
    83             ret, 
    84             propNames, propReadOnly, propValues,
    85             funcNames
    86         );
    87         return ret;
    88     }
    89     
    90     private Object getJSObject() {
    91         int len = 64;
    92         if (jsObjects != null && jsIndex < (len = jsObjects.length)) {
    93             Object ret = jsObjects[jsIndex];
    94             jsObjects[jsIndex] = null;
    95             jsIndex++;
    96             return ret;
    97         }
    98         jsObjects = Knockout.allocJS(len * 2);
    99         jsIndex = 1;
   100         Object ret = jsObjects[0];
   101         jsObjects[0] = null;
   102         return ret;
   103     }
   104     
   105     @Override
   106     public Object wrapModel(Object model) {
   107         throw new UnsupportedOperationException();
   108     }
   109 
   110     @Override
   111     public void bind(PropertyBinding b, Object model, Object data) {
   112         throw new UnsupportedOperationException();
   113     }
   114 
   115     @Override
   116     public void valueHasMutated(Object data, String propertyName) {
   117         Knockout.cleanUp();
   118         Knockout.valueHasMutated(data, propertyName, null, null);
   119     }
   120     
   121     @Override
   122     public void valueHasMutated(Object data, String propertyName, Object oldValue, Object newValue) {
   123         Knockout.cleanUp();
   124         Knockout.valueHasMutated(data, propertyName, oldValue, newValue);
   125     }
   126 
   127     @Override
   128     public void expose(FunctionBinding fb, Object model, Object d) {
   129         throw new UnsupportedOperationException();
   130     }
   131 
   132     @Override
   133     public void applyBindings(Object data) {
   134         Object ko = Knockout.applyBindings(data);
   135         if (ko instanceof Knockout) {
   136             ((Knockout)ko).hold();
   137         }
   138     }
   139 
   140     @Override
   141     public Object wrapArray(Object[] arr) {
   142         return arr;
   143     }
   144     
   145     @Override
   146     public void runSafe(final Runnable r) {
   147         LOG.warning("Technology.runSafe has been deprecated. Use BrwsrCtx.execute!");
   148         r.run();
   149     }    
   150 
   151     @Override
   152     public <M> M toModel(Class<M> modelClass, Object data) {
   153         return modelClass.cast(Knockout.toModel(data));
   154     }
   155 }