blob: 01d6a9f2e75d3c5b790517e2ff50d3c5d4e9a7ef (
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
|
package com.modulus.qbar.integration;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.HashMap;
import java.util.Map;
import com.modulus.qbar.core.QBFunction;
import com.modulus.qbar.core.QBNamespace;
import com.modulus.qbar.core.QBObject;
import com.modulus.qbar.core.QBStruct;
public class QBWrappedClass extends QBStruct{
private static final long serialVersionUID = -4889124451749124731L;
private static final Map<Class<?>, QBWrappedClass> wrappedClasses = new HashMap<Class<?>, QBWrappedClass>();
public static QBStruct wrapClass(Class<?> clazz, QBNamespace nmspce){
QBWrappedClass ret = wrappedClasses.get(clazz);
if(ret == null){
ret = new QBWrappedClass(clazz, nmspce);
wrappedClasses.put(clazz, ret);
}
return ret;
}
private QBWrappedClass(Class<?> toWrap, QBNamespace nmspce) {
super("");
String name = toWrap.getName();
this.setName(name.substring(name.lastIndexOf('.') + 1));
Method[] methods = toWrap.getMethods();
for( Method m : methods){
int mod = m.getModifiers();
int argc = m.getParameterTypes().length;
if(!Modifier.isStatic(mod)){
argc += 1;
}
QBFunction func = new QBWrappedMethod(toWrap, m.getName(), argc);
if(Modifier.isStatic(mod)){
String methodName = m.getName();
if(methodName.startsWith("new$0x20")){
methodName = methodName.substring(8);
methodName = "new$0x20" + methodName;
}
nmspce.set(methodName, func);
} else {
this.set(m.getName(), func);
}
}
Constructor<?>[] constructors = toWrap.getConstructors();
if(constructors.length > 0){
QBWrappedConstructor toAdd = new QBWrappedConstructor(constructors[0].getParameterTypes().length, toWrap);
nmspce.set( "new$0x20" + this.getName(), toAdd);
}
}
}
|