Package org.apache.wayang.core.util
Class LimitedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.wayang.core.util.LimitedInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class LimitedInputStream extends java.io.InputStreamInputStreamthat is trimmed to a specified size. Moreover, it counts the number of read bytes.
-
-
Constructor Summary
Constructors Constructor Description LimitedInputStream(java.io.InputStream wrappedInputStream)Create an unlimited instance.LimitedInputStream(java.io.InputStream wrappedInputStream, long maxReadBytes)Create a limited instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()voidclose()longgetNumReadBytes()booleanmarkSupported()intread()intread(byte[] b, int off, int len)longskip(long n)
-
-
-
Constructor Detail
-
LimitedInputStream
public LimitedInputStream(java.io.InputStream wrappedInputStream)
Create an unlimited instance.- Parameters:
wrappedInputStream-InputStreamthat is to be wrapped by this instance
-
LimitedInputStream
public LimitedInputStream(java.io.InputStream wrappedInputStream, long maxReadBytes)Create a limited instance.- Parameters:
wrappedInputStream-InputStreamthat is to be wrapped by this instancemaxReadBytes- maximum number of bytes to read from the stream
-
-
Method Detail
-
read
public int read() throws java.io.IOException- Specified by:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException- Overrides:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
skip
public long skip(long n) throws java.io.IOException- Overrides:
skipin classjava.io.InputStream- Throws:
java.io.IOException
-
available
public int available() throws java.io.IOException- Overrides:
availablein classjava.io.InputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.InputStream- Throws:
java.io.IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupportedin classjava.io.InputStream
-
getNumReadBytes
public long getNumReadBytes()
- Returns:
- the number of bytes that have been read from this stream
-
-