launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/CompileCP.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 30 Apr 2014 15:04:10 +0200
branchclosure
changeset 1513 ba912ef24b27
parent 1505 706b66d8c481
child 1517 7f11e94f413d
permissions -rw-r--r--
Merging from default branch and resolving conflicts. mvn install -DskipTests passes OK.
     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.launcher;
    19 
    20 import java.io.File;
    21 import java.io.IOException;
    22 import java.io.InputStream;
    23 import java.io.StringWriter;
    24 import java.net.JarURLConnection;
    25 import java.net.URISyntaxException;
    26 import java.net.URL;
    27 import java.util.ArrayList;
    28 import java.util.Enumeration;
    29 import java.util.List;
    30 import java.util.jar.JarEntry;
    31 import java.util.jar.JarFile;
    32 import java.util.logging.Level;
    33 import java.util.logging.Logger;
    34 import java.util.zip.ZipEntry;
    35 import org.apidesign.bck2brwsr.launcher.BaseHTTPLauncher.Res;
    36 import org.apidesign.vm4brwsr.Bck2Brwsr;
    37 
    38 /**
    39  *
    40  * @author Jaroslav Tulach
    41  */
    42 class CompileCP {
    43     static String compileJAR(final JarFile jar) throws IOException {
    44         List<String> arr = new ArrayList<>();
    45         List<String> classes = new ArrayList<>();
    46         listJAR(jar, classes, arr);
    47         StringWriter w = new StringWriter();
    48         try {
    49             class JarRes extends EmulationResources implements Bck2Brwsr.Resources {
    50                 @Override
    51                 public InputStream get(String resource) throws IOException {
    52                     InputStream is = jar.getInputStream(new ZipEntry(resource));
    53                     return is == null ? super.get(resource) : is;
    54                 }
    55             }
    56             
    57             Bck2Brwsr.newCompiler()
    58                 .addClasses(classes.toArray(new String[0]))
    59                 .addResources(arr.toArray(new String[0]))
    60                 .library(true)
    61                 .resources(new JarRes())
    62                 .generate(w);
    63             w.flush();
    64             return w.toString();
    65         } catch (Throwable ex) {
    66             throw new IOException("Cannot compile: ", ex);
    67         } finally {
    68             w.close();
    69         }
    70     }
    71     
    72     static String compileFromClassPath(URL u, final Res r) throws IOException {
    73         File f;
    74         try {
    75             f = new File(u.toURI());
    76         } catch (URISyntaxException ex) {
    77             throw new IOException(ex);
    78         }
    79         for (String s : System.getProperty("java.class.path").split(File.pathSeparator)) {
    80             if (!f.getPath().startsWith(s)) {
    81                 continue;
    82             }
    83             File root = new File(s);
    84             List<String> arr = new ArrayList<>();
    85             List<String> classes = new ArrayList<>();
    86             listDir(root, null, classes, arr);
    87             StringWriter w = new StringWriter();
    88             try {
    89                 Bck2Brwsr.newCompiler()
    90                     .addRootClasses(classes.toArray(new String[0]))
    91                     .addResources(arr.toArray(new String[0]))
    92                     .library(true)
    93                     .resources(new EmulationResources() {
    94                         @Override
    95                         public InputStream get(String resource) throws IOException {
    96                             return r != null ? r.get(resource, 0).openStream() : super.get(resource);
    97                         }
    98                     })
    99                     .generate(w);
   100                 w.flush();
   101                 return w.toString();
   102             } catch (ClassFormatError ex) {
   103                 throw new IOException(ex);
   104             } finally {
   105                 w.close();
   106             }
   107         }
   108         return null;
   109     }
   110     
   111     private static void listJAR(JarFile j, List<String> classes, List<String> resources) throws IOException {
   112         Enumeration<JarEntry> en = j.entries();
   113         while (en.hasMoreElements()) {
   114             JarEntry e = en.nextElement();
   115             final String n = e.getName();
   116             if (n.contains("package-info")) {
   117                 continue;
   118             }
   119             if (n.endsWith("/")) {
   120                 continue;
   121             }
   122             int last = n.lastIndexOf('/');
   123             String pkg = n.substring(0, last + 1);
   124             if (skipPkg(pkg)) {
   125                 continue;
   126             }
   127             if (n.endsWith(".class")) {
   128                 classes.add(n.substring(0, n.length() - 6));
   129             } else {
   130                 resources.add(n);
   131             }
   132         }
   133     }
   134 
   135     private static boolean skipPkg(String pkg) {
   136         return pkg.equals("org/apidesign/bck2brwsr/launcher/");
   137     }
   138     
   139     private static void listDir(File f, String pref, List<String> classes, List<String> resources) throws IOException {
   140         File[] arr = f.listFiles();
   141         if (arr == null) {
   142             if (f.getName().equals("package-info.class")) {
   143                 return;
   144             }
   145             if (f.getName().endsWith(".class")) {
   146                 classes.add(pref + f.getName().substring(0, f.getName().length() - 6));
   147             } else {
   148                 resources.add(pref + f.getName());
   149             }
   150         } else {
   151             for (File ch : arr) {
   152                 
   153                 listDir(ch, pref == null ? "" : pref + f.getName() + "/", classes, resources);
   154             }
   155         }
   156     }
   157 
   158     static void compileVM(StringBuilder sb, final Res r) throws IOException {
   159         URL u = r.get(InterruptedException.class.getName().replace('.', '/') + ".class", 0);
   160         JarURLConnection juc = (JarURLConnection)u.openConnection();
   161         
   162         List<String> arr = new ArrayList<>();
   163         List<String> classes = new ArrayList<>();
   164         listJAR(juc.getJarFile(), classes, arr);
   165 
   166         Bck2Brwsr.newCompiler().addRootClasses(classes.toArray(new String[0]))
   167             .resources(new Bck2Brwsr.Resources() {
   168                 @Override
   169                 public InputStream get(String resource) throws IOException {
   170                     return r.get(resource, 0).openStream();
   171                 }
   172             }).generate(sb);
   173     }
   174 
   175     static class EmulationResources implements Bck2Brwsr.Resources {
   176 
   177         @Override
   178         public InputStream get(String name) throws IOException {
   179             Enumeration<URL> en = CompileCP.class.getClassLoader().getResources(name);
   180             URL u = null;
   181             while (en.hasMoreElements()) {
   182                 u = en.nextElement();
   183             }
   184             if (u == null) {
   185                 throw new IOException("Can't find " + name);
   186             }
   187             if (u.toExternalForm().contains("rt.jar!")) {
   188                 throw new IOException("No emulation for " + u);
   189             }
   190             return u.openStream();
   191         }
   192     }
   193 }