Class AbstractMultiworkerIOReactor
- java.lang.Object
-
- org.apache.http.impl.nio.reactor.AbstractMultiworkerIOReactor
-
- All Implemented Interfaces:
IOReactor
- Direct Known Subclasses:
DefaultConnectingIOReactor,DefaultListeningIOReactor
public abstract class AbstractMultiworkerIOReactor extends java.lang.Object implements IOReactor
Generic implementation ofIOReactorthat can run multipleBaseIOReactorinstances in separate worker threads and distribute newly created I/O sessions equally across those I/O reactors for more optimal resource utilization and better I/O performance. Usually it is recommended to have one worker I/O reactor per physical CPU core.Important note about exception handling
Protocol specific exceptions as well as those I/O exceptions thrown in the course of interaction with the session's channel are to be expected are to be dealt with by specific protocol handlers. These exceptions may result in termination of an individual session but should not affect the I/O reactor and all other active sessions. There are situations, however, when the I/O reactor itself encounters an internal problem such as an I/O exception in the underlying NIO classes or an unhandled runtime exception. Those types of exceptions are usually fatal and will cause the I/O reactor to shut down automatically.
There is a possibility to override this behavior and prevent I/O reactors from shutting down automatically in case of a runtime exception or an I/O exception in internal classes. This can be accomplished by providing a custom implementation of the
IOReactorExceptionHandlerinterface.If an I/O reactor is unable to automatically recover from an I/O or a runtime exception it will enter the shutdown mode. First off, it cancel all pending new session requests. Then it will attempt to close all active I/O sessions gracefully giving them some time to flush pending output data and terminate cleanly. Lastly, it will forcibly shut down those I/O sessions that still remain active after the grace period. This is a fairly complex process, where many things can fail at the same time and many different exceptions can be thrown in the course of the shutdown process. The I/O reactor will record all exceptions thrown during the shutdown process, including the original one that actually caused the shutdown in the first place, in an audit log. One can obtain the audit log using
getAuditLog(), examine exceptions thrown by the I/O reactor prior and in the course of the reactor shutdown and decide whether it is safe to restart the I/O reactor.- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<ExceptionEvent>auditLogprotected IOReactorConfigconfigprotected IOReactorExceptionHandlerexceptionHandlerprotected booleaninterestOpsQueueingprotected org.apache.http.params.HttpParamsparamsDeprecated.(4.2)protected java.nio.channels.Selectorselectorprotected longselectTimeoutprotected IOReactorStatusstatus
-
Constructor Summary
Constructors Constructor Description AbstractMultiworkerIOReactor()Creates an instance of AbstractMultiworkerIOReactor with default configuration.AbstractMultiworkerIOReactor(int workerCount, java.util.concurrent.ThreadFactory threadFactory, org.apache.http.params.HttpParams params)Deprecated.AbstractMultiworkerIOReactor(IOReactorConfig config, java.util.concurrent.ThreadFactory threadFactory)Creates an instance of AbstractMultiworkerIOReactor with the given configuration.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidaddChannel(ChannelEntry entry)Assigns the given channel entry to one of the worker I/O reactors.protected voidaddExceptionEvent(java.lang.Throwable ex)Adds the givenThrowableobject to the audit log.protected voidaddExceptionEvent(java.lang.Throwable ex, java.util.Date timestamp)Adds the givenThrowableobject with the given time stamp to the audit log.protected voidawaitShutdown(long timeout)Blocks for the given period of time in milliseconds awaiting the completion of the reactor shutdown.protected abstract voidcancelRequests()Triggered to cancel pending session requests.protected voiddoShutdown()Activates the shutdown sequence for this reactor.voidexecute(IOEventDispatch eventDispatch)Activates the main I/O reactor as well as all worker I/O reactors.java.util.List<ExceptionEvent>getAuditLog()Returns the audit log containing exceptions thrown by the I/O reactor prior and in the course of the reactor shutdown.IOReactorStatusgetStatus()Returns the current status of the reactor.protected voidprepareSocket(java.net.Socket socket)Prepares the givenSocketby resetting some of its properties.protected abstract voidprocessEvents(int count)Triggered to process I/O events registered by the mainSelector.protected java.nio.channels.SelectionKeyregisterChannel(java.nio.channels.SelectableChannel channel, int ops)Registers the given channel with the mainSelector.voidsetExceptionHandler(IOReactorExceptionHandler exceptionHandler)Sets exception handler for this I/O reactor.voidshutdown()Initiates shutdown of the reactor and blocks for a default period of time waiting for the reactor to terminate all active connections, to shut down itself and to release system resources it currently holds.voidshutdown(long waitMs)Initiates shutdown of the reactor and blocks approximately for the given period of time in milliseconds waiting for the reactor to terminate all active connections, to shut down itself and to release system resources it currently holds.
-
-
-
Field Detail
-
status
protected volatile IOReactorStatus status
-
params
@Deprecated protected final org.apache.http.params.HttpParams params
Deprecated.(4.2)
-
config
protected final IOReactorConfig config
-
selector
protected final java.nio.channels.Selector selector
-
selectTimeout
protected final long selectTimeout
-
interestOpsQueueing
protected final boolean interestOpsQueueing
-
exceptionHandler
protected IOReactorExceptionHandler exceptionHandler
-
auditLog
protected java.util.List<ExceptionEvent> auditLog
-
-
Constructor Detail
-
AbstractMultiworkerIOReactor
public AbstractMultiworkerIOReactor(IOReactorConfig config, java.util.concurrent.ThreadFactory threadFactory) throws IOReactorException
Creates an instance of AbstractMultiworkerIOReactor with the given configuration.- Parameters:
config- I/O reactor configuration.threadFactory- the factory to create threads. Can benull.- Throws:
IOReactorException- in case if a non-recoverable I/O error.- Since:
- 4.2
-
AbstractMultiworkerIOReactor
public AbstractMultiworkerIOReactor() throws IOReactorExceptionCreates an instance of AbstractMultiworkerIOReactor with default configuration.- Throws:
IOReactorException- in case if a non-recoverable I/O error.- Since:
- 4.2
-
AbstractMultiworkerIOReactor
@Deprecated public AbstractMultiworkerIOReactor(int workerCount, java.util.concurrent.ThreadFactory threadFactory, org.apache.http.params.HttpParams params) throws IOReactorExceptionDeprecated.Creates an instance of AbstractMultiworkerIOReactor.- Parameters:
workerCount- number of worker I/O reactors.threadFactory- the factory to create threads. Can benull.params- HTTP parameters.- Throws:
IOReactorException- in case if a non-recoverable I/O error.
-
-
Method Detail
-
getStatus
public IOReactorStatus getStatus()
Description copied from interface:IOReactorReturns the current status of the reactor.
-
getAuditLog
public java.util.List<ExceptionEvent> getAuditLog()
Returns the audit log containing exceptions thrown by the I/O reactor prior and in the course of the reactor shutdown.- Returns:
- audit log.
-
addExceptionEvent
protected void addExceptionEvent(java.lang.Throwable ex, java.util.Date timestamp)Adds the givenThrowableobject with the given time stamp to the audit log.- Parameters:
ex- the exception thrown by the I/O reactor.timestamp- the time stamp of the exception. Can benullin which case the current date / time will be used.
-
addExceptionEvent
protected void addExceptionEvent(java.lang.Throwable ex)
Adds the givenThrowableobject to the audit log.- Parameters:
ex- the exception thrown by the I/O reactor.
-
setExceptionHandler
public void setExceptionHandler(IOReactorExceptionHandler exceptionHandler)
Sets exception handler for this I/O reactor.- Parameters:
exceptionHandler- the exception handler.
-
processEvents
protected abstract void processEvents(int count) throws IOReactorExceptionTriggered to process I/O events registered by the mainSelector.Super-classes can implement this method to react to the event.
- Parameters:
count- event count.- Throws:
IOReactorException- in case if a non-recoverable I/O error.
-
cancelRequests
protected abstract void cancelRequests() throws IOReactorExceptionTriggered to cancel pending session requests.Super-classes can implement this method to react to the event.
- Throws:
IOReactorException- in case if a non-recoverable I/O error.
-
execute
public void execute(IOEventDispatch eventDispatch) throws java.io.InterruptedIOException, IOReactorException
Activates the main I/O reactor as well as all worker I/O reactors. The I/O main reactor will start reacting to I/O events and triggering notification methods. The worker I/O reactor in their turn will start reacting to I/O events and dispatch I/O event notifications to the givenIOEventDispatchinterface.This method will enter the infinite I/O select loop on the
Selectorinstance associated with this I/O reactor and used to manage creation of new I/O channels. Once a new I/O channel has been created the processing of I/O events on that channel will be delegated to one of the worker I/O reactors.The method will remain blocked unto the I/O reactor is shut down or the execution thread is interrupted.
- Specified by:
executein interfaceIOReactor- Parameters:
eventDispatch- the I/O event dispatch.- Throws:
java.io.InterruptedIOException- if the dispatch thread is interrupted.IOReactorException- in case if a non-recoverable I/O error.- See Also:
processEvents(int),cancelRequests()
-
doShutdown
protected void doShutdown() throws java.io.InterruptedIOExceptionActivates the shutdown sequence for this reactor. This method will cancel all pending session requests, close out all active I/O channels, make an attempt to terminate all worker I/O reactors gracefully, and finally force-terminate those I/O reactors that failed to terminate after the specified grace period.- Throws:
java.io.InterruptedIOException- if the shutdown sequence has been interrupted.
-
addChannel
protected void addChannel(ChannelEntry entry)
Assigns the given channel entry to one of the worker I/O reactors.- Parameters:
entry- the channel entry.
-
registerChannel
protected java.nio.channels.SelectionKey registerChannel(java.nio.channels.SelectableChannel channel, int ops) throws java.nio.channels.ClosedChannelExceptionRegisters the given channel with the mainSelector.- Parameters:
channel- the channel.ops- interest ops.- Returns:
- selection key.
- Throws:
java.nio.channels.ClosedChannelException- if the channel has been already closed.
-
prepareSocket
protected void prepareSocket(java.net.Socket socket) throws java.io.IOExceptionPrepares the givenSocketby resetting some of its properties.- Parameters:
socket- the socket- Throws:
java.io.IOException- in case of an I/O error.
-
awaitShutdown
protected void awaitShutdown(long timeout) throws java.lang.InterruptedExceptionBlocks for the given period of time in milliseconds awaiting the completion of the reactor shutdown. If the value oftimeoutis set to0this method blocks indefinitely.- Parameters:
timeout- the maximum wait time.- Throws:
java.lang.InterruptedException- if interrupted.
-
shutdown
public void shutdown() throws java.io.IOExceptionDescription copied from interface:IOReactorInitiates shutdown of the reactor and blocks for a default period of time waiting for the reactor to terminate all active connections, to shut down itself and to release system resources it currently holds. It is up to individual implementations to decide for how long this method can remain blocked.
-
shutdown
public void shutdown(long waitMs) throws java.io.IOExceptionDescription copied from interface:IOReactorInitiates shutdown of the reactor and blocks approximately for the given period of time in milliseconds waiting for the reactor to terminate all active connections, to shut down itself and to release system resources it currently holds.
-
-