- java.lang.Object
-
- io.netty5.util.DefaultAttributeMap
-
- io.netty5.channel.AbstractChannel<P,SocketAddress,SocketAddress>
-
- io.netty5.channel.epoll.EpollSocketChannel
-
- All Implemented Interfaces:
Channel
,ChannelOutboundInvoker
,IoHandle
,SocketChannel
,UnixChannel
,AttributeMap
,FuturePromiseFactory
,Comparable<Channel>
public final class EpollSocketChannel extends AbstractChannel<P,SocketAddress,SocketAddress> implements SocketChannel
SocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.Available options
In addition to the options provided bySocketChannel
andUnixChannel
,EpollSocketChannel
allows the following options in the option map:
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class io.netty5.channel.AbstractChannel
AbstractChannel.DefaultAbstractChannelPipeline
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
active
protected LinuxSocket
socket
-
Constructor Summary
Constructors Constructor Description EpollSocketChannel(EventLoop eventLoop)
EpollSocketChannel(EventLoop eventLoop, int fd, ProtocolFamily family)
EpollSocketChannel(EventLoop eventLoop, ProtocolFamily protocolFamily)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
autoReadCleared()
Is called onceAbstractChannel.setAutoRead(boolean)
is called withfalse
andAbstractChannel.isAutoRead()
wastrue
before.protected static void
checkResolvable(InetSocketAddress addr)
protected void
clearFlag(int flag)
protected void
doBeginRead()
Schedule a read operation.protected void
doBind(SocketAddress local)
Bind theChannel
to theSocketAddress
protected void
doClose()
Close theChannel
protected boolean
doConnect(SocketAddress remoteAddress, SocketAddress localAddress)
Connect to the remote peerprotected boolean
doConnect0(SocketAddress remote)
protected void
doDisconnect()
Disconnect thisChannel
from its remote peerprotected boolean
doFinishConnect(SocketAddress requestedRemoteAddress)
Finish a connect request.protected void
doReadBytes(Buffer buffer)
Read bytes into the givenBuffer
and return the amount.protected void
doShutdown(ChannelShutdownDirection direction)
Shutdown one direction of theChannel
.protected void
doWrite(ChannelOutboundBuffer in)
Flush the content of the given buffer to the remote peer.protected int
doWriteBytes(ChannelOutboundBuffer in, Buffer buf)
protected long
doWriteOrSendBytes(Buffer data, SocketAddress remoteAddress, boolean fastOpen)
Write bytes to the socket, with or without a remote address.protected void
epollInReady(RecvBufferAllocator.Handle handle, BufferAllocator recvBufferAllocator, boolean receivedRdHup)
Called once EPOLLIN event is ready to be processedFileDescriptor
fd()
Returns theFileDescriptor
that is used by thisChannel
.protected boolean
fetchLocalAddress()
protected Object
filterOutboundMessage(Object msg)
Invoked when a new message is added to aChannelOutboundBuffer
of thisAbstractChannel
, so that theChannel
implementation converts the message to another.protected <T> T
getExtendedOption(ChannelOption<T> option)
Override to add support for moreChannelOption
s.boolean
isActive()
Returntrue
if theChannel
is active and so connected.protected boolean
isExtendedOptionSupported(ChannelOption<?> option)
Override to add support for moreChannelOption
s.boolean
isIpTransparent()
boolean
isOpen()
Returnstrue
if theChannel
is open and may get active laterboolean
isShutdown(ChannelShutdownDirection direction)
protected static boolean
isSoErrorZero(Socket fd)
protected SocketAddress
localAddress0()
Returns theSocketAddress
which is bound locally.protected boolean
maybeMoreDataToRead(RecvBufferAllocator.Handle handle)
protected Buffer
newDirectBuffer(Buffer buf)
Returns an off-heap copy of, and then closes, the givenBuffer
.protected Buffer
newDirectBuffer(Resource<?> holder, Buffer buf)
Returns an off-heap copy of the givenBuffer
, and then closes theholder
under the assumption that it owned (or was itself) the buffer.protected Future<Executor>
prepareToClose()
Prepares to close theChannel
.protected io.netty5.channel.epoll.EpollRegistration
registration()
protected SocketAddress
remoteAddress0()
Return theSocketAddress
which theChannel
is connected to.protected <T> void
setExtendedOption(ChannelOption<T> option, T value)
Override to add support for moreChannelOption
s.protected void
setFlag(int flag)
protected void
shutdownInput(boolean rdHup)
Shutdown the input side of the channel.protected void
writeFlushed()
Write previous flushed messages.-
Methods inherited from class io.netty5.channel.AbstractChannel
annotateConnectException, assertEventLoop, bufferAllocator, cacheAddresses, closeForciblyTransport, closeFuture, closeIfClosed, closeTransport, compareTo, deregisterTransport, ensureOpen, equals, executor, finishConnect, fireChannelActiveIfNotActiveBefore, getMaxMessagesPerWrite, getOption, getWriteSpinCount, handleWriteError, hashCode, id, isAllowHalfClosure, isAutoRead, isConnectPending, isOptionSupported, isRegistered, localAddress, metadata, newChannelPipeline, newSupportedIdentityOptionsSet, outboundBuffer, parent, pipeline, readIfIsAutoRead, recvBufAllocHandle, remoteAddress, runAfterTransportAction, safeSetFailure, safeSetSuccess, setBufferAllocator, setOption, shutdownTransport, toString, validate, validateEventLoopGroup, validateFileRegion, writableBytes
-
Methods inherited from class io.netty5.util.DefaultAttributeMap
attr, hasAttr
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.netty5.util.AttributeMap
attr, hasAttr
-
Methods inherited from interface io.netty5.channel.Channel
bind, bufferAllocator, close, closeFuture, connect, connect, deregister, disconnect, executor, flush, getOption, id, isActive, isOpen, isOptionSupported, isWritable, localAddress, metadata, pipeline, read, register, remoteAddress, sendOutboundEvent, setOption, shutdown, writableBytes, write, writeAndFlush
-
Methods inherited from interface io.netty5.channel.ChannelOutboundInvoker
newFailedFuture, newPromise, newSucceededFuture, newSucceededFuture
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface io.netty5.channel.IoHandle
isRegistered
-
Methods inherited from interface io.netty5.channel.socket.SocketChannel
parent
-
-
-
-
Field Detail
-
socket
protected final LinuxSocket socket
-
active
protected volatile boolean active
-
-
Constructor Detail
-
EpollSocketChannel
public EpollSocketChannel(EventLoop eventLoop)
-
EpollSocketChannel
public EpollSocketChannel(EventLoop eventLoop, ProtocolFamily protocolFamily)
-
EpollSocketChannel
public EpollSocketChannel(EventLoop eventLoop, int fd, ProtocolFamily family)
-
-
Method Detail
-
doWrite
protected void doWrite(ChannelOutboundBuffer in) throws Exception
Description copied from class:AbstractChannel
Flush the content of the given buffer to the remote peer.- Specified by:
doWrite
in classAbstractChannel<EpollServerSocketChannel,SocketAddress,SocketAddress>
- Throws:
Exception
-
filterOutboundMessage
protected Object filterOutboundMessage(Object msg)
Description copied from class:AbstractChannel
Invoked when a new message is added to aChannelOutboundBuffer
of thisAbstractChannel
, so that theChannel
implementation converts the message to another. (e.g. heap buffer -> direct buffer)- Overrides:
filterOutboundMessage
in classAbstractChannel<EpollServerSocketChannel,SocketAddress,SocketAddress>
-
doShutdown
protected void doShutdown(ChannelShutdownDirection direction) throws Exception
Description copied from class:AbstractChannel
Shutdown one direction of theChannel
.- Specified by:
doShutdown
in classAbstractChannel<EpollServerSocketChannel,SocketAddress,SocketAddress>
- Parameters:
direction
- the direction to shutdown.- Throws:
Exception
- thrown on error.
-
isShutdown
public boolean isShutdown(ChannelShutdownDirection direction)
Description copied from interface:Channel
- Specified by:
isShutdown
in interfaceChannel
-
epollInReady
protected void epollInReady(RecvBufferAllocator.Handle handle, BufferAllocator recvBufferAllocator, boolean receivedRdHup)
Called once EPOLLIN event is ready to be processed
-
getExtendedOption
protected <T> T getExtendedOption(ChannelOption<T> option)
Description copied from class:AbstractChannel
Override to add support for moreChannelOption
s. You need to also call {@link super} after handling the extra options.- Type Parameters:
T
- the value type.- Parameters:
option
- theChannelOption
.- Returns:
- the value for the option
-
setExtendedOption
protected <T> void setExtendedOption(ChannelOption<T> option, T value)
Description copied from class:AbstractChannel
Override to add support for moreChannelOption
s. You need to also call {@link super} after handling the extra options.- Type Parameters:
T
- the value type.- Parameters:
option
- theChannelOption
.
-
isExtendedOptionSupported
protected boolean isExtendedOptionSupported(ChannelOption<?> option)
Description copied from class:AbstractChannel
Override to add support for moreChannelOption
s. You need to also call {@link super} after handling the extra options.- Parameters:
option
- theChannelOption
.- Returns:
true
if supported,false
otherwise.
-
isIpTransparent
public boolean isIpTransparent()
-
doConnect0
protected boolean doConnect0(SocketAddress remote) throws Exception
- Throws:
Exception
-
prepareToClose
protected Future<Executor> prepareToClose()
Description copied from class:AbstractChannel
Prepares to close theChannel
. If this method returns anExecutor
, the caller must call theExecutor.execute(Runnable)
method with a task that callsAbstractChannel.doClose()
on the returnedExecutor
. If this method returnsnull
,AbstractChannel.doClose()
must be called from the caller thread. (i.e.EventLoop
)- Overrides:
prepareToClose
in classAbstractChannel<EpollServerSocketChannel,SocketAddress,SocketAddress>
-
maybeMoreDataToRead
protected boolean maybeMoreDataToRead(RecvBufferAllocator.Handle handle)
-
fetchLocalAddress
protected final boolean fetchLocalAddress()
-
isSoErrorZero
protected static boolean isSoErrorZero(Socket fd)
-
setFlag
protected final void setFlag(int flag) throws IOException
- Throws:
IOException
-
clearFlag
protected final void clearFlag(int flag) throws IOException
- Throws:
IOException
-
registration
protected final io.netty5.channel.epoll.EpollRegistration registration()
-
fd
public final FileDescriptor fd()
Description copied from interface:UnixChannel
Returns theFileDescriptor
that is used by thisChannel
.- Specified by:
fd
in interfaceUnixChannel
-
isActive
public boolean isActive()
Description copied from interface:Channel
Returntrue
if theChannel
is active and so connected.
-
doClose
protected void doClose() throws Exception
Description copied from class:AbstractChannel
Close theChannel
- Specified by:
doClose
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
- Throws:
Exception
-
doDisconnect
protected void doDisconnect() throws Exception
Description copied from class:AbstractChannel
Disconnect thisChannel
from its remote peer- Specified by:
doDisconnect
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
- Throws:
Exception
-
isOpen
public final boolean isOpen()
Description copied from interface:Channel
Returnstrue
if theChannel
is open and may get active later
-
doBeginRead
protected final void doBeginRead() throws Exception
Description copied from class:AbstractChannel
Schedule a read operation.- Specified by:
doBeginRead
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
- Throws:
Exception
-
newDirectBuffer
protected final Buffer newDirectBuffer(Buffer buf)
Returns an off-heap copy of, and then closes, the givenBuffer
.
-
newDirectBuffer
protected final Buffer newDirectBuffer(Resource<?> holder, Buffer buf)
Returns an off-heap copy of the givenBuffer
, and then closes theholder
under the assumption that it owned (or was itself) the buffer.
-
checkResolvable
protected static void checkResolvable(InetSocketAddress addr)
-
doReadBytes
protected final void doReadBytes(Buffer buffer) throws Exception
Read bytes into the givenBuffer
and return the amount.- Throws:
Exception
-
doWriteBytes
protected final int doWriteBytes(ChannelOutboundBuffer in, Buffer buf) throws Exception
- Throws:
Exception
-
doWriteOrSendBytes
protected final long doWriteOrSendBytes(Buffer data, SocketAddress remoteAddress, boolean fastOpen) throws IOException
Write bytes to the socket, with or without a remote address. Used for datagram and TCP client fast open writes.- Throws:
IOException
-
shutdownInput
protected final void shutdownInput(boolean rdHup)
Shutdown the input side of the channel.
-
writeFlushed
protected final void writeFlushed()
Description copied from class:AbstractChannel
Write previous flushed messages.- Overrides:
writeFlushed
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
-
doFinishConnect
protected boolean doFinishConnect(SocketAddress requestedRemoteAddress) throws Exception
Description copied from class:AbstractChannel
Finish a connect request.- Specified by:
doFinishConnect
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
- Parameters:
requestedRemoteAddress
- the remote address of the peer.- Returns:
true
if the connect was completed,false
ifAbstractChannel.finishConnect()
will be called later again to try finishing the connect.- Throws:
Exception
- thrown on error.
-
doBind
protected void doBind(SocketAddress local) throws Exception
Description copied from class:AbstractChannel
Bind theChannel
to theSocketAddress
- Specified by:
doBind
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
- Throws:
Exception
-
doConnect
protected boolean doConnect(SocketAddress remoteAddress, SocketAddress localAddress) throws Exception
Connect to the remote peer- Specified by:
doConnect
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
- Parameters:
remoteAddress
- the address of the remote peer.localAddress
- the local address of this channel.- Returns:
true
if the connect was completed,false
ifAbstractChannel.finishConnect()
will be called later again to try finishing the connect.- Throws:
Exception
- thrown on error.
-
localAddress0
protected final SocketAddress localAddress0()
Description copied from class:AbstractChannel
Returns theSocketAddress
which is bound locally.- Specified by:
localAddress0
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
-
remoteAddress0
protected final SocketAddress remoteAddress0()
Description copied from class:AbstractChannel
Return theSocketAddress
which theChannel
is connected to.- Specified by:
remoteAddress0
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
-
autoReadCleared
protected final void autoReadCleared()
Description copied from class:AbstractChannel
Is called onceAbstractChannel.setAutoRead(boolean)
is called withfalse
andAbstractChannel.isAutoRead()
wastrue
before.- Overrides:
autoReadCleared
in classAbstractChannel<P extends UnixChannel,SocketAddress,SocketAddress>
-
-