public static class NioEndpoint.NioSocketWrapper extends SocketWrapperBase<NioChannel>
SocketWrapperBase.BlockingMode, SocketWrapperBase.CompletionCheck, SocketWrapperBase.CompletionHandlerCall, SocketWrapperBase.CompletionState
bufferedWrites, bufferedWriteSize, COMPLETE_WRITE, COMPLETE_WRITE_WITH_COMPLETION, localAddr, localName, localPort, READ_DATA, remoteAddr, remoteHost, remotePort, sm, socketBufferHandler
Constructor and Description |
---|
NioSocketWrapper(NioChannel channel,
NioEndpoint endpoint) |
Modifier and Type | Method and Description |
---|---|
protected void |
awaitLatch(java.util.concurrent.CountDownLatch latch,
long timeout,
java.util.concurrent.TimeUnit unit) |
void |
awaitReadLatch(long timeout,
java.util.concurrent.TimeUnit unit) |
void |
awaitWriteLatch(long timeout,
java.util.concurrent.TimeUnit unit) |
void |
close() |
SendfileDataBase |
createSendfileData(java.lang.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 |
doWrite(boolean block,
java.nio.ByteBuffer from)
Write the contents of the ByteBuffer to the socket.
|
long |
getLastRead() |
long |
getLastWrite() |
NioEndpoint.Poller |
getPoller() |
java.util.concurrent.CountDownLatch |
getReadLatch() |
NioEndpoint.SendfileData |
getSendfileData() |
SSLSupport |
getSslSupport(java.lang.String clientCertProvider) |
java.util.concurrent.CountDownLatch |
getWriteLatch() |
int |
interestOps() |
int |
interestOps(int ops) |
boolean |
isClosed() |
boolean |
isReadyForRead() |
protected void |
populateLocalAddr() |
protected void |
populateLocalName() |
protected void |
populateLocalPort() |
protected void |
populateRemoteAddr() |
protected void |
populateRemoteHost() |
protected void |
populateRemotePort() |
SendfileState |
processSendfile(SendfileDataBase sendfileData)
Starts the sendfile process.
|
int |
read(boolean block,
byte[] b,
int off,
int len) |
int |
read(boolean block,
java.nio.ByteBuffer to) |
void |
registerReadInterest() |
void |
registerWriteInterest() |
protected java.util.concurrent.CountDownLatch |
resetLatch(java.util.concurrent.CountDownLatch latch) |
void |
resetReadLatch() |
void |
resetWriteLatch() |
void |
setAppReadBufHandler(ApplicationBufferHandler handler) |
void |
setPoller(NioEndpoint.Poller poller) |
void |
setSendfileData(NioEndpoint.SendfileData sf) |
protected java.util.concurrent.CountDownLatch |
startLatch(java.util.concurrent.CountDownLatch latch,
int cnt) |
void |
startReadLatch(int cnt) |
void |
startWriteLatch(int cnt) |
void |
updateLastRead() |
void |
updateLastWrite() |
addToBuffers, addToBuffers, awaitReadComplete, awaitWriteComplete, canWrite, checkError, decrementKeepAlive, doWrite, execute, flush, flushBlocking, flushNonBlocking, getBlockingStatus, getBlockingStatusReadLock, getBlockingStatusWriteLock, getEndpoint, getError, getLocalAddr, getLocalName, getLocalPort, getNegotiatedProtocol, getReadTimeout, getRemoteAddr, getRemoteHost, getRemotePort, getSocket, getSocketBufferHandler, getWriteTimeout, hasAsyncIO, hasDataToWrite, isReadPending, isReadyForWrite, isSecure, isUpgraded, isWritePending, populateReadBuffer, populateReadBuffer, processSocket, read, read, setBlockingStatus, setError, setKeepAliveLeft, setNegotiatedProtocol, setReadTimeout, setSecure, setUpgraded, setWriteTimeout, toString, transfer, transfer, unRead, write, write, write, write, writeBlocking, writeBlocking, writeByteBufferBlocking, writeByteBufferNonBlocking, writeNonBlocking, writeNonBlocking
public NioSocketWrapper(NioChannel channel, NioEndpoint endpoint)
public NioEndpoint.Poller getPoller()
public void setPoller(NioEndpoint.Poller poller)
public int interestOps()
public int interestOps(int ops)
public java.util.concurrent.CountDownLatch getReadLatch()
public java.util.concurrent.CountDownLatch getWriteLatch()
protected java.util.concurrent.CountDownLatch resetLatch(java.util.concurrent.CountDownLatch latch)
public void resetReadLatch()
public void resetWriteLatch()
protected java.util.concurrent.CountDownLatch startLatch(java.util.concurrent.CountDownLatch latch, int cnt)
public void startReadLatch(int cnt)
public void startWriteLatch(int cnt)
protected void awaitLatch(java.util.concurrent.CountDownLatch latch, long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
java.lang.InterruptedException
public void awaitReadLatch(long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
java.lang.InterruptedException
public void awaitWriteLatch(long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
java.lang.InterruptedException
public void setSendfileData(NioEndpoint.SendfileData sf)
public NioEndpoint.SendfileData getSendfileData()
public void updateLastWrite()
public long getLastWrite()
public void updateLastRead()
public long getLastRead()
public boolean isReadyForRead() throws java.io.IOException
isReadyForRead
in class SocketWrapperBase<NioChannel>
java.io.IOException
public int read(boolean block, byte[] b, int off, int len) throws java.io.IOException
read
in class SocketWrapperBase<NioChannel>
java.io.IOException
public int read(boolean block, java.nio.ByteBuffer to) throws java.io.IOException
read
in class SocketWrapperBase<NioChannel>
java.io.IOException
public void close() throws java.io.IOException
close
in class SocketWrapperBase<NioChannel>
java.io.IOException
public boolean isClosed()
isClosed
in class SocketWrapperBase<NioChannel>
protected void doWrite(boolean block, java.nio.ByteBuffer from) throws java.io.IOException
SocketWrapperBase
doWrite
in class SocketWrapperBase<NioChannel>
block
- Should the write be blocking or not?from
- the ByteBuffer containing the data to be writtenjava.io.IOException
- If an I/O error such as a timeout occurs during the
writepublic void registerReadInterest()
registerReadInterest
in class SocketWrapperBase<NioChannel>
public void registerWriteInterest()
registerWriteInterest
in class SocketWrapperBase<NioChannel>
public SendfileDataBase createSendfileData(java.lang.String filename, long pos, long length)
createSendfileData
in class SocketWrapperBase<NioChannel>
public SendfileState processSendfile(SendfileDataBase sendfileData)
SocketWrapperBase
processSendfile
in class SocketWrapperBase<NioChannel>
sendfileData
- Data representing the file to sendprotected void populateRemoteAddr()
populateRemoteAddr
in class SocketWrapperBase<NioChannel>
protected void populateRemoteHost()
populateRemoteHost
in class SocketWrapperBase<NioChannel>
protected void populateRemotePort()
populateRemotePort
in class SocketWrapperBase<NioChannel>
protected void populateLocalName()
populateLocalName
in class SocketWrapperBase<NioChannel>
protected void populateLocalAddr()
populateLocalAddr
in class SocketWrapperBase<NioChannel>
protected void populateLocalPort()
populateLocalPort
in class SocketWrapperBase<NioChannel>
public SSLSupport getSslSupport(java.lang.String clientCertProvider)
getSslSupport
in class SocketWrapperBase<NioChannel>
clientCertProvider
- Ignored for this implementationpublic void doClientAuth(SSLSupport sslSupport) throws java.io.IOException
SocketWrapperBase
doClientAuth
in class SocketWrapperBase<NioChannel>
sslSupport
- The SSL/TLS support instance currently being used by
the connection that may need updating after the client
authenticationjava.io.IOException
- If authentication is required then there will be I/O
with the client and this exception will be thrown if
that goes wrongpublic void setAppReadBufHandler(ApplicationBufferHandler handler)
setAppReadBufHandler
in class SocketWrapperBase<NioChannel>
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.