Interface HttpEntity
-
- All Superinterfaces:
HttpEntity
- All Known Subinterfaces:
BodyPartEntity
,HttpEntity.WithoutKnownLength
,RequestEntity
,ResponseEntity
,UniversalEntity
- All Known Implementing Classes:
HttpEntity.Chunked
,HttpEntity.CloseDelimited
,HttpEntity.Default
,HttpEntity.IndefiniteLength
,HttpEntity.Strict
public interface HttpEntity extends HttpEntity
Models the entity (aka "body" or "content") of an HTTP message.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
HttpEntity.Chunk
An intermediate entity chunk guaranteed to carry non-empty data.static class
HttpEntity.Chunk$
static class
HttpEntity.Chunked
The model for the entity of a chunked HTTP message (withTransfer-Encoding: chunked
).static class
HttpEntity.Chunked$
static class
HttpEntity.ChunkStreamPart
An element of the HttpEntity data stream.static class
HttpEntity.ChunkStreamPart$
static class
HttpEntity.CloseDelimited
The model for the entity of an HTTP response that is terminated by the server closing the connection.static class
HttpEntity.CloseDelimited$
static class
HttpEntity.Default
The model for the entity of a "regular" unchunked HTTP message with a known non-zero length.static class
HttpEntity.Default$
static class
HttpEntity.DiscardedEntity
Represents the currently being-drained HTTP Entity which triggers completion of the contained Future once the entity has been drained for the given HttpMessage completely.static class
HttpEntity.HttpEntityScalaDSLSugar
Adds Scala DSL idiomatic methods toHttpEntity
, e.g. versions of methods with an implicitMaterializer
.static class
HttpEntity.HttpEntityScalaDSLSugar$
static class
HttpEntity.IndefiniteLength
The model for the entity of a BodyPart with an indefinite length.static class
HttpEntity.IndefiniteLength$
static class
HttpEntity.LastChunk
The final chunk of a chunk stream.static class
HttpEntity.LastChunk$
static class
HttpEntity.Strict
The model for the entity of a "regular" unchunked HTTP message with known, fixed data.static class
HttpEntity.Strict$
static interface
HttpEntity.WithoutKnownLength
Supertype of CloseDelimited and IndefiniteLength.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T,U>
java.util.concurrent.CompletionStage<U>completionStageCovariant(java.util.concurrent.CompletionStage<T> in)
scala.Option<java.lang.Object>
contentLengthOption()
Some(content length) if a length is defined for this entity, None otherwise.ContentType
contentType()
TheContentType
associated with this entity.akka.stream.scaladsl.Source<akka.util.ByteString,java.lang.Object>
dataBytes()
A stream of the data of this entity.HttpMessage.DiscardedEntity
discardBytes(akka.actor.ClassicActorSystemProvider system)
Java APIHttpMessage.DiscardedEntity
discardBytes(akka.stream.Materializer mat)
Discards the entities data bytes by running thedataBytes
Source contained in thisentity
.java.util.OptionalLong
getContentLengthOption()
Java APIContentType
getContentType()
Java APIakka.stream.javadsl.Source<akka.util.ByteString,java.lang.Object>
getDataBytes()
Java APIboolean
isChunked()
Returns if this entity is a subtype of HttpEntityChunked.boolean
isCloseDelimited()
Returns if this entity is a subtype of HttpEntityCloseDelimited.boolean
isDefault()
Returns if this entity is a subtype of HttpEntityDefault.boolean
isIndefiniteLength()
Returns if this entity is a subtype of HttpEntityIndefiniteLength.boolean
isKnownEmpty()
Determines whether this entity is known to be empty.boolean
isStrict()
Returns if this entity is a subtype of HttpEntityStrict.java.util.concurrent.CompletionStage<HttpEntity.Strict>
toStrict(long timeoutMillis, long maxBytes, akka.actor.ClassicActorSystemProvider system)
Java APIjava.util.concurrent.CompletionStage<HttpEntity.Strict>
toStrict(long timeoutMillis, long maxBytes, akka.stream.Materializer materializer)
Java APIjava.util.concurrent.CompletionStage<HttpEntity.Strict>
toStrict(long timeoutMillis, akka.actor.ClassicActorSystemProvider system)
Java APIjava.util.concurrent.CompletionStage<HttpEntity.Strict>
toStrict(long timeoutMillis, akka.stream.Materializer materializer)
Java APIscala.concurrent.Future<HttpEntity.Strict>
toStrict(scala.concurrent.duration.FiniteDuration timeout, long maxBytes, akka.stream.Materializer fm)
Collects all possible parts and returns a potentially future Strict entity for easier processing.scala.concurrent.Future<HttpEntity.Strict>
toStrict(scala.concurrent.duration.FiniteDuration timeout, akka.stream.Materializer fm)
Collects all possible parts and returns a potentially future Strict entity for easier processing.UniversalEntity
transformDataBytes(long newContentLength, akka.stream.scaladsl.Flow<akka.util.ByteString,akka.util.ByteString,java.lang.Object> transformer)
Transforms this' entities data bytes with a transformer that will produce exactly the number of bytes given asnewContentLength
.HttpEntity
transformDataBytes(akka.stream.scaladsl.Flow<akka.util.ByteString,akka.util.ByteString,java.lang.Object> transformer)
Returns a copy of the given entity with the ByteString chunks of this entity transformed by the given transformer.HttpEntity
withContentType(ContentType contentType)
Java APIHttpEntity
withContentType(ContentType contentType)
Creates a copy of this HttpEntity with thecontentType
overridden with the given one.HttpEntity
withoutSizeLimit()
Lift the size limit from this entity by returning a new entity instance which skips the size verification.HttpEntity
withSizeLimit(long maxBytes)
Apply the given size limit to this entity by returning a new entity instance which automatically verifies that the data stream encapsulated by this instance produces at mostmaxBytes
data bytes.
-
-
-
Method Detail
-
completionStageCovariant
<T,U> java.util.concurrent.CompletionStage<U> completionStageCovariant(java.util.concurrent.CompletionStage<T> in)
-
isKnownEmpty
boolean isKnownEmpty()
Determines whether this entity is known to be empty.- Specified by:
isKnownEmpty
in interfaceHttpEntity
- Returns:
- (undocumented)
-
contentType
ContentType contentType()
TheContentType
associated with this entity.- Returns:
- (undocumented)
-
contentLengthOption
scala.Option<java.lang.Object> contentLengthOption()
Some(content length) if a length is defined for this entity, None otherwise. A length is only defined for Strict and Default entity types.In many cases it's dangerous to rely on the (non-)existence of a content-length. HTTP intermediaries like (transparent) proxies are allowed to change the transfer-encoding which can result in the entity being delivered as another type as expected.
- Returns:
- (undocumented)
-
dataBytes
akka.stream.scaladsl.Source<akka.util.ByteString,java.lang.Object> dataBytes()
A stream of the data of this entity.- Returns:
- (undocumented)
-
toStrict
scala.concurrent.Future<HttpEntity.Strict> toStrict(scala.concurrent.duration.FiniteDuration timeout, akka.stream.Materializer fm)
Collects all possible parts and returns a potentially future Strict entity for easier processing. The Future is failed with an TimeoutException if the stream isn't completed after the given timeout, or with a EntityStreamException when the end of the entity is not reached within the maximum number of bytes as configured inakka.http.parsing.max-to-strict-bytes
. Not that this method does not support different defaults for client- and server use: if you want that, use thetoStrict
method and pass in an explicit maximum number of bytes.- Parameters:
timeout
- (undocumented)fm
- (undocumented)- Returns:
- (undocumented)
-
toStrict
scala.concurrent.Future<HttpEntity.Strict> toStrict(scala.concurrent.duration.FiniteDuration timeout, long maxBytes, akka.stream.Materializer fm)
Collects all possible parts and returns a potentially future Strict entity for easier processing. The Future is failed with an TimeoutException if the stream isn't completed after the given timeout, or with a EntityStreamException when the end of the entity is not reached within the maximum number of bytes.- Parameters:
timeout
- (undocumented)maxBytes
- (undocumented)fm
- (undocumented)- Returns:
- (undocumented)
-
discardBytes
HttpMessage.DiscardedEntity discardBytes(akka.stream.Materializer mat)
Discards the entities data bytes by running thedataBytes
Source contained in thisentity
.Note: It is crucial that entities are either discarded, or consumed by running the underlying
Source
as otherwise the lack of consuming of the data will trigger back-pressure to the underlying TCP connection (as designed), however possibly leading to an idle-timeout that will close the connection, instead of just having ignored the data.Warning: It is not allowed to discard and/or consume the
entity.dataBytes
more than once as the stream is directly attached to the "live" incoming data source from the underlying TCP connection. Allowing it to be consumable twice would require buffering the incoming data, thus defeating the purpose of its streaming nature. If the dataBytes source is materialized a second time, it will fail with an "stream can cannot be materialized more than once" exception.When called on
Strict
entities or sources whose values can be buffered in memory, the above warnings can be ignored. Repeated materialization is not necessary in this case, avoiding the mentioned exceptions due to the data being held in memory.In future versions, more automatic ways to warn or resolve these situations may be introduced, see issue #18716.
- Specified by:
discardBytes
in interfaceHttpEntity
- Parameters:
mat
- (undocumented)- Returns:
- (undocumented)
-
discardBytes
HttpMessage.DiscardedEntity discardBytes(akka.actor.ClassicActorSystemProvider system)
Java API- Specified by:
discardBytes
in interfaceHttpEntity
-
transformDataBytes
HttpEntity transformDataBytes(akka.stream.scaladsl.Flow<akka.util.ByteString,akka.util.ByteString,java.lang.Object> transformer)
Returns a copy of the given entity with the ByteString chunks of this entity transformed by the given transformer. For aChunked
entity, the chunks will be transformed one by one keeping the chunk metadata (but may introduce an extra chunk before theLastChunk
iftransformer.onTermination
returns additional data).This method may only throw an exception if the
transformer
function throws an exception while creating the transformer. Any other errors are reported through the new entity data stream.- Parameters:
transformer
- (undocumented)- Returns:
- (undocumented)
-
transformDataBytes
UniversalEntity transformDataBytes(long newContentLength, akka.stream.scaladsl.Flow<akka.util.ByteString,akka.util.ByteString,java.lang.Object> transformer)
Transforms this' entities data bytes with a transformer that will produce exactly the number of bytes given asnewContentLength
.- Parameters:
newContentLength
- (undocumented)transformer
- (undocumented)- Returns:
- (undocumented)
-
withContentType
HttpEntity withContentType(ContentType contentType)
Creates a copy of this HttpEntity with thecontentType
overridden with the given one.- Parameters:
contentType
- (undocumented)- Returns:
- (undocumented)
-
withSizeLimit
HttpEntity withSizeLimit(long maxBytes)
Apply the given size limit to this entity by returning a new entity instance which automatically verifies that the data stream encapsulated by this instance produces at mostmaxBytes
data bytes. In case this verification fails the respective stream will be terminated with anEntityStreamException
either directly at materialization time (if the Content-Length is known) or whenever more data bytes than allowed have been read.When called on
Strict
entities the method will return the entity itself if the length is within the bound, otherwise aDefault
entity with a single element data stream. This allows for potential refinement of the entity size limit at a later point (before materialization of the data stream).By default all message entities produced by the HTTP layer automatically carry the limit that is defined in the application's
max-content-length
config setting. If the entity is transformed in a way that changes the Content-Length and then another limit is applied then this new limit will be evaluated against the new Content-Length. If the entity is transformed in a way that changes the Content-Length and no new limit is applied then the previous limit will be applied against the previous Content-Length.- Specified by:
withSizeLimit
in interfaceHttpEntity
- Parameters:
maxBytes
- (undocumented)- Returns:
- (undocumented)
-
withoutSizeLimit
HttpEntity withoutSizeLimit()
Lift the size limit from this entity by returning a new entity instance which skips the size verification.By default all message entities produced by the HTTP layer automatically carry the limit that is defined in the application's
max-content-length
config setting. It is recommended to always keep an upper limit on accepted entities to avoid potential attackers flooding you with too large requests/responses, so use this method with caution.See
withSizeLimit(long)
for more details.- Specified by:
withoutSizeLimit
in interfaceHttpEntity
- Returns:
- (undocumented)
-
getContentType
ContentType getContentType()
Java API- Specified by:
getContentType
in interfaceHttpEntity
-
getDataBytes
akka.stream.javadsl.Source<akka.util.ByteString,java.lang.Object> getDataBytes()
Java API- Specified by:
getDataBytes
in interfaceHttpEntity
-
getContentLengthOption
java.util.OptionalLong getContentLengthOption()
Java API- Specified by:
getContentLengthOption
in interfaceHttpEntity
-
isCloseDelimited
boolean isCloseDelimited()
Description copied from interface:HttpEntity
Returns if this entity is a subtype of HttpEntityCloseDelimited.- Specified by:
isCloseDelimited
in interfaceHttpEntity
-
isIndefiniteLength
boolean isIndefiniteLength()
Description copied from interface:HttpEntity
Returns if this entity is a subtype of HttpEntityIndefiniteLength.- Specified by:
isIndefiniteLength
in interfaceHttpEntity
-
isStrict
boolean isStrict()
Description copied from interface:HttpEntity
Returns if this entity is a subtype of HttpEntityStrict.- Specified by:
isStrict
in interfaceHttpEntity
-
isDefault
boolean isDefault()
Description copied from interface:HttpEntity
Returns if this entity is a subtype of HttpEntityDefault.- Specified by:
isDefault
in interfaceHttpEntity
-
isChunked
boolean isChunked()
Description copied from interface:HttpEntity
Returns if this entity is a subtype of HttpEntityChunked.- Specified by:
isChunked
in interfaceHttpEntity
-
toStrict
java.util.concurrent.CompletionStage<HttpEntity.Strict> toStrict(long timeoutMillis, akka.stream.Materializer materializer)
Java API- Specified by:
toStrict
in interfaceHttpEntity
-
toStrict
java.util.concurrent.CompletionStage<HttpEntity.Strict> toStrict(long timeoutMillis, long maxBytes, akka.stream.Materializer materializer)
Java API- Specified by:
toStrict
in interfaceHttpEntity
-
toStrict
java.util.concurrent.CompletionStage<HttpEntity.Strict> toStrict(long timeoutMillis, akka.actor.ClassicActorSystemProvider system)
Java API- Specified by:
toStrict
in interfaceHttpEntity
-
toStrict
java.util.concurrent.CompletionStage<HttpEntity.Strict> toStrict(long timeoutMillis, long maxBytes, akka.actor.ClassicActorSystemProvider system)
Java API- Specified by:
toStrict
in interfaceHttpEntity
-
withContentType
HttpEntity withContentType(ContentType contentType)
Java API- Specified by:
withContentType
in interfaceHttpEntity
-
-