forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonResponseCallbackHandler.java
More file actions
54 lines (42 loc) · 1.68 KB
/
Copy pathJsonResponseCallbackHandler.java
File metadata and controls
54 lines (42 loc) · 1.68 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 com.github.dockerjava.netty.handler;
import com.fasterxml.jackson.databind.SerializationFeature;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.github.dockerjava.api.async.ResultCallback;
/**
* Handler that decodes an incoming byte stream into objects of T and calls {@link ResultCallback#onNext(Object)}
*
* @author Marcus Linke
*/
public class JsonResponseCallbackHandler<T> extends SimpleChannelInboundHandler<ByteBuf> {
private static ObjectMapper objectMapper = new ObjectMapper();
private TypeReference<T> typeReference;
private ResultCallback<T> callback;
public JsonResponseCallbackHandler(TypeReference<T> typeReference, ResultCallback<T> callback) {
this.typeReference = typeReference;
this.callback = callback;
objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
}
@Override
protected void channelRead0(ChannelHandlerContext ctx, ByteBuf msg) throws Exception {
byte[] buffer = new byte[msg.readableBytes()];
msg.readBytes(buffer);
msg.discardReadBytes();
T object = null;
try {
object = objectMapper.readValue(buffer, typeReference);
} catch (Exception e) {
callback.onError(e);
throw new RuntimeException(e);
}
callback.onNext(object);
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
callback.onError(cause);
ctx.close();
}
}