ko4j/src/main/java/org/netbeans/html/ko4j/FXContext.java
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Fri, 07 Feb 2014 07:44:34 +0100
changeset 551 7ca2253fa86d
parent 522 e5dc7cf92ce4
child 567 83879118f17e
permissions -rw-r--r--
Updating copyright headers to mention current year
     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 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.io.Reader;
    51 import java.net.URL;
    52 import java.util.concurrent.Executor;
    53 import java.util.logging.Logger;
    54 import net.java.html.js.JavaScriptBody;
    55 import org.apidesign.html.boot.spi.Fn;
    56 import org.apidesign.html.json.spi.FunctionBinding;
    57 import org.apidesign.html.json.spi.JSONCall;
    58 import org.apidesign.html.json.spi.PropertyBinding;
    59 import org.apidesign.html.json.spi.Technology;
    60 import org.apidesign.html.json.spi.Transfer;
    61 import org.apidesign.html.json.spi.WSTransfer;
    62 
    63 /** This is an implementation package - just
    64  * include its JAR on classpath and use official {@link Context} API
    65  * to access the functionality.
    66  * <p>
    67  *
    68  * @author Jaroslav Tulach <jtulach@netbeans.org>
    69  */
    70 final class FXContext
    71 implements Technology.BatchInit<Object>, Transfer, WSTransfer<LoadWS> {
    72     static final Logger LOG = Logger.getLogger(FXContext.class.getName());
    73     private static Boolean javaScriptEnabled;
    74     private final Fn.Presenter browserContext;
    75 
    76     public FXContext(Fn.Presenter browserContext) {
    77         this.browserContext = browserContext;
    78     }
    79     
    80     @JavaScriptBody(args = {}, body = "if (window) return true; else return false;")
    81     private static boolean isJavaScriptEnabledJs() {
    82         return false;
    83     }
    84     
    85     static boolean isJavaScriptEnabled() {
    86         if (javaScriptEnabled != null) {
    87             return javaScriptEnabled;
    88         }
    89         if (!(javaScriptEnabled = isJavaScriptEnabledJs())) {
    90             Closeable c = Fn.activate(new TrueFn());
    91             try {
    92                 javaScriptEnabled = isJavaScriptEnabledJs();
    93             } finally {
    94                 try {
    95                     c.close();
    96                 } catch (IOException ex) {
    97                     // cannot happen
    98                 }
    99             }
   100         }
   101         return javaScriptEnabled;
   102     }
   103 
   104     final boolean areWebSocketsSupported() {
   105         return isWebSocket();
   106     }
   107 
   108     @JavaScriptBody(args = {}, body = "if (window.WebSocket) return true; else return false;")
   109     private static boolean isWebSocket() {
   110         return false;
   111     }
   112 
   113     @Override
   114     public Object wrapModel(Object model, PropertyBinding[] propArr, FunctionBinding[] funcArr) {
   115         String[] propNames = new String[propArr.length];
   116         boolean[] propReadOnly = new boolean[propArr.length];
   117         Object[] propValues = new Object[propArr.length];
   118         for (int i = 0; i < propNames.length; i++) {
   119             propNames[i] = propArr[i].getPropertyName();
   120             propReadOnly[i] = propArr[i].isReadOnly();
   121             propValues[i] = propArr[i].getValue();
   122         }
   123         String[] funcNames = new String[funcArr.length];
   124         for (int i = 0; i < funcNames.length; i++) {
   125             funcNames[i] = funcArr[i].getFunctionName();
   126         }
   127         Object ret = Knockout.wrapModel(model, 
   128             propNames, propReadOnly, propValues, propArr,
   129             funcNames, funcArr
   130         );
   131         return ret;
   132     }
   133     
   134     @Override
   135     public Object wrapModel(Object model) {
   136         throw new UnsupportedOperationException();
   137     }
   138 
   139     @Override
   140     public void bind(PropertyBinding b, Object model, Object data) {
   141         throw new UnsupportedOperationException();
   142     }
   143 
   144     @Override
   145     public void valueHasMutated(Object data, String propertyName) {
   146         Knockout.valueHasMutated(data, propertyName);
   147     }
   148 
   149     @Override
   150     public void expose(FunctionBinding fb, Object model, Object d) {
   151         throw new UnsupportedOperationException();
   152     }
   153 
   154     @Override
   155     public void applyBindings(Object data) {
   156         Knockout.applyBindings(data);
   157     }
   158 
   159     @Override
   160     public Object wrapArray(Object[] arr) {
   161         return arr;
   162     }
   163 
   164     @Override
   165     public void extract(Object obj, String[] props, Object[] values) {
   166         LoadJSON.extractJSON(obj, props, values);
   167     }
   168 
   169     @Override
   170     public void loadJSON(final JSONCall call) {
   171         if (call.isJSONP()) {
   172             String me = LoadJSON.createJSONP(call);
   173             LoadJSON.loadJSONP(call.composeURL(me), me);
   174         } else {
   175             String data = null;
   176             if (call.isDoOutput()) {
   177                 try {
   178                     ByteArrayOutputStream bos = new ByteArrayOutputStream();
   179                     call.writeData(bos);
   180                     data = new String(bos.toByteArray(), "UTF-8");
   181                 } catch (IOException ex) {
   182                     call.notifyError(ex);
   183                 }
   184             }
   185             LoadJSON.loadJSON(call.composeURL(null), call, call.getMethod(), data);
   186         }
   187     }
   188 
   189     @Override
   190     public <M> M toModel(Class<M> modelClass, Object data) {
   191         return modelClass.cast(Knockout.toModel(data));
   192     }
   193 
   194     @Override
   195     public Object toJSON(InputStream is) throws IOException {
   196         StringBuilder sb = new StringBuilder();
   197         InputStreamReader r = new InputStreamReader(is);
   198         for (;;) {
   199             int ch = r.read();
   200             if (ch == -1) {
   201                 break;
   202             }
   203             sb.append((char)ch);
   204         }
   205         return LoadJSON.parse(sb.toString());
   206     }
   207 
   208     @Override
   209     public void runSafe(final Runnable r) {
   210         class Wrap implements Runnable {
   211             @Override public void run() {
   212                 Closeable c = Fn.activate(browserContext);
   213                 try {
   214                     r.run();
   215                 } finally {
   216                     try {
   217                         c.close();
   218                     } catch (IOException ex) {
   219                         // cannot be thrown
   220                     }
   221                 }
   222             }
   223         }
   224         Wrap w = new Wrap();
   225         if (browserContext instanceof Executor) {
   226             ((Executor)browserContext).execute(w);
   227         } else {
   228             w.run();
   229         }
   230     }
   231 
   232     @Override
   233     public LoadWS open(String url, JSONCall onReply) {
   234         return new LoadWS(onReply, url);
   235     }
   236 
   237     @Override
   238     public void send(LoadWS socket, JSONCall data) {
   239         socket.send(data);
   240     }
   241 
   242     @Override
   243     public void close(LoadWS socket) {
   244         socket.close();
   245     }
   246 
   247     private static final class TrueFn extends Fn implements Fn.Presenter {
   248         @Override
   249         public Object invoke(Object thiz, Object... args) throws Exception {
   250             return true;
   251         }
   252 
   253         @Override
   254         public Fn defineFn(String code, String... names) {
   255             return this;
   256         }
   257 
   258         @Override
   259         public void displayPage(URL page, Runnable onPageLoad) {
   260         }
   261 
   262         @Override
   263         public void loadScript(Reader code) throws Exception {
   264         }
   265     } // end of TrueFn
   266 }