rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 22 Mar 2013 14:46:10 +0100
branchclosure
changeset 874 2bcbe348dbec
parent 860 35507d1a5069
child 1020 a6bacea2518f
child 1359 5d93ca1561c3
permissions -rw-r--r--
Using cummulative factory with the hope to prevent enormous increase in overloaded 'generate' methods
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 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.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import java.io.IOException;
    21 import java.io.InputStream;
    22 import java.net.URL;
    23 import java.util.Enumeration;
    24 
    25 /** Build your own virtual machine! Use methods in this class to generate
    26  * a skeleton JVM in JavaScript that contains pre-compiled classes of your
    27  * choice. The generated script defines one JavaScript method that can
    28  * be used to bootstrap and load the virtual machine: <pre>
    29  * var vm = bck2brwsr();
    30  * var main = vm.loadClass('org.your.pkg.Main');
    31  * main.main__V_3Ljava_lang_String_2(null);
    32  * </pre>
    33  * In case one wants to initialize the virtual machine with ability to
    34  * load classes lazily when needed, one can provide a loader function to
    35  * when creating the virtual machine: <pre>
    36  * var vm = bck2brwsr(function(resource) { 
    37  *   return null; // byte[] for the resource
    38  * });
    39  * </pre>
    40  * In this scenario, when a request for an unknown class is made, the loader
    41  * function is asked for its byte code and the system dynamically transforms
    42  * it to JavaScript.
    43  * <p>
    44  * Instead of a loader function, one can also provide a URL to a JAR file.
    45  * The <code>bck2brwsr</code> system will do its best to download the file
    46  * and provide loader function for it automatically.
    47  * <p>
    48  * One can provide as many loader functions and JAR URL references as necessary.
    49  * Then the initialization code would look like:<pre>
    50  * var vm = bck2brwsr(url1, url2, fnctn1, url3, functn2);
    51  * </pre>
    52  * The provided URLs and loader functions will be consulted one by one.
    53  *
    54  * @author Jaroslav Tulach <jtulach@netbeans.org>
    55  */
    56 public final class Bck2Brwsr {
    57     private final ObfuscationLevel level;
    58     private final StringArray classes;
    59     private final Resources res;
    60 
    61     private Bck2Brwsr(ObfuscationLevel level, StringArray classes, Resources resources) {
    62         this.level = level;
    63         this.classes = classes;
    64         this.res = resources;
    65     }
    66     
    67     /** Helper method to generate virtual machine from bytes served by a <code>resources</code>
    68      * provider.
    69      *
    70      * @param out the output to write the generated JavaScript to
    71      * @param resources provider of class files to use
    72      * @param classes additional classes to include in the generated script
    73      * @throws IOException I/O exception can be thrown when something goes wrong
    74      */
    75     public static void generate(Appendable out, Resources resources, String... classes) throws IOException {
    76         newCompiler().resources(resources).addRootClasses(classes).generate(out);
    77     }
    78 
    79     /** Helper method to generate virtual machine from bytes served by a class loader.
    80      *
    81      * @param out the output to write the generated JavaScript to
    82      * @param loader class loader to load needed classes from
    83      * @param classes additional classes to include in the generated script
    84      * @throws IOException I/O exception can be thrown when something goes wrong
    85      */
    86     public static void generate(Appendable out, ClassLoader loader, String... classes) throws IOException {
    87         newCompiler().resources(loader).addRootClasses(classes).generate(out);
    88     }
    89     
    90     /** Creates new instance of Bck2Brwsr compiler which is ready to generate
    91      * empty Bck2Brwsr virtual machine. The instance can be further
    92      * configured by calling chain of methods. For example: 
    93      * <pre>
    94      * {@link #createCompiler()}.{@link #resources(org.apidesign.vm4brwsr.Bck2Brwsr.Resources) resources(loader)}.{@link #addRootClasses(java.lang.String[]) addRootClasses("your/Clazz")}.{@link #generate(java.lang.Appendable) generate(out)};
    95      * </pre>
    96      * 
    97      * @return new instance of the Bck2Brwsr compiler
    98      * @since 0.5
    99      */
   100     public static Bck2Brwsr newCompiler() {
   101         StringArray arr = StringArray.asList(VM.class.getName().replace('.', '/'));
   102         return new Bck2Brwsr(ObfuscationLevel.NONE, arr, null);
   103     }
   104 
   105     /** Creates new instance of the Bck2Brwsr compiler which inherits
   106      * all values from <code>this</code> instance and adds additional classes 
   107      * to the list of those that should be compiled by the {@link #generate(java.lang.Appendable)} 
   108      * method.
   109      * 
   110      * @param classes the classes to add to the compilation
   111      * @return new instance of the compiler
   112      */
   113     public Bck2Brwsr addRootClasses(String... classes) {
   114         if (classes.length == 0) {
   115             return this;
   116         } else {
   117             return new Bck2Brwsr(level, this.classes.addAndNew(classes), res);
   118         }
   119     }
   120     
   121     /** Changes the obfuscation level for the compiler by creating new instance
   122      * which inherits all values from <code>this</code> and adjust the level
   123      * of obfuscation.
   124      * 
   125      * @param level the new level of obfuscation
   126      * @return new instance of the compiler with changed level of obfuscation
   127      * @since 0.5
   128      */
   129     public Bck2Brwsr obfuscation(ObfuscationLevel level) {
   130         return new Bck2Brwsr(level, classes, res);
   131     }
   132     
   133     /** A way to change the provider of additional resources (classes) for the 
   134      * compiler. 
   135      * 
   136      * @param res the implementation of resources provider
   137      * @return new instance of the compiler with all values remaining the same, just 
   138      *   with different resources provider
   139      * @since 0.5
   140      */
   141     public Bck2Brwsr resources(Resources res) {
   142         return new Bck2Brwsr(level, classes, res);
   143     }
   144 
   145     /** A way to change the provider of additional resources (classes) for the 
   146      * compiler by specifying classloader to use for loading them.
   147      * 
   148      * @param loader class loader to load the resources from
   149      * @return new instance of the compiler with all values being the same, just 
   150      *   different resources provider
   151      * @since 0.5
   152      */
   153     public Bck2Brwsr resources(final ClassLoader loader) {
   154         return resources(new LdrRsrcs(loader));
   155     }
   156     
   157     /** Generates virtual machine based on previous configuration of the 
   158      * compiler.
   159      * 
   160      * @param out the output to write the generated JavaScript to
   161      * @since 0.5
   162      */
   163     public void generate(Appendable out) throws IOException {
   164         Resources r = res != null ? res : new LdrRsrcs(Bck2Brwsr.class.getClassLoader());
   165         if (level != ObfuscationLevel.NONE) {
   166             try {
   167                 ClosureWrapper.produceTo(out, level, r, classes);
   168                 return;
   169             } catch (IOException ex) {
   170                 throw ex;
   171             } catch (Throwable ex) {
   172                 out.append("/* Failed to obfuscate: " + ex.getMessage()
   173                                + " */\n");
   174             }
   175         }
   176 
   177         VM.compile(r, out, classes);
   178     }
   179     
   180     /** Provider of resources (classes and other files). The 
   181      * {@link #generate(java.lang.Appendable, org.apidesign.vm4brwsr.Bck2Brwsr.Resources, java.lang.String[]) 
   182      * generator method} will call back here for all classes needed during
   183      * translation to JavaScript.
   184      */
   185     public interface Resources {
   186         /** Loads given resource (class or other file like image). The 
   187          * resource name to load bytes for the {@link String} class
   188          * would be <code>"java/lang/String.class"</code>.
   189          * 
   190          * @param resource path to resource to load
   191          * @return the input stream for the resource 
   192          * @throws IOException can be thrown if the loading fails on some error
   193          *   or the file cannot be found
   194          */
   195         public InputStream get(String resource) throws IOException;
   196     }
   197 }