rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/AOTLibrary.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 10 Jan 2015 08:55:17 +0100
changeset 1765 6e50103c0f1c
parent 1748 9023e492b2b9
child 1769 f6057dc5922c
permissions -rw-r--r--
Use UTF-8 when ahead-of-time compiling libraries into -bck2brwsr.jar artefact
     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 
    19 package org.apidesign.bck2brwsr.mojo;
    20 
    21 import java.io.File;
    22 import java.io.FileOutputStream;
    23 import java.io.IOException;
    24 import java.io.OutputStreamWriter;
    25 import java.io.Writer;
    26 import java.net.MalformedURLException;
    27 import java.net.URL;
    28 import java.net.URLClassLoader;
    29 import java.util.ArrayList;
    30 import java.util.Collection;
    31 import java.util.List;
    32 import java.util.jar.Attributes;
    33 import java.util.jar.JarEntry;
    34 import java.util.jar.JarOutputStream;
    35 import java.util.jar.Manifest;
    36 import org.apache.maven.artifact.Artifact;
    37 import org.apache.maven.plugin.AbstractMojo;
    38 import org.apache.maven.plugin.MojoExecutionException;
    39 import org.apache.maven.plugin.MojoFailureException;
    40 import org.apache.maven.plugins.annotations.Component;
    41 import org.apache.maven.plugins.annotations.LifecyclePhase;
    42 import org.apache.maven.plugins.annotations.Mojo;
    43 import org.apache.maven.plugins.annotations.Parameter;
    44 import org.apache.maven.plugins.annotations.ResolutionScope;
    45 import org.apache.maven.project.MavenProject;
    46 import org.apache.maven.project.MavenProjectHelper;
    47 import org.apidesign.bck2brwsr.aot.Bck2BrwsrJars;
    48 import org.apidesign.vm4brwsr.Bck2Brwsr;
    49 import org.apidesign.vm4brwsr.ObfuscationLevel;
    50 
    51 /**
    52  *
    53  * @author Jaroslav Tulach
    54  * @since 0.12
    55  */
    56 @Mojo(name = "library",
    57     requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME,
    58     defaultPhase = LifecyclePhase.PACKAGE
    59 )
    60 public class AOTLibrary extends AbstractMojo {
    61     @Parameter(defaultValue = "${project}")
    62     private MavenProject prj;
    63 
    64     @Component
    65     private MavenProjectHelper projectHelper;
    66     @Parameter(defaultValue = "${project.build.directory}/${project.build.finalName}.jar")
    67     private File mainJar;    
    68     @Parameter(defaultValue = "${project.build.finalName}-min.js")
    69     private String minified;
    70     @Parameter(defaultValue = "${project.build.finalName}-debug.js")
    71     private String debug;
    72     
    73     @Parameter(defaultValue = "${project.build.directory}/${project.build.finalName}-bck2brwsr.jar")
    74     private File aotJar;
    75     
    76     @Parameter
    77     private String[] exports;
    78     
    79     @Parameter
    80     private String[] aotDeps;
    81     
    82     @Override
    83     public void execute() throws MojoExecutionException, MojoFailureException {
    84         URLClassLoader loader;
    85         try {
    86             loader = buildClassLoader(mainJar, prj.getArtifacts());
    87         } catch (MalformedURLException ex) {
    88             throw new MojoFailureException("Can't initialize classloader");
    89         }
    90 
    91         try {
    92             Manifest m = new Manifest();
    93             if (!"false".equals(minified)) {
    94                 Attributes attr = new Attributes();
    95                 attr.putValue("Bck2BrwsrArtifactId", prj.getArtifactId());
    96                 attr.putValue("Bck2BrwsrGroupId", prj.getGroupId());
    97                 attr.putValue("Bck2BrwsrVersion", prj.getVersion());
    98                 attr.putValue("Bck2BrwsrMinified", "true");
    99                 m.getEntries().put(minified, attr);
   100             }
   101             if (!"false".equals(debug)) {
   102                 Attributes attr = new Attributes();
   103                 attr.putValue("Bck2BrwsrArtifactId", prj.getArtifactId());
   104                 attr.putValue("Bck2BrwsrGroupId", prj.getGroupId());
   105                 attr.putValue("Bck2BrwsrVersion", prj.getVersion());
   106                 attr.putValue("Bck2BrwsrDebug", "true");
   107                 m.getEntries().put(debug, attr);
   108             }
   109             
   110             if (aotDeps != null) {
   111                 for (Artifact a : prj.getArtifacts()) {
   112                     if (!matches(aotDeps, a)) {
   113                         continue;
   114                     }
   115                     
   116                     {
   117                         Attributes attr = new Attributes();
   118                         attr.putValue("Bck2BrwsrArtifactId", a.getArtifactId());
   119                         attr.putValue("Bck2BrwsrGroupId", a.getGroupId());
   120                         attr.putValue("Bck2BrwsrVersion", a.getVersion());
   121                         attr.putValue("Bck2BrwsrDebug", "true");
   122                         m.getEntries().put(artifactName(a, true), attr);
   123                     }
   124                     {
   125                         Attributes attr = new Attributes();
   126                         attr.putValue("Bck2BrwsrArtifactId", a.getArtifactId());
   127                         attr.putValue("Bck2BrwsrGroupId", a.getGroupId());
   128                         attr.putValue("Bck2BrwsrVersion", a.getVersion());
   129                         attr.putValue("Bck2BrwsrMinified", "true");
   130                         m.getEntries().put(artifactName(a, false), attr);
   131                     }
   132                 }
   133             }
   134             
   135             FileOutputStream fos = new FileOutputStream(this.aotJar);
   136             JarOutputStream os = new JarOutputStream(fos, m);
   137 
   138             if (!"false".equals(debug)) {
   139                 os.putNextEntry(new JarEntry(debug));
   140                 Writer w = new OutputStreamWriter(os, "UTF-8");
   141                 configureMain(loader).
   142                     obfuscation(ObfuscationLevel.NONE).
   143                     generate(w);
   144                 w.flush();
   145                 os.closeEntry();
   146             }
   147             if (!"false".equals(minified)) {
   148                 os.putNextEntry(new JarEntry(minified));
   149             
   150                 Writer w = new OutputStreamWriter(os, "UTF-8");
   151                 configureMain(loader).
   152                     obfuscation(ObfuscationLevel.FULL).
   153                     generate(w);
   154                 w.flush();
   155                 os.closeEntry();
   156             }
   157             
   158             if (aotDeps != null) {
   159                 for (Artifact a : prj.getArtifacts()) {
   160                     if (!matches(aotDeps, a)) {
   161                         continue;
   162                     }
   163                     getLog().info("Generating bck2brwsr for " + a.getFile());
   164                     Bck2Brwsr c = Bck2BrwsrJars.configureFrom(null, a.getFile(), loader);
   165                     if (exports != null) {
   166                         for (String e : exports) {
   167                             c = c.addExported(e.replace('.', '/'));
   168                         }
   169                     }
   170                     {
   171                         os.putNextEntry(new JarEntry(artifactName(a, true)));
   172                         Writer w = new OutputStreamWriter(os, "UTF-8");
   173                         c.
   174                             obfuscation(ObfuscationLevel.NONE).
   175                             generate(w);
   176                         w.flush();
   177                         os.closeEntry();
   178                     }
   179                     {
   180                         os.putNextEntry(new JarEntry(artifactName(a, false)));
   181 
   182                         Writer w = new OutputStreamWriter(os, "UTF-8");
   183                         c.
   184                             obfuscation(ObfuscationLevel.FULL).
   185                             generate(w);
   186                         w.flush();
   187                         os.closeEntry();
   188                     }                    
   189                 }
   190             }
   191             os.close();
   192             
   193             projectHelper.attachArtifact(prj, "jar", "bck2brwsr", aotJar);
   194         } catch (IOException ex) {
   195             throw new MojoFailureException("Cannot generate script for " + mainJar, ex);
   196         }
   197     }
   198 
   199     private Bck2Brwsr configureMain(URLClassLoader loader) throws IOException {
   200         Bck2Brwsr c = Bck2BrwsrJars.configureFrom(null, mainJar, loader);
   201         if (exports != null) {
   202             for (String e : exports) {
   203                 c = c.addExported(e.replace('.', '/'));
   204             }
   205         }
   206         return c;
   207     }
   208 
   209     private static String artifactName(Artifact a, boolean debug) {
   210         return a.getGroupId() + "-" + a.getArtifactId() + (debug ? "-debug.js" : "-min.js");
   211     }
   212 
   213     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
   214         List<URL> arr = new ArrayList<URL>();
   215         if (root != null) {
   216             arr.add(root.toURI().toURL());
   217         }
   218         for (Artifact a : deps) {
   219             if (a.getFile() != null) {
   220                 arr.add(a.getFile().toURI().toURL());
   221             }
   222         }
   223         return new URLClassLoader(arr.toArray(new URL[0]), Java2JavaScript.class.getClassLoader());
   224     }
   225 
   226     private static boolean matches(String[] aotDeps, Artifact a) {
   227         for (String d : aotDeps) {
   228             String[] parts = d.split(":");
   229             for (int i = 0; i < parts.length; i++) {
   230                 if ("*".equals(parts[i])) {
   231                     parts[i] = null;
   232                 }
   233             }
   234             
   235             if (parts[0] != null && !parts[0].equals(a.getGroupId())) {
   236                 continue;
   237             }
   238             if (parts[1] != null && !parts[1].equals(a.getArtifactId())) {
   239                 continue;
   240             }
   241             if (parts.length > 2 && parts[2] != null && !parts[2].equals(a.getClassifier())) {
   242                 continue;
   243             }
   244             return true;
   245         }
   246         return false;
   247     }
   248 }