KryoSerializer.java
1.28 KB
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
package org.onlab.netty;
import org.onlab.util.KryoPool;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.HashMap;
//FIXME: Should be move out to test or app
/**
* Kryo Serializer.
*/
public class KryoSerializer {
private KryoPool serializerPool;
public KryoSerializer() {
setupKryoPool();
}
/**
* Sets up the common serialzers pool.
*/
protected void setupKryoPool() {
// FIXME Slice out types used in common to separate pool/namespace.
serializerPool = KryoPool.newBuilder()
.register(ArrayList.class,
HashMap.class,
ArrayList.class,
InternalMessage.class,
Endpoint.class,
byte[].class
)
.build()
.populate(1);
}
public <T> T decode(byte[] data) {
return serializerPool.deserialize(data);
}
public byte[] encode(Object payload) {
return serializerPool.serialize(payload);
}
public <T> T decode(ByteBuffer buffer) {
return serializerPool.deserialize(buffer);
}
public void encode(Object obj, ByteBuffer buffer) {
serializerPool.serialize(obj, buffer);
}
}