rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/Java2JavaScript.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 12 Jul 2013 13:41:23 +0200
changeset 1245 5f8cc8ad490e
parent 874 2bcbe348dbec
child 1365 4393b7db103b
permissions -rw-r--r--
Use transitive compile time dependencies
     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     @Override
    75     public void execute() throws MojoExecutionException {
    76         if (!classes.isDirectory()) {
    77             throw new MojoExecutionException("Can't find " + classes);
    78         }
    79 
    80         List<String> arr = new ArrayList<String>();
    81         long newest = collectAllClasses("", classes, arr);
    82         
    83         if (compileclasses != null) {
    84             arr.retainAll(compileclasses);
    85             arr.addAll(compileclasses);
    86         }
    87         
    88         if (javascript.lastModified() > newest) {
    89             return;
    90         }
    91 
    92         try {
    93             URLClassLoader url = buildClassLoader(classes, prj.getArtifacts());
    94             FileWriter w = new FileWriter(javascript);
    95             Bck2Brwsr.newCompiler().
    96                 obfuscation(obfuscation).
    97                 resources(url).
    98                 addRootClasses(arr.toArray(new String[0])).
    99                 generate(w);
   100             w.close();
   101         } catch (IOException ex) {
   102             throw new MojoExecutionException("Can't compile", ex);
   103         }
   104     }
   105 
   106     private static long collectAllClasses(String prefix, File toCheck, List<String> arr) {
   107         File[] files = toCheck.listFiles();
   108         if (files != null) {
   109             long newest = 0L;
   110             for (File f : files) {
   111                 long lastModified = collectAllClasses(prefix + f.getName() + "/", f, arr);
   112                 if (newest < lastModified) {
   113                     newest = lastModified;
   114                 }
   115             }
   116             return newest;
   117         } else if (toCheck.getName().endsWith(".class")) {
   118             final String cls = prefix.substring(0, prefix.length() - 7);
   119             arr.add(cls);
   120             return toCheck.lastModified();
   121         } else {
   122             return 0L;
   123         }
   124     }
   125 
   126     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
   127         List<URL> arr = new ArrayList<URL>();
   128         arr.add(root.toURI().toURL());
   129         for (Artifact a : deps) {
   130             if (a.getFile() != null) {
   131                 arr.add(a.getFile().toURI().toURL());
   132             }
   133         }
   134         return new URLClassLoader(arr.toArray(new URL[0]), Java2JavaScript.class.getClassLoader());
   135     }
   136 }