Class PrefixedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.manifoldcf.connectorcommon.fuzzyml.PrefixedInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class PrefixedInputStream extends java.io.InputStreamThis class represents an input stream that begins with bytes passed to it through the constructor, and then continues with the bytes from a wrapped input stream. It's basically used when we've read past where we want to be in an input stream and need to back up.
-
-
Field Summary
Fields Modifier and Type Field Description protected intbyteMaxprotected intbytePositionprotected ByteBufferbytesprotected java.io.InputStreamremainderStream
-
Constructor Summary
Constructors Constructor Description PrefixedInputStream(ByteBuffer bytes, java.io.InputStream remainderStream)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()intread()intread(byte[] b, int off, int len)longskip(long n)
-
-
-
Field Detail
-
bytes
protected final ByteBuffer bytes
-
remainderStream
protected final java.io.InputStream remainderStream
-
bytePosition
protected int bytePosition
-
byteMax
protected int byteMax
-
-
Constructor Detail
-
PrefixedInputStream
public PrefixedInputStream(ByteBuffer bytes, java.io.InputStream remainderStream)
Constructor
-
-
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
-
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
-
-