Interface HttpData
-
- All Superinterfaces:
io.netty.buffer.ByteBufHolder
,Comparable<InterfaceHttpData>
,InterfaceHttpData
,io.netty.util.ReferenceCounted
- All Known Subinterfaces:
Attribute
,FileUpload
- All Known Implementing Classes:
AbstractDiskHttpData
,AbstractHttpData
,AbstractMemoryHttpData
,DiskAttribute
,DiskFileUpload
,MemoryAttribute
,MemoryFileUpload
,MixedAttribute
,MixedFileUpload
public interface HttpData extends InterfaceHttpData, io.netty.buffer.ByteBufHolder
Extended interface for InterfaceHttpData
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.netty.handler.codec.http.multipart.InterfaceHttpData
InterfaceHttpData.HttpDataType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addContent(io.netty.buffer.ByteBuf buffer, boolean last)
Add the content from the ChannelBuffervoid
checkSize(long newSize)
Check if the new size is not reaching the max limit allowed.HttpData
copy()
long
definedLength()
Returns the defined length of the HttpData.void
delete()
Deletes the underlying storage for a file item, including deleting any associated temporary disk file.HttpData
duplicate()
byte[]
get()
Returns the contents of the file item as an array of bytes.
Note: this method will allocate a lot of memory, if the data is currently stored on the file system.io.netty.buffer.ByteBuf
getByteBuf()
Returns the content of the file item as a ByteBuf.
Note: this method will allocate a lot of memory, if the data is currently stored on the file system.Charset
getCharset()
Returns the Charset passed by the browser or null if not defined.io.netty.buffer.ByteBuf
getChunk(int length)
Returns a ChannelBuffer for the content from the current position with at most length read bytes, increasing the current position of the Bytes read.File
getFile()
long
getMaxSize()
Returns the maxSize for this HttpData.String
getString()
Returns the contents of the file item as a String, using the default character encoding.String
getString(Charset encoding)
Returns the contents of the file item as a String, using the specified charset.boolean
isCompleted()
boolean
isInMemory()
Provides a hint as to whether or not the file contents will be read from memory.long
length()
Returns the size in byte of the InterfaceHttpDataboolean
renameTo(File dest)
A convenience getMethod to write an uploaded item to disk.HttpData
replace(io.netty.buffer.ByteBuf content)
HttpData
retain()
HttpData
retain(int increment)
HttpData
retainedDuplicate()
void
setCharset(Charset charset)
Set the Charset passed by the browser if definedvoid
setContent(io.netty.buffer.ByteBuf buffer)
Set the content from the ChannelBuffer (erase any previous data)void
setContent(File file)
Set the content from the file (erase any previous data)void
setContent(InputStream inputStream)
Set the content from the inputStream (erase any previous data)void
setMaxSize(long maxSize)
Set the maxSize for this HttpData.HttpData
touch()
HttpData
touch(Object hint)
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface io.netty.handler.codec.http.multipart.InterfaceHttpData
getHttpDataType, getName
-
-
-
-
Method Detail
-
getMaxSize
long getMaxSize()
Returns the maxSize for this HttpData.
-
setMaxSize
void setMaxSize(long maxSize)
Set the maxSize for this HttpData. When limit will be reached, an exception will be raised. Setting it to (-1) means no limitation. By default, to be set from the HttpDataFactory.
-
checkSize
void checkSize(long newSize) throws IOException
Check if the new size is not reaching the max limit allowed. The limit is always computed in terms of bytes.- Throws:
IOException
-
setContent
void setContent(io.netty.buffer.ByteBuf buffer) throws IOException
Set the content from the ChannelBuffer (erase any previous data)ReferenceCounted.release()
ownership ofbuffer
is transferred to thisHttpData
.- Parameters:
buffer
- must be not null- Throws:
IOException
-
addContent
void addContent(io.netty.buffer.ByteBuf buffer, boolean last) throws IOException
Add the content from the ChannelBufferReferenceCounted.release()
ownership ofbuffer
is transferred to thisHttpData
.- Parameters:
buffer
- must be not null except if last is set to Falselast
- True of the buffer is the last one- Throws:
IOException
-
setContent
void setContent(File file) throws IOException
Set the content from the file (erase any previous data)- Parameters:
file
- must be not null- Throws:
IOException
-
setContent
void setContent(InputStream inputStream) throws IOException
Set the content from the inputStream (erase any previous data)- Parameters:
inputStream
- must be not null- Throws:
IOException
-
isCompleted
boolean isCompleted()
- Returns:
- True if the InterfaceHttpData is completed (all data are stored)
-
length
long length()
Returns the size in byte of the InterfaceHttpData- Returns:
- the size of the InterfaceHttpData
-
definedLength
long definedLength()
Returns the defined length of the HttpData. If no Content-Length is provided in the request, the defined length is always 0 (whatever during decoding or in final state). If Content-Length is provided in the request, this is this given defined length. This value does not change, whatever during decoding or in the final state. This method could be used for instance to know the amount of bytes transmitted for one particular HttpData, for example oneFileUpload
or any known bigAttribute
.- Returns:
- the defined length of the HttpData
-
delete
void delete()
Deletes the underlying storage for a file item, including deleting any associated temporary disk file.
-
get
byte[] get() throws IOException
Returns the contents of the file item as an array of bytes.
Note: this method will allocate a lot of memory, if the data is currently stored on the file system.- Returns:
- the contents of the file item as an array of bytes.
- Throws:
IOException
-
getByteBuf
io.netty.buffer.ByteBuf getByteBuf() throws IOException
Returns the content of the file item as a ByteBuf.
Note: this method will allocate a lot of memory, if the data is currently stored on the file system.- Returns:
- the content of the file item as a ByteBuf
- Throws:
IOException
-
getChunk
io.netty.buffer.ByteBuf getChunk(int length) throws IOException
Returns a ChannelBuffer for the content from the current position with at most length read bytes, increasing the current position of the Bytes read. Once it arrives at the end, it returns an EMPTY_BUFFER and it resets the current position to 0.- Returns:
- a ChannelBuffer for the content from the current position or an EMPTY_BUFFER if there is no more data to return
- Throws:
IOException
-
getString
String getString() throws IOException
Returns the contents of the file item as a String, using the default character encoding.- Returns:
- the contents of the file item as a String, using the default character encoding.
- Throws:
IOException
-
getString
String getString(Charset encoding) throws IOException
Returns the contents of the file item as a String, using the specified charset.- Parameters:
encoding
- the charset to use- Returns:
- the contents of the file item as a String, using the specified charset.
- Throws:
IOException
-
setCharset
void setCharset(Charset charset)
Set the Charset passed by the browser if defined- Parameters:
charset
- Charset to set - must be not null
-
getCharset
Charset getCharset()
Returns the Charset passed by the browser or null if not defined.- Returns:
- the Charset passed by the browser or null if not defined.
-
renameTo
boolean renameTo(File dest) throws IOException
A convenience getMethod to write an uploaded item to disk. If a previous one exists, it will be deleted. Once this getMethod is called, if successful, the new file will be out of the cleaner of the factory that creates the original InterfaceHttpData object.- Parameters:
dest
- destination file - must be not null- Returns:
- True if the write is successful
- Throws:
IOException
-
isInMemory
boolean isInMemory()
Provides a hint as to whether or not the file contents will be read from memory.- Returns:
- True if the file contents is in memory.
-
getFile
File getFile() throws IOException
- Returns:
- the associated File if this data is represented in a file
- Throws:
IOException
- if this data is not represented by a file
-
copy
HttpData copy()
- Specified by:
copy
in interfaceio.netty.buffer.ByteBufHolder
-
duplicate
HttpData duplicate()
- Specified by:
duplicate
in interfaceio.netty.buffer.ByteBufHolder
-
retainedDuplicate
HttpData retainedDuplicate()
- Specified by:
retainedDuplicate
in interfaceio.netty.buffer.ByteBufHolder
-
replace
HttpData replace(io.netty.buffer.ByteBuf content)
- Specified by:
replace
in interfaceio.netty.buffer.ByteBufHolder
-
retain
HttpData retain()
- Specified by:
retain
in interfaceio.netty.buffer.ByteBufHolder
- Specified by:
retain
in interfaceInterfaceHttpData
- Specified by:
retain
in interfaceio.netty.util.ReferenceCounted
-
retain
HttpData retain(int increment)
- Specified by:
retain
in interfaceio.netty.buffer.ByteBufHolder
- Specified by:
retain
in interfaceInterfaceHttpData
- Specified by:
retain
in interfaceio.netty.util.ReferenceCounted
-
touch
HttpData touch()
- Specified by:
touch
in interfaceio.netty.buffer.ByteBufHolder
- Specified by:
touch
in interfaceInterfaceHttpData
- Specified by:
touch
in interfaceio.netty.util.ReferenceCounted
-
touch
HttpData touch(Object hint)
- Specified by:
touch
in interfaceio.netty.buffer.ByteBufHolder
- Specified by:
touch
in interfaceInterfaceHttpData
- Specified by:
touch
in interfaceio.netty.util.ReferenceCounted
-
-