rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/Java2JavaScript.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 10 Oct 2013 14:00:32 +0200
changeset 1366 add89df8447e
parent 1365 4393b7db103b
child 1371 fd2d4ca28bd3
permissions -rw-r--r--
Explaining reasons for a NPE
     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.bck2brwsr.mojo;
    19 
    20 import org.apache.maven.plugin.AbstractMojo;
    21 
    22 import java.io.File;
    23 import java.io.FileWriter;
    24 import java.io.IOException;
    25 import java.net.MalformedURLException;
    26 import java.net.URL;
    27 import java.net.URLClassLoader;
    28 import java.util.ArrayList;
    29 import java.util.Collection;
    30 import java.util.List;
    31 import org.apache.maven.artifact.Artifact;
    32 import org.apache.maven.plugin.MojoExecutionException;
    33 import org.apache.maven.plugins.annotations.LifecyclePhase;
    34 import org.apache.maven.plugins.annotations.Mojo;
    35 import org.apache.maven.plugins.annotations.Parameter;
    36 import org.apache.maven.plugins.annotations.ResolutionScope;
    37 import org.apache.maven.project.MavenProject;
    38 import org.apidesign.vm4brwsr.Bck2Brwsr;
    39 import org.apidesign.vm4brwsr.ObfuscationLevel;
    40 
    41 /** Compiles classes into JavaScript. */
    42 @Mojo(name="j2js", 
    43     requiresDependencyResolution = ResolutionScope.COMPILE,
    44     defaultPhase=LifecyclePhase.PROCESS_CLASSES
    45 )
    46 public class Java2JavaScript extends AbstractMojo {
    47     public Java2JavaScript() {
    48     }
    49     /** Root of the class files */
    50     @Parameter(defaultValue="${project.build.directory}/classes")
    51     private File classes;
    52     /** JavaScript file to generate */
    53     @Parameter
    54     private File javascript;
    55 
    56     /** Additional classes that should be pre-compiled into the javascript 
    57      * file. By default compiles all classes found under <code>classes</code>
    58      * directory and their transitive closure.
    59      */
    60     @Parameter
    61     private List<String> compileclasses;
    62     
    63     @Parameter(defaultValue="${project}")
    64     private MavenProject prj;
    65 
    66     /**
    67      * The obfuscation level for the generated JavaScript file.
    68      *
    69      * @since 0.5
    70      */
    71     @Parameter(defaultValue="NONE")
    72     private ObfuscationLevel obfuscation;
    73     
    74     /** Should classes from rt.jar be included? */
    75     @Parameter(defaultValue = "false")
    76     private boolean ignoreBootClassPath;
    77 
    78     @Override
    79     public void execute() throws MojoExecutionException {
    80         if (!classes.isDirectory()) {
    81             throw new MojoExecutionException("Can't find " + classes);
    82         }
    83         if (javascript == null) {
    84             throw new MojoExecutionException("Need to define 'javascript' attribute with a path to file to generate");
    85         }
    86 
    87         List<String> arr = new ArrayList<String>();
    88         long newest = collectAllClasses("", classes, arr);
    89         
    90         if (compileclasses != null) {
    91             arr.retainAll(compileclasses);
    92             arr.addAll(compileclasses);
    93         }
    94         
    95         if (javascript.lastModified() > newest) {
    96             return;
    97         }
    98 
    99         try {
   100             URLClassLoader url = buildClassLoader(classes, prj.getArtifacts());
   101             FileWriter w = new FileWriter(javascript);
   102             Bck2Brwsr.newCompiler().
   103                 obfuscation(obfuscation).
   104                 resources(url, ignoreBootClassPath).
   105                 addRootClasses(arr.toArray(new String[0])).
   106                 generate(w);
   107             w.close();
   108         } catch (IOException ex) {
   109             throw new MojoExecutionException("Can't compile", ex);
   110         }
   111     }
   112 
   113     private static long collectAllClasses(String prefix, File toCheck, List<String> arr) {
   114         File[] files = toCheck.listFiles();
   115         if (files != null) {
   116             long newest = 0L;
   117             for (File f : files) {
   118                 long lastModified = collectAllClasses(prefix + f.getName() + "/", f, arr);
   119                 if (newest < lastModified) {
   120                     newest = lastModified;
   121                 }
   122             }
   123             return newest;
   124         } else if (toCheck.getName().endsWith(".class")) {
   125             final String cls = prefix.substring(0, prefix.length() - 7);
   126             arr.add(cls);
   127             return toCheck.lastModified();
   128         } else {
   129             return 0L;
   130         }
   131     }
   132 
   133     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
   134         List<URL> arr = new ArrayList<URL>();
   135         arr.add(root.toURI().toURL());
   136         for (Artifact a : deps) {
   137             if (a.getFile() != null) {
   138                 arr.add(a.getFile().toURI().toURL());
   139             }
   140         }
   141         return new URLClassLoader(arr.toArray(new URL[0]), Java2JavaScript.class.getClassLoader());
   142     }
   143 }