Package org.infinispan.server.memcached
Class MemcachedDecoder
- java.lang.Object
-
- io.netty.channel.ChannelHandlerAdapter
-
- io.netty.channel.ChannelInboundHandlerAdapter
-
- io.netty.handler.codec.ByteToMessageDecoder
-
- io.netty.handler.codec.ReplayingDecoder<MemcachedDecoderState>
-
- org.infinispan.server.memcached.MemcachedDecoder
-
- All Implemented Interfaces:
io.netty.channel.ChannelHandler,io.netty.channel.ChannelInboundHandler
public class MemcachedDecoder extends io.netty.handler.codec.ReplayingDecoder<MemcachedDecoderState>
A Memcached protocol specific decoder- Since:
- 4.1
- Author:
- Galder ZamarreƱo
-
-
Field Summary
Fields Modifier and Type Field Description protected ConfigurationcacheConfigurationprotected org.infinispan.server.memcached.RequestHeaderheaderprotected Predicate<? super String>ignoreCacheprotected byte[]keyprotected org.infinispan.server.memcached.MemcachedParametersparamsprotected byte[]rawValueprotected NettyTransporttransport
-
Constructor Summary
Constructors Constructor Description MemcachedDecoder(AdvancedCache<byte[],byte[]> memcachedCache, ScheduledExecutorService scheduler, NettyTransport transport, Predicate<? super String> ignoreCache, MediaType valuePayload)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected MetadatabuildMetadata()protected voidcustomDecodeKey(io.netty.channel.ChannelHandlerContext ctx, io.netty.buffer.ByteBuf buffer)protected voidcustomDecodeValue(io.netty.channel.ChannelHandlerContext ctx, io.netty.buffer.ByteBuf buffer)protected voiddecode(io.netty.channel.ChannelHandlerContext ctx, io.netty.buffer.ByteBuf in, List<Object> out)voidexceptionCaught(io.netty.channel.ChannelHandlerContext ctx, Throwable cause)protected Objectget(io.netty.buffer.ByteBuf buffer)protected Objectremove()protected Objectreplace()protected ObjectreplaceIfUnmodified()protected ObjectwriteResponse(io.netty.channel.Channel ch, Object response)-
Methods inherited from class io.netty.handler.codec.ReplayingDecoder
callDecode, checkpoint, checkpoint, state, state
-
Methods inherited from class io.netty.handler.codec.ByteToMessageDecoder
actualReadableBytes, channelInactive, channelRead, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, handlerRemoved0, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggered
-
Methods inherited from class io.netty.channel.ChannelInboundHandlerAdapter
channelActive, channelRegistered, channelUnregistered, channelWritabilityChanged
-
Methods inherited from class io.netty.channel.ChannelHandlerAdapter
ensureNotSharable, handlerAdded, isSharable
-
-
-
-
Field Detail
-
transport
protected final NettyTransport transport
-
key
protected byte[] key
-
rawValue
protected byte[] rawValue
-
cacheConfiguration
protected Configuration cacheConfiguration
-
params
protected org.infinispan.server.memcached.MemcachedParameters params
-
header
protected org.infinispan.server.memcached.RequestHeader header
-
-
Constructor Detail
-
MemcachedDecoder
public MemcachedDecoder(AdvancedCache<byte[],byte[]> memcachedCache, ScheduledExecutorService scheduler, NettyTransport transport, Predicate<? super String> ignoreCache, MediaType valuePayload)
-
-
Method Detail
-
decode
protected void decode(io.netty.channel.ChannelHandlerContext ctx, io.netty.buffer.ByteBuf in, List<Object> out) throws Exception- Specified by:
decodein classio.netty.handler.codec.ByteToMessageDecoder- Throws:
Exception
-
replace
protected Object replace()
-
replaceIfUnmodified
protected Object replaceIfUnmodified()
-
exceptionCaught
public void exceptionCaught(io.netty.channel.ChannelHandlerContext ctx, Throwable cause)- Specified by:
exceptionCaughtin interfaceio.netty.channel.ChannelHandler- Specified by:
exceptionCaughtin interfaceio.netty.channel.ChannelInboundHandler- Overrides:
exceptionCaughtin classio.netty.channel.ChannelInboundHandlerAdapter
-
get
protected Object get(io.netty.buffer.ByteBuf buffer) throws StreamCorruptedException
- Throws:
StreamCorruptedException
-
customDecodeKey
protected void customDecodeKey(io.netty.channel.ChannelHandlerContext ctx, io.netty.buffer.ByteBuf buffer) throws IOException- Throws:
IOException
-
customDecodeValue
protected void customDecodeValue(io.netty.channel.ChannelHandlerContext ctx, io.netty.buffer.ByteBuf buffer) throws StreamCorruptedException- Throws:
StreamCorruptedException
-
remove
protected Object remove()
-
buildMetadata
protected Metadata buildMetadata()
-
-