Package de.intarsys.tools.randomaccess
Class BufferedRandomAccess
- java.lang.Object
-
- de.intarsys.tools.randomaccess.AbstractRandomAccess
-
- de.intarsys.tools.randomaccess.BufferedRandomAccess
-
- All Implemented Interfaces:
IRandomAccess
public class BufferedRandomAccess extends AbstractRandomAccess
todo 1 length reply may be invalid
-
-
Constructor Summary
Constructors Constructor Description BufferedRandomAccess(IRandomAccess randomAccess)BufferedRandomAccess(IRandomAccess randomAccess, int bufferSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected intbasicRead(byte[] buffer, int start, int numBytes)voidclose()Closes this random access data container and releases any system resources associated with the stream.protected voidfillBuffer()voidflush()Force changes to be made persistent.protected voidflushBuffer()longgetLength()Returns the length of this data container.longgetOffset()Returns the current offset in this data container.protected booleanisClosed()booleanisReadOnly()trueif this is a read only data container.intread()Reads a byte of data from this data container.intread(byte[] buffer)Reads up tobuffer.lengthbytes of data from this data container into an array of bytes.intread(byte[] buffer, int start, int numBytes)Reads up tolenbytes of data from this data container into an array of bytes.voidseek(long offset)Sets the offset, measured from the beginning of the data container at which the next read or write occurs.voidseekBy(long delta)Sets the offset, measured from the current offset at which the next read or write occurs.protected voidsetClosed(boolean closed)voidsetLength(long newLength)Assign the length.voidwrite(byte[] buffer)Writesb.lengthbytes from the specified byte array, starting at the current offset.voidwrite(byte[] buffer, int start, int numBytes)Writeslenbytes from the specified byte array starting atstart.voidwrite(int b)Writes the specified byte .-
Methods inherited from class de.intarsys.tools.randomaccess.AbstractRandomAccess
asInputStream, asOutputStream, getPositionStack, mark, reset
-
-
-
-
Constructor Detail
-
BufferedRandomAccess
public BufferedRandomAccess(IRandomAccess randomAccess) throws java.io.IOException
- Throws:
java.io.IOException
-
BufferedRandomAccess
public BufferedRandomAccess(IRandomAccess randomAccess, int bufferSize) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
basicRead
protected int basicRead(byte[] buffer, int start, int numBytes) throws java.io.IOException- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOExceptionDescription copied from interface:IRandomAccessCloses this random access data container and releases any system resources associated with the stream. A closed random access data container cannot perform input or output operations and cannot be reopened.- Throws:
java.io.IOException- if an I/O error occurs.
-
fillBuffer
protected void fillBuffer() throws java.io.IOException- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOExceptionDescription copied from interface:IRandomAccessForce changes to be made persistent.- Throws:
java.io.IOException
-
flushBuffer
protected void flushBuffer() throws java.io.IOException- Throws:
java.io.IOException
-
getLength
public long getLength() throws java.io.IOExceptionDescription copied from interface:IRandomAccessReturns the length of this data container.- Returns:
- the length of this data container, measured in bytes.
- Throws:
java.io.IOException- if an I/O error occurs.
-
getOffset
public long getOffset() throws java.io.IOExceptionDescription copied from interface:IRandomAccessReturns the current offset in this data container.- Returns:
- the offset from the beginning of the data container, in bytes, at which the next read or write occurs.
- Throws:
java.io.IOException- if an I/O error occurs.
-
isClosed
protected boolean isClosed()
-
isReadOnly
public boolean isReadOnly()
Description copied from interface:IRandomAccesstrueif this is a read only data container.- Returns:
trueif this is a read only data container.
-
read
public int read() throws java.io.IOExceptionDescription copied from interface:IRandomAccessReads a byte of data from this data container. The byte is returned as an integer in the range 0 to 255 (0x00-0x0ff). This method blocks if no input is yet available.This method behaves in exactly the same way as the
InputStream.read()method ofInputStream.- Returns:
- the next byte of data, or
-1if the end of the data container has been reached. - Throws:
java.io.IOException- if an I/O error occurs. Not thrown if the end of the data container has been reached.
-
read
public int read(byte[] buffer) throws java.io.IOExceptionDescription copied from interface:IRandomAccessReads up tobuffer.lengthbytes of data from this data container into an array of bytes. This method blocks until at least one byte of input is available.This method behaves in the exactly the same way as the
InputStream.read(byte[])method ofInputStream.- Parameters:
buffer- the buffer into which the data is read.- Returns:
- the total number of bytes read into the buffer, or
-1if there is no more data because the end of this data container has been reached. - Throws:
java.io.IOException- if an I/O error occurs.
-
read
public int read(byte[] buffer, int start, int numBytes) throws java.io.IOExceptionDescription copied from interface:IRandomAccessReads up tolenbytes of data from this data container into an array of bytes. This method blocks until at least one byte of input is available.- Parameters:
buffer- the buffer into which the data is read.start- the start offset of the data.numBytes- the maximum number of bytes read.- Returns:
- the total number of bytes read into the buffer, or
-1if there is no more data because the end of the file has been reached. - Throws:
java.io.IOException- if an I/O error occurs.
-
seek
public void seek(long offset) throws java.io.IOExceptionDescription copied from interface:IRandomAccessSets the offset, measured from the beginning of the data container at which the next read or write occurs. The offset may be set beyond the end of the data container. Setting the offset beyond the end of the data container does not change the data container length. The length will change only by writing after the offset has been set beyond the end of the data container.- Parameters:
offset- the offset position, measured in bytes from the beginning of the data container- Throws:
java.io.IOException- ifoffsetis less than0or if an I/O error occurs.
-
seekBy
public void seekBy(long delta) throws java.io.IOExceptionDescription copied from interface:IRandomAccessSets the offset, measured from the current offset at which the next read or write occurs. The offset may be set beyond the end of the data container. Setting the offset beyond the end of the data container does not change the data container length. The length will change only by writing after the offset has been set beyond the end of the data container.- Parameters:
delta- the amount of bytes by which to change the current offset position- Throws:
java.io.IOException- if the resultingoffsetis less than0or if an I/O error occurs.
-
setClosed
protected void setClosed(boolean closed)
-
setLength
public void setLength(long newLength) throws java.io.IOExceptionDescription copied from interface:IRandomAccessAssign the length. All bytes after length are truncated. If the real length is currently less than newLength, the data structure will be enlarged.- Throws:
java.io.IOException
-
write
public void write(byte[] buffer) throws java.io.IOExceptionDescription copied from interface:IRandomAccessWritesb.lengthbytes from the specified byte array, starting at the current offset.- Parameters:
buffer- the data.- Throws:
java.io.IOException- if an I/O error occurs.
-
write
public void write(byte[] buffer, int start, int numBytes) throws java.io.IOExceptionDescription copied from interface:IRandomAccessWriteslenbytes from the specified byte array starting atstart.- Parameters:
buffer- the data.start- the start offset in the data.numBytes- the number of bytes to write.- Throws:
java.io.IOException- if an I/O error occurs.
-
write
public void write(int b) throws java.io.IOExceptionDescription copied from interface:IRandomAccessWrites the specified byte . The write starts at the current offset.- Parameters:
b- thebyteto be written.- Throws:
java.io.IOException- if an I/O error occurs.
-
-