public abstract class StreamHandle extends java.lang.Object implements IRandomAccess
IRandomAccess
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
file
Name of the open stream.
|
protected long |
fp
Current position within the stream.
|
protected long |
length
Length of the stream.
|
protected long |
mark
Marked position within the stream.
|
protected java.nio.ByteOrder |
order
Byte ordering of this stream.
|
protected java.io.DataOutputStream |
outStream
OutputStream to be used for writing.
|
protected java.io.DataInputStream |
stream
InputStream to be used for reading.
|
Constructor and Description |
---|
StreamHandle()
Construct a new StreamHandle.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this random access stream and releases
any system resources associated with the stream.
|
long |
getFilePointer()
Returns the current offset in this stream.
|
java.nio.ByteOrder |
getOrder()
Returns the current order of the stream.
|
long |
length()
Returns the length of this stream.
|
int |
read(byte[] b)
Reads up to b.length bytes of data
from this stream into an array of bytes.
|
int |
read(byte[] b,
int off,
int len)
Reads up to len bytes of data from this stream into an array of bytes.
|
int |
read(java.nio.ByteBuffer buffer)
Reads up to buffer.capacity() bytes of data
from this stream into a ByteBuffer.
|
int |
read(java.nio.ByteBuffer buffer,
int off,
int len)
Reads up to len bytes of data from this stream into a ByteBuffer.
|
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
java.lang.String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
java.lang.String |
readUTF() |
protected abstract void |
resetStream()
Close and reopen the stream; the stream pointer and mark should be
reset to 0.
|
void |
seek(long pos)
Sets the stream pointer offset, measured from the beginning
of this stream, at which the next read or write occurs.
|
void |
setOrder(java.nio.ByteOrder order)
Sets the byte order of the stream.
|
int |
skipBytes(int n) |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(java.nio.ByteBuffer buf)
Writes up to buffer.capacity() bytes of data from the given
ByteBuffer to this stream.
|
void |
write(java.nio.ByteBuffer buf,
int off,
int len)
Writes up to len bytes of data from the given ByteBuffer to this
stream.
|
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(java.lang.String s) |
void |
writeChar(int v) |
void |
writeChars(java.lang.String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeShort(int v) |
void |
writeUTF(java.lang.String str) |
protected java.lang.String file
protected java.io.DataInputStream stream
protected java.io.DataOutputStream outStream
protected long length
protected long fp
protected long mark
protected java.nio.ByteOrder order
public StreamHandle()
public void close() throws java.io.IOException
IRandomAccess
close
in interface IRandomAccess
java.io.IOException
public long getFilePointer() throws java.io.IOException
IRandomAccess
getFilePointer
in interface IRandomAccess
java.io.IOException
public long length() throws java.io.IOException
IRandomAccess
length
in interface IRandomAccess
java.io.IOException
public int read(byte[] b) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public int read(byte[] b, int off, int len) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public int read(java.nio.ByteBuffer buffer) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public int read(java.nio.ByteBuffer buffer, int off, int len) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public void seek(long pos) throws java.io.IOException
IRandomAccess
seek
in interface IRandomAccess
java.io.IOException
public void write(java.nio.ByteBuffer buf) throws java.io.IOException
IRandomAccess
write
in interface IRandomAccess
java.io.IOException
public void write(java.nio.ByteBuffer buf, int off, int len) throws java.io.IOException
IRandomAccess
write
in interface IRandomAccess
java.io.IOException
public java.nio.ByteOrder getOrder()
IRandomAccess
getOrder
in interface IRandomAccess
public void setOrder(java.nio.ByteOrder order)
IRandomAccess
setOrder
in interface IRandomAccess
order
- Order to set.public boolean readBoolean() throws java.io.IOException
readBoolean
in interface java.io.DataInput
java.io.IOException
public byte readByte() throws java.io.IOException
readByte
in interface java.io.DataInput
java.io.IOException
public char readChar() throws java.io.IOException
readChar
in interface java.io.DataInput
java.io.IOException
public double readDouble() throws java.io.IOException
readDouble
in interface java.io.DataInput
java.io.IOException
public float readFloat() throws java.io.IOException
readFloat
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b, int off, int len) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public int readInt() throws java.io.IOException
readInt
in interface java.io.DataInput
java.io.IOException
public java.lang.String readLine() throws java.io.IOException
readLine
in interface java.io.DataInput
java.io.IOException
public long readLong() throws java.io.IOException
readLong
in interface java.io.DataInput
java.io.IOException
public short readShort() throws java.io.IOException
readShort
in interface java.io.DataInput
java.io.IOException
public int readUnsignedByte() throws java.io.IOException
readUnsignedByte
in interface java.io.DataInput
java.io.IOException
public int readUnsignedShort() throws java.io.IOException
readUnsignedShort
in interface java.io.DataInput
java.io.IOException
public java.lang.String readUTF() throws java.io.IOException
readUTF
in interface java.io.DataInput
java.io.IOException
public int skipBytes(int n) throws java.io.IOException
skipBytes
in interface java.io.DataInput
java.io.IOException
public void write(byte[] b) throws java.io.IOException
write
in interface java.io.DataOutput
java.io.IOException
public void write(byte[] b, int off, int len) throws java.io.IOException
write
in interface java.io.DataOutput
java.io.IOException
public void write(int b) throws java.io.IOException
write
in interface java.io.DataOutput
java.io.IOException
public void writeBoolean(boolean v) throws java.io.IOException
writeBoolean
in interface java.io.DataOutput
java.io.IOException
public void writeByte(int v) throws java.io.IOException
writeByte
in interface java.io.DataOutput
java.io.IOException
public void writeBytes(java.lang.String s) throws java.io.IOException
writeBytes
in interface java.io.DataOutput
java.io.IOException
public void writeChar(int v) throws java.io.IOException
writeChar
in interface java.io.DataOutput
java.io.IOException
public void writeChars(java.lang.String s) throws java.io.IOException
writeChars
in interface java.io.DataOutput
java.io.IOException
public void writeDouble(double v) throws java.io.IOException
writeDouble
in interface java.io.DataOutput
java.io.IOException
public void writeFloat(float v) throws java.io.IOException
writeFloat
in interface java.io.DataOutput
java.io.IOException
public void writeInt(int v) throws java.io.IOException
writeInt
in interface java.io.DataOutput
java.io.IOException
public void writeLong(long v) throws java.io.IOException
writeLong
in interface java.io.DataOutput
java.io.IOException
public void writeShort(int v) throws java.io.IOException
writeShort
in interface java.io.DataOutput
java.io.IOException
public void writeUTF(java.lang.String str) throws java.io.IOException
writeUTF
in interface java.io.DataOutput
java.io.IOException
protected abstract void resetStream() throws java.io.IOException
java.io.IOException
Copyright © 2014 Open Microscopy Environment