src/share/classes/sun/tools/javap/FieldData.java

Wed, 02 Jul 2008 12:56:02 -0700

author
xdono
date
Wed, 02 Jul 2008 12:56:02 -0700
changeset 54
eaf608c64fec
parent 37
b8c8259e0d2b
child 184
905e151a185a
permissions
-rw-r--r--

6719955: Update copyright year
Summary: Update copyright year for files that have been modified in 2008
Reviewed-by: ohair, tbell

duke@1 1 /*
xdono@54 2 * Copyright 2002-2008 Sun Microsystems, Inc. All Rights Reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
duke@1 7 * published by the Free Software Foundation. Sun designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
duke@1 9 * by Sun in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
duke@1 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 22 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 23 * have any questions.
duke@1 24 */
duke@1 25
duke@1 26
duke@1 27 package sun.tools.javap;
duke@1 28
duke@1 29 import java.util.*;
duke@1 30 import java.io.*;
duke@1 31
duke@1 32 /**
duke@1 33 * Strores field data informastion.
duke@1 34 *
duke@1 35 * @author Sucheta Dambalkar (Adopted code from jdis)
duke@1 36 */
duke@1 37
duke@1 38 public class FieldData implements RuntimeConstants {
duke@1 39
duke@1 40 ClassData cls;
duke@1 41 int access;
duke@1 42 int name_index;
duke@1 43 int descriptor_index;
duke@1 44 int attributes_count;
duke@1 45 int value_cpx=0;
duke@1 46 boolean isSynthetic=false;
duke@1 47 boolean isDeprecated=false;
jjg@37 48 Vector<AttrData> attrs;
duke@1 49
duke@1 50 public FieldData(ClassData cls){
duke@1 51 this.cls=cls;
duke@1 52 }
duke@1 53
duke@1 54 /**
duke@1 55 * Read and store field info.
duke@1 56 */
duke@1 57 public void read(DataInputStream in) throws IOException {
duke@1 58 access = in.readUnsignedShort();
duke@1 59 name_index = in.readUnsignedShort();
duke@1 60 descriptor_index = in.readUnsignedShort();
duke@1 61 // Read the attributes
duke@1 62 int attributes_count = in.readUnsignedShort();
jjg@37 63 attrs=new Vector<AttrData>(attributes_count);
duke@1 64 for (int i = 0; i < attributes_count; i++) {
duke@1 65 int attr_name_index=in.readUnsignedShort();
duke@1 66 if (cls.getTag(attr_name_index)!=CONSTANT_UTF8) continue;
duke@1 67 String attr_name=cls.getString(attr_name_index);
duke@1 68 if (attr_name.equals("ConstantValue")){
duke@1 69 if (in.readInt()!=2)
duke@1 70 throw new ClassFormatError("invalid ConstantValue attr length");
duke@1 71 value_cpx=in.readUnsignedShort();
duke@1 72 AttrData attr=new AttrData(cls);
duke@1 73 attr.read(attr_name_index);
duke@1 74 attrs.addElement(attr);
duke@1 75 } else if (attr_name.equals("Synthetic")){
duke@1 76 if (in.readInt()!=0)
duke@1 77 throw new ClassFormatError("invalid Synthetic attr length");
duke@1 78 isSynthetic=true;
duke@1 79 AttrData attr=new AttrData(cls);
duke@1 80 attr.read(attr_name_index);
duke@1 81 attrs.addElement(attr);
duke@1 82 } else if (attr_name.equals("Deprecated")){
duke@1 83 if (in.readInt()!=0)
duke@1 84 throw new ClassFormatError("invalid Synthetic attr length");
duke@1 85 isDeprecated = true;
duke@1 86 AttrData attr=new AttrData(cls);
duke@1 87 attr.read(attr_name_index);
duke@1 88 attrs.addElement(attr);
duke@1 89 } else {
duke@1 90 AttrData attr=new AttrData(cls);
duke@1 91 attr.read(attr_name_index, in);
duke@1 92 attrs.addElement(attr);
duke@1 93 }
duke@1 94 }
duke@1 95
duke@1 96 } // end read
duke@1 97
duke@1 98 /**
duke@1 99 * Returns access of a field.
duke@1 100 */
duke@1 101 public String[] getAccess(){
jjg@37 102 Vector<String> v = new Vector<String>();
duke@1 103 if ((access & ACC_PUBLIC) !=0) v.addElement("public");
duke@1 104 if ((access & ACC_PRIVATE) !=0) v.addElement("private");
duke@1 105 if ((access & ACC_PROTECTED) !=0) v.addElement("protected");
duke@1 106 if ((access & ACC_STATIC) !=0) v.addElement("static");
duke@1 107 if ((access & ACC_FINAL) !=0) v.addElement("final");
duke@1 108 if ((access & ACC_VOLATILE) !=0) v.addElement("volatile");
duke@1 109 if ((access & ACC_TRANSIENT) !=0) v.addElement("transient");
duke@1 110 String[] accflags = new String[v.size()];
duke@1 111 v.copyInto(accflags);
duke@1 112 return accflags;
duke@1 113 }
duke@1 114
duke@1 115 /**
duke@1 116 * Returns name of a field.
duke@1 117 */
duke@1 118 public String getName(){
duke@1 119 return cls.getStringValue(name_index);
duke@1 120 }
duke@1 121
duke@1 122 /**
duke@1 123 * Returns internal signature of a field
duke@1 124 */
duke@1 125 public String getInternalSig(){
duke@1 126 return cls.getStringValue(descriptor_index);
duke@1 127 }
duke@1 128
duke@1 129 /**
duke@1 130 * Returns java type signature of a field.
duke@1 131 */
duke@1 132 public String getType(){
duke@1 133 return new TypeSignature(getInternalSig()).getFieldType();
duke@1 134 }
duke@1 135
duke@1 136 /**
duke@1 137 * Returns true if field is synthetic.
duke@1 138 */
duke@1 139 public boolean isSynthetic(){
duke@1 140 return isSynthetic;
duke@1 141 }
duke@1 142
duke@1 143 /**
duke@1 144 * Returns true if field is deprecated.
duke@1 145 */
duke@1 146 public boolean isDeprecated(){
duke@1 147 return isDeprecated;
duke@1 148 }
duke@1 149
duke@1 150 /**
duke@1 151 * Returns index of constant value in cpool.
duke@1 152 */
duke@1 153 public int getConstantValueIndex(){
duke@1 154 return (value_cpx);
duke@1 155 }
duke@1 156
duke@1 157 /**
duke@1 158 * Returns list of attributes of field.
duke@1 159 */
duke@1 160 public Vector getAttributes(){
duke@1 161 return attrs;
duke@1 162 }
duke@1 163 }

mercurial