X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FType.java;h=7445f9c60acd53a03d5ed818be8d8e9c679c353b;hp=491cc1227a2194dee33741d1f7e929f441d684ae;hb=069115fd4de6720de0a4a1ee37f05fec438fc325;hpb=69b2d27ebab56f1b0e4df2a3a301f4d852439e8e diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index 491cc12..7445f9c 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -38,11 +38,13 @@ public class Type { } public String toString() { return toString; } + public String debugToString() { return toString; } public final String getDescriptor() { return descriptor; } public int hashCode() { return descriptor.hashCode(); } public boolean equals(java.lang.Object o) { return this==o; } public Type.Array makeArray() { return (Type.Array)instance("["+descriptor); } + public Type.Array makeArray(int i) { return i==0 ? (Type.Array)this : makeArray().makeArray(i-1); } public Type.Ref asRef() { throw new RuntimeException("attempted to use "+this+" as a Type.Ref, which it is not"); } public Type.Class asClass() { throw new RuntimeException("attempted to use "+this+" as a Type.Class, which it is not"); } @@ -69,6 +71,14 @@ public class Type { public boolean isRef() { return true; } } + public static class Array extends Type.Ref { + protected Array(Type t) { super("[" + t.getDescriptor(), t.toString() + "[]"); } + public Type.Array asArray() { return this; } + public boolean isArray() { return true; } + public int dimension() { return getDescriptor().lastIndexOf('['); } + public Type getElementType() { return Type.instance(getDescriptor().substring(0, getDescriptor().length()-1)); } + } + public static class Class extends Type.Ref { protected Class(String s) { super(_initHelper(s), _initHelper2(s)); } public Type.Class asClass() { return this; } @@ -90,8 +100,33 @@ public class Type { return a; } - public Method method(String name, Type returnType, Type[] argTypes) { return new Method(name, returnType, argTypes); } public Field field(String name, Type type) { return new Field(name, type); } + public Method method(String name, Type returnType, Type[] argTypes) { return new Method(name, returnType, argTypes); } + public Method method(String signature) { + // FEATURE: This parser is ugly but it works (and shouldn't be a problem) might want to clean it up though + String s = signature; + String name = s.startsWith("(") ? "" : s.substring(0, s.indexOf('(')); + s = s.substring(s.indexOf('(')); + int p = s.indexOf(')'); + if(p == -1) throw new IllegalArgumentException("invalid method type descriptor"); + String argsDesc = s.substring(1,p); + String retDesc = s.substring(p+1); + Type[] argsBuf = new Type[argsDesc.length()]; + int i; + for(i=0,p=0;argsDesc.length() > 0;i++,p=0) { + while(p < argsDesc.length() && argsDesc.charAt(p) == '[') p++; + if(p == argsDesc.length()) throw new IllegalArgumentException("invalid method type descriptor"); + if(argsDesc.charAt(p) == 'L') { + p = argsDesc.indexOf(';'); + if(p == -1) throw new IllegalArgumentException("invalid method type descriptor"); + } + argsBuf[i] = Type.instance(argsDesc.substring(0,p+1)); + argsDesc = argsDesc.substring(p+1); + } + Type args[] = new Type[i]; + System.arraycopy(argsBuf,0,args,0,i); + return method(name, Type.instance(retDesc), args); + } public abstract class Member { public final String name; @@ -109,15 +144,33 @@ public class Type { } public class Field extends Member { - /** Create a reference to field name of class c with the type t */ public final Type type; private Field(String name, Type t) { super(name); this.type = t; } public String getDescriptor() { return name; } + public Type getType() { return type; } } public class Method extends Member { final Type[] argTypes; - final Type returnType; + public final Type returnType; + public Type getArgType(int i) { return argTypes[i]; } + public int getNumArgs() { return argTypes.length; } + public Type getReturnType() { return returnType; } + public String debugToString() { + StringBuffer sb = new StringBuffer(); + if (name.equals("")) sb.append("static "); + else { + if (name.equals("")) + sb.append(Class.this.getShortName()); + else + sb.append(returnType).append(" ").append(name); + sb.append("("); + for(int i=0; i