summaryrefslogtreecommitdiff
path: root/src/fjbg/ch/epfl/lamp/fjbg/JConstantValueAttribute.java
blob: 6ee05e43c7e706b07ab99cfb224560a5fd36fb2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* FJBG -- Fast Java Bytecode Generator
 * Copyright 2002-2013 LAMP/EPFL
 * @author  Michel Schinz
 */

package ch.epfl.lamp.fjbg;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

/**
 * ConstantValue attribute representing the value of a constant field.
 *
 * There can be no more than one ConstantValue attribute in the attributes
 * table of a given field_info structure.. See section 4.8.2 of the JVM
 * specification.
 *
 * @author Stephane Micheloud
 * @version 1.0
 */

public class JConstantValueAttribute extends JAttribute {
    /** Constant pool of the current classfile. */
    private JConstantPool pool;

    protected int constantValueIndex;

    public JConstantValueAttribute(FJBGContext context,
                                  JClass clazz,
                                  JField field) {
        super(context, clazz);
        this.pool = clazz.pool;

        assert field.getOwner() == clazz;
    }

    public JConstantValueAttribute(FJBGContext context,
                                   JClass clazz,
                                   Object owner, // JField
                                   String name,
                                   int size,
                                   DataInputStream stream)
        throws IOException {
        super(context, clazz, name);
        this.pool = clazz.pool;

        this.constantValueIndex = stream.readShort();

        assert name.equals(getName());
    }

    public String getName() { return "ConstantValue"; }

    // Follows javap output format for ConstantValue attribute.
    /*@Override*/ public String toString() {
        StringBuffer buf = new StringBuffer("  Constant value: ");
        buf.append(pool.lookupEntry(constantValueIndex));
        return buf.toString();
    }

    protected int getSize() {
        return 2; // Short.SIZE
    }

    protected void writeContentsTo(DataOutputStream stream) throws IOException {
        stream.writeShort(constantValueIndex);
    }
}