Class MetadataExtractor.ByteArrayReader
- java.lang.Object
-
- gov.nih.mipav.model.file.MetadataExtractor.RandomAccessReader
-
- gov.nih.mipav.model.file.MetadataExtractor.ByteArrayReader
-
- Enclosing class:
- MetadataExtractor
public class MetadataExtractor.ByteArrayReader extends MetadataExtractor.RandomAccessReader
Provides methods to read specific values from a byte array, with a consistent, checked exception structure for issues.By default, the reader operates with Motorola byte order (big endianness). This can be changed by calling
setMotorolaByteOrder(boolean).- Author:
- Drew Noakes https://drewnoakes.com
-
-
Field Summary
Fields Modifier and Type Field Description private int_baseOffsetprivate byte[]_buffer
-
Constructor Summary
Constructors Constructor Description ByteArrayReader(byte[] buffer)ByteArrayReader(byte[] buffer, int baseOffset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description bytegetByte(int index)Gets the byte value at the specified byteindex.byte[]getBytes(int index, int count)Returns the required number of bytes from the specified index from the underlying source.longgetLength()Returns the length of the data source in bytes.protected booleanisValidIndex(int index, int bytesRequested)inttoUnshiftedOffset(int localOffset)protected voidvalidateIndex(int index, int bytesRequested)Ensures that the buffered bytes extend to cover the specified index.-
Methods inherited from class gov.nih.mipav.model.file.MetadataExtractor.RandomAccessReader
getBit, getDouble64, getFloat32, getInt16, getInt24, getInt32, getInt64, getInt8, getNullTerminatedBytes, getNullTerminatedString, getNullTerminatedStringValue, getS15Fixed16, getString, getString, getStringValue, getUInt16, getUInt32, getUInt8, isMotorolaByteOrder, setMotorolaByteOrder
-
-
-
-
Method Detail
-
toUnshiftedOffset
public int toUnshiftedOffset(int localOffset)
- Specified by:
toUnshiftedOffsetin classMetadataExtractor.RandomAccessReader
-
getLength
public long getLength()
Description copied from class:MetadataExtractor.RandomAccessReaderReturns the length of the data source in bytes.This is a simple operation for implementations (such as
MetadataExtractor.RandomAccessFileReaderandMetadataExtractor.ByteArrayReader) that have the entire data source available.Users of this method must be aware that sequentially accessed implementations such as
MetadataExtractor.RandomAccessStreamReaderwill have to read and buffer the entire data source in order to determine the length.- Specified by:
getLengthin classMetadataExtractor.RandomAccessReader- Returns:
- the length of the data source, in bytes.
-
getByte
public byte getByte(int index) throws java.io.IOExceptionDescription copied from class:MetadataExtractor.RandomAccessReaderGets the byte value at the specified byteindex.Implementations should not perform any bounds checking in this method. That should be performed in
validateIndexandisValidIndex.- Specified by:
getBytein classMetadataExtractor.RandomAccessReader- Parameters:
index- The index from which to read the byte- Returns:
- The read byte value
- Throws:
MetadataExtractor.BufferBoundsException- if the requested byte is beyond the end of the underlying data sourcejava.io.IOException- if the byte is unable to be read
-
validateIndex
protected void validateIndex(int index, int bytesRequested) throws java.io.IOExceptionDescription copied from class:MetadataExtractor.RandomAccessReaderEnsures that the buffered bytes extend to cover the specified index. If not, an attempt is made to read to that point.If the stream ends before the point is reached, a
MetadataExtractor.BufferBoundsExceptionis raised.- Specified by:
validateIndexin classMetadataExtractor.RandomAccessReader- Parameters:
index- the index from which the required bytes startbytesRequested- the number of bytes which are required- Throws:
java.io.IOException- if the stream ends before the required number of bytes are acquired
-
isValidIndex
protected boolean isValidIndex(int index, int bytesRequested) throws java.io.IOException- Specified by:
isValidIndexin classMetadataExtractor.RandomAccessReader- Throws:
java.io.IOException
-
getBytes
public byte[] getBytes(int index, int count) throws java.io.IOExceptionDescription copied from class:MetadataExtractor.RandomAccessReaderReturns the required number of bytes from the specified index from the underlying source.- Specified by:
getBytesin classMetadataExtractor.RandomAccessReader- Parameters:
index- The index from which the bytes begins in the underlying sourcecount- The number of bytes to be returned- Returns:
- The requested bytes
- Throws:
MetadataExtractor.BufferBoundsException- if the requested bytes extend beyond the end of the underlying data sourcejava.io.IOException- if the byte is unable to be read
-
-