Package org.apache.tomcat.util.net
Class NioEndpoint
java.lang.Object
org.apache.tomcat.util.net.AbstractEndpoint<S,U>
org.apache.tomcat.util.net.AbstractJsseEndpoint<NioChannel,SocketChannel>
org.apache.tomcat.util.net.NioEndpoint
NIO endpoint.
- Author:
- Mladen Turk
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
class
Poller class.static class
PollerEvent, cacheable object for poller events to avoid GCstatic class
SendfileData class.protected class
This class is the equivalent of the Worker, but will simply use in an external Executor thread pool.Nested classes/interfaces inherited from class org.apache.tomcat.util.net.AbstractEndpoint
AbstractEndpoint.BindState, AbstractEndpoint.Handler<S>
-
Field Summary
Fields inherited from class org.apache.tomcat.util.net.AbstractEndpoint
acceptor, acceptorThreadCount, acceptorThreadPriority, attributes, connections, internalExecutor, negotiableProtocols, paused, processorCache, running, sm, socketProperties, sslHostConfigs, threadPriority
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bind()
Initialize the endpoint.protected SocketProcessorBase<NioChannel>
createSocketProcessor
(SocketWrapperBase<NioChannel> socketWrapper, SocketEvent event) protected void
destroySocket
(SocketChannel socket) Close the socket.protected void
Actually close the server socket but don't perform any other clean-up.boolean
Is deferAccept supported?int
Number of keep-alive sockets.protected Log
getLog()
protected Log
protected SynchronizedStack<NioChannel>
protected NioEndpoint.Poller
Deprecated.Will be removed in Tomcat 9.int
Deprecated.Will be removed in Tomcat 10.int
long
protected NetworkChannel
protected CountDownLatch
boolean
protected void
protected SocketChannel
void
setPollerThreadCount
(int pollerThreadCount) Deprecated.Will be removed in Tomcat 10.void
setPollerThreadPriority
(int pollerThreadPriority) void
setSelectorTimeout
(long timeout) protected boolean
setSocketOptions
(SocketChannel socket) Process the specified connection.protected void
setStopLatch
(CountDownLatch stopLatch) void
setUseInheritedChannel
(boolean useInheritedChannel) void
Start the NIO endpoint, creating acceptor, poller threads.void
Stop the endpoint.void
unbind()
Deallocate NIO memory pools, and close server socket.Methods inherited from class org.apache.tomcat.util.net.AbstractJsseEndpoint
createSSLContext, createSSLEngine, getLocalAddress, getSniParseLimit, getSslImplementation, getSslImplementationName, init, initialiseSsl, isAlpnSupported, setDefaultSslHostConfig, setSniParseLimit, setSslImplementationName
Methods inherited from class org.apache.tomcat.util.net.AbstractEndpoint
addNegotiatedProtocol, addSslHostConfig, addSslHostConfig, awaitConnectionsClose, closeServerSocketGraceful, closeSocket, countDownConnection, countUpOrAwaitConnection, createExecutor, destroy, destroySsl, findSslHostConfigs, generateCertificateDebug, getAcceptCount, getAcceptorThreadCount, getAcceptorThreadPriority, getAddress, getAttribute, getBacklog, getBindOnInit, getBindState, getConnectionCount, getConnectionLinger, getConnections, getConnectionTimeout, getCurrentThreadCount, getCurrentThreadsBusy, getDaemon, getDefaultSSLHostConfigName, getDomain, getExecutor, getExecutorTerminationTimeoutMillis, getHandler, getKeepAliveTimeout, getLocalPort, getMaxConnections, getMaxHeaderCount, getMaxKeepAliveRequests, getMaxThreads, getMinSpareThreads, getName, getPort, getPortOffset, getPortWithOffset, getProperty, getSocketProperties, getSoLinger, getSoTimeout, getSSLHostConfig, getTcpNoDelay, getThreadPriority, getUseAsyncIO, getUseSendfile, getUseVirtualThreads, hasNegotiableProtocols, initializeConnectionLatch, isPaused, isRunning, isSSLEnabled, logCertificate, pause, processSocket, releaseConnectionLatch, releaseSSLContext, reloadSslHostConfig, reloadSslHostConfigs, removeSslHostConfig, resume, setAcceptCount, setAcceptorThreadCount, setAcceptorThreadPriority, setAddress, setAttribute, setBacklog, setBindOnInit, setConnectionLinger, setConnectionTimeout, setDaemon, setDefaultSSLHostConfigName, setDomain, setExecutor, setExecutorTerminationTimeoutMillis, setHandler, setKeepAliveTimeout, setMaxConnections, setMaxHeaderCount, setMaxKeepAliveRequests, setMaxThreads, setMinSpareThreads, setName, setPort, setPortOffset, setProperty, setSoLinger, setSoTimeout, setSSLEnabled, setTcpNoDelay, setThreadPriority, setUseAsyncIO, setUseSendfile, setUseVirtualThreads, shutdownExecutor, start, startAcceptorThread, stop, toTimeout, unlockAccept
-
Field Details
-
OP_REGISTER
public static final int OP_REGISTER- See Also:
-
-
Constructor Details
-
NioEndpoint
public NioEndpoint()
-
-
Method Details
-
setUseInheritedChannel
public void setUseInheritedChannel(boolean useInheritedChannel) -
getUseInheritedChannel
public boolean getUseInheritedChannel() -
setPollerThreadPriority
public void setPollerThreadPriority(int pollerThreadPriority) -
getPollerThreadPriority
public int getPollerThreadPriority() -
setPollerThreadCount
Deprecated.Will be removed in Tomcat 10.NO-OP.- Parameters:
pollerThreadCount
- Unused
-
getPollerThreadCount
Deprecated.Will be removed in Tomcat 10.Always returns 1.- Returns:
- Always 1.
-
setSelectorTimeout
public void setSelectorTimeout(long timeout) -
getSelectorTimeout
public long getSelectorTimeout() -
getPoller0
Deprecated.Will be removed in Tomcat 9.Not used.- Returns:
- The poller
-
getDeferAccept
public boolean getDeferAccept()Is deferAccept supported?- Specified by:
getDeferAccept
in classAbstractEndpoint<NioChannel,
SocketChannel>
-
getKeepAliveCount
public int getKeepAliveCount()Number of keep-alive sockets.- Returns:
- The number of sockets currently in the keep-alive state waiting for the next request to be received on the socket
-
bind
Initialize the endpoint.- Specified by:
bind
in classAbstractEndpoint<NioChannel,
SocketChannel> - Throws:
Exception
-
initServerSocket
- Throws:
Exception
-
startInternal
Start the NIO endpoint, creating acceptor, poller threads.- Specified by:
startInternal
in classAbstractEndpoint<NioChannel,
SocketChannel> - Throws:
Exception
-
stopInternal
public void stopInternal()Stop the endpoint. This will cause all processing threads to stop.- Specified by:
stopInternal
in classAbstractEndpoint<NioChannel,
SocketChannel>
-
unbind
Deallocate NIO memory pools, and close server socket.- Overrides:
unbind
in classAbstractJsseEndpoint<NioChannel,
SocketChannel> - Throws:
Exception
-
doCloseServerSocket
Description copied from class:AbstractEndpoint
Actually close the server socket but don't perform any other clean-up.- Specified by:
doCloseServerSocket
in classAbstractEndpoint<NioChannel,
SocketChannel> - Throws:
IOException
- If an error occurs closing the socket
-
getNioChannels
-
getPoller
-
getStopLatch
-
setStopLatch
-
setSocketOptions
Process the specified connection.- Specified by:
setSocketOptions
in classAbstractEndpoint<NioChannel,
SocketChannel> - Parameters:
socket
- The socket channel- Returns:
true
if the socket was correctly configured and processing may continue,false
if the socket needs to be close immediately
-
destroySocket
Description copied from class:AbstractEndpoint
Close the socket. This is used when the connector is not in a state which allows processing the socket, or if there was an error which prevented the allocation of the socket wrapper.- Specified by:
destroySocket
in classAbstractEndpoint<NioChannel,
SocketChannel> - Parameters:
socket
- The newly accepted socket
-
getServerSocket
- Specified by:
getServerSocket
in classAbstractJsseEndpoint<NioChannel,
SocketChannel>
-
serverSocketAccept
- Specified by:
serverSocketAccept
in classAbstractEndpoint<NioChannel,
SocketChannel> - Throws:
Exception
-
getLog
- Specified by:
getLog
in classAbstractEndpoint<NioChannel,
SocketChannel>
-
getLogCertificate
- Overrides:
getLogCertificate
in classAbstractEndpoint<NioChannel,
SocketChannel>
-
createSocketProcessor
protected SocketProcessorBase<NioChannel> createSocketProcessor(SocketWrapperBase<NioChannel> socketWrapper, SocketEvent event) - Specified by:
createSocketProcessor
in classAbstractEndpoint<NioChannel,
SocketChannel>
-