|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.InputStream
org.abstracthorizon.mercury.common.io.RangedInputStream
public class RangedInputStream
Input stream that returns only a defined range
| Field Summary | |
|---|---|
protected long |
from
Starting offset |
protected InputStream |
is
Underlying input stream |
protected long |
left
Number of bytes left to be read |
protected long |
marked
Mark |
protected long |
readlimit
Read limit |
protected long |
readlimitCache
Read limit cache |
protected long |
to
End offset |
| Constructor Summary | |
|---|---|
RangedInputStream(InputStream is,
long from,
long to)
Constructor |
|
| Method Summary | |
|---|---|
int |
available()
|
void |
close()
|
void |
mark(int readlimit)
|
boolean |
markSupported()
|
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
void |
reset()
|
long |
skip(long n)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected InputStream is
protected long from
protected long to
protected long left
protected long marked
protected long readlimit
protected long readlimitCache
| Constructor Detail |
|---|
public RangedInputStream(InputStream is,
long from,
long to)
throws IOException
is - input streamfrom - from offsetto - to offset
IOException| Method Detail |
|---|
public int available()
throws IOException
available in class InputStreamIOException
public void close()
throws IOException
close in interface Closeableclose in class InputStreamIOExceptionpublic void mark(int readlimit)
mark in class InputStreampublic boolean markSupported()
markSupported in class InputStream
public int read()
throws IOException
read in class InputStreamIOException
public int read(byte[] b)
throws IOException
read in class InputStreamIOException
public int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOException
public void reset()
throws IOException
reset in class InputStreamIOException
public long skip(long n)
throws IOException
skip in class InputStreamIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||