Class MultipartStream
- java.lang.Object
-
- com.helger.web.multipart.MultipartStream
-
public class MultipartStream extends Object
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
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) { String header = multipartStream.readHeaders (); // process headers // create some output stream multipartStream.readBodyData (output); nextPart = multipartStream.readBoundary (); } } catch (MultipartStream.MalformedStreamException e) { // the stream failed to follow required syntax } catch (IOException e) { // a read or write error occurred }- Version:
- $Id: MultipartStream.java 735374 2009-01-18 02:18:45Z jochen $
- Author:
- Rafal Krzewski, Martin Cooper, Sean C. Sullivan
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classMultipartStream.MultipartItemInputStreamAnInputStreamfor reading an items contents.
-
Field Summary
Fields Modifier and Type Field Description static byteCRThe Carriage Return ASCII character value.static byteDASHThe dash (-) ASCII character value.static intHEADER_PART_SIZE_MAXThe maximum length ofheader-partthat will be processed (20 kilobytes = 10240 bytes.).static byteLFThe Line Feed ASCII character value.
-
Constructor Summary
Constructors Constructor Description MultipartStream(InputStream aIS, byte[] aBoundary, int nBufSize, MultipartProgressNotifier aNotifier)Constructs aMultipartStreamwith a custom size buffer.MultipartStream(InputStream aIS, byte[] aBoundary, MultipartProgressNotifier aNotifier)Constructs aMultipartStreamwith a default size buffer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MultipartStream.MultipartItemInputStreamcreateInputStream()Creates a newMultipartStream.MultipartItemInputStream.intdiscardBodyData()Readsbody-datafrom the currentencapsulationand discards it.protected intfindByte(byte nValue, int nPos)Searches for a byte of specified value in thebuffer, starting at the specifiedposition.protected intfindSeparator()Searches for theboundaryin thebufferregion delimited byheadandtail.StringgetHeaderEncoding()Retrieves the character encoding used when reading the headers of an individual part.intreadBodyData()Readsbody-datafrom the currentencapsulationand writes its contents into the outputStream.booleanreadBoundary()Skips aboundarytoken, and checks whether moreencapsulationsare contained in the stream.bytereadByte()Reads a byte from thebuffer, and refills it as necessary.StringreadHeaders()Reads theheader-partof the currentencapsulation.voidsetBoundary(byte[] aBoundary)Changes the boundary token used for partitioning the stream.voidsetHeaderEncoding(String sHeaderEncoding)Specifies the character encoding to be used when reading the headers of individual parts.booleanskipPreamble()Finds the beginning of the firstencapsulation.
-
-
-
Field Detail
-
CR
public static final byte CR
The Carriage Return ASCII character value.- See Also:
- Constant Field Values
-
LF
public static final byte LF
The Line Feed ASCII character value.- See Also:
- Constant Field Values
-
DASH
public static final byte DASH
The dash (-) ASCII character value.- See Also:
- Constant Field Values
-
HEADER_PART_SIZE_MAX
public static final int HEADER_PART_SIZE_MAX
The maximum length ofheader-partthat will be processed (20 kilobytes = 10240 bytes.).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MultipartStream
public MultipartStream(InputStream aIS, byte[] aBoundary, int nBufSize, MultipartProgressNotifier aNotifier)
Constructs a
MultipartStreamwith 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:
aIS- TheInputStreamto serve as a data source.aBoundary- The token used for dividing the stream intoencapsulations.nBufSize- The size of the buffer to be used, in bytes.aNotifier- The notifier, which is used for calling the progress listener, if any.- See Also:
MultipartStream(InputStream, byte[],MultipartProgressNotifier)
-
MultipartStream
public MultipartStream(InputStream aIS, byte[] aBoundary, MultipartProgressNotifier aNotifier)
Constructs a
MultipartStreamwith a default size buffer.- Parameters:
aIS- TheInputStreamto serve as a data source.aBoundary- The token used for dividing the stream intoencapsulations.aNotifier- An object for calling the progress listener, if any.- See Also:
MultipartStream(InputStream, byte[], int, MultipartProgressNotifier)
-
-
Method Detail
-
getHeaderEncoding
@Nullable public String getHeaderEncoding()
Retrieves 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.
-
setHeaderEncoding
public void setHeaderEncoding(@Nullable String sHeaderEncoding)
Specifies the character encoding to be used when reading the headers of individual parts. When not specified, ornull, the platform default encoding is used.- Parameters:
sHeaderEncoding- The encoding used to read part headers.
-
readByte
public byte readByte() throws IOExceptionReads 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.
-
readBoundary
public boolean readBoundary() throws MultipartMalformedStreamExceptionSkips aboundarytoken, and checks whether moreencapsulationsare contained in the stream.- Returns:
trueif there are more encapsulations in this stream;falseotherwise.- Throws:
MultipartMalformedStreamException- if the stream ends unexpectedly or fails to follow required syntax.
-
setBoundary
public void setBoundary(@Nonnull byte[] aBoundary) throws MultipartIllegalBoundaryException
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:
aBoundary- The boundary to be used for parsing of the nested stream.- Throws:
MultipartIllegalBoundaryException- if theboundaryhas a different length than the one being currently parsed.
-
readHeaders
public String readHeaders() throws MultipartMalformedStreamException
Reads the
header-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:
MultipartMalformedStreamException- if the stream ends unexpectedly.
-
readBodyData
public int readBodyData() throws IOExceptionReads
body-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
MultipartStream(InputStream, byte[], int, MultipartProgressNotifier)).- Returns:
- the amount of data read.
- Throws:
MultipartMalformedStreamException- if the stream ends unexpectedly.IOException- if an i/o error occurs.
-
createInputStream
@Nonnull public MultipartStream.MultipartItemInputStream createInputStream()
Creates a newMultipartStream.MultipartItemInputStream.- Returns:
- A new instance of
MultipartStream.MultipartItemInputStream.
-
discardBodyData
public int discardBodyData() throws IOExceptionReads
body-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:
MultipartMalformedStreamException- if the stream ends unexpectedly.IOException- if an i/o error occurs.
-
skipPreamble
public boolean skipPreamble() throws IOExceptionFinds the beginning of the firstencapsulation.- Returns:
trueif anencapsulationwas found in the stream.- Throws:
IOException- if an i/o error occurs.
-
findByte
@CheckForSigned protected int findByte(byte nValue, int nPos)
Searches for a byte of specified value in thebuffer, starting at the specifiedposition.- Parameters:
nValue- The value to find.nPos- 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.
-
-