ko4j/src/main/java/org/netbeans/html/ko4j/ComponentLoader.java
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 15 Dec 2015 23:19:35 +0100
branchComponent257162
changeset 1035 3534e15dc446
permissions -rw-r--r--
Introducing @Component annotation, adding basic annotation and providing its (reflection based) implementation in ko4j module.
     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.IOException;
    47 import java.io.InputStream;
    48 import java.lang.reflect.Method;
    49 import java.net.URL;
    50 import java.util.Enumeration;
    51 import java.util.Properties;
    52 import net.java.html.BrwsrCtx;
    53 import net.java.html.js.JavaScriptBody;
    54 import net.java.html.json.Models;
    55 
    56 final class ComponentLoader {
    57     @JavaScriptBody(args = {}, wait4js = false, javacall = true, body =
    58         "var myLoader = {\n" +
    59         "};\n" +
    60         "myLoader.getConfig = function(name, callback) { \n" +
    61         "  function myClbk(config) {\n" +
    62         "    console.log('myClbk: ' + config.ko4j + ' ' + config.properties);\n" +
    63         "    callback(config);\n" +
    64         "  }\n" +
    65         "  @org.netbeans.html.ko4j.ComponentLoader::loadConfig(Ljava/lang/String;Ljava/lang/Object;)(name, myClbk);\n" +
    66         "}\n" +
    67         "myLoader.loadComponent = function(name, componentConfig, callback) {\n" +
    68         "  console.log('loadComponent: ' + componentConfig.ko4j + ' ' + componentConfig.properties);\n" +
    69         " callback(null);\n" +
    70         "}\n" +
    71         "myLoader.loadTemplate = function(name, templateConfig, callback) {\n" +
    72         "  console.log('loadTemplate: ' + templateConfig.ko4j + ' ' + templateConfig.properties);\n" +
    73         "  if (templateConfig !== null) {\n" +
    74         "    @org.netbeans.html.ko4j.ComponentLoader::loadTemplate(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)(name, templateConfig, callback);\n" +
    75         "  } else {\n" +
    76         "    callback(null);\n" +
    77         "  }\n" +
    78         "}\n" +
    79         "myLoader.loadViewModel = function(name, config, callback) { \n" +
    80         "  console.log('loadViewModel ' + name + ' temp: ' + config);\n" +
    81         "  var f = function(params, info) {\n" +
    82         "    if (!params) params = null;\n" +
    83         "    return @org.netbeans.html.ko4j.ComponentLoader::loadViewModel(Ljava/lang/String;Ljava/util/Properties;Ljava/lang/Object;Ljava/lang/Object;)(name, config, params, info);\n" +
    84         "  };\n" +
    85         "  callback(f);\n" +
    86         "}\n" +
    87         "ko.components.loaders.unshift(myLoader);\n"
    88     )
    89     public static native void initialize();
    90     
    91     static void loadConfig(String name, Object callback) throws IOException {
    92         System.err.println("config for " + name);
    93         Enumeration<URL> en = ComponentLoader.class.getClassLoader().getResources("META-INF/html+java/components/" + name);
    94         while (en.hasMoreElements()) {
    95             URL u = en.nextElement();
    96             InputStream is = u.openStream();
    97             Properties p = new Properties();
    98             p.load(is);
    99             is.close();
   100             callbackConfig(callback, p, p.getProperty("template"));
   101             return;
   102         }
   103         callbackConfig(callback, null, null);
   104     }
   105     static void loadTemplate(String name, String template, Object callback) throws IOException {
   106         InputStream is = ComponentLoader.class.getClassLoader().getResourceAsStream(template);
   107         ByteArrayOutputStream os = new ByteArrayOutputStream();
   108         for (;;) {
   109             int ch = is.read();
   110             if (ch == -1) {
   111                 break;
   112             }
   113             os.write(ch);
   114         }
   115         is.close();
   116         String text = os.toString("UTF-8");
   117         callbackTemplate(callback, text);
   118     }
   119     
   120     @JavaScriptBody(args = { "callback", "param", "template" }, body =
   121         "callback(param ? {\n"
   122       + "  'ko4j': true,\n"
   123       + "  'viewModel': param,\n"
   124       + "  'template': template\n"
   125       + " } : null);", wait4js = false)
   126     private static native void callbackConfig(Object callback, Properties param, String template);
   127 
   128     @JavaScriptBody(args = { "callback", "param" }, body = "callback(ko.utils.parseHtmlFragment(param));", wait4js = false)
   129     private static native void callbackTemplate(Object callback, String param);
   130     
   131     static Object loadViewModel(String name, Properties props, Object params, Object config) throws IOException {
   132         Object res = null;
   133         try {
   134             String paramName = props.getProperty("paramName");
   135             Class<?> paramType = Class.forName(paramName);
   136             String className = props.getProperty("className");
   137             Class<?> classType = Class.forName(className);
   138             Method m = classType.getMethod(props.getProperty("methodName"), paramType);
   139 
   140             BrwsrCtx ctx = BrwsrCtx.findDefault(ComponentLoader.class);
   141             Object data;
   142             if (params == null) {
   143                 data = paramType.newInstance();
   144             } else {
   145                 data = Models.fromRaw(ctx, paramType, params);
   146             }
   147             m.setAccessible(true);
   148             res = m.invoke(null, data);
   149             props.put(res, res);
   150         } catch (Exception ex) {
   151             throw new IOException(ex);
   152         }
   153         return Models.toRaw(res);
   154     }
   155 }