1
+ package org .nustaq .serialization .serializers ;
2
+
3
+
4
+ import org .nustaq .serialization .FSTBasicObjectSerializer ;
5
+ import org .nustaq .serialization .FSTClazzInfo ;
6
+ import org .nustaq .serialization .FSTObjectInput ;
7
+ import org .nustaq .serialization .FSTObjectOutput ;
8
+
9
+ import java .io .IOException ;
10
+ import java .lang .reflect .InvocationHandler ;
11
+ import java .lang .reflect .Proxy ;
12
+
13
+
14
+ public class FSTProxySerializer extends FSTBasicObjectSerializer {
15
+
16
+ @ Override
17
+ public void writeObject (FSTObjectOutput out , Object toWrite , FSTClazzInfo clzInfo , FSTClazzInfo .FSTFieldInfo referencedBy , int streamPosition ) throws IOException {
18
+ Class <?>[] ifaces = clzInfo .getClazz ().getInterfaces ();
19
+ ClassLoader cl = out .getConf ().getClassLoader ();
20
+ out .writeInt (ifaces .length );
21
+ for (Class i : ifaces )
22
+ out .writeUTF (i .getName ());
23
+ out .writeObject (Proxy .getInvocationHandler (toWrite ));
24
+ }
25
+
26
+ @ Override
27
+ public Object instantiate (Class objectClass , FSTObjectInput in , FSTClazzInfo serializationInfo , FSTClazzInfo .FSTFieldInfo referencee , int streamPositioin ) throws IOException , ClassNotFoundException {
28
+ ClassLoader cl = in .getConf ().getClassLoader ();
29
+ int numIfaces = in .readInt ();
30
+ String [] interfaces = new String [numIfaces ];
31
+ for (int i = 0 ; i < numIfaces ; i ++) {
32
+ interfaces [i ] = in .readUTF ();
33
+ }
34
+ Class [] classObjs = new Class [interfaces .length ];
35
+
36
+ for (int i = 0 ; i < interfaces .length ; ++i ) {
37
+ try {
38
+ classObjs [i ] = Class .forName (interfaces [i ], false , cl );
39
+ } catch (ClassNotFoundException e ) {
40
+ classObjs [i ] = Class .forName (interfaces [i ], false , this .getClass ().getClassLoader ());
41
+ }
42
+ }
43
+ InvocationHandler ih = (InvocationHandler )in .readObject ();
44
+ Object res = Proxy .newProxyInstance (in .getConf ().getClassLoader (),classObjs ,ih );
45
+ in .registerObject (res ,streamPositioin ,serializationInfo ,referencee );
46
+ return res ;
47
+ }
48
+ }
0 commit comments