test/compiler/jsr292/methodHandleExceptions/ByteClassLoader.java

Wed, 27 Apr 2016 01:25:04 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:25:04 +0800
changeset 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/
changeset: 6782:28b50d07f6f8
tag: jdk8u25-b17

     1 import java.io.BufferedOutputStream;
     2 import java.io.FileNotFoundException;
     3 import java.io.FileOutputStream;
     4 import java.io.IOException;
     5 import java.net.URL;
     6 import java.net.URLClassLoader;
     7 import java.util.jar.JarEntry;
     8 import java.util.jar.JarOutputStream;
    10 /*
    11  * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
    12  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    13  *
    14  * This code is free software; you can redistribute it and/or modify it
    15  * under the terms of the GNU General Public License version 2 only, as
    16  * published by the Free Software Foundation.
    17  *
    18  * This code is distributed in the hope that it will be useful, but WITHOUT
    19  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    20  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    21  * version 2 for more details (a copy is included in the LICENSE file that
    22  * accompanied this code).
    23  *
    24  * You should have received a copy of the GNU General Public License version
    25  * 2 along with this work; if not, write to the Free Software Foundation,
    26  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    27  *
    28  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    29  * or visit www.oracle.com if you need additional information or have any
    30  * questions.
    31  *
    32  */
    34 /**
    35  * A ByteClassLoader is used to define classes from collections of bytes, as
    36  * well as loading classes in the usual way. It includes options to write the
    37  * classes to files in a jar, or to read the classes from jars in a later or
    38  * debugging run.
    39  *
    40  * If Boolean property byteclassloader.verbose is true, be chatty about jar
    41  * file operations.
    42  *
    43  */
    44 public class ByteClassLoader extends URLClassLoader {
    46     final static boolean verbose
    47             = Boolean.getBoolean("byteclassloader.verbose");
    49     final boolean read;
    50     final JarOutputStream jos;
    51     final String jar_name;
    53     /**
    54      * Make a new ByteClassLoader.
    55      *
    56      * @param jar_name  Basename of jar file to be read/written by this classloader.
    57      * @param read      If true, read classes from jar file instead of from parameter.
    58      * @param write     If true, write classes to jar files for offline study/use.
    59      *
    60      * @throws FileNotFoundException
    61      * @throws IOException
    62      */
    63     public ByteClassLoader(String jar_name, boolean read, boolean write)
    64             throws FileNotFoundException, IOException {
    65         super(read
    66                 ? new URL[]{new URL("file:" + jar_name + ".jar")}
    67                 : new URL[0]);
    68         this.read = read;
    69         this.jar_name = jar_name;
    70         this.jos = write
    71                 ? new JarOutputStream(
    72                 new BufferedOutputStream(
    73                 new FileOutputStream(jar_name + ".jar"))) : null;
    74         if (read && write) {
    75             throw new Error("At most one of read and write may be true.");
    76         }
    77     }
    79     private static void writeJarredFile(JarOutputStream jos, String file, String suffix, byte[] bytes) {
    80         String fileName = file.replace(".", "/") + "." + suffix;
    81         JarEntry ze = new JarEntry(fileName);
    82         try {
    83             ze.setSize(bytes.length);
    84             jos.putNextEntry(ze);
    85             jos.write(bytes);
    86             jos.closeEntry();
    87         } catch (IOException e) {
    88             throw new RuntimeException(e);
    89         }
    90     }
    92     /**
    93      * (pre)load class name using classData for the definition.
    94      *
    95      * @param name
    96      * @param classData
    97      * @return
    98      */
    99     public Class<?> loadBytes(String name, byte[] classData) throws ClassNotFoundException {
   100         if (jos != null) {
   101             if (verbose) {
   102                 System.out.println("ByteClassLoader: writing " + name);
   103             }
   104             writeJarredFile(jos, name, "class", classData);
   105         }
   107         Class<?> clazz = null;
   108         if (read) {
   109             if (verbose) {
   110                 System.out.println("ByteClassLoader: reading " + name + " from " + jar_name);
   111             }
   112             clazz = loadClass(name);
   113         } else {
   114             clazz = defineClass(name, classData, 0, classData.length);
   115             resolveClass(clazz);
   116         }
   117         return clazz;
   118     }
   120     public void close() {
   121         if (jos != null) {
   122             try {
   123                 if (verbose) {
   124                     System.out.println("ByteClassLoader: closing " + jar_name);
   125                 }
   126                 jos.close();
   127             } catch (IOException ex) {
   128             }
   129         }
   130     }
   131 }

mercurial