public class ISRandomAccessIO extends java.lang.Object implements RandomAccessIO
The cache grows automatically as necessary. However, if the data length is known prior to the creation of a ISRandomAccessIO object, it is best to specify that as the initial in-memory buffer size. That will minimize data copying and multiple allocation.
Multi-byte data is read in big-endian order. The in-memory buffer storage is released when 'close()' is called. This class can only be used for data input, not output. The wrapped InputStream is closed when all the input data is cached or when 'close()' is called.
If an out of memory condition is encountered when growing the in-memory buffer an IOException is thrown instead of an OutOfMemoryError. The exception message is "Out of memory to cache input data".
This class is intended for use as a "quick and dirty" way to give network connectivity to RandomAccessIO based classes. It is not intended as an efficient means of implementing network connectivity. Doing such requires reimplementing the RandomAccessIO based classes to directly use network connections.
This class does not use temporary files as buffers, because that would preclude the use in unsigned applets.
Constructor and Description |
---|
ISRandomAccessIO(java.io.InputStream is)
Creates a new RandomAccessIO wrapper for the given InputStream
'is'.
|
ISRandomAccessIO(java.io.InputStream is,
int size,
int inc,
int maxsize)
Creates a new RandomAccessIO wrapper for the given InputStream
'is'.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this object for reading as well as the wrapped InputStream, if
not already closed.
|
void |
flush()
Does nothing since this class does not implement data output.
|
int |
getByteOrdering()
Returns the endianess (i.e., byte ordering) of multi-byte I/O
operations.
|
int |
getPos()
Returns the current position in the stream, which is the
position from where the next byte of data would be read.
|
int |
length()
Returns the length of the stream.
|
int |
read()
Reads a byte of data from the stream.
|
byte |
readByte()
Reads a signed byte (8 bit) from the input.
|
double |
readDouble()
Reads an IEEE double precision (i.e., 64 bit) floating-point number
from the input.
|
float |
readFloat()
Reads an IEEE single precision (i.e., 32 bit) floating-point number
from the input.
|
void |
readFully(byte[] b,
int off,
int n)
Reads 'len' bytes of data from this file into an array of bytes.
|
int |
readInt()
Reads a signed int (32 bit) from the input.
|
long |
readLong()
Reads a signed long (64 bit) from the input.
|
short |
readShort()
Reads a signed short (16 bit) from the input.
|
int |
readUnsignedByte()
Reads an unsigned byte (8 bit) from the input.
|
long |
readUnsignedInt()
Reads a unsigned int (32 bit) from the input.
|
int |
readUnsignedShort()
Reads an unsigned short (16 bit) from the input.
|
void |
seek(int off)
Moves the current position for the next read operation to
offset.
|
int |
skipBytes(int n)
Skips 'n' bytes from the input.
|
void |
write(int b)
Throws an IOException since this class does not implement data output.
|
void |
writeByte(int v)
Throws an IOException since this class does not implement data output.
|
void |
writeDouble(double v)
Throws an IOException since this class does not implement data output.
|
void |
writeFloat(float v)
Throws an IOException since this class does not implement data output.
|
void |
writeInt(int v)
Throws an IOException since this class does not implement data output.
|
void |
writeLong(long v)
Throws an IOException since this class does not implement data output.
|
void |
writeShort(int v)
Throws an IOException since this class does not implement data output.
|
public ISRandomAccessIO(java.io.InputStream is, int size, int inc, int maxsize)
is
- The input from where to get the data.size
- The initial size for the cache buffer, in bytes.inc
- The size increment for the cache buffer, in bytes.maxsize
- The maximum size for the cache buffer, in bytes.public ISRandomAccessIO(java.io.InputStream is)
is
- The input from where to get the data.public void close() throws java.io.IOException
close
in interface RandomAccessIO
java.io.IOException
- If an I/O error occurs while closing the
underlying InputStream.public int getPos() throws java.io.IOException
getPos
in interface RandomAccessIO
java.io.IOException
- If an I/O error occurred.public void seek(int off) throws java.io.IOException
seek
in interface RandomAccessIO
off
- The offset where to move to.java.io.EOFException
- If seeking beyond EOF and the data length is
known.java.io.IOException
- If an I/O error ocurred.public int length() throws java.io.IOException
length
in interface RandomAccessIO
java.io.IOException
- If an I/O error ocurred.public int read() throws java.io.IOException
read
in interface RandomAccessIO
java.io.EOFException
- If the end-of file was reached.java.io.IOException
- If an I/O error ocurred.public void readFully(byte[] b, int off, int n) throws java.io.IOException
readFully
in interface RandomAccessIO
b
- The buffer into which the data is to be read. It must be long
enough.off
- The index in 'b' where to place the first byte read.len
- The number of bytes to read.java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public int getByteOrdering()
getByteOrdering
in interface BinaryDataInput
getByteOrdering
in interface BinaryDataOutput
EndianType
public byte readByte() throws java.io.IOException
readByte
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public int readUnsignedByte() throws java.io.IOException
readUnsignedByte
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public short readShort() throws java.io.IOException
readShort
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public int readUnsignedShort() throws java.io.IOException
readUnsignedShort
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public int readInt() throws java.io.IOException
readInt
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public long readUnsignedInt() throws java.io.IOException
readUnsignedInt
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public long readLong() throws java.io.IOException
readLong
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public float readFloat() throws java.io.IOException
readFloat
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public double readDouble() throws java.io.IOException
readDouble
in interface BinaryDataInput
java.io.EOFException
- If the end-of file was reached before
getting all the necessary data.java.io.IOException
- If an I/O error ocurred.public int skipBytes(int n) throws java.io.IOException
skipBytes
in interface BinaryDataInput
n
- The number of bytes to skipjava.io.EOFException
- If the end-of file was reached before
all the bytes could be skipped.java.io.IOException
- If an I/O error ocurred.public void flush()
flush
in interface BinaryDataOutput
public void write(int b) throws java.io.IOException
write
in interface RandomAccessIO
b
- The byte to write. The lower 8 bits of b are
written.java.io.IOException
- If an I/O error ocurred.public void writeByte(int v) throws java.io.IOException
writeByte
in interface BinaryDataOutput
v
- The value to write to the outputjava.io.IOException
- If an I/O error ocurred.public void writeShort(int v) throws java.io.IOException
writeShort
in interface BinaryDataOutput
v
- The value to write to the outputjava.io.IOException
- If an I/O error ocurred.public void writeInt(int v) throws java.io.IOException
writeInt
in interface BinaryDataOutput
v
- The value to write to the outputjava.io.IOException
- If an I/O error ocurred.public void writeLong(long v) throws java.io.IOException
writeLong
in interface BinaryDataOutput
v
- The value to write to the outputjava.io.IOException
- If an I/O error ocurred.public void writeFloat(float v) throws java.io.IOException
writeFloat
in interface BinaryDataOutput
v
- The value to write to the outputjava.io.IOException
- If an I/O error ocurred.public void writeDouble(double v) throws java.io.IOException
writeDouble
in interface BinaryDataOutput
v
- The value to write to the outputjava.io.IOException
- If an I/O error ocurred.Copyright © 2014 Open Microscopy Environment