Package org.apache.tika.io
Class BoundedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.tika.io.BoundedInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public class BoundedInputStream extends InputStream
Very slight modification of Commons' BoundedInputStream so that we can figure out if this hit the bound or not.This relies on IOUtils' skip and read to try to fully read/skip inputstream.
-
-
Constructor Summary
Constructors Constructor Description BoundedInputStream(long max, InputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
long
getPos()
boolean
hasHitBound()
void
mark(int readLimit)
boolean
markSupported()
int
read()
int
read(byte[] b)
Invokes the delegate'sread(byte[])
method.int
read(byte[] b, int off, int len)
Invokes the delegate'sread(byte[], int, int)
method.int
readNBytes(byte[] b, int off, int len)
byte[]
readNBytes(int len)
void
reset()
long
skip(long n)
Invokes the delegate'sskip(long)
method.long
transferTo(OutputStream out)
-
Methods inherited from class java.io.InputStream
close, nullInputStream, readAllBytes
-
-
-
-
Constructor Detail
-
BoundedInputStream
public BoundedInputStream(long max, InputStream in)
-
-
Method Detail
-
read
public int read() throws IOException
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b) throws IOException
Invokes the delegate'sread(byte[])
method.- Overrides:
read
in classInputStream
- Parameters:
b
- the buffer to read the bytes into- Returns:
- the number of bytes read or -1 if the end of stream or the limit has been reached.
- Throws:
IOException
- if an I/O error occurs
-
read
public int read(byte[] b, int off, int len) throws IOException
Invokes the delegate'sread(byte[], int, int)
method.This does not have the same guarantees as IOUtil's readFully()...be careful.
- Overrides:
read
in classInputStream
- Parameters:
b
- the buffer to read the bytes intooff
- The start offsetlen
- The number of bytes to read- Returns:
- the number of bytes read or -1 if the end of stream or the limit has been reached.
- Throws:
IOException
- if an I/O error occurs
-
skip
public long skip(long n) throws IOException
Invokes the delegate'sskip(long)
method. As with InputStream generally, this does not guarantee reading n bytes. Use IOUtils' skipFully for that functionality.- Overrides:
skip
in classInputStream
- Parameters:
n
- the number of bytes to skip- Returns:
- the actual number of bytes skipped
- Throws:
IOException
- if an I/O error occurs
-
reset
public void reset() throws IOException
- Overrides:
reset
in classInputStream
- Throws:
IOException
-
mark
public void mark(int readLimit)
- Overrides:
mark
in classInputStream
-
hasHitBound
public boolean hasHitBound()
-
readNBytes
public byte[] readNBytes(int len) throws IOException
- Overrides:
readNBytes
in classInputStream
- Throws:
IOException
-
readNBytes
public int readNBytes(byte[] b, int off, int len) throws IOException
- Overrides:
readNBytes
in classInputStream
- Throws:
IOException
-
available
public int available() throws IOException
- Overrides:
available
in classInputStream
- Throws:
IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupported
in classInputStream
-
transferTo
public long transferTo(OutputStream out) throws IOException
- Overrides:
transferTo
in classInputStream
- Throws:
IOException
-
getPos
public long getPos()
-
-