Class AprIoProcessor
java.lang.Object
org.apache.mina.core.polling.AbstractPollingIoProcessor<AprSession>
org.apache.mina.transport.socket.apr.AprIoProcessor
- All Implemented Interfaces:
IoProcessor<AprSession>
The class in charge of processing socket level IO events for the
AprSocketConnector-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Map<Long, AprSession> private final longprivate final Queue<AprSession> private final long[]private final longprivate static final intprivate final longprivate booleanprivate final Objectprivate final longFields inherited from class AbstractPollingIoProcessor
wakeupCalled -
Constructor Summary
ConstructorsConstructorDescriptionAprIoProcessor(Executor executor) Create a new instance ofAprIoProcessorwith a given Exector for handling I/Os events. -
Method Summary
Modifier and TypeMethodDescriptionprotected Iterator<AprSession> protected intGet the number ofIoSessionpolled by thisIoProcessorprotected voiddestroy(AprSession session) Destroy the underlying client socket handleprotected voidDispose the resources used by thisIoProcessorfor polling the client connections.protected SessionStategetState(AprSession session) Get the state of a session (One of OPENING, OPEN, CLOSING)protected voidinit(AprSession session) Initialize the polling of a session.protected booleanCheck that the select() has not exited immediately just because of a broken connection.protected booleanisInterestedInRead(AprSession session) Tells if this session is registered for readingprotected booleanisInterestedInWrite(AprSession session) Tells if this session is registered for writingprotected booleanisReadable(AprSession session) Tells if the session ready for readingprotected booleanSay if the list ofIoSessionpolled by thisIoProcessoris emptyprotected booleanisWritable(AprSession session) Tells if the session ready for writingprotected intread(AprSession session, IoBuffer buffer) protected voidIn the case we are using the java select() method, this method is used to trash the buggy selector and create a new one, registring all the sockets on it.protected intselect()poll those sessions foreverprotected intselect(long timeout) poll those sessions for the given timeoutprotected Iterator<AprSession> Get anIteratorfor the list ofIoSessionfound selected by the last call ofAbstractPollingIoProcessor.select(long)protected voidsetInterestedInRead(AprSession session, boolean isInterested) Set the session to be informed when a read event should be processedprotected voidsetInterestedInWrite(AprSession session, boolean isInterested) Set the session to be informed when a write event should be processedprivate voidthrowException(int code) protected inttransferFile(AprSession session, FileRegion region, int length) Write a part of a file to aIoSession, if the underlying API isn't supporting system calls like sendfile(), you can throw aUnsupportedOperationExceptionso the file will be send using usualAbstractPollingIoProcessor.write(AbstractIoSession, IoBuffer, int)call.protected voidwakeup()Interrupt theAbstractPollingIoProcessor.select(long)call.protected intwrite(AprSession session, IoBuffer buf, int length) Write a sequence of bytes to aIoSession, means to be called when a session was found ready for writing.Methods inherited from class AbstractPollingIoProcessor
add, dispose, flush, isDisposed, isDisposing, remove, updateTrafficControl, updateTrafficMask, write
-
Field Details
-
POLLSET_SIZE
private static final int POLLSET_SIZE- See Also:
-
allSessions
-
wakeupLock
-
wakeupSocket
private final long wakeupSocket -
toBeWakenUp
private volatile boolean toBeWakenUp -
pool
private final long pool -
bufferPool
private final long bufferPool -
pollset
private final long pollset -
polledSockets
private final long[] polledSockets -
polledSessions
-
-
Constructor Details
-
AprIoProcessor
Create a new instance ofAprIoProcessorwith a given Exector for handling I/Os events.- Parameters:
executor- theExecutorfor handling I/O events
-
-
Method Details
-
doDispose
protected void doDispose()Dispose the resources used by thisIoProcessorfor polling the client connections. The implementing class doDispose method will be called.- Specified by:
doDisposein classAbstractPollingIoProcessor<AprSession>
-
select
poll those sessions forever- Specified by:
selectin classAbstractPollingIoProcessor<AprSession>- Returns:
- The number of session ready for read or for write
- Throws:
Exception- if some low level IO error occurs
-
select
poll those sessions for the given timeout- Specified by:
selectin classAbstractPollingIoProcessor<AprSession>- Parameters:
timeout- milliseconds before the call timeout if no event appear- Returns:
- The number of session ready for read or for write
- Throws:
Exception- if some low level IO error occurs
-
isSelectorEmpty
protected boolean isSelectorEmpty()Say if the list ofIoSessionpolled by thisIoProcessoris empty- Specified by:
isSelectorEmptyin classAbstractPollingIoProcessor<AprSession>- Returns:
trueif at least a session is managed by thisIoProcessor
-
wakeup
protected void wakeup()Interrupt theAbstractPollingIoProcessor.select(long)call.- Specified by:
wakeupin classAbstractPollingIoProcessor<AprSession>
-
allSessions
- Specified by:
allSessionsin classAbstractPollingIoProcessor<AprSession>- Returns:
IteratorofIoSession
-
allSessionsCount
protected int allSessionsCount()Get the number ofIoSessionpolled by thisIoProcessor- Specified by:
allSessionsCountin classAbstractPollingIoProcessor<AprSession>- Returns:
- the number of sessions attached to this
IoProcessor
-
selectedSessions
Get anIteratorfor the list ofIoSessionfound selected by the last call ofAbstractPollingIoProcessor.select(long)- Specified by:
selectedSessionsin classAbstractPollingIoProcessor<AprSession>- Returns:
IteratorofIoSessionread for I/Os operation
-
init
Description copied from class:AbstractPollingIoProcessorInitialize the polling of a session. Add it to the polling process.- Specified by:
initin classAbstractPollingIoProcessor<AprSession>- Parameters:
session- theIoSessionto add to the polling- Throws:
Exception- any exception thrown by the underlying system calls
-
destroy
Destroy the underlying client socket handle- Specified by:
destroyin classAbstractPollingIoProcessor<AprSession>- Parameters:
session- theIoSession- Throws:
Exception- any exception thrown by the underlying system calls
-
getState
Get the state of a session (One of OPENING, OPEN, CLOSING)- Specified by:
getStatein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- theIoSessionto inspect- Returns:
- the state of the session
-
isReadable
Tells if the session ready for reading- Specified by:
isReadablein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the queried session- Returns:
trueis ready,falseif not ready
-
isWritable
Tells if the session ready for writing- Specified by:
isWritablein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the queried session- Returns:
trueis ready,falseif not ready
-
isInterestedInRead
Tells if this session is registered for reading- Specified by:
isInterestedInReadin classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the queried session- Returns:
trueis registered for reading
-
isInterestedInWrite
Tells if this session is registered for writing- Specified by:
isInterestedInWritein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the queried session- Returns:
trueis registered for writing
-
setInterestedInRead
Set the session to be informed when a read event should be processed- Specified by:
setInterestedInReadin classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the session for which we want to be interested in read eventsisInterested-truefor registering,falsefor removing- Throws:
Exception- If there was a problem while registering the session
-
setInterestedInWrite
Set the session to be informed when a write event should be processed- Specified by:
setInterestedInWritein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the session for which we want to be interested in write eventsisInterested-truefor registering,falsefor removing- Throws:
Exception- If there was a problem while registering the session
-
read
Reads a sequence of bytes from aIoSessioninto the givenIoBuffer. Is called when the session was found ready for reading.- Specified by:
readin classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the session to readbuffer- the buffer to fill- Returns:
- the number of bytes read
- Throws:
Exception- any exception thrown by the underlying system calls
-
write
Write a sequence of bytes to aIoSession, means to be called when a session was found ready for writing.- Specified by:
writein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the session to writebuf- the buffer to writelength- the number of bytes to write can be superior to the number of bytes remaining in the buffer- Returns:
- the number of byte written
- Throws:
IOException- any exception thrown by the underlying system calls
-
transferFile
Write a part of a file to aIoSession, if the underlying API isn't supporting system calls like sendfile(), you can throw aUnsupportedOperationExceptionso the file will be send using usualAbstractPollingIoProcessor.write(AbstractIoSession, IoBuffer, int)call.- Specified by:
transferFilein classAbstractPollingIoProcessor<AprSession>- Parameters:
session- the session to writeregion- the file region to writelength- the length of the portion to send- Returns:
- the number of written bytes
- Throws:
Exception- any exception thrown by the underlying system calls
-
throwException
- Throws:
IOException
-
registerNewSelector
protected void registerNewSelector()In the case we are using the java select() method, this method is used to trash the buggy selector and create a new one, registring all the sockets on it.- Specified by:
registerNewSelectorin classAbstractPollingIoProcessor<AprSession>
-
isBrokenConnection
Check that the select() has not exited immediately just because of a broken connection. In this case, this is a standard case, and we just have to loop.- Specified by:
isBrokenConnectionin classAbstractPollingIoProcessor<AprSession>- Returns:
trueif a connection has been brutally closed.- Throws:
IOException- If we got an exception
-