Package org.apache.coyote.ajp
Class AjpProcessor
- java.lang.Object
-
- org.apache.coyote.AbstractProcessorLight
-
- org.apache.coyote.AbstractProcessor
-
- org.apache.coyote.ajp.AjpProcessor
-
- All Implemented Interfaces:
ActionHook,Processor
public class AjpProcessor extends AbstractProcessor
AJP Processor implementation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classAjpProcessor.SocketInputBufferThis class is an input buffer which will read its data from an input stream.protected classAjpProcessor.SocketOutputBufferThis class is an output buffer which will write data to an output stream.
-
Field Summary
-
Fields inherited from class org.apache.coyote.AbstractProcessor
adapter, asyncStateMachine, request, response, socketWrapper, sslSupport, userDataHelper
-
-
Constructor Summary
Constructors Constructor Description AjpProcessor(AbstractAjpProtocol<?> protocol, Adapter adapter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidack(ContinueResponseTiming continueResponseTiming)Process acknowledgment of the request.protected intavailable(boolean doRead)Queries if bytes are available in buffers.protected voiddisableSwallowRequest()Swallowing bytes is required for pipelining requests, so this allows to avoid doing extra operations in case an error occurs and the connection is to be closed instead.protected AbstractEndpoint.Handler.SocketStatedispatchEndRequest()Perform any necessary clean-up processing if the dispatch resulted in the completion of processing for the current request.protected voiddispatchNonBlockingRead()Perform any necessary processing for a non-blocking read before dispatching to the adapter.protected voidearlyHints()protected voidfinishResponse()Finish the current response.protected voidflush()Callback to write data from the buffer.protected booleanflushBufferedWrite()Flush any pending writes.protected LoggetLog()protected booleangetPopulateRequestAttributesFromSocket()Processors that populate request attributes directly (e.g.protected booleanisReadyForWrite()protected booleanisRequestBodyFullyRead()protected booleanisTrailerFieldsReady()voidpause()Informs the processor that the underlying I/O layer has stopped accepting new connections.protected voidpopulateHost()Called when a host header is not present in the request (e.g.protected voidpopulatePort()Called when a host header is not present or is empty in the request (e.g.protected voidpopulateRequestAttributeRemoteHost()Populate the remote host request attribute.protected voidpopulateSslRequestAttributes()Populate the TLS related request attributes from theSSLSupportinstance associated with this processor.protected voidprepareResponse()When committing the response, we have to validate the set of headers, as well as setup the response filters.voidrecycle()Recycle the processor, ready for the next request which may be on the same connection or a different connection.protected booleanrefillReadBuffer(boolean block)Get more request body data from the web server and store it in the internal buffer.protected voidregisterReadInterest()When using non blocking IO, register to get a callback when polling determines that bytes are available for reading.AbstractEndpoint.Handler.SocketStateservice(SocketWrapperBase<?> socket)Service a 'standard' HTTP request.protected voidsetRequestBody(ByteChunk body)Set the specified byte chunk as the request body that will be read.protected voidsetSwallowResponse()The response is finished and no additional bytes need to be sent to the client.-
Methods inherited from class org.apache.coyote.AbstractProcessor
ack, action, asyncPostProcess, checkAsyncTimeoutGeneration, dispatch, doHttpUpgrade, doPush, execute, executeDispatches, getAdapter, getAsyncTimeout, getConnectionID, getErrorState, getLeftoverInput, getRequest, getSocketWrapper, getStreamID, getUpgradeToken, isAsync, isPushSupported, isReadyForRead, isTrailerFieldsSupported, isUpgrade, logAccess, parseHost, processSocketEvent, setAsyncTimeout, setErrorState, setSocketWrapper, setSslSupport, sslReHandShake, timeoutAsync
-
Methods inherited from class org.apache.coyote.AbstractProcessorLight
addDispatch, clearDispatches, getIteratorAndClearDispatches, process
-
-
-
-
Constructor Detail
-
AjpProcessor
public AjpProcessor(AbstractAjpProtocol<?> protocol, Adapter adapter)
-
-
Method Detail
-
flushBufferedWrite
protected boolean flushBufferedWrite() throws java.io.IOExceptionDescription copied from class:AbstractProcessorFlush any pending writes. Used during non-blocking writes to flush any remaining data from a previous incomplete write.- Specified by:
flushBufferedWritein classAbstractProcessor- Returns:
trueif data remains to be flushed at the end of method- Throws:
java.io.IOException- If an I/O error occurs while attempting to flush the data
-
dispatchNonBlockingRead
protected void dispatchNonBlockingRead()
Description copied from class:AbstractProcessorPerform any necessary processing for a non-blocking read before dispatching to the adapter.- Overrides:
dispatchNonBlockingReadin classAbstractProcessor
-
dispatchEndRequest
protected AbstractEndpoint.Handler.SocketState dispatchEndRequest()
Description copied from class:AbstractProcessorPerform any necessary clean-up processing if the dispatch resulted in the completion of processing for the current request.- Specified by:
dispatchEndRequestin classAbstractProcessor- Returns:
- The state to return for the socket once the clean-up for the current request has completed
-
service
public AbstractEndpoint.Handler.SocketState service(SocketWrapperBase<?> socket) throws java.io.IOException
Description copied from class:AbstractProcessorLightService a 'standard' HTTP request. This method is called for both new requests and for requests that have partially read the HTTP request line or HTTP headers. Once the headers have been fully read this method is not called again until there is a new HTTP request to process. Note that the request type may change during processing which may result in one or more calls toAbstractProcessorLight.dispatch(SocketEvent). Requests may be pipe-lined.- Specified by:
servicein classAbstractProcessorLight- Parameters:
socket- The connection to process- Returns:
- The state the caller should put the socket in when this method returns
- Throws:
java.io.IOException- If an I/O error occurs during the processing of the request
-
recycle
public void recycle()
Description copied from interface:ProcessorRecycle the processor, ready for the next request which may be on the same connection or a different connection.- Specified by:
recyclein interfaceProcessor- Overrides:
recyclein classAbstractProcessor
-
pause
public void pause()
Description copied from interface:ProcessorInforms the processor that the underlying I/O layer has stopped accepting new connections. This is primarily intended to enable processors that use multiplexed connections to prevent further 'streams' being added to an existing multiplexed connection.
-
refillReadBuffer
protected boolean refillReadBuffer(boolean block) throws java.io.IOExceptionGet more request body data from the web server and store it in the internal buffer.- Parameters:
block-trueif this is blocking IO- Returns:
trueif there is more data,falseif not.- Throws:
java.io.IOException- An IO error occurred
-
populateHost
protected void populateHost()
Called when a host header is not present in the request (e.g. HTTP/1.0). It populates the server name with appropriate information. The source is expected to vary by protocol.The default implementation is a NO-OP.
This implementation populates the server name from the local name provided by the AJP message.
- Overrides:
populateHostin classAbstractProcessor
-
populatePort
protected void populatePort()
Called when a host header is not present or is empty in the request (e.g. HTTP/1.0). It populates the server port with appropriate information. The source is expected to vary by protocol.The default implementation is a NO-OP.
This implementation populates the server port from the local port provided by the AJP message.
- Overrides:
populatePortin classAbstractProcessor
-
prepareResponse
protected final void prepareResponse() throws java.io.IOExceptionWhen committing the response, we have to validate the set of headers, as well as setup the response filters.- Specified by:
prepareResponsein classAbstractProcessor- Throws:
java.io.IOException- IO exception during commit
-
flush
protected final void flush() throws java.io.IOExceptionDescription copied from class:AbstractProcessorCallback to write data from the buffer.- Specified by:
flushin classAbstractProcessor- Throws:
java.io.IOException- IO exception during the write
-
finishResponse
protected final void finishResponse() throws java.io.IOExceptionDescription copied from class:AbstractProcessorFinish the current response.- Specified by:
finishResponsein classAbstractProcessor- Throws:
java.io.IOException- IO exception during the write
-
ack
protected final void ack(ContinueResponseTiming continueResponseTiming)
Description copied from class:AbstractProcessorProcess acknowledgment of the request.- Specified by:
ackin classAbstractProcessor- Parameters:
continueResponseTiming- specifies when an acknowledgment should be sent
-
earlyHints
protected void earlyHints() throws java.io.IOException- Specified by:
earlyHintsin classAbstractProcessor- Throws:
java.io.IOException
-
available
protected final int available(boolean doRead)
Description copied from class:AbstractProcessorQueries if bytes are available in buffers.- Specified by:
availablein classAbstractProcessor- Parameters:
doRead-trueto perform a read when no bytes are availble- Returns:
- the amount of bytes that are known to be available
-
setRequestBody
protected final void setRequestBody(ByteChunk body)
Description copied from class:AbstractProcessorSet the specified byte chunk as the request body that will be read. This allows saving and processing requests.- Specified by:
setRequestBodyin classAbstractProcessor- Parameters:
body- the byte chunk containing all the request bytes
-
setSwallowResponse
protected final void setSwallowResponse()
Description copied from class:AbstractProcessorThe response is finished and no additional bytes need to be sent to the client.- Specified by:
setSwallowResponsein classAbstractProcessor
-
disableSwallowRequest
protected final void disableSwallowRequest()
Description copied from class:AbstractProcessorSwallowing bytes is required for pipelining requests, so this allows to avoid doing extra operations in case an error occurs and the connection is to be closed instead.- Specified by:
disableSwallowRequestin classAbstractProcessor
-
getPopulateRequestAttributesFromSocket
protected final boolean getPopulateRequestAttributesFromSocket()
Description copied from class:AbstractProcessorProcessors that populate request attributes directly (e.g. AJP) should over-ride this method and returnfalse.- Overrides:
getPopulateRequestAttributesFromSocketin classAbstractProcessor- Returns:
trueif the SocketWrapper should be used to populate the request attributes, otherwisefalse.
-
populateRequestAttributeRemoteHost
protected final void populateRequestAttributeRemoteHost()
Description copied from class:AbstractProcessorPopulate the remote host request attribute. Processors (e.g. AJP) that populate this from an alternative source should override this method.- Overrides:
populateRequestAttributeRemoteHostin classAbstractProcessor
-
populateSslRequestAttributes
protected final void populateSslRequestAttributes()
Description copied from class:AbstractProcessorPopulate the TLS related request attributes from theSSLSupportinstance associated with this processor. Protocols that populate TLS attributes from a different source (e.g. AJP) should override this method.- Overrides:
populateSslRequestAttributesin classAbstractProcessor
-
isRequestBodyFullyRead
protected final boolean isRequestBodyFullyRead()
- Specified by:
isRequestBodyFullyReadin classAbstractProcessor- Returns:
trueif it is known that the request body has been fully read
-
registerReadInterest
protected final void registerReadInterest()
Description copied from class:AbstractProcessorWhen using non blocking IO, register to get a callback when polling determines that bytes are available for reading.- Specified by:
registerReadInterestin classAbstractProcessor
-
isReadyForWrite
protected final boolean isReadyForWrite()
- Specified by:
isReadyForWritein classAbstractProcessor- Returns:
trueif bytes can be written without blocking
-
isTrailerFieldsReady
protected boolean isTrailerFieldsReady()
- Specified by:
isTrailerFieldsReadyin classAbstractProcessor
-
getLog
protected Log getLog()
- Specified by:
getLogin classAbstractProcessorLight- Returns:
- the logger associated with this processor type
-
-