src/share/classes/com/sun/tools/classfile/ClassFile.java

Tue, 28 May 2013 17:39:41 +0100

author
vromero
date
Tue, 28 May 2013 17:39:41 +0100
changeset 1784
d042cba65eab
parent 972
694ff82ca68e
child 1863
8e3d391c88c6
permissions
-rw-r--r--

8012333: javac, ClassFile should have a read(Path) method
Reviewed-by: jjg

jjg@46 1 /*
vromero@1784 2 * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
jjg@46 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@46 4 *
jjg@46 5 * This code is free software; you can redistribute it and/or modify it
jjg@46 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
jjg@46 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
jjg@46 10 *
jjg@46 11 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@46 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@46 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@46 14 * version 2 for more details (a copy is included in the LICENSE file that
jjg@46 15 * accompanied this code).
jjg@46 16 *
jjg@46 17 * You should have received a copy of the GNU General Public License version
jjg@46 18 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@46 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@46 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
jjg@46 24 */
jjg@46 25
jjg@46 26 package com.sun.tools.classfile;
jjg@46 27
jjg@46 28 import java.io.File;
jjg@46 29 import java.io.FileInputStream;
jjg@46 30 import java.io.IOException;
jjg@46 31 import java.io.InputStream;
vromero@1784 32 import java.nio.file.Path;
jjg@46 33
jjg@46 34 import static com.sun.tools.classfile.AccessFlags.*;
jjg@46 35
jjg@46 36 /**
jjh@972 37 * See JVMS, section 4.2.
jjg@46 38 *
jjg@581 39 * <p><b>This is NOT part of any supported API.
jjg@581 40 * If you write code that depends on this, you do so at your own risk.
jjg@46 41 * This code and its internal interfaces are subject to change or
jjg@46 42 * deletion without notice.</b>
jjg@46 43 */
jjg@46 44 public class ClassFile {
jjg@46 45 public static ClassFile read(File file)
jjg@46 46 throws IOException, ConstantPoolException {
jjg@46 47 return read(file, new Attribute.Factory());
jjg@46 48 }
jjg@46 49
vromero@1784 50 public static ClassFile read(Path path)
vromero@1784 51 throws IOException, ConstantPoolException {
vromero@1784 52 return read(path.toFile(), new Attribute.Factory());
vromero@1784 53 }
vromero@1784 54
jjg@46 55 public static ClassFile read(File file, Attribute.Factory attributeFactory)
jjg@46 56 throws IOException, ConstantPoolException {
jjg@46 57 FileInputStream in = new FileInputStream(file);
jjg@46 58 try {
jjg@46 59 return new ClassFile(in, attributeFactory);
jjg@46 60 } finally {
jjg@46 61 try {
jjg@46 62 in.close();
jjg@46 63 } catch (IOException e) {
jjg@46 64 // ignore
jjg@46 65 }
jjg@46 66 }
jjg@46 67 }
jjg@46 68
jjg@46 69 public static ClassFile read(InputStream in)
jjg@46 70 throws IOException, ConstantPoolException {
jjg@46 71 return new ClassFile(in, new Attribute.Factory());
jjg@46 72 }
jjg@46 73
jjg@46 74 public static ClassFile read(InputStream in, Attribute.Factory attributeFactory)
jjg@46 75 throws IOException, ConstantPoolException {
jjg@46 76 return new ClassFile(in, attributeFactory);
jjg@46 77 }
jjg@46 78
jjg@46 79 ClassFile(InputStream in, Attribute.Factory attributeFactory) throws IOException, ConstantPoolException {
jjg@46 80 ClassReader cr = new ClassReader(this, in, attributeFactory);
jjg@46 81 magic = cr.readInt();
jjg@46 82 minor_version = cr.readUnsignedShort();
jjg@46 83 major_version = cr.readUnsignedShort();
jjg@46 84 constant_pool = new ConstantPool(cr);
jjg@46 85 access_flags = new AccessFlags(cr);
jjg@46 86 this_class = cr.readUnsignedShort();
jjg@46 87 super_class = cr.readUnsignedShort();
jjg@46 88
jjg@46 89 int interfaces_count = cr.readUnsignedShort();
jjg@46 90 interfaces = new int[interfaces_count];
jjg@46 91 for (int i = 0; i < interfaces_count; i++)
jjg@46 92 interfaces[i] = cr.readUnsignedShort();
jjg@46 93
jjg@46 94 int fields_count = cr.readUnsignedShort();
jjg@46 95 fields = new Field[fields_count];
jjg@46 96 for (int i = 0; i < fields_count; i++)
jjg@46 97 fields[i] = new Field(cr);
jjg@46 98
jjg@46 99 int methods_count = cr.readUnsignedShort();
jjg@46 100 methods = new Method[methods_count];
jjg@46 101 for (int i = 0; i < methods_count; i++)
jjg@46 102 methods[i] = new Method(cr);
jjg@46 103
jjg@46 104 attributes = new Attributes(cr);
jjg@46 105 }
jjg@46 106
jjg@46 107 public ClassFile(int magic, int minor_version, int major_version,
jjg@46 108 ConstantPool constant_pool, AccessFlags access_flags,
jjg@46 109 int this_class, int super_class, int[] interfaces,
jjg@46 110 Field[] fields, Method[] methods, Attributes attributes) {
jjg@46 111 this.magic = magic;
jjg@46 112 this.minor_version = minor_version;
jjg@46 113 this.major_version = major_version;
jjg@46 114 this.constant_pool = constant_pool;
jjg@46 115 this.access_flags = access_flags;
jjg@46 116 this.this_class = this_class;
jjg@46 117 this.super_class = super_class;
jjg@46 118 this.interfaces = interfaces;
jjg@46 119 this.fields = fields;
jjg@46 120 this.methods = methods;
jjg@46 121 this.attributes = attributes;
jjg@46 122 }
jjg@46 123
jjg@46 124 public String getName() throws ConstantPoolException {
jjg@46 125 return constant_pool.getClassInfo(this_class).getName();
jjg@46 126 }
jjg@46 127
jjg@46 128 public String getSuperclassName() throws ConstantPoolException {
jjg@46 129 return constant_pool.getClassInfo(super_class).getName();
jjg@46 130 }
jjg@46 131
jjg@46 132 public String getInterfaceName(int i) throws ConstantPoolException {
jjg@46 133 return constant_pool.getClassInfo(interfaces[i]).getName();
jjg@46 134 }
jjg@46 135
jjg@46 136 public Attribute getAttribute(String name) {
jjg@46 137 return attributes.get(name);
jjg@46 138 }
jjg@46 139
jjg@46 140 public boolean isClass() {
jjg@46 141 return !isInterface();
jjg@46 142 }
jjg@46 143
jjg@46 144 public boolean isInterface() {
jjg@46 145 return access_flags.is(ACC_INTERFACE);
jjg@46 146 }
jjg@46 147
jjg@345 148 public int byteLength() {
jjg@345 149 return 4 + // magic
jjg@345 150 2 + // minor
jjg@345 151 2 + // major
jjg@345 152 constant_pool.byteLength() +
jjg@345 153 2 + // access flags
jjg@345 154 2 + // this_class
jjg@345 155 2 + // super_class
jjg@345 156 byteLength(interfaces) +
jjg@345 157 byteLength(fields) +
jjg@345 158 byteLength(methods) +
jjg@345 159 attributes.byteLength();
jjg@345 160 }
jjg@345 161
jjg@345 162 private int byteLength(int[] indices) {
jjg@345 163 return 2 + 2 * indices.length;
jjg@345 164 }
jjg@345 165
jjg@345 166 private int byteLength(Field[] fields) {
jjg@345 167 int length = 2;
jjg@345 168 for (Field f: fields)
jjg@345 169 length += f.byteLength();
jjg@345 170 return length;
jjg@345 171 }
jjg@345 172
jjg@345 173 private int byteLength(Method[] methods) {
jjg@345 174 int length = 2;
jjg@345 175 for (Method m: methods)
jjg@345 176 length += m.byteLength();
jjg@345 177 return length;
jjg@345 178 }
jjg@345 179
jjg@46 180 public final int magic;
jjg@46 181 public final int minor_version;
jjg@46 182 public final int major_version;
jjg@46 183 public final ConstantPool constant_pool;
jjg@46 184 public final AccessFlags access_flags;
jjg@46 185 public final int this_class;
jjg@46 186 public final int super_class;
jjg@46 187 public final int[] interfaces;
jjg@46 188 public final Field[] fields;
jjg@46 189 public final Method[] methods;
jjg@46 190 public final Attributes attributes;
jjg@46 191 }

mercurial