Class Nio2Endpoint.Nio2SocketWrapper
- Enclosing class:
- Nio2Endpoint
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.tomcat.util.net.SocketWrapperBase
SocketWrapperBase.BlockingMode, SocketWrapperBase.CompletionCheck, SocketWrapperBase.CompletionHandlerCall, SocketWrapperBase.CompletionState, SocketWrapperBase.OperationState<A>, SocketWrapperBase.VectoredIOCompletionHandler<A>
-
Field Summary
Fields inherited from class org.apache.tomcat.util.net.SocketWrapperBase
bufferedWriteSize, closed, COMPLETE_READ, COMPLETE_READ_WITH_COMPLETION, COMPLETE_WRITE, COMPLETE_WRITE_WITH_COMPLETION, localAddr, localName, localPort, nonBlockingWriteBuffer, previousIOException, READ_DATA, readOperation, readPending, remoteAddr, remoteHost, remotePort, sm, socketBufferHandler, writeOperation, writePending
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
awaitReadComplete
(long timeout, TimeUnit unit) If an asynchronous read operation is pending, this method will block until the operation completes, or the specified amount of time has passed.boolean
awaitWriteComplete
(long timeout, TimeUnit unit) If an asynchronous write operation is pending, this method will block until the operation completes, or the specified amount of time has passed.createSendfileData
(String filename, long pos, long length) void
doClientAuth
(SSLSupport sslSupport) Require the client to perform CLIENT-CERT authentication if it hasn't already done so.protected void
doClose()
Perform the actual close.protected void
doWrite
(boolean block, ByteBuffer from) Write the contents of the ByteBuffer to the socket.protected void
Writes all remaining data from the buffers and blocks until the write is complete.protected boolean
Writes as much data as possible from any that remains in the buffers.Obtain an SSLSupport instance for this socket.boolean
Allows using NIO2 style read/write.boolean
boolean
boolean
Allows indicating if the connector supports per operation timeout.boolean
Allows checking if an asynchronous read operation is currently pending.boolean
boolean
Checks to see if there are any writes pending and if there are callsSocketWrapperBase.registerWriteInterest()
to trigger a callback once the pending writes have completed.boolean
Allows checking if an asynchronous write operation is currently pending.boolean
Allows indicating if the connector needs semaphores.protected <A> SocketWrapperBase<Nio2Channel>.OperationState<A>
newOperationState
(boolean read, ByteBuffer[] buffers, int offset, int length, SocketWrapperBase.BlockingMode block, long timeout, TimeUnit unit, A attachment, SocketWrapperBase.CompletionCheck check, CompletionHandler<Long, ? super A> handler, Semaphore semaphore, SocketWrapperBase<Nio2Channel>.VectoredIOCompletionHandler<A> completion) protected void
protected void
protected void
protected void
protected void
protected void
processSendfile
(SendfileDataBase sendfileData) Starts the sendfile process.int
read
(boolean block, byte[] b, int off, int len) int
read
(boolean block, ByteBuffer to) void
void
void
void
protected void
writeNonBlocking
(byte[] buf, int off, int len) Transfers the data to the socket write buffer (writing that data to the socket if the buffer fills up using a non-blocking write) until either all the data has been transferred and space remains in the socket write buffer or a non-blocking write leaves data in the socket write buffer.protected void
writeNonBlocking
(ByteBuffer from) Transfers the data to the socket write buffer (writing that data to the socket if the buffer fills up using a non-blocking write) until either all the data has been transferred and space remains in the socket write buffer or a non-blocking write leaves data in the socket write buffer.protected void
Separate method so it can be re-used by the socket write buffer to write data to the networkMethods inherited from class org.apache.tomcat.util.net.SocketWrapperBase
buffersArrayHasRemaining, canWrite, checkError, close, decrementKeepAlive, doWrite, execute, flush, getCurrentProcessor, getEndpoint, getError, getLocalAddr, getLocalName, getLocalPort, getLock, getNegotiatedProtocol, getReadTimeout, getRemoteAddr, getRemoteHost, getRemotePort, getSocket, getSocketBufferHandler, getSslSupport, getWriteTimeout, isClosed, isSecure, isUpgraded, populateReadBuffer, populateReadBuffer, processSocket, read, read, read, reset, setCurrentProcessor, setError, setKeepAliveLeft, setNegotiatedProtocol, setReadTimeout, setSecure, setUpgraded, setWriteTimeout, takeCurrentProcessor, toString, transfer, transfer, unRead, vectoredOperation, write, write, write, write, write, writeBlocking, writeBlocking
-
Constructor Details
-
Nio2SocketWrapper
-
-
Method Details
-
setSendfileData
-
getSendfileData
-
isReadyForRead
- Specified by:
isReadyForRead
in classSocketWrapperBase<Nio2Channel>
- Throws:
IOException
-
isReadyForWrite
public boolean isReadyForWrite()Description copied from class:SocketWrapperBase
Checks to see if there are any writes pending and if there are callsSocketWrapperBase.registerWriteInterest()
to trigger a callback once the pending writes have completed.Note: Once this method has returned
false
it MUST NOT be called again until the pending write has completed and the callback has been fired. TODO: ModifySocketWrapperBase.registerWriteInterest()
so the above restriction is enforced there rather than relying on the caller.- Overrides:
isReadyForWrite
in classSocketWrapperBase<Nio2Channel>
- Returns:
true
if no writes are pending and data can be written otherwisefalse
-
read
- Specified by:
read
in classSocketWrapperBase<Nio2Channel>
- Throws:
IOException
-
read
- Specified by:
read
in classSocketWrapperBase<Nio2Channel>
- Throws:
IOException
-
doClose
protected void doClose()Description copied from class:SocketWrapperBase
Perform the actual close. The closed atomic boolean guarantees this will be called only once per wrapper.- Specified by:
doClose
in classSocketWrapperBase<Nio2Channel>
-
hasAsyncIO
public boolean hasAsyncIO()Description copied from class:SocketWrapperBase
Allows using NIO2 style read/write.- Overrides:
hasAsyncIO
in classSocketWrapperBase<Nio2Channel>
- Returns:
true
if the connector has the capability enabled
-
needSemaphores
public boolean needSemaphores()Description copied from class:SocketWrapperBase
Allows indicating if the connector needs semaphores.- Overrides:
needSemaphores
in classSocketWrapperBase<Nio2Channel>
- Returns:
- This default implementation always returns
false
-
hasPerOperationTimeout
public boolean hasPerOperationTimeout()Description copied from class:SocketWrapperBase
Allows indicating if the connector supports per operation timeout.- Overrides:
hasPerOperationTimeout
in classSocketWrapperBase<Nio2Channel>
- Returns:
- This default implementation always returns
false
-
newOperationState
protected <A> SocketWrapperBase<Nio2Channel>.OperationState<A> newOperationState(boolean read, ByteBuffer[] buffers, int offset, int length, SocketWrapperBase.BlockingMode block, long timeout, TimeUnit unit, A attachment, SocketWrapperBase.CompletionCheck check, CompletionHandler<Long, ? super A> handler, Semaphore semaphore, SocketWrapperBase<Nio2Channel>.VectoredIOCompletionHandler<A> completion) - Specified by:
newOperationState
in classSocketWrapperBase<Nio2Channel>
-
writeNonBlocking
Transfers the data to the socket write buffer (writing that data to the socket if the buffer fills up using a non-blocking write) until either all the data has been transferred and space remains in the socket write buffer or a non-blocking write leaves data in the socket write buffer. After an incomplete write, any data remaining to be transferred to the socket write buffer will be copied to the socket write buffer. If the remaining data is too big for the socket write buffer, the socket write buffer will be filled and the additional data written to the non-blocking write buffer.Overridden for NIO2 to enable a gathering write to be used to write all of the remaining data in a single additional write should a non-blocking write leave data in the buffer.
- Overrides:
writeNonBlocking
in classSocketWrapperBase<Nio2Channel>
- Parameters:
buf
- The byte array containing the data to be writtenoff
- The offset within the byte array of the data to be writtenlen
- The length of the data to be written- Throws:
IOException
- If an IO error occurs during the write
-
writeNonBlocking
Transfers the data to the socket write buffer (writing that data to the socket if the buffer fills up using a non-blocking write) until either all the data has been transferred and space remains in the socket write buffer or a non-blocking write leaves data in the socket write buffer. After an incomplete write, any data remaining to be transferred to the socket write buffer will be copied to the socket write buffer. If the remaining data is too big for the socket write buffer, the socket write buffer will be filled and the additional data written to the non-blocking write buffer.Overridden for NIO2 to enable a gathering write to be used to write all of the remaining data in a single additional write should a non-blocking write leave data in the buffer.
- Overrides:
writeNonBlocking
in classSocketWrapperBase<Nio2Channel>
- Parameters:
from
- The ByteBuffer containing the data to be written- Throws:
IOException
- If an IO error occurs during the write
-
writeNonBlockingInternal
Separate method so it can be re-used by the socket write buffer to write data to the networkOverridden for NIO2 to enable a gathering write to be used to write all of the remaining data in a single additional write should a non-blocking write leave data in the buffer.
- Overrides:
writeNonBlockingInternal
in classSocketWrapperBase<Nio2Channel>
- Parameters:
from
- The ByteBuffer containing the data to be written- Throws:
IOException
- If an IO error occurs during the write
-
doWrite
Description copied from class:SocketWrapperBase
Write the contents of the ByteBuffer to the socket. For blocking writes either then entire contents of the buffer will be written or an IOException will be thrown. Partial blocking writes will not occur.- Specified by:
doWrite
in classSocketWrapperBase<Nio2Channel>
- Parameters:
block
- Ignored since this method is only called in the blocking casefrom
- the ByteBuffer containing the data to be written- Throws:
IOException
- If an I/O error such as a timeout occurs during the write
-
flushBlocking
Description copied from class:SocketWrapperBase
Writes all remaining data from the buffers and blocks until the write is complete.- Overrides:
flushBlocking
in classSocketWrapperBase<Nio2Channel>
- Throws:
IOException
- If an IO error occurs during the write
-
flushNonBlocking
Description copied from class:SocketWrapperBase
Writes as much data as possible from any that remains in the buffers.- Specified by:
flushNonBlocking
in classSocketWrapperBase<Nio2Channel>
- Returns:
true
if data remains to be flushed after this method completes, otherwisefalse
.- Throws:
IOException
- If an IO error occurs during the write
-
hasDataToRead
public boolean hasDataToRead()- Overrides:
hasDataToRead
in classSocketWrapperBase<Nio2Channel>
-
hasDataToWrite
public boolean hasDataToWrite()- Overrides:
hasDataToWrite
in classSocketWrapperBase<Nio2Channel>
-
isReadPending
public boolean isReadPending()Description copied from class:SocketWrapperBase
Allows checking if an asynchronous read operation is currently pending.- Overrides:
isReadPending
in classSocketWrapperBase<Nio2Channel>
- Returns:
true
if the endpoint supports asynchronous IO and a read operation is being processed asynchronously
-
isWritePending
public boolean isWritePending()Description copied from class:SocketWrapperBase
Allows checking if an asynchronous write operation is currently pending.- Overrides:
isWritePending
in classSocketWrapperBase<Nio2Channel>
- Returns:
true
if the endpoint supports asynchronous IO and a write operation is being processed asynchronously
-
awaitReadComplete
Description copied from class:SocketWrapperBase
If an asynchronous read operation is pending, this method will block until the operation completes, or the specified amount of time has passed.- Overrides:
awaitReadComplete
in classSocketWrapperBase<Nio2Channel>
- Parameters:
timeout
- The maximum amount of time to waitunit
- The unit for the timeout- Returns:
true
if the read operation is complete,false
if the operation is still pending and the specified timeout has passed
-
awaitWriteComplete
Description copied from class:SocketWrapperBase
If an asynchronous write operation is pending, this method will block until the operation completes, or the specified amount of time has passed.- Overrides:
awaitWriteComplete
in classSocketWrapperBase<Nio2Channel>
- Parameters:
timeout
- The maximum amount of time to waitunit
- The unit for the timeout- Returns:
true
if the read operation is complete,false
if the operation is still pending and the specified timeout has passed
-
registerReadInterest
public void registerReadInterest()- Specified by:
registerReadInterest
in classSocketWrapperBase<Nio2Channel>
-
registerWriteInterest
public void registerWriteInterest()- Specified by:
registerWriteInterest
in classSocketWrapperBase<Nio2Channel>
-
createSendfileData
- Specified by:
createSendfileData
in classSocketWrapperBase<Nio2Channel>
-
processSendfile
Description copied from class:SocketWrapperBase
Starts the sendfile process. It is expected that if the sendfile process does not complete during this call and does not report an error, that the caller will not add the socket to the poller (or equivalent). That is the responsibility of this method.- Specified by:
processSendfile
in classSocketWrapperBase<Nio2Channel>
- Parameters:
sendfileData
- Data representing the file to send- Returns:
- The state of the sendfile process after the first write.
-
populateRemoteAddr
protected void populateRemoteAddr()- Specified by:
populateRemoteAddr
in classSocketWrapperBase<Nio2Channel>
-
populateRemoteHost
protected void populateRemoteHost()- Specified by:
populateRemoteHost
in classSocketWrapperBase<Nio2Channel>
-
populateRemotePort
protected void populateRemotePort()- Specified by:
populateRemotePort
in classSocketWrapperBase<Nio2Channel>
-
populateLocalName
protected void populateLocalName()- Specified by:
populateLocalName
in classSocketWrapperBase<Nio2Channel>
-
populateLocalAddr
protected void populateLocalAddr()- Specified by:
populateLocalAddr
in classSocketWrapperBase<Nio2Channel>
-
populateLocalPort
protected void populateLocalPort()- Specified by:
populateLocalPort
in classSocketWrapperBase<Nio2Channel>
-
getSslSupport
Description copied from class:SocketWrapperBase
Obtain an SSLSupport instance for this socket.- Specified by:
getSslSupport
in classSocketWrapperBase<Nio2Channel>
- Returns:
- An SSLSupport instance for this socket.
-
doClientAuth
Description copied from class:SocketWrapperBase
Require the client to perform CLIENT-CERT authentication if it hasn't already done so.- Specified by:
doClientAuth
in classSocketWrapperBase<Nio2Channel>
- Parameters:
sslSupport
- The SSL/TLS support instance currently being used by the connection that may need updating after the client authentication- Throws:
IOException
- If authentication is required then there will be I/O with the client and this exception will be thrown if that goes wrong
-
setAppReadBufHandler
- Specified by:
setAppReadBufHandler
in classSocketWrapperBase<Nio2Channel>
-