| java.lang.Object org.apache.commons.fileupload.MultipartStream
MultipartStream | public class MultipartStream (Code) | | Low level API for processing file uploads.
This class can be used to process data streams conforming to MIME
'multipart' format as defined in
RFC 1867. Arbitrarily
large amounts of data in the stream can be processed under constant
memory usage.
The format of the stream is defined in the following way:
multipart-body := preamble 1*encapsulation close-delimiter epilogue
encapsulation := delimiter body CRLF
delimiter := "--" boundary CRLF
close-delimiter := "--" boudary "--"
preamble := <ignore>
epilogue := <ignore>
body := header-part CRLF body-part
header-part := 1*header CRLF
header := header-name ":" header-value
header-name := <printable ascii characters except ":">
header-value := <any ascii characters except CR & LF>
body-data := <arbitrary data>
Note that body-data can contain another mulipart entity. There
is limited support for single pass processing of such nested
streams. The nested stream is required to have a
boundary token of the same length as the parent stream (see
MultipartStream.setBoundary(byte[]) ).
Here is an example of usage of this class.
try {
MultipartStream multipartStream = new MultipartStream(input,
boundary);
boolean nextPart = multipartStream.skipPreamble();
OutputStream output;
while(nextPart) {
header = chunks.readHeader();
// process headers
// create some output stream
multipartStream.readBodyPart(output);
nextPart = multipartStream.readBoundary();
}
} catch(MultipartStream.MalformedStreamException e) {
// the stream failed to follow required syntax
} catch(IOException) {
// a read or write error occurred
}
author: Rafal Krzewski author: Martin Cooper author: Sean C. Sullivan version: $Id: MultipartStream.java 502350 2007-02-01 20:42:48Z jochen $ |
Inner Class :static class ProgressNotifier | |
Inner Class :public static class MalformedStreamException extends IOException | |
Inner Class :public static class IllegalBoundaryException extends IOException | |
Field Summary | |
final protected static byte[] | BOUNDARY_PREFIX A byte sequence that precedes a boundary (CRLF-- ). | final public static byte | CR The Carriage Return ASCII character value. | final public static byte | DASH The dash (-) ASCII character value. | final protected static int | DEFAULT_BUFSIZE The default length of the buffer used for processing a request. | final protected static byte[] | FIELD_SEPARATOR A byte sequence that that follows a delimiter that will be
followed by an encapsulation (CRLF ). | final public static int | HEADER_PART_SIZE_MAX The maximum length of header-part that will be
processed (10 kilobytes = 10240 bytes.). | final protected static byte[] | HEADER_SEPARATOR A byte sequence that marks the end of header-part
(CRLFCRLF ). | final public static byte | LF The Line Feed ASCII character value. | final protected static byte[] | STREAM_TERMINATOR A byte sequence that that follows a delimiter of the last
encapsulation in the stream (-- ). |
Constructor Summary | |
public | MultipartStream() Creates a new instance. | public | MultipartStream(InputStream input, byte[] boundary, int bufSize) Constructs a MultipartStream with a custom size buffer
and no progress notifier.
Note that the buffer must be at least big enough to contain the
boundary string, plus 4 characters for CR/LF and double dash, plus at
least one byte of data. | | MultipartStream(InputStream input, byte[] boundary, int bufSize, ProgressNotifier pNotifier) Constructs a MultipartStream with a custom size buffer.
Note that the buffer must be at least big enough to contain the
boundary string, plus 4 characters for CR/LF and double dash, plus at
least one byte of data. | | MultipartStream(InputStream input, byte[] boundary, ProgressNotifier pNotifier) Constructs a MultipartStream with a default size buffer. | public | MultipartStream(InputStream input, byte[] boundary) Constructs a MultipartStream with a default size buffer. |
Method Summary | |
public static boolean | arrayequals(byte[] a, byte[] b, int count) Compares count first bytes in the arrays
a and b .
Parameters: a - The first array to compare. Parameters: b - The second array to compare. Parameters: count - How many bytes should be compared. | public int | discardBodyData() Reads body-data from the current
encapsulation and discards it. | protected int | findByte(byte value, int pos) Searches for a byte of specified value in the buffer ,
starting at the specified position .
Parameters: value - The value to find. Parameters: pos - The starting position for searching. | protected int | findSeparator() Searches for the boundary in the buffer
region delimited by head and tail . | public String | getHeaderEncoding() Retrieves the character encoding used when reading the headers of an
individual part. | ItemInputStream | newInputStream() Creates a new
ItemInputStream . | public int | readBodyData(OutputStream output) Reads body-data from the current
encapsulation and writes its contents into the
output Stream .
Arbitrary large amounts of data can be processed by this
method using a constant size buffer. | public boolean | readBoundary() Skips a boundary token, and checks whether more
encapsulations are contained in the stream. | public byte | readByte() Reads a byte from the buffer , and refills it as
necessary. | public String | readHeaders() Reads the header-part of the current
encapsulation .
Headers are returned verbatim to the input stream, including the
trailing CRLF marker. | public void | setBoundary(byte[] boundary) Changes the boundary token used for partitioning the stream. | public void | setHeaderEncoding(String encoding) Specifies the character encoding to be used when reading the headers of
individual parts. | public boolean | skipPreamble() Finds the beginning of the first encapsulation . |
BOUNDARY_PREFIX | final protected static byte[] BOUNDARY_PREFIX(Code) | | A byte sequence that precedes a boundary (CRLF-- ).
|
CR | final public static byte CR(Code) | | The Carriage Return ASCII character value.
|
DASH | final public static byte DASH(Code) | | The dash (-) ASCII character value.
|
DEFAULT_BUFSIZE | final protected static int DEFAULT_BUFSIZE(Code) | | The default length of the buffer used for processing a request.
|
FIELD_SEPARATOR | final protected static byte[] FIELD_SEPARATOR(Code) | | A byte sequence that that follows a delimiter that will be
followed by an encapsulation (CRLF ).
|
HEADER_PART_SIZE_MAX | final public static int HEADER_PART_SIZE_MAX(Code) | | The maximum length of header-part that will be
processed (10 kilobytes = 10240 bytes.).
|
HEADER_SEPARATOR | final protected static byte[] HEADER_SEPARATOR(Code) | | A byte sequence that marks the end of header-part
(CRLFCRLF ).
|
LF | final public static byte LF(Code) | | The Line Feed ASCII character value.
|
STREAM_TERMINATOR | final protected static byte[] STREAM_TERMINATOR(Code) | | A byte sequence that that follows a delimiter of the last
encapsulation in the stream (-- ).
|
MultipartStream | public MultipartStream(InputStream input, byte[] boundary, int bufSize)(Code) | | Constructs a MultipartStream with a custom size buffer
and no progress notifier.
Note that the buffer must be at least big enough to contain the
boundary string, plus 4 characters for CR/LF and double dash, plus at
least one byte of data. Too small a buffer size setting will degrade
performance.
Parameters: input - The InputStream to serve as a data source. Parameters: boundary - The token used for dividing the stream intoencapsulations . Parameters: bufSize - The size of the buffer to be used, in bytes. See Also: MultipartStream.MultipartStream(InputStream,byte[],ProgressNotifier)MultipartStream.MultipartStream(InputStream,byte[],int,org.apache.commons.fileupload.MultipartStream.ProgressNotifier) |
MultipartStream | MultipartStream(InputStream input, byte[] boundary, int bufSize, ProgressNotifier pNotifier)(Code) | | Constructs a MultipartStream with a custom size buffer.
Note that the buffer must be at least big enough to contain the
boundary string, plus 4 characters for CR/LF and double dash, plus at
least one byte of data. Too small a buffer size setting will degrade
performance.
Parameters: input - The InputStream to serve as a data source. Parameters: boundary - The token used for dividing the stream intoencapsulations . Parameters: bufSize - The size of the buffer to be used, in bytes. Parameters: pNotifier - The notifier, which is used for calling theprogress listener, if any. See Also: MultipartStream.MultipartStream(InputStream,byte[],ProgressNotifier) |
MultipartStream | MultipartStream(InputStream input, byte[] boundary, ProgressNotifier pNotifier)(Code) | | Constructs a MultipartStream with a default size buffer.
Parameters: input - The InputStream to serve as a data source. Parameters: boundary - The token used for dividing the stream intoencapsulations . Parameters: pNotifier - An object for calling the progress listener, if any. See Also: MultipartStream.MultipartStream(InputStream,byte[],int,ProgressNotifier) |
arrayequals | public static boolean arrayequals(byte[] a, byte[] b, int count)(Code) | | Compares count first bytes in the arrays
a and b .
Parameters: a - The first array to compare. Parameters: b - The second array to compare. Parameters: count - How many bytes should be compared. true if count first bytes in arraysa and b are equal. |
discardBodyData | public int discardBodyData() throws MalformedStreamException, IOException(Code) | | Reads body-data from the current
encapsulation and discards it.
Use this method to skip encapsulations you don't need or don't
understand.
The amount of data discarded. throws: MalformedStreamException - if the stream ends unexpectedly. throws: IOException - if an i/o error occurs. |
findByte | protected int findByte(byte value, int pos)(Code) | | Searches for a byte of specified value in the buffer ,
starting at the specified position .
Parameters: value - The value to find. Parameters: pos - The starting position for searching. The position of byte found, counting from beginning of thebuffer , or -1 if not found. |
findSeparator | protected int findSeparator()(Code) | | Searches for the boundary in the buffer
region delimited by head and tail .
The position of the boundary found, counting from thebeginning of the buffer , or -1 ifnot found. |
getHeaderEncoding | public String getHeaderEncoding()(Code) | | Retrieves the character encoding used when reading the headers of an
individual part. When not specified, or null , the platform
default encoding is used.
The encoding used to read part headers. |
newInputStream | ItemInputStream newInputStream()(Code) | | Creates a new
ItemInputStream .
A new instance of ItemInputStream. |
readBoundary | public boolean readBoundary() throws MalformedStreamException(Code) | | Skips a boundary token, and checks whether more
encapsulations are contained in the stream.
true if there are more encapsulations inthis stream; false otherwise. throws: MalformedStreamException - if the stream ends unexpecetedly orfails to follow required syntax. |
readByte | public byte readByte() throws IOException(Code) | | Reads a byte from the buffer , and refills it as
necessary.
The next byte from the input stream. throws: IOException - if there is no more data available. |
readHeaders | public String readHeaders() throws MalformedStreamException(Code) | | Reads the header-part of the current
encapsulation .
Headers are returned verbatim to the input stream, including the
trailing CRLF marker. Parsing is left to the
application.
TODO allow limiting maximum header size to
protect against abuse.
The header-part of the current encapsulation. throws: MalformedStreamException - if the stream ends unexpecetedly. |
setBoundary | public void setBoundary(byte[] boundary) throws IllegalBoundaryException(Code) | | Changes the boundary token used for partitioning the stream.
This method allows single pass processing of nested multipart
streams.
The boundary token of the nested stream is required
to be of the same length as the boundary token in parent stream.
Restoring the parent stream boundary token after processing of a
nested stream is left to the application.
Parameters: boundary - The boundary to be used for parsing of the nestedstream. throws: IllegalBoundaryException - if the boundary has a different length than the onebeing currently parsed. |
setHeaderEncoding | public void setHeaderEncoding(String encoding)(Code) | | Specifies the character encoding to be used when reading the headers of
individual parts. When not specified, or null , the platform
default encoding is used.
Parameters: encoding - The encoding used to read part headers. |
skipPreamble | public boolean skipPreamble() throws IOException(Code) | | Finds the beginning of the first encapsulation .
true if an encapsulation was found inthe stream. throws: IOException - if an i/o error occurs. |
|
|