1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.handler.codec.marshalling;
17
18 import io.netty.channel.Channel;
19 import io.netty.channel.ChannelHandler;
20 import io.netty.channel.ChannelHandlerContext;
21 import io.netty.util.Attribute;
22 import io.netty.util.AttributeKey;
23 import org.jboss.marshalling.MarshallerFactory;
24 import org.jboss.marshalling.MarshallingConfiguration;
25 import org.jboss.marshalling.Unmarshaller;
26
27
28
29
30
31
32
33
34
35 public class ContextBoundUnmarshallerProvider extends DefaultUnmarshallerProvider {
36
37 private static final AttributeKey<Unmarshaller> UNMARSHALLER = AttributeKey.valueOf(
38 ContextBoundUnmarshallerProvider.class, "UNMARSHALLER");
39
40 public ContextBoundUnmarshallerProvider(MarshallerFactory factory, MarshallingConfiguration config) {
41 super(factory, config);
42 }
43
44 @Override
45 public Unmarshaller getUnmarshaller(ChannelHandlerContext ctx) throws Exception {
46 Attribute<Unmarshaller> attr = ctx.channel().attr(UNMARSHALLER);
47 Unmarshaller unmarshaller = attr.get();
48 if (unmarshaller == null) {
49 unmarshaller = super.getUnmarshaller(ctx);
50 attr.set(unmarshaller);
51 }
52 return unmarshaller;
53 }
54 }