boot/src/test/java/org/apidesign/html/boot/impl/FnTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 26 Jun 2013 08:43:32 +0200
branchclassloader
changeset 163 2652760705d6
parent 161 ea5ca9cc685d
child 214 19d7f018defd
permissions -rw-r--r--
Loading of external JavaScript files simplified
     1 /**
     2  * HTML via Java(tm) Language Bindings
     3  * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details. apidesign.org
    13  * designates this particular file as subject to the
    14  * "Classpath" exception as provided by apidesign.org
    15  * in the License file that accompanied this code.
    16  *
    17  * You should have received a copy of the GNU General Public License
    18  * along with this program. Look for COPYING file in the top folder.
    19  * If not, see http://wiki.apidesign.org/wiki/GPLwithClassPathException
    20  */
    21 
    22 package org.apidesign.html.boot.impl;
    23 
    24 import java.io.Reader;
    25 import java.net.URL;
    26 import java.net.URLClassLoader;
    27 import java.util.ArrayList;
    28 import java.util.Arrays;
    29 import java.util.Collection;
    30 import java.util.List;
    31 import javax.script.Invocable;
    32 import javax.script.ScriptEngine;
    33 import javax.script.ScriptEngineManager;
    34 import javax.script.ScriptException;
    35 import org.apidesign.html.boot.spi.Fn;
    36 import org.testng.annotations.BeforeClass;
    37 
    38 /**
    39  *
    40  * @author Jaroslav Tulach <jtulach@netbeans.org>
    41  */
    42 public class FnTest extends JsClassLoaderBase {
    43     
    44     public FnTest() {
    45     }
    46 
    47     @BeforeClass
    48     public static void createClassLoader() throws Exception {
    49         ScriptEngineManager sem = new ScriptEngineManager();
    50         final ScriptEngine eng = sem.getEngineByMimeType("text/javascript");
    51         
    52         final URL my = FnTest.class.getProtectionDomain().getCodeSource().getLocation();
    53         ClassLoader parent = JsClassLoaderTest.class.getClassLoader().getParent();
    54         final URLClassLoader ul = new URLClassLoader(new URL[] { my }, parent);
    55         
    56         class Impl implements FindResources, Fn.Presenter {
    57             @Override
    58             public void findResources(String path, Collection<? super URL> results, boolean oneIsEnough) {
    59                 URL u = ul.findResource(path);
    60                 if (u != null) {
    61                     results.add(u);
    62                 }
    63             }
    64 
    65             @Override
    66             public Fn defineFn(String code, String... names) {
    67                 StringBuilder sb = new StringBuilder();
    68                 sb.append("(function() {");
    69                 sb.append("return function(");
    70                 String sep = "";
    71                 for (String n : names) {
    72                     sb.append(sep);
    73                     sb.append(n);
    74                     sep = ", ";
    75                 }
    76                 sb.append(") {");
    77                 sb.append(code);
    78                 sb.append("};");
    79                 sb.append("})()");
    80                 try {
    81                     final Object val = eng.eval(sb.toString());
    82                     return new Fn() {
    83                         @Override
    84                         public Object invoke(Object thiz, Object... args) throws Exception {
    85                             List<Object> all = new ArrayList<Object>(args.length + 1);
    86                             all.add(thiz == null ? val : thiz);
    87                             all.addAll(Arrays.asList(args));
    88                             Invocable inv = (Invocable)eng;
    89                             try {
    90                                 Object ret = inv.invokeMethod(val, "call", all.toArray());
    91                                 return ret == val ? null : ret;
    92                             } catch (ScriptException ex) {
    93                                 throw ex;
    94                             }
    95                         }
    96                     };
    97                 } catch (ScriptException ex) {
    98                     throw new LinkageError("Can't parse: " + sb, ex);
    99                 }
   100             }
   101 
   102             @Override
   103             public void displayPage(URL resource, Runnable r) {
   104                 throw new UnsupportedOperationException();
   105             }
   106 
   107             @Override
   108             public void loadScript(Reader code) throws Exception {
   109                 eng.eval(code);
   110             }
   111         }
   112         Impl impl = new Impl();
   113         ClassLoader loader = FnUtils.newLoader(impl, impl, parent);
   114        
   115         
   116         methodClass = loader.loadClass(JsMethods.class.getName());
   117     }
   118     
   119 }