Class DelegatingInputStream
- java.lang.Object
- 
- java.io.InputStream
- 
- org.eclipse.net4j.util.io.DelegatingInputStream
 
 
- 
- All Implemented Interfaces:
- java.io.Closeable,- java.lang.AutoCloseable
 - Direct Known Subclasses:
- XORInputStream
 
 public class DelegatingInputStream extends java.io.InputStreamADelegatingInputStreamcontains some other input stream, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality. The classDelegatingInputStreamitself simply overrides all (see note below) methods ofInputStreamwith versions that pass all requests to the contained input stream. Subclasses ofDelegatingInputStreammay further override some of these methods and may also provide additional methods and fields.Note: The only difference to FilterInputStreamis thatDelegatingInputStreamdoes not overrideInputStream.read(byte[])orInputStream.read(byte[], int, int)but rather exposes the original implementations ofInputStreamwhich callread()instead of their delegate counterparts.- Author:
- Eike Stepper
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.io.InputStreaminThe input stream to be filtered.
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedDelegatingInputStream(java.io.InputStream in)Creates aDelegatingInputStreamby assigning the argumentinto the fieldthis.inso as to remember it for later use.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()Returns the number of bytes that can be read from this input stream without blocking.voidclose()Closes this input stream and releases any system resources associated with the stream.java.io.InputStreamgetDelegate()voidmark(int readlimit)Marks the current position in this input stream.booleanmarkSupported()Tests if this input stream supports themarkandresetmethods.intread()Reads the next byte of data from this input stream.voidreset()Repositions this stream to the position at the time themarkmethod was last called on this input stream.longskip(long n)Skips over and discardsnbytes of data from the input stream.
 
- 
- 
- 
Constructor Detail- 
DelegatingInputStreamprotected DelegatingInputStream(java.io.InputStream in) Creates aDelegatingInputStreamby assigning the argumentinto the fieldthis.inso as to remember it for later use.- Parameters:
- in- the underlying input stream, or- nullif this instance is to be created without an underlying stream.
 
 
- 
 - 
Method Detail- 
getDelegatepublic java.io.InputStream getDelegate() 
 - 
readpublic int read() throws java.io.IOExceptionReads the next byte of data from this input stream. The value byte is returned as anintin the range0to255. If no byte is available because the end of the stream has been reached, the value-1is returned. This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.This method simply performs in.read()and returns the result.- Specified by:
- readin class- java.io.InputStream
- Returns:
- the next byte of data, or -1if the end of the stream is reached.
- Throws:
- java.io.IOException- if an I/O error occurs.
- See Also:
- in
 
 - 
skippublic long skip(long n) throws java.io.IOExceptionSkips over and discardsnbytes of data from the input stream. Theskipmethod may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly0. The actual number of bytes skipped is returned.This method simply performs in.skip(n).- Overrides:
- skipin class- java.io.InputStream
- Parameters:
- n- the number of bytes to be skipped.
- Returns:
- the actual number of bytes skipped.
- Throws:
- java.io.IOException- if an I/O error occurs.
 
 - 
availablepublic int available() throws java.io.IOExceptionReturns the number of bytes that can be read from this input stream without blocking.This method simply performs in.available()and returns the result.- Overrides:
- availablein class- java.io.InputStream
- Returns:
- the number of bytes that can be read from the input stream without blocking.
- Throws:
- java.io.IOException- if an I/O error occurs.
- See Also:
- in
 
 - 
closepublic void close() throws java.io.IOExceptionCloses this input stream and releases any system resources associated with the stream. This method simply performsin.close().- Specified by:
- closein interface- java.lang.AutoCloseable
- Specified by:
- closein interface- java.io.Closeable
- Overrides:
- closein class- java.io.InputStream
- Throws:
- java.io.IOException- if an I/O error occurs.
- See Also:
- in
 
 - 
markpublic void mark(int readlimit) Marks the current position in this input stream. A subsequent call to theresetmethod repositions this stream at the last marked position so that subsequent reads re-read the same bytes.The readlimitargument tells this input stream to allow that many bytes to be read before the mark position gets invalidated.This method simply performs in.mark(readlimit).
 - 
resetpublic void reset() throws java.io.IOExceptionRepositions this stream to the position at the time themarkmethod was last called on this input stream.This method simply performs in.reset().Stream marks are intended to be used in situations where you need to read ahead a little to see what's in the stream. Often this is most easily done by invoking some general parser. If the stream is of the type handled by the parse, it just chugs along happily. If the stream is not of that type, the parser should toss an exception when it fails. If this happens within readlimit bytes, it allows the outer code to reset the stream and try another parser. 
 - 
markSupportedpublic boolean markSupported() Tests if this input stream supports themarkandresetmethods. This method simply performsin.markSupported().- Overrides:
- markSupportedin class- java.io.InputStream
- Returns:
- trueif this stream type supports the- markand- resetmethod;- falseotherwise.
- See Also:
- in,- InputStream.mark(int),- InputStream.reset()
 
 
- 
 
-