public static class ObjectStream.Filter extends ObjectStream
ObjectLoader implementations can use this stream type when the object's content is available from a standard InputStream.
ObjectStream.Filter, ObjectStream.SmallStream| Modifier and Type | Field and Description |
|---|---|
private java.io.InputStream |
in |
private long |
size |
private int |
type |
| Constructor and Description |
|---|
Filter(int type,
long size,
java.io.InputStream in)
Create a filter stream for an object.
|
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
long |
getSize()
Get total size of object in bytes
|
int |
getType()
Get Git object type, see
Constants. |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
private final int type
private final long size
private final java.io.InputStream in
public Filter(int type,
long size,
java.io.InputStream in)
type - the type of the object.size - total size of the object, in bytes.in - stream the object's raw data is available from. This
stream should be buffered with some reasonable amount of
buffering.public int getType()
ObjectStreamConstants.getType in class ObjectStreamConstants.public long getSize()
ObjectStreamgetSize in class ObjectStreampublic int available()
throws java.io.IOException
available in class java.io.InputStreamjava.io.IOExceptionpublic long skip(long n)
throws java.io.IOException
skip in class java.io.InputStreamjava.io.IOExceptionpublic int read()
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic boolean markSupported()
markSupported in class java.io.InputStreampublic void mark(int readlimit)
mark in class java.io.InputStreampublic void reset()
throws java.io.IOException
reset in class java.io.InputStreamjava.io.IOExceptionpublic void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.InputStreamjava.io.IOException