removed ClassFile.sourceFile; use attributes.get() instead
[org.ibex.classgen.git] / src / org / ibex / classgen / ClassFile.java
1 package org.ibex.classgen;
2
3 import java.util.*;
4 import java.io.*;
5
6 /** Class generation object representing the whole classfile */
7 public class ClassFile implements CGConst {
8     private final Type.Class thisType;
9     private final Type.Class superType;
10     private final Type.Class[] interfaces;
11     private short minor;
12     private short major;
13     final int flags;
14     
15     private final Vector fields = new Vector();
16     private final Vector methods = new Vector();
17     
18     final CPGen cp;
19     private final AttrGen attributes;
20
21     public static String flagsToString(int flags) {
22         String ret = "";
23         if ((flags & ACC_PUBLIC) != 0)       ret += "public ";
24         if ((flags & ACC_PRIVATE) != 0)      ret += "private ";
25         if ((flags & ACC_PROTECTED) != 0)    ret += "protected ";
26         if ((flags & ACC_STATIC) != 0)       ret += "static ";
27         if ((flags & ACC_FINAL) != 0)        ret += "final ";
28         if ((flags & ACC_ABSTRACT) != 0)     ret += "abstract ";
29         if ((flags & ACC_SYNCHRONIZED) != 0) ret += "synchronized ";
30         if ((flags & ACC_NATIVE) != 0)       ret += "native ";
31         if ((flags & ACC_STRICT) != 0)       ret += "strictfp ";
32         if ((flags & ACC_VOLATILE) != 0)     ret += "volatile ";
33         if ((flags & ACC_TRANSIENT) != 0)    ret += "transient ";
34         return ret;
35     }
36
37     public Type.Class getType() { return thisType; }
38     public String toString() { StringBuffer sb = new StringBuffer(); toString(sb); return sb.toString(); }
39     public void   toString(StringBuffer sb) {
40         sb.append(flagsToString(flags));
41         sb.append((flags & ACC_INTERFACE) != 0 ? "interface " : "class ");
42         sb.append(thisType);
43         if (superType != null) sb.append(" extends " + superType);
44         if (interfaces != null && interfaces.length > 0) sb.append(" implements");
45         for(int i=0; i<interfaces.length; i++) sb.append((i==0?" ":", ")+interfaces[i]);
46         sb.append(" {");
47         sb.append(" // [jcf v"+major+"."+minor+"]");
48         String sourceFile = (String)attributes.get("SourceFile");
49         if (sourceFile != null) sb.append(" from " + sourceFile);
50         sb.append("\n");
51         for(int i=0; i<fields.size(); i++) {
52             sb.append("  ");
53             ((FieldGen)fields.elementAt(i)).toString(sb);
54             sb.append("\n");
55         }
56         for(int i=0; i<methods.size(); i++) {
57             sb.append("  ");
58             ((MethodGen)methods.elementAt(i)).toString(sb, thisType.getShortName());
59             sb.append("\n");
60         }
61         sb.append("}");
62     }
63
64     /** @see #ClassFile(Type.Class, Type.Class, int) */
65     public ClassFile(String name, String superName, int flags) {
66         this(Type.instance(name).asClass(), Type.instance(superName).asClass(), flags);
67     }
68
69     /** @see #ClassFile(Type.Class, Type.Class, int, Type.Class[]) */
70     public ClassFile(Type.Class thisType, Type.Class superType, int flags) {
71         this(thisType, superType, flags, null);
72     }
73     
74     /** Creates a new ClassFile object 
75         @param thisType The type of the class to generate
76         @param superType The superclass of the generated class (commonly Type.OBJECT) 
77         @param flags The access flags for this class (ACC_PUBLIC, ACC_FINAL, ACC_SUPER, ACC_INTERFACE, and ACC_ABSTRACT)
78     */
79     public ClassFile(Type.Class thisType, Type.Class superType, int flags, Type.Class[] interfaces) {
80         if((flags & ~(ACC_PUBLIC|ACC_FINAL|ACC_SUPER|ACC_INTERFACE|ACC_ABSTRACT)) != 0)
81             throw new IllegalArgumentException("invalid flags");
82         this.thisType = thisType;
83         this.superType = superType;
84         this.interfaces = interfaces;
85         this.flags = flags;
86         this.minor = 3;
87         this.major = 45;
88         
89         cp = new CPGen();
90         attributes = new AttrGen(cp);
91     }
92     
93     /** Adds a new method to this class 
94         @param name The name of the method (not the signature, just the name)
95         @param ret The return type of the method
96         @param args The arguments to the method
97         @param flags The flags for the method
98                      (ACC_PUBLIC, ACC_PRIVATE, ACC_PROTECTED, ACC_STATIC, ACC_SYNCHRONIZED, ACC_NATIVE, ACC_ABSTRACT, ACC_STRICT)
99         @return A new MethodGen object for the method
100         @exception IllegalArgumentException if illegal flags are specified
101         @see MethodGen
102         @see CGConst
103     */
104     public final MethodGen addMethod(String name, Type ret, Type[] args, int flags) {
105         MethodGen mg = new MethodGen(this, name, ret, args, flags);
106         methods.addElement(mg);
107         return mg;
108     }
109     
110     /** Adds a new field to this class 
111         @param name The name of the filed (not the signature, just the name)
112         @param type The type of the field
113         @param flags The flags for the field
114         (ACC_PUBLIC, ACC_PRIVATE, ACC_PROTECTED, ACC_STATIC, ACC_FINAL, ACC_VOLATILE, ACC_TRANSIENT)
115         @return A new FieldGen object for the method
116         @exception IllegalArgumentException if illegal flags are specified
117         @see FieldGen
118         @see CGConst
119         */  
120     public final FieldGen addField(String name, Type type, int flags) {
121         FieldGen fg = new FieldGen(this, name, type, flags);
122         fields.addElement(fg);
123         return fg;
124     }
125     
126     /** Sets the source value of the SourceFile attribute of this class 
127         @param sourceFile The string to be uses as the SourceFile of this class
128     */
129     public void setSourceFile(String sourceFile) { attributes.add("SourceFile", sourceFile); }
130     
131     /** Writes the classfile data to the file specifed
132         @see ClassFile#dump(OutputStream)
133     */
134     public void dump(String file) throws IOException { dump(new File(file)); }
135     
136     /** Writes the classfile data to the file specified
137         If <i>f</i> is a directory directory components under it are created for the package the class is in (like javac's -d option)
138         @see ClassFile#dump(OutputStream)
139     */
140     public void dump(File f) throws IOException {
141         if(f.isDirectory()) {
142             String[] a = thisType.components();
143             int i;
144             for(i=0;i<a.length-1;i++) {
145                 f = new File(f, a[i]);
146                 f.mkdir();
147             }
148             f = new File(f, a[i] + ".class");
149         }
150         OutputStream os = new FileOutputStream(f);
151         dump(os);
152         os.close();
153     }
154    
155     /** Writes the classfile data to the outputstream specified
156         @param os The stream to write the class to
157         @exception IOException if an IOException occures while writing the class data
158         @exception IllegalStateException if the data for a method is in an inconsistent state (required arguments missing, etc)
159         @exception Exn if the classfile could not be written for any other reason (constant pool full, etc)
160     */
161     public void dump(OutputStream os) throws IOException {
162         DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(os));
163         _dump(dos);
164         dos.flush();
165     }
166     
167     private void _dump(DataOutput o) throws IOException {
168         cp.optimize();
169         cp.stable();
170         
171         cp.add(thisType);
172         cp.add(superType);
173         if(interfaces != null) for(int i=0;i<interfaces.length;i++) cp.add(interfaces[i]);
174                 
175         for(int i=0;i<methods.size();i++) ((MethodGen)methods.elementAt(i)).finish();
176         for(int i=0;i<fields.size();i++) ((FieldGen)fields.elementAt(i)).finish();
177         
178         cp.seal();
179         
180         o.writeInt(0xcafebabe); // magic
181         o.writeShort(minor); // minor_version
182         o.writeShort(major); // major_version
183         
184         cp.dump(o); // constant_pool
185         
186         o.writeShort(flags);
187         o.writeShort(cp.getIndex(thisType)); // this_class
188         o.writeShort(cp.getIndex(superType)); // super_class
189         
190         o.writeShort(interfaces==null ? 0 : interfaces.length); // interfaces_count
191         if(interfaces != null) for(int i=0;i<interfaces.length;i++) o.writeShort(cp.getIndex(interfaces[i])); // interfaces
192         
193         o.writeShort(fields.size()); // fields_count
194         for(int i=0;i<fields.size();i++) ((FieldGen)fields.elementAt(i)).dump(o); // fields
195
196         o.writeShort(methods.size()); // methods_count
197         for(int i=0;i<methods.size();i++) ((MethodGen)methods.elementAt(i)).dump(o); // methods
198         
199         o.writeShort(attributes.size()); // attributes_count
200         attributes.dump(o); // attributes        
201     }
202     
203     public ClassFile read(File f) throws ClassReadExn, IOException {
204         InputStream is = new FileInputStream(f);
205         ClassFile ret = read(is);
206         is.close();
207         return ret;
208     }
209     
210     public ClassFile read(InputStream is) throws ClassReadExn, IOException {
211         return new ClassFile(new DataInputStream(new BufferedInputStream(is)));
212     }
213
214     ClassFile(DataInput i) throws ClassReadExn, IOException {
215         int magic = i.readInt();
216         if (magic != 0xcafebabe) throw new ClassReadExn("invalid magic: " + Long.toString(0xffffffffL & magic, 16));
217         minor = i.readShort();
218         //if (minor != 3) throw new ClassReadExn("invalid minor version: " + minor);
219         major = i.readShort();
220         //if (major != 45 && major != 46) throw new ClassReadExn("invalid major version");
221         cp = new CPGen(i);
222         flags = i.readShort();
223         thisType = (Type.Class)cp.getType(i.readShort());
224         superType = (Type.Class)cp.getType(i.readShort());
225         interfaces = new Type.Class[i.readShort()];
226         for(int j=0; j<interfaces.length; j++) interfaces[j] = (Type.Class)cp.getType(i.readShort());
227         int numFields = i.readShort();
228         for(int j=0; j<numFields; j++) fields.add(new FieldGen(cp, i));
229         int numMethods = i.readShort();
230         for(int j=0; j<numMethods; j++) methods.add(new MethodGen(cp, i, this));
231         attributes = new AttrGen(cp, i);
232     }
233     
234     /** Thrown when class generation fails for a reason not under the control of the user
235         (IllegalStateExceptions are thrown in those cases */
236     public static class Exn extends RuntimeException {
237         public Exn(String s) { super(s); }
238     }
239     
240     public static class ClassReadExn extends IOException {
241         public ClassReadExn(String s) { super(s); }
242     }
243     
244     static class AttrGen {
245         private final CPGen cp;
246         private final Hashtable ht = new Hashtable();
247         
248         public AttrGen(CPGen cp) { this.cp = cp; }
249         public AttrGen(CPGen cp, DataInput in) throws IOException {
250             this(cp);
251             int size = in.readShort();
252             for(int i=0; i<size; i++) {
253                 String name = null;
254                 int idx = in.readShort();
255                 CPGen.Ent e = cp.getByIndex(idx);
256                 Object key = e.key();
257                 if (key instanceof String) name = (String)key;
258                 else name = ((Type)key).getDescriptor();
259
260                 int length = in.readInt();
261                 if (length==2) {   // FIXME might be wrong assumption
262                     ht.put(name, cp.getByIndex(in.readShort()));
263                 } else {
264                     byte[] buf = new byte[length];
265                     in.readFully(buf);
266                     ht.put(name, buf);
267                 }
268             }
269         }
270
271         public Object get(String s) {
272             Object ret = ht.get(s);
273             if (ret instanceof CPGen.Utf8Ent) return ((CPGen.Utf8Ent)ret).s;
274             return ret;
275         }
276         
277         public void add(String s, Object data) {
278             cp.addUtf8(s);
279             ht.put(s, data);
280         }
281         
282         public boolean contains(String s) { return ht.get(s) != null; }
283         
284         public int size() { return ht.size(); }
285         
286         public void dump(DataOutput o) throws IOException {
287             for(Enumeration e = ht.keys(); e.hasMoreElements();) {
288                 String name = (String) e.nextElement();
289                 Object val = ht.get(name);
290                 o.writeShort(cp.getUtf8Index(name));
291                 if(val instanceof byte[]) {
292                     byte[] buf = (byte[]) val;
293                     o.writeInt(buf.length);
294                     o.write(buf);
295                 } else if (val instanceof CPGen.Ent) {
296                     o.writeInt(2);
297                     o.writeShort(cp.getIndex((CPGen.Ent)val));
298                 } else {
299                     throw new Error("should never happen");
300                 }
301             }
302         }
303     }
304     
305     public static void main(String[] args) throws Exception {
306         if (args.length==1) {
307             if (args[0].endsWith(".class")) {
308                 System.out.println(new ClassFile(new DataInputStream(new FileInputStream(args[0]))));
309             } else {
310                 InputStream is = Class.forName(args[0]).getClassLoader().getResourceAsStream(args[0].replace('.', '/')+".class");
311                 System.out.println(new ClassFile(new DataInputStream(is)));
312             }
313         } else {
314             /*
315             Type.Class me = new Type.Class("Test");
316             ClassFile cg = new ClassFile("Test", "java.lang.Object", ACC_PUBLIC|ACC_SUPER|ACC_FINAL);
317             FieldGen fg = cg.addField("foo", Type.INT, ACC_PUBLIC|ACC_STATIC);
318         
319             MethodGen mg = cg.addMethod("main", Type.VOID, new Type[]{Type.arrayType(Type.STRING)}, ACC_STATIC|ACC_PUBLIC);
320             mg.setMaxLocals(1);
321             mg.addPushConst(0);
322             //mg.add(ISTORE_0);
323             mg.add(PUTSTATIC, fieldRef(me, "foo", Type.INT));
324             int top = mg.size();
325             mg.add(GETSTATIC, cg.fieldRef(new Type.Class("java.lang.System"), "out", new Type.Class("java.io.PrintStream")));
326             //mg.add(ILOAD_0);
327             mg.add(GETSTATIC, cg.fieldRef(me, "foo", Type.INT));
328             mg.add(INVOKEVIRTUAL, cg.methodRef(new Type.Class("java.io.PrintStream"), "println",
329                                                Type.VOID, new Type[]{Type.INT}));
330             //mg.add(IINC, new int[]{0, 1});
331             //mg.add(ILOAD_0);
332             mg.add(GETSTATIC, cg.fieldRef(me, "foo", Type.INT));
333             mg.addPushConst(1);
334             mg.add(IADD);
335             mg.add(DUP);
336             mg.add(PUTSTATIC, cg.fieldRef(me, "foo", Type.INT));       
337             mg.addPushConst(10);
338             mg.add(IF_ICMPLT, top);
339             mg.add(RETURN);
340             cg.dump("Test.class");
341             */
342         }
343     }
344 }