Class HttpChannelOverHttp
- All Implemented Interfaces:
Runnable,ComplianceViolation.Listener,HttpParser.HttpHandler,HttpParser.RequestHandler,HttpOutput.Interceptor
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jetty.server.HttpChannel
HttpChannel.Listener, HttpChannel.TransientListeners -
Field Summary
Fields inherited from class org.eclipse.jetty.server.HttpChannel
NOOP_LISTENER -
Constructor Summary
ConstructorsConstructorDescriptionHttpChannelOverHttp(HttpConnection httpConnection, Connector connector, HttpConfiguration config, EndPoint endPoint, HttpTransport transport) -
Method Summary
Modifier and TypeMethodDescriptionvoidIf a write or similar operation to this channel fails, then this method should be called.voidbadMessage(BadMessageException failure) Called to signal that a bad HTTP message has been received.protected booleanChecks whether the processing of the request resulted in an upgrade, and if so performs upgrade preparation steps before the upgrade response is sent back to the client.booleancontent(ByteBuffer buffer) booleanvoidcontinue100(int available) If the associated response has the Expect header set to 100 Continue, then accessing the input stream indicates that the handler/servlet is ready for the request body and thus a 100 Continue response is sent.voidearlyEOF()Called to signal that an EOF was received unexpectedly during the parsing of an HTTP messageprotected booleaneof()Mark the channel's input as EOF.booleanfailAllContent(Throwable failure) Fail all content that is currently stored within the channel.booleanFail the channel's input.protected voidSends an error 500, performing a special logic to detect whether the request is suspended, to avoid concurrent writes from the application.booleanbooleanbooleanbooleanbooleanbooleanbooleanNotify the channel that content is needed.voidonComplianceViolation(ComplianceViolation.Mode mode, ComplianceViolation violation, String details) voidparsedHeader(HttpField field) This is the method called by parser when an HTTP Header name and value is foundvoidparsedTrailer(HttpField field) This is the method called by parser when an HTTP Trailer name and value is foundProduce aHttpInput.Contentobject with data currently stored within the channel.voidrecycle()voidvoidstartRequest(String method, String uri, HttpVersion version) This is the method called by parser when the HTTP request line is parsedMethods inherited from class org.eclipse.jetty.server.HttpChannel
addListener, addRequestLog, commit, ensureConsumeAllOrNotPersistent, execute, formatAddrOrHost, getByteBufferPool, getBytesWritten, getCommittedMetaData, getConnection, getConnector, getEndPoint, getHttpConfiguration, getHttpTransport, getIdleTimeout, getLocalAddress, getLocalName, getLocalPort, getNextInterceptor, getRemoteAddress, getRequest, getRequestLog, getRequests, getResponse, getScheduler, getServer, getServerAuthority, getState, getTransientListeners, handle, isCommitted, isPersistent, isRequestCompleted, isResponseCompleted, isSendError, isUseInputDirectByteBuffers, newHttpOutput, onBadMessage, onCompleted, onContent, onContentComplete, onRequest, onRequestComplete, onTrailers, removeListener, resetBuffer, run, sendErrorOrAbort, sendResponse, sendResponse, sendResponseAndComplete, setIdleTimeout, setRequestLog, toString, unwrap, write
-
Constructor Details
-
HttpChannelOverHttp
public HttpChannelOverHttp(HttpConnection httpConnection, Connector connector, HttpConfiguration config, EndPoint endPoint, HttpTransport transport)
-
-
Method Details
-
abort
Description copied from class:HttpChannelIf a write or similar operation to this channel fails, then this method should be called.The standard implementation calls
HttpTransport.abort(Throwable).- Overrides:
abortin classHttpChannel- Parameters:
failure- the failure that caused the abort.
-
needContent
public boolean needContent()Description copied from class:HttpChannelNotify the channel that content is needed. If some content is immediately available, true is returned andHttpChannel.produceContent()has to be called and will return a non-null object. If no content is immediately available, an attempt to produce content must be made; if new content has been produced, true is returned; otherwiseHttpInput.onContentProducible()is called once some content arrives andHttpChannel.produceContent()can be called without returningnull. If a failure happens, thenHttpInput.onContentProducible()will be called and an error content will return the error on the next call toHttpChannel.produceContent().- Specified by:
needContentin classHttpChannel- Returns:
- true if content is immediately available.
-
produceContent
Description copied from class:HttpChannelProduce aHttpInput.Contentobject with data currently stored within the channel. The produced content can be special (meaning callingHttpInput.Content.isSpecial()returns true) if the channel reached a special state, like EOF or an error. Once a special content has been returned, all subsequent calls to this method will always return a special content of the same kind andHttpChannel.needContent()will always return true. The returned content is "raw", i.e.: not decoded.- Specified by:
produceContentin classHttpChannel- Returns:
- a
HttpInput.Contentobject if one is immediately available without blocking, null otherwise.
-
failAllContent
Description copied from class:HttpChannelFail all content that is currently stored within the channel.- Specified by:
failAllContentin classHttpChannel- Parameters:
failure- the failure to fail the content with.- Returns:
- true if EOF was reached while failing all content, false otherwise.
-
badMessage
Description copied from interface:HttpParser.HttpHandlerCalled to signal that a bad HTTP message has been received.- Specified by:
badMessagein interfaceHttpParser.HttpHandler- Parameters:
failure- the failure with the bad message information
-
content
- Specified by:
contentin interfaceHttpParser.HttpHandler
-
contentComplete
public boolean contentComplete()- Specified by:
contentCompletein interfaceHttpParser.HttpHandler
-
continue100
If the associated response has the Expect header set to 100 Continue, then accessing the input stream indicates that the handler/servlet is ready for the request body and thus a 100 Continue response is sent.- Overrides:
continue100in classHttpChannel- Parameters:
available- estimate of the number of bytes that are available- Throws:
IOException- if the InputStream cannot be created
-
earlyEOF
public void earlyEOF()Description copied from interface:HttpParser.HttpHandlerCalled to signal that an EOF was received unexpectedly during the parsing of an HTTP message- Specified by:
earlyEOFin interfaceHttpParser.HttpHandler
-
eof
protected boolean eof()Description copied from class:HttpChannelMark the channel's input as EOF.- Specified by:
eofin classHttpChannel- Returns:
- true if the channel needs to be rescheduled.
-
failed
Description copied from class:HttpChannelFail the channel's input.- Specified by:
failedin classHttpChannel- Parameters:
x- the failure.- Returns:
- true if the channel needs to be rescheduled.
-
getTunnellingEndPoint
- Overrides:
getTunnellingEndPointin classHttpChannel
-
headerComplete
public boolean headerComplete()- Specified by:
headerCompletein interfaceHttpParser.HttpHandler
-
isExpecting100Continue
public boolean isExpecting100Continue()- Overrides:
isExpecting100Continuein classHttpChannel
-
isExpecting102Processing
public boolean isExpecting102Processing()- Overrides:
isExpecting102Processingin classHttpChannel
-
isTunnellingSupported
public boolean isTunnellingSupported()- Overrides:
isTunnellingSupportedin classHttpChannel
-
isUseOutputDirectByteBuffers
public boolean isUseOutputDirectByteBuffers()- Overrides:
isUseOutputDirectByteBuffersin classHttpChannel
-
messageComplete
public boolean messageComplete()- Specified by:
messageCompletein interfaceHttpParser.HttpHandler
-
onComplianceViolation
public void onComplianceViolation(ComplianceViolation.Mode mode, ComplianceViolation violation, String details) - Specified by:
onComplianceViolationin interfaceComplianceViolation.Listener
-
parsedHeader
Description copied from interface:HttpParser.HttpHandlerThis is the method called by parser when an HTTP Header name and value is found- Specified by:
parsedHeaderin interfaceHttpParser.HttpHandler- Parameters:
field- The field parsed
-
parsedTrailer
Description copied from interface:HttpParser.HttpHandlerThis is the method called by parser when an HTTP Trailer name and value is found- Specified by:
parsedTrailerin interfaceHttpParser.HttpHandler- Parameters:
field- The field parsed
-
recycle
public void recycle()- Overrides:
recyclein classHttpChannel
-
servletUpgrade
public void servletUpgrade() -
startRequest
Description copied from interface:HttpParser.RequestHandlerThis is the method called by parser when the HTTP request line is parsed- Specified by:
startRequestin interfaceHttpParser.RequestHandler- Parameters:
method- The methoduri- The raw bytes of the URI. These are copied into a ByteBuffer that will not be changed until this parser is reset and reused.version- the http version in use
-
checkAndPrepareUpgrade
protected boolean checkAndPrepareUpgrade()Description copied from class:HttpChannelChecks whether the processing of the request resulted in an upgrade, and if so performs upgrade preparation steps before the upgrade response is sent back to the client.
This avoids a race where the server is unprepared if the client sends data immediately after having received the upgrade response.
- Overrides:
checkAndPrepareUpgradein classHttpChannel- Returns:
- true if the channel is not complete and more processing is required, typically because sendError has been called.
-
handleException
Description copied from class:HttpChannelSends an error 500, performing a special logic to detect whether the request is suspended, to avoid concurrent writes from the application.
It may happen that the application suspends, and then throws an exception, while an application spawned thread writes the response content; in such case, we attempt to commit the error directly bypassing the
ErrorHandlermechanisms and the response OutputStream.- Overrides:
handleExceptionin classHttpChannel- Parameters:
x- the Throwable that caused the problem
-