javap/src/main/java/org/apidesign/javap/AnnotationParser.java
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 16 Nov 2012 08:08:36 +0100
branchjavap
changeset 167 77f7135b6eb1
parent 153 javap/src/main/java/sun/tools/javap/AnnotationParser.java@79aeed4723b8
child 235 bf0a77f029c4
child 240 4e88a33d7972
permissions -rw-r--r--
Re-packaging javap as we are about to make significant changes to it anyway
     1 /*
     2  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    25 package org.apidesign.javap;
    26 
    27 import java.io.ByteArrayInputStream;
    28 import java.io.DataInputStream;
    29 import java.io.IOException;
    30 
    31 /** An abstract parser for annotation definitions. Analyses the bytes and
    32  * performs some callbacks to the overriden parser methods.
    33  *
    34  * @author Jaroslav Tulach <jtulach@netbeans.org>
    35  */
    36 public class AnnotationParser {
    37     protected AnnotationParser() {
    38     }
    39 
    40     protected void visitAttr(String type, String attr, String value) {
    41     }
    42     
    43     /** Initialize the parsing with constant pool from <code>cd</code>.
    44      * 
    45      * @param attr the attribute defining annotations
    46      * @param cd constant pool
    47      * @throws IOException in case I/O fails
    48      */
    49     public final void parse(byte[] attr, ClassData cd) throws IOException {
    50         ByteArrayInputStream is = new ByteArrayInputStream(attr);
    51         DataInputStream dis = new DataInputStream(is);
    52         try {
    53             read(dis, cd);
    54         } finally {
    55             is.close();
    56         }
    57     }
    58     
    59     private void read(DataInputStream dis, ClassData cd) throws IOException {
    60     	int cnt = dis.readUnsignedShort();
    61         for (int i = 0; i < cnt; i++) {
    62             readAnno(dis, cd);
    63         }
    64     }
    65 
    66     private void readAnno(DataInputStream dis, ClassData cd) throws IOException {
    67         int type = dis.readUnsignedShort();
    68         String typeName = cd.StringValue(type);
    69     	int cnt = dis.readUnsignedShort();
    70     	for (int i = 0; i < cnt; i++) {
    71             String attrName = cd.StringValue(dis.readUnsignedShort());
    72             readValue(dis, cd, typeName, attrName);
    73         }
    74     }
    75 
    76     private void readValue(DataInputStream dis, ClassData cd, String typeName, String attrName) 
    77     throws IOException {
    78         char type = (char)dis.readByte();
    79         if (type == '@') {
    80             readAnno(dis, cd);
    81         } else if ("CFJZsSIDB".indexOf(type) >= 0) { // NOI18N
    82             int primitive = dis.readUnsignedShort();
    83             visitAttr(typeName, attrName, cd.StringValue(primitive));
    84         } else if (type == 'c') {
    85             int cls = dis.readUnsignedShort();
    86         } else if (type == '[') {
    87             int cnt = dis.readUnsignedShort();
    88             for (int i = 0; i < cnt; i++) {
    89                 readValue(dis, cd, typeName, attrName);
    90             }
    91         } else if (type == 'e') {
    92             int enumT = dis.readUnsignedShort();
    93             int enumN = dis.readUnsignedShort();
    94         } else {
    95             throw new IOException("Unknown type " + type);
    96         }
    97     }
    98 }