Package org.eclipse.jetty.server
Class HttpInput
java.lang.Object
java.io.InputStream
javax.servlet.ServletInputStream
org.eclipse.jetty.server.HttpInput
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Runnable
- Direct Known Subclasses:
HttpInputOverHTTP
@Deprecated(since="2021-05-27")
public class HttpInput
extends ServletInputStream
implements Runnable
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
HttpInput
provides an implementation of ServletInputStream
for HttpChannel
.
Content may arrive in patterns such as [content(), content(), messageComplete()] so that this class maintains two states: the content state that tells whether there is content to consume and the EOF state that tells whether an EOF has arrived. Only once the content has been consumed the content state is moved to the EOF state.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static class
Deprecated.static class
Deprecated.static interface
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static class
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
addContent
(HttpInput.Content content) Deprecated.Adds some content to this input stream.void
addInterceptor
(HttpInput.Interceptor interceptor) Deprecated.Set theHttpInput.Interceptor
, using aHttpInput.ChainedInterceptor
if anHttpInput.Interceptor
is already set.void
Deprecated.Called by channel when asynchronous IO needs to produce more contentint
Deprecated.boolean
Deprecated.Consume all available content without blocking.boolean
earlyEOF()
Deprecated.This method should be called to signal that an EOF has been detected before all the expected content arrived.boolean
eof()
Deprecated.This method should be called to signal that all the expected content arrived.boolean
Deprecated.long
Deprecated.long
Deprecated.Deprecated.boolean
Deprecated.boolean
isAsync()
Deprecated.boolean
isError()
Deprecated.boolean
Deprecated.Has the end of this InputStream been reached?boolean
isReady()
Deprecated.Can data be read from this InputStream without blocking? Returns If this method is called and returns false, the container will invokeReadListener.onDataAvailable()
when data is available.boolean
Deprecated.int
read()
Deprecated.int
read
(byte[] b, int off, int len) Deprecated.void
recycle()
Deprecated.void
run()
Deprecated.void
setInterceptor
(HttpInput.Interceptor interceptor) Deprecated.Set the interceptor.void
setReadListener
(ReadListener readListener) Deprecated.Sets theReadListener
for thisServletInputStream
and thereby switches to non-blocking IO.toString()
Deprecated.void
unblock()
Deprecated.Methods inherited from class javax.servlet.ServletInputStream
readLine
Methods inherited from class java.io.InputStream
close, mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, skipNBytes, transferTo
-
Constructor Details
-
HttpInput
Deprecated.
-
-
Method Details
-
recycle
public void recycle()Deprecated. -
getInterceptor
Deprecated.- Returns:
- The current Interceptor, or null if none set
-
setInterceptor
Deprecated.Set the interceptor.- Parameters:
interceptor
- The interceptor to use.
-
addInterceptor
Deprecated.Set theHttpInput.Interceptor
, using aHttpInput.ChainedInterceptor
if anHttpInput.Interceptor
is already set.- Parameters:
interceptor
- the nextHttpInput.Interceptor
in a chain
-
available
public int available()Deprecated.- Overrides:
available
in classInputStream
-
read
Deprecated.- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
Deprecated.- Overrides:
read
in classInputStream
- Throws:
IOException
-
asyncReadProduce
Deprecated.Called by channel when asynchronous IO needs to produce more content- Throws:
IOException
- if unable to produce content
-
addContent
Deprecated.Adds some content to this input stream.- Parameters:
content
- the content to add- Returns:
- true if content channel woken for read
-
hasContent
public boolean hasContent()Deprecated. -
unblock
public void unblock()Deprecated. -
getContentConsumed
public long getContentConsumed()Deprecated. -
getContentReceived
public long getContentReceived()Deprecated. -
earlyEOF
public boolean earlyEOF()Deprecated.This method should be called to signal that an EOF has been detected before all the expected content arrived.Typically this will result in an EOFException being thrown from a subsequent read rather than a -1 return.
- Returns:
- true if content channel woken for read
-
eof
public boolean eof()Deprecated.This method should be called to signal that all the expected content arrived.- Returns:
- true if content channel woken for read
-
consumeAll
public boolean consumeAll()Deprecated.Consume all available content without blocking. Raw content is counted in thegetContentReceived()
statistics, but is not intercepted nor counted in thegetContentConsumed()
statistics- Returns:
- True if EOF was reached, false otherwise.
-
isError
public boolean isError()Deprecated. -
isAsync
public boolean isAsync()Deprecated. -
isFinished
public boolean isFinished()Deprecated.Description copied from class:ServletInputStream
Has the end of this InputStream been reached?- Specified by:
isFinished
in classServletInputStream
- Returns:
true
if all the data has been read from the stream, elsefalse
-
isReady
public boolean isReady()Deprecated.Description copied from class:ServletInputStream
Can data be read from this InputStream without blocking? Returns If this method is called and returns false, the container will invokeReadListener.onDataAvailable()
when data is available.- Specified by:
isReady
in classServletInputStream
- Returns:
true
if data can be read without blocking, elsefalse
-
setReadListener
Deprecated.Description copied from class:ServletInputStream
Sets theReadListener
for thisServletInputStream
and thereby switches to non-blocking IO. It is only valid to switch to non-blocking IO within async processing or HTTP upgrade processing.- Specified by:
setReadListener
in classServletInputStream
- Parameters:
readListener
- The non-blocking IO read listener
-
onIdleTimeout
Deprecated. -
failed
Deprecated. -
run
public void run()Deprecated. -
toString
Deprecated.
-