boot/src/test/java/org/apidesign/html/boot/impl/FnTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Jun 2013 22:29:41 +0200
branchclassloader
changeset 128 3cc64ce45056
parent 127 boot/src/test/java/org/apidesign/html/boot/spi/FnTest.java@28ea7ef534e9
child 161 ea5ca9cc685d
permissions -rw-r--r--
displayPage should be blocking, no need to expose resource finder
     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.net.URL;
    25 import java.net.URLClassLoader;
    26 import java.util.ArrayList;
    27 import java.util.Arrays;
    28 import java.util.Collection;
    29 import java.util.List;
    30 import javax.script.Invocable;
    31 import javax.script.ScriptEngine;
    32 import javax.script.ScriptEngineManager;
    33 import javax.script.ScriptException;
    34 import org.apidesign.html.boot.spi.Fn;
    35 import org.testng.annotations.BeforeClass;
    36 
    37 /**
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 public class FnTest extends JsClassLoaderBase {
    42     
    43     public FnTest() {
    44     }
    45 
    46     @BeforeClass
    47     public static void createClassLoader() throws Exception {
    48         ScriptEngineManager sem = new ScriptEngineManager();
    49         final ScriptEngine eng = sem.getEngineByMimeType("text/javascript");
    50         
    51         final URL my = FnTest.class.getProtectionDomain().getCodeSource().getLocation();
    52         ClassLoader parent = JsClassLoaderTest.class.getClassLoader().getParent();
    53         final URLClassLoader ul = new URLClassLoader(new URL[] { my }, parent);
    54         
    55         class Impl implements FindResources, Fn.Presenter {
    56             @Override
    57             public void findResources(String path, Collection<? super URL> results, boolean oneIsEnough) {
    58                 URL u = ul.findResource(path);
    59                 if (u != null) {
    60                     results.add(u);
    61                 }
    62             }
    63 
    64             @Override
    65             public Fn defineFn(String code, String... names) {
    66                 StringBuilder sb = new StringBuilder();
    67                 sb.append("(function() {");
    68                 sb.append("return function(");
    69                 String sep = "";
    70                 for (String n : names) {
    71                     sb.append(sep);
    72                     sb.append(n);
    73                     sep = ", ";
    74                 }
    75                 sb.append(") {");
    76                 sb.append(code);
    77                 sb.append("};");
    78                 sb.append("})()");
    79                 try {
    80                     final Object val = eng.eval(sb.toString());
    81                     return new Fn() {
    82                         @Override
    83                         public Object invoke(Object thiz, Object... args) throws Exception {
    84                             List<Object> all = new ArrayList<Object>(args.length + 1);
    85                             all.add(thiz == null ? val : thiz);
    86                             all.addAll(Arrays.asList(args));
    87                             Invocable inv = (Invocable)eng;
    88                             Object ret = inv.invokeMethod(val, "call", all.toArray());
    89                             return ret == val ? null : ret;
    90                         }
    91                     };
    92                 } catch (ScriptException ex) {
    93                     throw new LinkageError("Can't parse: " + sb, ex);
    94                 }
    95             }
    96 
    97             @Override
    98             public void displayPage(URL resource, Runnable r) {
    99                 throw new UnsupportedOperationException();
   100             }
   101         }
   102         Impl impl = new Impl();
   103         ClassLoader loader = FnUtils.newLoader(impl, impl, parent);
   104        
   105         
   106         methodClass = loader.loadClass(JsMethods.class.getName());
   107     }
   108     
   109 }