blob: d2081ae2057be2106655ddf0aa63f1d062182a4c (
plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
package testproxy;
import java.io.Serializable;
import java.lang.reflect.Method;
/**
import net.sf.cglib.proxy.CallbackFilter;
import net.sf.cglib.proxy.Enhancer;
import net.sf.cglib.proxy.InvocationHandler;
import net.sf.cglib.proxy.NoOp;
*/
import javassist.util.proxy.MethodFilter;
import javassist.util.proxy.MethodHandler;
import javassist.util.proxy.ProxyFactory;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
public class ProxyFactoryPerformanceTest extends TestCase {
public static final int COUNT = 100;
public static final int MAX_THREADS = 30;
static Throwable error = null;
public ProxyFactoryPerformanceTest() {}
public ProxyFactoryPerformanceTest(String name) {
super(name);
}
public void testJavassist() throws Throwable {
callCreateClass("javassist", ProxyMaker.class);
}
/**
public void testCglib() throws Exception {
callCreateClass("cglib", EnhancerUser.class);
}
*/
public void callCreateClass(String translator, Class cl) throws Throwable {
error = null;
Thread[] threads = new Thread[MAX_THREADS];
for (int i = 0; i < threads.length; ++i) {
threads[i] = (Thread)cl.newInstance();
}
long time = System.currentTimeMillis();
for (int i = 0; i < threads.length; ++i) {
threads[i].start();
}
for (int i = 0; i < threads.length; ++i) {
threads[i].join();
}
time = System.currentTimeMillis() - time;
System.out.println("ProxyFactoryPerformanceTest: " + translator + " time: " + time);
if (error != null)
throw error;
}
public static Test suite() {
return new TestSuite(ProxyFactoryPerformanceTest.class);
}
public static void callOnce() {
try {
Thread t = new ProxyMaker();
t.start();
t.join();
}
catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("** Done");
}
public static void main(String[] args) {
// callOnce();
ProxyFactory.useCache = args.length == 0;
TestRunner.run(suite());
}
}
class ProxyMaker extends Thread implements MethodHandler {
private static final MethodFilter FINALIZE_FILTER = new MethodFilter() {
public boolean isHandled(Method m) {
// skip finalize methods
return !( m.getParameterTypes().length == 0 && m.getName().equals( "finalize" ) );
}
};
public void run() {
for (int i = 0; i < ProxyFactoryPerformanceTest.COUNT; ++i) {
callCreateClass();
}
}
public void callCreateClass() {
try {
ProxyFactory factory = new ProxyFactory();
factory.setSuperclass(SampleBean.class);
factory.setInterfaces(SampleBean.class.getInterfaces());
factory.setFilter(FINALIZE_FILTER);
// factory.setHandler(this);
Class proxyClass = factory.createClass();
//System.out.println("proxy name: " + proxyClass.getName());
} catch (Throwable e) {
e.printStackTrace();
ProxyFactoryPerformanceTest.error = e;
}
}
public Object invoke(Object arg0, Method arg1, Method arg2, Object[] arg3) throws Throwable {
return null;
}
}
/**
class EnhancerUser extends Thread implements InvocationHandler {
private static final CallbackFilter FINALIZE_FILTER = new CallbackFilter() {
public int accept(Method method) {
if ( method.getParameterTypes().length == 0 && method.getName().equals("finalize") ){
return 1;
}
else {
return 0;
}
}
};
public void run() {
for (int i = 0; i < ProxyFactoryPerformanceTest.COUNT; ++i) {
callCreateClass();
}
}
public void callCreateClass() {
try {
Enhancer enhancer = new Enhancer();
enhancer.setSuperclass(SampleBean.class);
enhancer.setInterfaces(SampleBean.class.getInterfaces());
enhancer.setCallbackTypes(new Class[] { InvocationHandler.class, NoOp.class });
enhancer.setCallbackFilter(FINALIZE_FILTER);
enhancer.setInterceptDuringConstruction(false);
// TODO
enhancer.setUseCache(false);
enhancer.setUseFactory(false);
Class proxyClass = enhancer.createClass();
//System.out.println("proxy name: " + proxyClass.getName());
} catch (Exception e) {
e.printStackTrace();
}
}
public Object invoke(Object arg0, Method arg1, Object[] arg2) throws Throwable {
return null;
}
}
*/
class SampleBean implements Serializable {
long oid;
int version;
SampleBean bean;
public void setOid(long _oid) {
oid = _oid;
}
public long getOid() {
return oid;
}
public void setVersion(int _ver) {
version = _ver;
}
public int getVersion() {
return version;
}
public void setBean(SampleBean _bean) {
bean = _bean;
}
public SampleBean getBean() {
return bean;
}
}
|