Class AprEndpoint.AprSocketWrapper
java.lang.Object
org.apache.tomcat.util.net.SocketWrapperBase<Long>
org.apache.tomcat.util.net.AprEndpoint.AprSocketWrapper
- Enclosing class:
AprEndpoint
-
Nested Class Summary
Nested classes/interfaces inherited from class SocketWrapperBase
SocketWrapperBase.BlockingMode, SocketWrapperBase.CompletionCheck, SocketWrapperBase.CompletionHandlerCall, SocketWrapperBase.CompletionState, SocketWrapperBase.OperationState<A>, SocketWrapperBase.VectoredIOCompletionHandler<A> -
Field Summary
Fields inherited from class 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, sniHostName, socketBufferHandler, writeOperation, writePending -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close the socket wrapper.createSendfileData(String filename, long pos, long length) Creates a sendfile data object for the specified file.voiddoClientAuth(SSLSupport sslSupport) Require the client to perform CLIENT-CERT authentication if it hasn't already done so.protected voiddoClose()Perform the actual close.protected voiddoWrite(boolean block, ByteBuffer from) Write the contents of the ByteBuffer to the socket.protected booleanFlushes remaining buffered data using a non-blocking write.booleanObtain an SSLSupport instance for this socket.getSslSupport(String clientCertProvider) Obtain an SSLSupport instance for this socket.booleanChecks if the socket is ready for reading.protected <A> SocketWrapperBase<Long>.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<Long>.VectoredIOCompletionHandler<A> completion) Creates a new operation state for vectored I/O operations.protected voidPopulates the cached local IP address from the underlying socket.protected voidPopulates the cached local host name from the underlying socket.protected voidPopulates the cached local port number from the underlying socket.protected voidPopulates the cached remote IP address from the underlying socket.protected voidPopulates the cached remote host name from the underlying socket.protected voidPopulates the cached remote port number from the underlying socket.processSendfile(SendfileDataBase sendfileData) Starts the sendfile process.intread(boolean block, byte[] b, int off, int len) Reads data from the socket into a byte array.intread(boolean block, ByteBuffer to) Reads data from the socket into a ByteBuffer.voidRegisters interest in read events.voidRegisters interest in write events.voidSets the application-level read buffer handler.voidsetBlockingStatus(boolean blockingStatus) Methods inherited from class SocketWrapperBase
awaitReadComplete, awaitWriteComplete, buffersArrayHasRemaining, canWrite, checkError, decrementKeepAlive, doWrite, execute, flush, flushBlocking, getCurrentProcessor, getEndpoint, getError, getLocalAddr, getLocalName, getLocalPort, getLock, getNegotiatedProtocol, getReadTimeout, getRemoteAddr, getRemoteHost, getRemotePort, getSniHostName, getSocket, getSocketBufferHandler, getWriteTimeout, hasAsyncIO, hasDataToRead, hasDataToWrite, hasPerOperationTimeout, isClosed, isReadPending, isReadyForWrite, isSecure, isUpgraded, isWritePending, needSemaphores, populateReadBuffer, populateReadBuffer, processSocket, read, read, read, reset, setCurrentProcessor, setError, setKeepAliveLeft, setNegotiatedProtocol, setReadTimeout, setSecure, setSniHostName, setUpgraded, setWriteTimeout, takeCurrentProcessor, toString, transfer, transfer, unRead, vectoredOperation, write, write, write, write, write, writeBlocking, writeBlocking, writeNonBlocking, writeNonBlocking, writeNonBlockingInternal
-
Constructor Details
-
AprSocketWrapper
-
-
Method Details
-
getBlockingStatus
public boolean getBlockingStatus() -
setBlockingStatus
public void setBlockingStatus(boolean blockingStatus) -
getBlockingStatusReadLock
-
getBlockingStatusWriteLock
-
read
Description copied from class:SocketWrapperBaseReads data from the socket into a byte array.- Specified by:
readin classSocketWrapperBase<Long>- Parameters:
block- Whether to blockb- The byte array to read intooff- The offset in the arraylen- The number of bytes to read- Returns:
- the number of bytes read
- Throws:
IOException- If an I/O error occurs
-
read
Description copied from class:SocketWrapperBaseReads data from the socket into a ByteBuffer.- Specified by:
readin classSocketWrapperBase<Long>- Parameters:
block- Whether to blockto- The ByteBuffer to read into- Returns:
- the number of bytes read
- Throws:
IOException- If an I/O error occurs
-
isReadyForRead
Description copied from class:SocketWrapperBaseChecks if the socket is ready for reading.- Specified by:
isReadyForReadin classSocketWrapperBase<Long>- Returns:
trueif data is available to read- Throws:
IOException- If an I/O error occurs
-
close
public void close()Description copied from class:SocketWrapperBaseClose the socket wrapper.- Overrides:
closein classSocketWrapperBase<Long>
-
doClose
protected void doClose()Description copied from class:SocketWrapperBasePerform the actual close. The closed atomic boolean guarantees this will be called only once per wrapper.- Specified by:
doClosein classSocketWrapperBase<Long>
-
flushNonBlocking
Description copied from class:SocketWrapperBaseFlushes remaining buffered data using a non-blocking write.- Specified by:
flushNonBlockingin classSocketWrapperBase<Long>- Returns:
trueif data remains to be flushed after this method completes, otherwisefalse- Throws:
IOException- If an IO error occurs during the write
-
doWrite
Description copied from class:SocketWrapperBaseWrite 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:
doWritein classSocketWrapperBase<Long>- Parameters:
block- Should the write be blocking or not?from- the ByteBuffer containing the data to be written- Throws:
IOException- If an I/O error such as a timeout occurs during the write
-
registerReadInterest
public void registerReadInterest()Description copied from class:SocketWrapperBaseRegisters interest in read events.- Specified by:
registerReadInterestin classSocketWrapperBase<Long>
-
registerWriteInterest
public void registerWriteInterest()Description copied from class:SocketWrapperBaseRegisters interest in write events.- Specified by:
registerWriteInterestin classSocketWrapperBase<Long>
-
createSendfileData
Description copied from class:SocketWrapperBaseCreates a sendfile data object for the specified file.- Specified by:
createSendfileDatain classSocketWrapperBase<Long>- Parameters:
filename- The file to sendpos- The starting position in the filelength- The number of bytes to send- Returns:
- a new sendfile data object
-
processSendfile
Description copied from class:SocketWrapperBaseStarts 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:
processSendfilein classSocketWrapperBase<Long>- Parameters:
sendfileData- Data representing the file to send- Returns:
- The state of the sendfile process after the first write.
-
populateRemoteAddr
protected void populateRemoteAddr()Description copied from class:SocketWrapperBasePopulates the cached remote IP address from the underlying socket.- Specified by:
populateRemoteAddrin classSocketWrapperBase<Long>
-
populateRemoteHost
protected void populateRemoteHost()Description copied from class:SocketWrapperBasePopulates the cached remote host name from the underlying socket.- Specified by:
populateRemoteHostin classSocketWrapperBase<Long>
-
populateRemotePort
protected void populateRemotePort()Description copied from class:SocketWrapperBasePopulates the cached remote port number from the underlying socket.- Specified by:
populateRemotePortin classSocketWrapperBase<Long>
-
populateLocalName
protected void populateLocalName()Description copied from class:SocketWrapperBasePopulates the cached local host name from the underlying socket.- Specified by:
populateLocalNamein classSocketWrapperBase<Long>
-
populateLocalAddr
protected void populateLocalAddr()Description copied from class:SocketWrapperBasePopulates the cached local IP address from the underlying socket.- Specified by:
populateLocalAddrin classSocketWrapperBase<Long>
-
populateLocalPort
protected void populateLocalPort()Description copied from class:SocketWrapperBasePopulates the cached local port number from the underlying socket.- Specified by:
populateLocalPortin classSocketWrapperBase<Long>
-
getSslSupport
Description copied from class:SocketWrapperBaseObtain an SSLSupport instance for this socket.- Overrides:
getSslSupportin classSocketWrapperBase<Long>- Parameters:
clientCertProvider- The name of the client certificate provider to use. Only used by APR/native.- Returns:
- An SSLSupport instance for this socket.
-
getSslSupport
Description copied from class:SocketWrapperBaseObtain an SSLSupport instance for this socket.- Specified by:
getSslSupportin classSocketWrapperBase<Long>- Returns:
- An SSLSupport instance for this socket.
-
doClientAuth
Description copied from class:SocketWrapperBaseRequire the client to perform CLIENT-CERT authentication if it hasn't already done so.- Specified by:
doClientAuthin classSocketWrapperBase<Long>- 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
Description copied from class:SocketWrapperBaseSets the application-level read buffer handler.- Specified by:
setAppReadBufHandlerin classSocketWrapperBase<Long>- Parameters:
handler- The application buffer handler
-
newOperationState
protected <A> SocketWrapperBase<Long>.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<Long>.VectoredIOCompletionHandler<A> completion) Description copied from class:SocketWrapperBaseCreates a new operation state for vectored I/O operations.- Specified by:
newOperationStatein classSocketWrapperBase<Long>- Type Parameters:
A- The attachment type- Parameters:
read- Whether this is a read operationbuffers- The buffers for the operationoffset- The offset in the buffer arraylength- The number of buffersblock- The blocking modetimeout- The timeout durationunit- The timeout time unitattachment- An attachment objectcheck- The completion checkhandler- The completion handlersemaphore- The semaphore for synchronizationcompletion- The vectored I/O completion handler- Returns:
- a new operation state instance
-