public abstract class BufferedIndexInput extends IndexInput implements RandomAccessInput
IndexInput
.Modifier and Type | Field and Description |
---|---|
protected byte[] |
buffer |
static int |
BUFFER_SIZE
Default buffer size set to 1024.
|
static int |
MERGE_BUFFER_SIZE
A buffer size for merges set to 4096.
|
static int |
MIN_BUFFER_SIZE
Minimum buffer size allowed
|
Constructor and Description |
---|
BufferedIndexInput(String resourceDesc) |
BufferedIndexInput(String resourceDesc,
int bufferSize)
Inits BufferedIndexInput with a specific bufferSize
|
BufferedIndexInput(String resourceDesc,
IOContext context) |
Modifier and Type | Method and Description |
---|---|
static int |
bufferSize(IOContext context)
Returns default buffer sizes for the given
IOContext |
BufferedIndexInput |
clone()
Returns a clone of this stream.
|
protected int |
flushBuffer(IndexOutput out,
long numBytes)
Flushes the in-memory buffer to the given output, copying at most
numBytes . |
int |
getBufferSize()
Returns buffer size.
|
long |
getFilePointer()
Returns the current position in this file, where the next read will
occur.
|
protected void |
newBuffer(byte[] newBuffer) |
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.
|
void |
readBytes(byte[] b,
int offset,
int len,
boolean useBuffer)
Reads a specified number of bytes into an array at the
specified offset with control over whether the read
should be buffered (callers who have their own buffer
should pass in "false" for useBuffer).
|
int |
readInt()
Reads four bytes and returns an int.
|
int |
readInt(long pos)
Reads an integer at the given position in the file
|
protected abstract void |
readInternal(byte[] b,
int offset,
int length)
Expert: implements buffer refill.
|
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
|
int |
readVInt()
Reads an int stored in variable-length format.
|
long |
readVLong()
Reads a long stored in variable-length format.
|
void |
seek(long pos)
Sets current position in this file, where the next read will occur.
|
protected abstract void |
seekInternal(long pos)
Expert: implements seek.
|
void |
setBufferSize(int newSize)
Change the buffer size used by this IndexInput
|
IndexInput |
slice(String sliceDescription,
long offset,
long length)
Creates a slice of this index input, with the given description, offset, and length.
|
static BufferedIndexInput |
wrap(String sliceDescription,
IndexInput other,
long offset,
long length)
Wraps a portion of another IndexInput with buffering.
|
close, getFullSliceDescription, length, randomAccessSlice, toString
readMapOfStrings, readSetOfStrings, readString, readZInt, readZLong, skipBytes
public static final int BUFFER_SIZE
public static final int MIN_BUFFER_SIZE
public static final int MERGE_BUFFER_SIZE
protected byte[] buffer
public BufferedIndexInput(String resourceDesc)
public BufferedIndexInput(String resourceDesc, int bufferSize)
public final byte readByte() throws IOException
DataInput
readByte
in class DataInput
IOException
DataOutput.writeByte(byte)
public final void setBufferSize(int newSize)
protected void newBuffer(byte[] newBuffer)
public final int getBufferSize()
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 final void readBytes(byte[] b, int offset, int len, boolean useBuffer) throws IOException
DataInput
BufferedIndexInput
respects this parameter.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 readuseBuffer
- set to false if the caller will handle
buffering.IOException
DataOutput.writeBytes(byte[],int)
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 final int readVInt() throws IOException
DataInput
The format is described further in DataOutput.writeVInt(int)
.
readVInt
in class DataInput
IOException
DataOutput.writeVInt(int)
public final long readVLong() throws IOException
DataInput
The format is described further in DataOutput.writeVInt(int)
.
readVLong
in class DataInput
IOException
DataOutput.writeVLong(long)
public final byte readByte(long pos) throws IOException
RandomAccessInput
readByte
in interface RandomAccessInput
IOException
DataInput.readByte()
public final short readShort(long pos) throws IOException
RandomAccessInput
readShort
in interface RandomAccessInput
IOException
DataInput.readShort()
public final int readInt(long pos) throws IOException
RandomAccessInput
readInt
in interface RandomAccessInput
IOException
DataInput.readInt()
public final long readLong(long pos) throws IOException
RandomAccessInput
readLong
in interface RandomAccessInput
IOException
DataInput.readLong()
protected abstract void readInternal(byte[] b, int offset, int length) throws IOException
b
- the array to read bytes intooffset
- the offset in the array to start storing byteslength
- the number of bytes to readIOException
public final long getFilePointer()
IndexInput
getFilePointer
in class IndexInput
IndexInput.seek(long)
public final void seek(long pos) throws IOException
IndexInput
EOFException
and then the
stream is in an undetermined state.seek
in class IndexInput
IOException
IndexInput.getFilePointer()
protected abstract void seekInternal(long pos) throws IOException
readInternal(byte[],int,int)
will occur.IOException
readInternal(byte[],int,int)
public BufferedIndexInput 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 IndexInput slice(String sliceDescription, long offset, long length) throws IOException
IndexInput
slice
in class IndexInput
IOException
protected final int flushBuffer(IndexOutput out, long numBytes) throws IOException
numBytes
.
NOTE: this method does not refill the buffer, however it does advance the buffer position.
IOException
public static int bufferSize(IOContext context)
IOContext
public static BufferedIndexInput wrap(String sliceDescription, IndexInput other, long offset, long length)
Please note: This is in most cases ineffective, because it may double buffer!
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.