rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/Java2JavaScript.java
author Lubomir Nerad <lubomir.nerad@oracle.com>
Mon, 15 Apr 2013 15:30:53 +0200
branchclosure
changeset 988 c2386b2f53d0
parent 874 2bcbe348dbec
child 1104 47c1fc251d84
permissions -rw-r--r--
Fixed static calculator full obfuscation after introduction o Exported annotation
     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.project.MavenProject;
    37 import org.apidesign.vm4brwsr.Bck2Brwsr;
    38 import org.apidesign.vm4brwsr.ObfuscationLevel;
    39 
    40 /** Compiles classes into JavaScript. */
    41 @Mojo(name="j2js", defaultPhase=LifecyclePhase.PROCESS_CLASSES)
    42 public class Java2JavaScript extends AbstractMojo {
    43     public Java2JavaScript() {
    44     }
    45     /** Root of the class files */
    46     @Parameter(defaultValue="${project.build.directory}/classes")
    47     private File classes;
    48     /** JavaScript file to generate */
    49     @Parameter
    50     private File javascript;
    51 
    52     /** Additional classes that should be pre-compiled into the javascript 
    53      * file. By default compiles all classes found under <code>classes</code>
    54      * directory and their transitive closure.
    55      */
    56     @Parameter
    57     private List<String> compileclasses;
    58     
    59     @Parameter(defaultValue="${project}")
    60     private MavenProject prj;
    61 
    62     /**
    63      * The obfuscation level for the generated JavaScript file.
    64      *
    65      * @since 0.5
    66      */
    67     @Parameter(defaultValue="NONE")
    68     private ObfuscationLevel obfuscation;
    69 
    70     @Override
    71     public void execute() throws MojoExecutionException {
    72         if (!classes.isDirectory()) {
    73             throw new MojoExecutionException("Can't find " + classes);
    74         }
    75 
    76         List<String> arr = new ArrayList<String>();
    77         long newest = collectAllClasses("", classes, arr);
    78         
    79         if (compileclasses != null) {
    80             arr.retainAll(compileclasses);
    81             arr.addAll(compileclasses);
    82         }
    83         
    84         if (javascript.lastModified() > newest) {
    85             return;
    86         }
    87 
    88         try {
    89             URLClassLoader url = buildClassLoader(classes, prj.getDependencyArtifacts());
    90             FileWriter w = new FileWriter(javascript);
    91             Bck2Brwsr.newCompiler().
    92                 obfuscation(obfuscation).
    93                 resources(url).
    94                 addRootClasses(arr.toArray(new String[0])).
    95                 generate(w);
    96             w.close();
    97         } catch (IOException ex) {
    98             throw new MojoExecutionException("Can't compile", ex);
    99         }
   100     }
   101 
   102     private static long collectAllClasses(String prefix, File toCheck, List<String> arr) {
   103         File[] files = toCheck.listFiles();
   104         if (files != null) {
   105             long newest = 0L;
   106             for (File f : files) {
   107                 long lastModified = collectAllClasses(prefix + f.getName() + "/", f, arr);
   108                 if (newest < lastModified) {
   109                     newest = lastModified;
   110                 }
   111             }
   112             return newest;
   113         } else if (toCheck.getName().endsWith(".class")) {
   114             final String cls = prefix.substring(0, prefix.length() - 7);
   115             if (!cls.endsWith("package-info")) {
   116                 arr.add(cls);
   117             }
   118             return toCheck.lastModified();
   119         } else {
   120             return 0L;
   121         }
   122     }
   123 
   124     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
   125         List<URL> arr = new ArrayList<URL>();
   126         arr.add(root.toURI().toURL());
   127         for (Artifact a : deps) {
   128             if (a.getFile() != null) {
   129                 arr.add(a.getFile().toURI().toURL());
   130             }
   131         }
   132         return new URLClassLoader(arr.toArray(new URL[0]), Java2JavaScript.class.getClassLoader());
   133     }
   134 }