Class MultipartInput
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 := "--" boundary "--"
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 setBoundary(byte[])).
Here is an example of usage of this class:
try {
MultipartInput multipartStream = new MultipartInput(input, boundary);
boolean nextPart = multipartStream.skipPreamble();
OutputStream output;
while (nextPart) {
String header = multipartStream.readHeaders();
// process headers
// create some output stream
multipartStream.readBodyData(output);
nextPart = multipartStream.readBoundary();
}
} catch (MultipartInput.MalformedStreamException e) {
// the stream failed to follow required syntax
} catch (IOException e) {
// a read or write error occurred
}
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilds a newMultipartInputinstance.static classSignals an attempt to set an invalid boundary token.classAnInputStreamfor reading an items contents.static classSignals that the input stream fails to follow the required syntax.static classInternal class, which is used to invoke theProgressListener. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final byte[]The byte sequence that partitions the stream.(package private) static final byte[]A byte sequence that precedes a boundary (CRLF--).private intThe length of the boundary token plus the leadingCRLF--.private final int[]The table for Knuth-Morris-Pratt search algorithm.private final byte[]The buffer used for processing the request.private final intThe length of the buffer used for processing the request.static final byteThe Carriage Return ASCII character value.static final byteThe dash (-) ASCII character value.(package private) static final intThe default length of the buffer used for processing a request.(package private) static final byte[]A byte sequence that that follows a delimiter that will be followed by an encapsulation (CRLF).private intThe index of first valid character in the buffer.static final intThe maximum length ofheader-partthat will be processed (10 kilobytes = 10240 bytes.).(package private) static final byte[]A byte sequence that marks the end ofheader-part(CRLFCRLF).private CharsetThe content encoding to use when reading headers.private final InputStreamThe input stream from which data is read.private final intThe amount of data, in bytes, that must be kept in the buffer in order to detect delimiters reliably.static final byteThe Line Feed ASCII character value.private final MultipartInput.ProgressNotifierThe progress notifier, if any, or null.(package private) static final byte[]A byte sequence that that follows a delimiter of the last encapsulation in the stream (--).private intThe index of last valid character in the buffer + 1. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateMultipartInput(InputStream input, byte[] boundary, int bufferSize, MultipartInput.ProgressNotifier notifier) Constructs aMultipartInputwith a custom size buffer. -
Method Summary
Modifier and TypeMethodDescription(package private) static booleanarrayEquals(byte[] a, byte[] b, int count) Comparescountfirst bytes in the arraysaandb.static MultipartInput.Builderbuilder()Constructs a newMultipartInput.Builder.private voidComputes the table used for Knuth-Morris-Pratt search algorithm.longReadsbody-datafrom the currentencapsulationand discards it.protected intfindByte(byte value, int pos) Searches for a byte of specified value in thebuffer, starting at the specifiedposition.protected intSearches for theboundaryin thebufferregion delimited byheadandtail.Gets the character encoding used when reading the headers of an individual part.Creates a newMultipartInput.ItemInputStream.longreadBodyData(OutputStream output) Readsbody-datafrom the currentencapsulationand writes its contents into the outputStream.booleanSkips aboundarytoken, and checks whether moreencapsulationsare contained in the stream.bytereadByte()Reads a byte from thebuffer, and refills it as necessary.Reads theheader-partof the currentencapsulation.voidsetBoundary(byte[] boundary) Changes the boundary token used for partitioning the stream.voidsetHeaderCharset(Charset headerCharset) Sets the character encoding to be used when reading the headers of individual parts.booleanFinds the beginning of the firstencapsulation.
-
Field Details
-
CR
public static final byte CRThe Carriage Return ASCII character value.- See Also:
-
LF
public static final byte LFThe Line Feed ASCII character value.- See Also:
-
DASH
public static final byte DASHThe dash (-) ASCII character value.- See Also:
-
HEADER_PART_SIZE_MAX
public static final int HEADER_PART_SIZE_MAXThe maximum length ofheader-partthat will be processed (10 kilobytes = 10240 bytes.).- See Also:
-
DEFAULT_BUFSIZE
static final int DEFAULT_BUFSIZEThe default length of the buffer used for processing a request.- See Also:
-
HEADER_SEPARATOR
static final byte[] HEADER_SEPARATORA byte sequence that marks the end ofheader-part(CRLFCRLF). -
FIELD_SEPARATOR
static final byte[] FIELD_SEPARATORA byte sequence that that follows a delimiter that will be followed by an encapsulation (CRLF). -
STREAM_TERMINATOR
static final byte[] STREAM_TERMINATORA byte sequence that that follows a delimiter of the last encapsulation in the stream (--). -
BOUNDARY_PREFIX
static final byte[] BOUNDARY_PREFIXA byte sequence that precedes a boundary (CRLF--). -
input
The input stream from which data is read. -
boundaryLength
private int boundaryLengthThe length of the boundary token plus the leadingCRLF--. -
keepRegion
private final int keepRegionThe amount of data, in bytes, that must be kept in the buffer in order to detect delimiters reliably. -
boundary
private final byte[] boundaryThe byte sequence that partitions the stream. -
boundaryTable
private final int[] boundaryTableThe table for Knuth-Morris-Pratt search algorithm. -
bufSize
private final int bufSizeThe length of the buffer used for processing the request. -
buffer
private final byte[] bufferThe buffer used for processing the request. -
head
private int headThe index of first valid character in the buffer.
0 <= head < bufSize -
tail
private int tailThe index of last valid character in the buffer + 1.
0 <= tail <= bufSize -
headerCharset
The content encoding to use when reading headers. -
notifier
The progress notifier, if any, or null.
-
-
Constructor Details
-
MultipartInput
private MultipartInput(InputStream input, byte[] boundary, int bufferSize, MultipartInput.ProgressNotifier notifier) Constructs aMultipartInputwith 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- TheInputStreamto serve as a data source.boundary- The token used for dividing the stream intoencapsulations.bufferSize- The size of the buffer to be used, in bytes.notifier- The notifier, which is used for calling the progress listener, if any.- Throws:
IllegalArgumentException- If the buffer size is too small.
-
-
Method Details
-
arrayEquals
static boolean arrayEquals(byte[] a, byte[] b, int count) Comparescountfirst bytes in the arraysaandb.- Parameters:
a- The first array to compare.b- The second array to compare.count- How many bytes should be compared.- Returns:
trueifcountfirst bytes in arraysaandbare equal.
-
builder
Constructs a newMultipartInput.Builder.- Returns:
- a new
MultipartInput.Builder.
-
computeBoundaryTable
private void computeBoundaryTable()Computes the table used for Knuth-Morris-Pratt search algorithm. -
discardBodyData
Readsbody-datafrom the currentencapsulationand discards it.Use this method to skip encapsulations you don't need or don't understand.
- Returns:
- The amount of data discarded.
- Throws:
MultipartInput.MalformedStreamException- if the stream ends unexpectedly.IOException- if an i/o error occurs.
-
findByte
protected int findByte(byte value, int pos) Searches for a byte of specified value in thebuffer, starting at the specifiedposition.- Parameters:
value- The value to find.pos- The starting position for searching.- Returns:
- The position of byte found, counting from beginning of the
buffer, or-1if not found.
-
findSeparator
protected int findSeparator()Searches for theboundaryin thebufferregion delimited byheadandtail.- Returns:
- The position of the boundary found, counting from the beginning of the
buffer, or-1if not found.
-
getHeaderCharset
Gets the character encoding used when reading the headers of an individual part. When not specified, ornull, the platform default encoding is used.- Returns:
- The encoding used to read part headers.
-
newInputStream
Creates a newMultipartInput.ItemInputStream.- Returns:
- A new instance of
MultipartInput.ItemInputStream.
-
readBodyData
public long readBodyData(OutputStream output) throws MultipartInput.MalformedStreamException, IOException Readsbody-datafrom the currentencapsulationand writes its contents into the outputStream.Arbitrary large amounts of data can be processed by this method using a constant size buffer. (see
builder()).- Parameters:
output- TheStreamto write data into. May be null, in which case this method is equivalent todiscardBodyData().- Returns:
- the amount of data written.
- Throws:
MultipartInput.MalformedStreamException- if the stream ends unexpectedly.IOException- if an i/o error occurs.
-
readBoundary
public boolean readBoundary() throws FileUploadSizeException, MultipartInput.MalformedStreamExceptionSkips aboundarytoken, and checks whether moreencapsulationsare contained in the stream.- Returns:
trueif there are more encapsulations in this stream;falseotherwise.- Throws:
FileUploadSizeException- if the bytes read from the stream exceeded the size limitsMultipartInput.MalformedStreamException- if the stream ends unexpectedly or fails to follow required syntax.
-
readByte
Reads a byte from thebuffer, and refills it as necessary.- Returns:
- The next byte from the input stream.
- Throws:
IOException- if there is no more data available.
-
readHeaders
Reads theheader-partof the currentencapsulation.Headers are returned verbatim to the input stream, including the trailing
CRLFmarker. Parsing is left to the application.- Returns:
- The
header-partof the current encapsulation. - Throws:
FileUploadSizeException- if the bytes read from the stream exceeded the size limits.MultipartInput.MalformedStreamException- if the stream ends unexpectedly.
-
setBoundary
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
requiredto 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 nested stream.- Throws:
MultipartInput.FileUploadBoundaryException- if theboundaryhas a different length than the one being currently parsed.
-
setHeaderCharset
Sets the character encoding to be used when reading the headers of individual parts. When not specified, ornull, the platform default encoding is used.- Parameters:
headerCharset- The encoding used to read part headers.
-
skipPreamble
Finds the beginning of the firstencapsulation.- Returns:
trueif anencapsulationwas found in the stream.- Throws:
IOException- if an i/o error occurs.
-