rt/vm/src/main/java/org/apidesign/vm4brwsr/Main.java
author Lubomir Nerad <lubomir.nerad@oracle.com>
Mon, 13 May 2013 18:54:50 +0200
branchclosure
changeset 1094 36961c9a009f
parent 1029 b1fe994d4267
child 1146 e499b0dddd12
permissions -rw-r--r--
Changed the way the external classes are identified
     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         try (Writer w = new BufferedWriter(new FileWriter(generateTo))) {
   101             Bck2Brwsr.newCompiler().
   102                 extension(createExtension).
   103                 obfuscation(obfLevel).
   104                 addRootClasses(classes.toArray()).
   105                 resources(new LdrRsrcs(mainClassLoader)).
   106                 generate(w);
   107         }
   108     }
   109 
   110     private static void collectClasses(
   111             final StringArray dest,
   112             final ClassLoader cl, final String relativePath)
   113                 throws IOException, URISyntaxException {
   114         final Enumeration<URL> urls = cl.getResources(relativePath);
   115         if (!urls.hasMoreElements()) {
   116             dest.add(relativePath);
   117             return;
   118         }
   119         do {
   120             final URL url = urls.nextElement();
   121             switch (url.getProtocol()) {
   122                 case "file":
   123                     collectClasses(dest, relativePath,
   124                                    new File(new URI(url.toString())));
   125                     continue;
   126                 case "jar":
   127                     final String fullPath = url.getPath();
   128                     final int sepIndex = fullPath.indexOf('!');
   129                     final String jarFilePath =
   130                             (sepIndex != -1) ? fullPath.substring(0, sepIndex)
   131                                              : fullPath;
   132 
   133                     final URI jarUri = new URI(jarFilePath);
   134                     if (jarUri.getScheme().equals("file")) {
   135                         try (JarFile jarFile = new JarFile(new File(jarUri))) {
   136                             collectClasses(dest, relativePath, jarFile);
   137                             continue;
   138                         }
   139                     }
   140                     break;
   141             }
   142 
   143             dest.add(relativePath);
   144         } while (urls.hasMoreElements());
   145     }
   146 
   147     private static void collectClasses(final StringArray dest,
   148                                        final String relativePath,
   149                                        final File file) {
   150         if (file.isDirectory()) {
   151             final File[] subFiles = file.listFiles();
   152             for (final File subFile: subFiles) {
   153                 collectClasses(dest,
   154                                extendPath(relativePath, subFile.getName()),
   155                                subFile);
   156             }
   157 
   158             return;
   159         }
   160 
   161         final String filePath = file.getPath();
   162         if (filePath.endsWith(".class")) {
   163             validateAndAddClass(dest, relativePath);
   164         }
   165     }
   166 
   167     private static void collectClasses(final StringArray dest,
   168                                        final String relativePath,
   169                                        final JarFile jarFile) {
   170         if (relativePath.endsWith(".class")) {
   171             if (jarFile.getJarEntry(relativePath) != null) {
   172                 validateAndAddClass(dest, relativePath);
   173             }
   174 
   175             return;
   176         }
   177 
   178         final String expectedPrefix =
   179                 relativePath.endsWith("/") ? relativePath
   180                                            : relativePath + '/';
   181         final Enumeration<JarEntry> entries = jarFile.entries();
   182         while (entries.hasMoreElements()) {
   183             final JarEntry entry = entries.nextElement();
   184             if (!entry.isDirectory()) {
   185                 final String entryName = entry.getName();
   186                 if (entryName.startsWith(expectedPrefix)
   187                         && entryName.endsWith(".class")) {
   188                     validateAndAddClass(dest, entryName);
   189                 }
   190             }
   191         }
   192     }
   193 
   194     private static String extendPath(final String relativePath,
   195                                      final String fileName) {
   196         return relativePath.endsWith("/") ? relativePath + fileName
   197                                           : relativePath + '/' + fileName;
   198     }
   199 
   200     private static void validateAndAddClass(final StringArray dest,
   201                                             final String relativePath) {
   202         final String className =
   203                 relativePath.substring(0, relativePath.length() - 6);
   204         if (!className.endsWith("package-info")) {
   205             dest.add(className);
   206         }
   207     }
   208 }