rt/vm/src/main/java/org/apidesign/vm4brwsr/Main.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Apr 2014 21:30:06 +0200
branchclosure
changeset 1491 4a1398eff4fb
parent 1146 e499b0dddd12
child 1513 ba912ef24b27
permissions -rw-r--r--
Different meaning of root vs. added classes. Ability to explicitly enumerate classes that should be exported and available with fully qualified name.
     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.BufferedWriter;
    21 import java.io.File;
    22 import java.io.FileWriter;
    23 import java.io.IOException;
    24 import java.io.Writer;
    25 import java.net.URI;
    26 import java.net.URISyntaxException;
    27 import java.net.URL;
    28 import java.util.Enumeration;
    29 import java.util.jar.JarEntry;
    30 import java.util.jar.JarFile;
    31 
    32 /** Generator of JavaScript from bytecode of classes on classpath of the VM
    33  * with a Main method.
    34  *
    35  * @author Jaroslav Tulach <jtulach@netbeans.org>
    36  */
    37 final class Main {
    38     private Main() {}
    39     
    40     public static void main(String... args) throws IOException, URISyntaxException {
    41         final String obfuscate = "--obfuscatelevel";
    42         final String extension = "--createextension";
    43 
    44         if (args.length < 2) {
    45             System.err.println("Bck2Brwsr Translator from Java(tm) to JavaScript, (c) Jaroslav Tulach 2012");
    46             System.err.print("Usage: java -cp ... -jar ... [");
    47             System.err.print(obfuscate);
    48             System.err.print(" [");
    49             boolean first = true;
    50             for (ObfuscationLevel l : ObfuscationLevel.values()) {
    51                 if (!first) {
    52                     System.err.print('|');
    53                 }
    54                 System.err.print(l.name());
    55                 first = false;
    56             }
    57             System.err.print("]] [");
    58             System.err.print(extension);
    59             System.err.println("] <file_to_generate_js_code_to> java/lang/Class org/your/App ...");
    60             System.exit(9);
    61         }
    62 
    63         final ClassLoader mainClassLoader = Main.class.getClassLoader();
    64 
    65         ObfuscationLevel obfLevel = ObfuscationLevel.NONE;
    66         boolean createExtension = false;
    67         StringArray classes = new StringArray();
    68         String generateTo = null;
    69         for (int i = 0; i < args.length; i++) {
    70             if (obfuscate.equals(args[i])) { // NOI18N
    71                 i++;
    72                 try {
    73                     obfLevel = ObfuscationLevel.valueOf(args[i]);
    74                 } catch (Exception e) {
    75                     System.err.print(obfuscate);
    76                     System.err.print(" parameter needs to be followed by one of ");
    77                     boolean first = true;
    78                     for (ObfuscationLevel l : ObfuscationLevel.values()) {
    79                         if (!first) {
    80                             System.err.print(", ");
    81                         }
    82                         System.err.print(l.name());
    83                         first = false;
    84                     }
    85                     System.err.println();
    86                     System.exit(1);
    87                 }
    88                 continue;
    89             }
    90             if (extension.equals(args[i])) { // NOI18N
    91                 createExtension = true;
    92                 continue;
    93             }
    94             if (generateTo == null) {
    95                 generateTo = args[i];
    96             } else {
    97                 collectClasses(classes, mainClassLoader, args[i]);
    98             }
    99         }
   100         
   101         File gt = new File(generateTo);
   102         if (Boolean.getBoolean("skip.if.exists") && gt.isFile()) {
   103             System.err.println("Skipping as " + gt + " exists.");
   104             System.exit(0);
   105         }
   106         
   107         try (Writer w = new BufferedWriter(new FileWriter(gt))) {
   108             Bck2Brwsr.newCompiler().library(createExtension).
   109                 obfuscation(obfLevel).
   110                 addRootClasses(classes.toArray()).
   111                 resources(new LdrRsrcs(mainClassLoader)).
   112                 generate(w);
   113         }
   114     }
   115 
   116     private static void collectClasses(
   117             final StringArray dest,
   118             final ClassLoader cl, final String relativePath)
   119                 throws IOException, URISyntaxException {
   120         final Enumeration<URL> urls = cl.getResources(relativePath);
   121         if (!urls.hasMoreElements()) {
   122             dest.add(relativePath);
   123             return;
   124         }
   125         do {
   126             final URL url = urls.nextElement();
   127             switch (url.getProtocol()) {
   128                 case "file":
   129                     collectClasses(dest, relativePath,
   130                                    new File(new URI(url.toString())));
   131                     continue;
   132                 case "jar":
   133                     final String fullPath = url.getPath();
   134                     final int sepIndex = fullPath.indexOf('!');
   135                     final String jarFilePath =
   136                             (sepIndex != -1) ? fullPath.substring(0, sepIndex)
   137                                              : fullPath;
   138 
   139                     final URI jarUri = new URI(jarFilePath);
   140                     if (jarUri.getScheme().equals("file")) {
   141                         try (JarFile jarFile = new JarFile(new File(jarUri))) {
   142                             collectClasses(dest, relativePath, jarFile);
   143                             continue;
   144                         }
   145                     }
   146                     break;
   147             }
   148 
   149             dest.add(relativePath);
   150         } while (urls.hasMoreElements());
   151     }
   152 
   153     private static void collectClasses(final StringArray dest,
   154                                        final String relativePath,
   155                                        final File file) {
   156         if (file.isDirectory()) {
   157             final File[] subFiles = file.listFiles();
   158             for (final File subFile: subFiles) {
   159                 collectClasses(dest,
   160                                extendPath(relativePath, subFile.getName()),
   161                                subFile);
   162             }
   163 
   164             return;
   165         }
   166 
   167         final String filePath = file.getPath();
   168         if (filePath.endsWith(".class")) {
   169             validateAndAddClass(dest, relativePath);
   170         }
   171     }
   172 
   173     private static void collectClasses(final StringArray dest,
   174                                        final String relativePath,
   175                                        final JarFile jarFile) {
   176         if (relativePath.endsWith(".class")) {
   177             if (jarFile.getJarEntry(relativePath) != null) {
   178                 validateAndAddClass(dest, relativePath);
   179             }
   180 
   181             return;
   182         }
   183 
   184         final String expectedPrefix =
   185                 relativePath.endsWith("/") ? relativePath
   186                                            : relativePath + '/';
   187         final Enumeration<JarEntry> entries = jarFile.entries();
   188         while (entries.hasMoreElements()) {
   189             final JarEntry entry = entries.nextElement();
   190             if (!entry.isDirectory()) {
   191                 final String entryName = entry.getName();
   192                 if (entryName.startsWith(expectedPrefix)
   193                         && entryName.endsWith(".class")) {
   194                     validateAndAddClass(dest, entryName);
   195                 }
   196             }
   197         }
   198     }
   199 
   200     private static String extendPath(final String relativePath,
   201                                      final String fileName) {
   202         return relativePath.endsWith("/") ? relativePath + fileName
   203                                           : relativePath + '/' + fileName;
   204     }
   205 
   206     private static void validateAndAddClass(final StringArray dest,
   207                                             final String relativePath) {
   208         final String className =
   209                 relativePath.substring(0, relativePath.length() - 6);
   210         if (!className.endsWith("package-info")) {
   211             dest.add(className);
   212         }
   213     }
   214 }