Package org.eclipse.jetty.server
Class HttpChannelOverHttp
- java.lang.Object
-
- org.eclipse.jetty.server.HttpChannel
-
- org.eclipse.jetty.server.HttpChannelOverHttp
-
- All Implemented Interfaces:
java.lang.Runnable,HttpParser.ComplianceHandler,HttpParser.HttpHandler,HttpParser.RequestHandler,HttpOutput.Interceptor
public class HttpChannelOverHttp extends HttpChannel implements HttpParser.RequestHandler, HttpParser.ComplianceHandler
An HttpChannel customized to be transported over the HTTP/1 protocol
-
-
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
Constructors Constructor Description HttpChannelOverHttp(HttpConnection httpConnection, Connector connector, HttpConfiguration config, EndPoint endPoint, HttpTransport transport)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidabort(java.lang.Throwable failure)If a write or similar operation to this channel fails, then this method should be called.voidbadMessage(BadMessageException failure)booleancontent(java.nio.ByteBuffer content)booleancontentComplete()voidcontinue100(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()intgetHeaderCacheSize()protected voidhandleException(java.lang.Throwable x)Sends an error 500, performing a special logic to detect whether the request is suspended, to avoid concurrent writes from the application.booleanheaderComplete()booleanisExpecting100Continue()booleanisExpecting102Processing()booleanmessageComplete()protected HttpInputnewHttpInput(HttpChannelState state)voidonAsyncWaitForContent()voidonBlockWaitForContent()voidonBlockWaitForContentFailure(java.lang.Throwable failure)voidonComplianceViolation(HttpCompliance compliance, HttpComplianceSection violation, java.lang.String reason)voidparsedHeader(HttpField field)voidparsedTrailer(HttpField field)voidrecycle()booleanstartRequest(java.lang.String method, java.lang.String uri, HttpVersion version)-
Methods inherited from class org.eclipse.jetty.server.HttpChannel
addListener, addRequestLog, commit, ensureConsumeAllOrNotPersistent, execute, getByteBufferPool, getBytesWritten, getCommittedMetaData, getConnection, getConnector, getEndPoint, getHttpConfiguration, getHttpTransport, getIdleTimeout, getLocalAddress, getNextInterceptor, getRemoteAddress, getRequest, getRequestLog, getRequests, getResponse, getScheduler, getServer, getState, getTransientListeners, handle, isCommitted, isOptimizedForDirectBuffers, isPersistent, isRequestCompleted, isResponseCompleted, isSendError, newHttpOutput, onBadMessage, onCompleted, onContent, onContentComplete, onEarlyEOF, onRequest, onRequestComplete, onTrailers, removeListener, resetBuffer, run, sendResponse, sendResponse, sendResponseAndComplete, setIdleTimeout, setRequestLog, toString, unwrap, useDirectBuffers, write
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.http.HttpParser.ComplianceHandler
onComplianceViolation
-
Methods inherited from interface org.eclipse.jetty.http.HttpParser.HttpHandler
badMessage
-
-
-
-
Constructor Detail
-
HttpChannelOverHttp
public HttpChannelOverHttp(HttpConnection httpConnection, Connector connector, HttpConfiguration config, EndPoint endPoint, HttpTransport transport)
-
-
Method Detail
-
newHttpInput
protected HttpInput newHttpInput(HttpChannelState state)
- Overrides:
newHttpInputin classHttpChannel
-
recycle
public void recycle()
- Overrides:
recyclein classHttpChannel
-
isExpecting100Continue
public boolean isExpecting100Continue()
- Overrides:
isExpecting100Continuein classHttpChannel
-
isExpecting102Processing
public boolean isExpecting102Processing()
- Overrides:
isExpecting102Processingin classHttpChannel
-
startRequest
public boolean startRequest(java.lang.String method, java.lang.String uri, HttpVersion version)- Specified by:
startRequestin interfaceHttpParser.RequestHandler
-
parsedHeader
public void parsedHeader(HttpField field)
- Specified by:
parsedHeaderin interfaceHttpParser.HttpHandler
-
parsedTrailer
public void parsedTrailer(HttpField field)
- Specified by:
parsedTrailerin interfaceHttpParser.HttpHandler
-
continue100
public void continue100(int available) throws java.io.IOExceptionIf 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:
java.io.IOException- if the InputStream cannot be created
-
earlyEOF
public void earlyEOF()
- Specified by:
earlyEOFin interfaceHttpParser.HttpHandler
-
content
public boolean content(java.nio.ByteBuffer content)
- Specified by:
contentin interfaceHttpParser.HttpHandler
-
onAsyncWaitForContent
public void onAsyncWaitForContent()
- Overrides:
onAsyncWaitForContentin classHttpChannel
-
onBlockWaitForContent
public void onBlockWaitForContent()
- Overrides:
onBlockWaitForContentin classHttpChannel
-
onBlockWaitForContentFailure
public void onBlockWaitForContentFailure(java.lang.Throwable failure)
- Overrides:
onBlockWaitForContentFailurein classHttpChannel
-
badMessage
public void badMessage(BadMessageException failure)
- Specified by:
badMessagein interfaceHttpParser.HttpHandler
-
headerComplete
public boolean headerComplete()
- Specified by:
headerCompletein interfaceHttpParser.HttpHandler
-
handleException
protected void handleException(java.lang.Throwable x)
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
-
abort
public void abort(java.lang.Throwable failure)
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.
-
contentComplete
public boolean contentComplete()
- Specified by:
contentCompletein interfaceHttpParser.HttpHandler
-
messageComplete
public boolean messageComplete()
- Specified by:
messageCompletein interfaceHttpParser.HttpHandler
-
getHeaderCacheSize
public int getHeaderCacheSize()
- Specified by:
getHeaderCacheSizein interfaceHttpParser.HttpHandler
-
onComplianceViolation
public void onComplianceViolation(HttpCompliance compliance, HttpComplianceSection violation, java.lang.String reason)
- Specified by:
onComplianceViolationin interfaceHttpParser.ComplianceHandler
-
-