|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.lucene.store.DataInput
org.apache.lucene.store.IndexInput
org.apache.lucene.store.BufferedIndexInput
public abstract class BufferedIndexInput
Base implementation class for buffered IndexInput.
| Field Summary | |
|---|---|
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 |
| Constructor Summary | |
|---|---|
BufferedIndexInput(String resourceDesc)
|
|
BufferedIndexInput(String resourceDesc,
int bufferSize)
Inits BufferedIndexInput with a specific bufferSize |
|
BufferedIndexInput(String resourceDesc,
IOContext context)
|
|
| Method Summary | |
|---|---|
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 bufer 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. |
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. |
protected abstract void |
readInternal(byte[] b,
int offset,
int length)
Expert: implements buffer refill. |
long |
readLong()
Reads eight bytes and returns a long. |
short |
readShort()
Reads two bytes and returns a short. |
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 |
| Methods inherited from class org.apache.lucene.store.IndexInput |
|---|
close, length, toString |
| Methods inherited from class org.apache.lucene.store.DataInput |
|---|
readString, readStringSet, readStringStringMap |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final int BUFFER_SIZE
public static final int MERGE_BUFFER_SIZE
protected byte[] buffer
| Constructor Detail |
|---|
public BufferedIndexInput(String resourceDesc)
public BufferedIndexInput(String resourceDesc,
IOContext context)
public BufferedIndexInput(String resourceDesc,
int bufferSize)
| Method Detail |
|---|
public final byte readByte()
throws IOException
DataInput
readByte in class DataInputIOExceptionDataOutput.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 DataInputb - the array to read bytes intooffset - the offset in the array to start storing byteslen - the number of bytes to read
IOExceptionDataOutput.writeBytes(byte[],int)
public final void readBytes(byte[] b,
int offset,
int len,
boolean useBuffer)
throws IOException
DataInputBufferedIndexInput respects this parameter.
readBytes in class DataInputb - 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.
IOExceptionDataOutput.writeBytes(byte[],int)
public final short readShort()
throws IOException
DataInput
readShort in class DataInputIOExceptionDataOutput.writeByte(byte)
public final int readInt()
throws IOException
DataInput
readInt in class DataInputIOExceptionDataOutput.writeInt(int)
public final long readLong()
throws IOException
DataInput
readLong in class DataInputIOExceptionDataOutput.writeLong(long)
public final int readVInt()
throws IOException
DataInput
The format is described further in DataOutput.writeVInt(int).
readVInt in class DataInputIOExceptionDataOutput.writeVInt(int)
public final long readVLong()
throws IOException
DataInput
The format is described further in DataOutput.writeVInt(int).
readVLong in class DataInputIOExceptionDataOutput.writeVLong(long)
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 read
IOExceptionpublic final long getFilePointer()
IndexInput
getFilePointer in class IndexInputIndexInput.seek(long)
public final void seek(long pos)
throws IOException
IndexInput
seek in class IndexInputIOExceptionIndexInput.getFilePointer()
protected abstract void seekInternal(long pos)
throws IOException
readInternal(byte[],int,int) will occur.
IOExceptionreadInternal(byte[],int,int)public BufferedIndexInput clone()
IndexInputClones 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
IndexInputs, it will only do this on the original one.
The original instance must take care that cloned instances throw
AlreadyClosedException when the original one is closed.
clone in class IndexInput
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.
IOExceptionpublic static int bufferSize(IOContext context)
IOContext
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||