ko4j/src/main/java/org/netbeans/html/ko4j/FXContext.java
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Thu, 09 Jan 2014 20:39:23 +0100
branchUniversalKO
changeset 446 6dce58c06f58
parent 442 bd85dbbdc60c
child 452 059e6c2cc82b
permissions -rw-r--r--
ko4j registers implementation of Transfer and WSTransfer based on XHR and WebSocket from a browser. The Java implementations of these interfaces has been moved to ko-ws-tyrus module. JavaScript arrays passed as parameters to Java callback methods need to be wrapped.
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2013 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-2013 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 java.io.ByteArrayOutputStream;
    46 import java.io.Closeable;
    47 import java.io.IOException;
    48 import java.io.InputStream;
    49 import java.io.InputStreamReader;
    50 import java.util.concurrent.Executor;
    51 import java.util.logging.Logger;
    52 import net.java.html.js.JavaScriptBody;
    53 import org.apidesign.html.boot.spi.Fn;
    54 import org.apidesign.html.json.spi.FunctionBinding;
    55 import org.apidesign.html.json.spi.JSONCall;
    56 import org.apidesign.html.json.spi.PropertyBinding;
    57 import org.apidesign.html.json.spi.Technology;
    58 import org.apidesign.html.json.spi.Transfer;
    59 import org.apidesign.html.json.spi.WSTransfer;
    60 
    61 /** This is an implementation package - just
    62  * include its JAR on classpath and use official {@link Context} API
    63  * to access the functionality.
    64  * <p>
    65  *
    66  * @author Jaroslav Tulach <jtulach@netbeans.org>
    67  */
    68 final class FXContext
    69 implements Technology.BatchInit<Object>, Transfer, WSTransfer<LoadWS> {
    70     static final Logger LOG = Logger.getLogger(FXContext.class.getName());
    71     private static Boolean javaScriptEnabled;
    72     private final Fn.Presenter browserContext;
    73 
    74     public FXContext(Fn.Presenter browserContext) {
    75         this.browserContext = browserContext;
    76     }
    77     
    78     @JavaScriptBody(args = {}, body = "if (window) return true; else return false;")
    79     private static boolean isJavaScriptEnabledJs() {
    80         return false;
    81     }
    82     
    83     static boolean isJavaScriptEnabled() {
    84         if (javaScriptEnabled != null) {
    85             return javaScriptEnabled;
    86         }
    87         return javaScriptEnabled = isJavaScriptEnabledJs();
    88     }
    89 
    90     final boolean areWebSocketsSupported() {
    91         return LoadWS.isSupported();
    92     }
    93 
    94 
    95     @Override
    96     public Object wrapModel(Object model, PropertyBinding[] propArr, FunctionBinding[] funcArr) {
    97         String[] propNames = new String[propArr.length];
    98         boolean[] propReadOnly = new boolean[propArr.length];
    99         Object[] propValues = new Object[propArr.length];
   100         for (int i = 0; i < propNames.length; i++) {
   101             propNames[i] = propArr[i].getPropertyName();
   102             propReadOnly[i] = propArr[i].isReadOnly();
   103             propValues[i] = propArr[i].getValue();
   104         }
   105         String[] funcNames = new String[funcArr.length];
   106         for (int i = 0; i < funcNames.length; i++) {
   107             funcNames[i] = funcArr[i].getFunctionName();
   108         }
   109         Object ret = Knockout.wrapModel(model, 
   110             propNames, propReadOnly, propValues, propArr,
   111             funcNames, funcArr
   112         );
   113         return ret;
   114     }
   115     
   116     @Override
   117     public Object wrapModel(Object model) {
   118         throw new UnsupportedOperationException();
   119     }
   120 
   121     @Override
   122     public void bind(PropertyBinding b, Object model, Object data) {
   123         throw new UnsupportedOperationException();
   124     }
   125 
   126     @Override
   127     public void valueHasMutated(Object data, String propertyName) {
   128         Knockout.valueHasMutated(data, propertyName);
   129     }
   130 
   131     @Override
   132     public void expose(FunctionBinding fb, Object model, Object d) {
   133         throw new UnsupportedOperationException();
   134     }
   135 
   136     @Override
   137     public void applyBindings(Object data) {
   138         Knockout.applyBindings(data);
   139     }
   140 
   141     @Override
   142     public Object wrapArray(Object[] arr) {
   143         return arr;
   144     }
   145 
   146     @Override
   147     public void extract(Object obj, String[] props, Object[] values) {
   148         LoadJSON.extractJSON(obj, props, values);
   149     }
   150 
   151     @Override
   152     public void loadJSON(final JSONCall call) {
   153         if (call.isJSONP()) {
   154             String me = LoadJSON.createJSONP(call);
   155             LoadJSON.loadJSONP(call.composeURL(me), me);
   156         } else {
   157             String data = null;
   158             if (call.isDoOutput()) {
   159                 try {
   160                     ByteArrayOutputStream bos = new ByteArrayOutputStream();
   161                     call.writeData(bos);
   162                     data = new String(bos.toByteArray(), "UTF-8");
   163                 } catch (IOException ex) {
   164                     call.notifyError(ex);
   165                 }
   166             }
   167             LoadJSON.loadJSON(call.composeURL(null), call, call.getMethod(), data);
   168         }
   169     }
   170 
   171     @Override
   172     public <M> M toModel(Class<M> modelClass, Object data) {
   173         return modelClass.cast(Knockout.toModel(data));
   174     }
   175 
   176     @Override
   177     public Object toJSON(InputStream is) throws IOException {
   178         StringBuilder sb = new StringBuilder();
   179         InputStreamReader r = new InputStreamReader(is);
   180         for (;;) {
   181             int ch = r.read();
   182             if (ch == -1) {
   183                 break;
   184             }
   185             sb.append((char)ch);
   186         }
   187         return LoadJSON.parse(sb.toString());
   188     }
   189 
   190     @Override
   191     public void runSafe(final Runnable r) {
   192         class Wrap implements Runnable {
   193             @Override public void run() {
   194                 Closeable c = Fn.activate(browserContext);
   195                 try {
   196                     r.run();
   197                 } finally {
   198                     try {
   199                         c.close();
   200                     } catch (IOException ex) {
   201                         // cannot be thrown
   202                     }
   203                 }
   204             }
   205         }
   206         Wrap w = new Wrap();
   207         if (browserContext instanceof Executor) {
   208             ((Executor)browserContext).execute(w);
   209         } else {
   210             w.run();
   211         }
   212     }
   213 
   214     @Override
   215     public LoadWS open(String url, JSONCall onReply) {
   216         return new LoadWS(onReply, url);
   217     }
   218 
   219     @Override
   220     public void send(LoadWS socket, JSONCall data) {
   221         socket.send(data);
   222     }
   223 
   224     @Override
   225     public void close(LoadWS socket) {
   226         socket.close();
   227     }
   228     
   229 }