public abstract class ByteBufferIndexInput extends IndexInput implements RandomAccessInput
Because Java's ByteBuffer uses an int to address the values, it's necessary to access a file greater Integer.MAX_VALUE in size using multiple byte buffers.
For efficiency, this class requires that the buffers
are a power-of-two (chunkSizePower
).
Modifier and Type | Field and Description |
---|---|
protected ByteBuffer[] |
buffers |
protected long |
chunkSizeMask |
protected int |
chunkSizePower |
protected ByteBuffer |
curBuf |
protected int |
curBufIndex |
protected org.apache.lucene.store.ByteBufferGuard |
guard |
protected boolean |
isClone |
protected long |
length |
Modifier and Type | Method and Description |
---|---|
protected ByteBufferIndexInput |
buildSlice(String sliceDescription,
long offset,
long length)
Builds the actual sliced IndexInput (may apply extra offset in subclasses).
|
ByteBufferIndexInput |
clone()
Returns a clone of this stream.
|
void |
close()
Closes the stream to further operations.
|
long |
getFilePointer()
Returns the current position in this file, where the next read will
occur.
|
long |
length()
The number of bytes in the file.
|
protected ByteBufferIndexInput |
newCloneInstance(String newResourceDescription,
ByteBuffer[] newBuffers,
int offset,
long length)
Factory method that creates a suitable implementation of this class for the given ByteBuffers.
|
static ByteBufferIndexInput |
newInstance(String resourceDescription,
ByteBuffer[] buffers,
long length,
int chunkSizePower,
org.apache.lucene.store.ByteBufferGuard guard) |
byte |
readByte()
Reads and returns a single byte.
|
byte |
readByte(long pos)
Reads a byte at the given position in the file
|
void |
readBytes(byte[] b,
int offset,
int len)
Reads a specified number of bytes into an array at the specified offset.
|
int |
readInt()
Reads four bytes and returns an int.
|
int |
readInt(long pos)
Reads an integer at the given position in the file
|
void |
readLELongs(long[] dst,
int offset,
int length)
Read a specified number of longs with the little endian byte order.
|
long |
readLong()
Reads eight bytes and returns a long.
|
long |
readLong(long pos)
Reads a long at the given position in the file
|
short |
readShort()
Reads two bytes and returns a short.
|
short |
readShort(long pos)
Reads a short at the given position in the file
|
void |
seek(long pos)
Sets current position in this file, where the next read will occur.
|
protected void |
setCurBuf(ByteBuffer curBuf) |
ByteBufferIndexInput |
slice(String sliceDescription,
long offset,
long length)
Creates a slice of this index input, with the given description, offset, and length.
|
getFullSliceDescription, randomAccessSlice, toString
readBytes, readMapOfStrings, readSetOfStrings, readString, readVInt, readVLong, readZInt, readZLong, skipBytes
protected final long length
protected final long chunkSizeMask
protected final int chunkSizePower
protected final org.apache.lucene.store.ByteBufferGuard guard
protected ByteBuffer[] buffers
protected int curBufIndex
protected ByteBuffer curBuf
protected boolean isClone
public static ByteBufferIndexInput newInstance(String resourceDescription, ByteBuffer[] buffers, long length, int chunkSizePower, org.apache.lucene.store.ByteBufferGuard guard)
protected void setCurBuf(ByteBuffer curBuf)
public final byte readByte() throws IOException
DataInput
readByte
in class DataInput
IOException
DataOutput.writeByte(byte)
public final void readBytes(byte[] b, int offset, int len) throws IOException
DataInput
readBytes
in class DataInput
b
- the array to read bytes intooffset
- the offset in the array to start storing byteslen
- the number of bytes to readIOException
DataOutput.writeBytes(byte[],int)
public void readLELongs(long[] dst, int offset, int length) throws IOException
DataInput
This method can be used to read longs whose bytes have been
reversed
at write time:
for (long l : longs) { output.writeLong(Long.reverseBytes(l)); }
readLELongs
in class DataInput
IOException
public final short readShort() throws IOException
DataInput
readShort
in class DataInput
IOException
DataOutput.writeByte(byte)
public final int readInt() throws IOException
DataInput
readInt
in class DataInput
IOException
DataOutput.writeInt(int)
public final long readLong() throws IOException
DataInput
readLong
in class DataInput
IOException
DataOutput.writeLong(long)
public long getFilePointer()
IndexInput
getFilePointer
in class IndexInput
IndexInput.seek(long)
public void seek(long pos) throws IOException
IndexInput
EOFException
and then the
stream is in an undetermined state.seek
in class IndexInput
IOException
IndexInput.getFilePointer()
public byte readByte(long pos) throws IOException
RandomAccessInput
readByte
in interface RandomAccessInput
IOException
DataInput.readByte()
public short readShort(long pos) throws IOException
RandomAccessInput
readShort
in interface RandomAccessInput
IOException
DataInput.readShort()
public int readInt(long pos) throws IOException
RandomAccessInput
readInt
in interface RandomAccessInput
IOException
DataInput.readInt()
public long readLong(long pos) throws IOException
RandomAccessInput
readLong
in interface RandomAccessInput
IOException
DataInput.readLong()
public final long length()
IndexInput
length
in class IndexInput
public final ByteBufferIndexInput clone()
IndexInput
Clones of a stream access the same data, and are positioned at the same point as the stream they were cloned from.
Expert: Subclasses must ensure that clones may be positioned at different points in the input from each other and from the stream they were cloned from.
Warning: Lucene never closes cloned
IndexInput
s, it will only call IndexInput.close()
on the original object.
If you access the cloned IndexInput after closing the original object,
any readXXX
methods will throw AlreadyClosedException
.
This method is NOT thread safe, so if the current IndexInput
is being used by one thread while clone
is called by another,
disaster could strike.
clone
in class IndexInput
public final ByteBufferIndexInput slice(String sliceDescription, long offset, long length)
slice
in class IndexInput
protected ByteBufferIndexInput buildSlice(String sliceDescription, long offset, long length)
protected ByteBufferIndexInput newCloneInstance(String newResourceDescription, ByteBuffer[] newBuffers, int offset, long length)
public final void close() throws IOException
IndexInput
close
in interface Closeable
close
in interface AutoCloseable
close
in class IndexInput
IOException
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.