public abstract class CodecReader extends LeafReader implements Accountable
LeafReader.CoreClosedListenerIndexReader.ReaderClosedListener| Modifier and Type | Field and Description |
|---|---|
(package private) CloseableThreadLocal<java.util.Map<java.lang.String,Bits>> |
docsWithFieldLocal |
(package private) CloseableThreadLocal<java.util.Map<java.lang.String,java.lang.Object>> |
docValuesLocal |
(package private) CloseableThreadLocal<java.util.Map<java.lang.String,NumericDocValues>> |
normsLocal |
| Modifier | Constructor and Description |
|---|---|
protected |
CodecReader()
Sole constructor.
|
| Modifier and Type | Method and Description |
|---|---|
private void |
checkBounds(int docID) |
void |
checkIntegrity()
Checks consistency of this reader.
|
protected void |
doClose()
Implements close.
|
void |
document(int docID,
StoredFieldVisitor visitor)
Expert: visits the fields of a stored document, for
custom processing/loading of each field.
|
Fields |
fields()
Returns
Fields for this reader. |
BinaryDocValues |
getBinaryDocValues(java.lang.String field)
Returns
BinaryDocValues for this field, or
null if no BinaryDocValues were indexed for
this field. |
java.util.Collection<Accountable> |
getChildResources()
Returns nested resources of this class.
|
Bits |
getDocsWithField(java.lang.String field)
Returns a
Bits at the size of reader.maxDoc(),
with turned on bits for each docid that does have a value for this field,
or null if no DocValues were indexed for this field. |
abstract DocValuesProducer |
getDocValuesReader()
Expert: retrieve underlying DocValuesProducer
|
private FieldInfo |
getDVField(java.lang.String field,
DocValuesType type) |
abstract StoredFieldsReader |
getFieldsReader()
Expert: retrieve thread-private StoredFieldsReader
|
abstract NormsProducer |
getNormsReader()
Expert: retrieve underlying NormsProducer
|
NumericDocValues |
getNormValues(java.lang.String field)
Returns
NumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. |
NumericDocValues |
getNumericDocValues(java.lang.String field)
Returns
NumericDocValues for this field, or
null if no NumericDocValues were indexed for
this field. |
abstract PointsReader |
getPointsReader()
Expert: retrieve underlying PointsReader
|
abstract FieldsProducer |
getPostingsReader()
Expert: retrieve underlying FieldsProducer
|
SortedDocValues |
getSortedDocValues(java.lang.String field)
Returns
SortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. |
SortedNumericDocValues |
getSortedNumericDocValues(java.lang.String field)
Returns
SortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. |
SortedSetDocValues |
getSortedSetDocValues(java.lang.String field)
Returns
SortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. |
Fields |
getTermVectors(int docID)
Retrieve term vectors for this document, or null if
term vectors were not indexed.
|
abstract TermVectorsReader |
getTermVectorsReader()
Expert: retrieve thread-private TermVectorsReader
|
long |
ramBytesUsed()
Return the memory usage of this object in bytes.
|
addCoreClosedListener, addCoreClosedListenerAsReaderClosedListener, docFreq, getContext, getDocCount, getFieldInfos, getLiveDocs, getPointValues, getSumDocFreq, getSumTotalTermFreq, postings, postings, removeCoreClosedListener, removeCoreClosedListenerAsReaderClosedListener, terms, totalTermFreqaddReaderClosedListener, close, decRef, document, document, ensureOpen, equals, getCombinedCoreAndDeletesKey, getCoreCacheKey, getRefCount, getTermVector, hasDeletions, hashCode, incRef, leaves, maxDoc, numDeletedDocs, numDocs, registerParentReader, removeReaderClosedListener, tryIncReffinal CloseableThreadLocal<java.util.Map<java.lang.String,java.lang.Object>> docValuesLocal
final CloseableThreadLocal<java.util.Map<java.lang.String,Bits>> docsWithFieldLocal
final CloseableThreadLocal<java.util.Map<java.lang.String,NumericDocValues>> normsLocal
protected CodecReader()
public abstract StoredFieldsReader getFieldsReader()
public abstract TermVectorsReader getTermVectorsReader()
public abstract NormsProducer getNormsReader()
public abstract DocValuesProducer getDocValuesReader()
public abstract FieldsProducer getPostingsReader()
public abstract PointsReader getPointsReader()
public final void document(int docID,
StoredFieldVisitor visitor)
throws java.io.IOException
IndexReaderIndexReader.document(int). If you want to load a subset, use
DocumentStoredFieldVisitor.document in class IndexReaderjava.io.IOExceptionpublic final Fields getTermVectors(int docID) throws java.io.IOException
IndexReadergetTermVectors in class IndexReaderjava.io.IOExceptionprivate void checkBounds(int docID)
public final Fields fields()
LeafReaderFields for this reader.
This method will not return null.fields in class LeafReaderprivate FieldInfo getDVField(java.lang.String field, DocValuesType type)
public final NumericDocValues getNumericDocValues(java.lang.String field) throws java.io.IOException
LeafReaderNumericDocValues for this field, or
null if no NumericDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getNumericDocValues in class LeafReaderjava.io.IOExceptionpublic final Bits getDocsWithField(java.lang.String field) throws java.io.IOException
LeafReaderBits at the size of reader.maxDoc(),
with turned on bits for each docid that does have a value for this field,
or null if no DocValues were indexed for this field. The
returned instance should only be used by a single threadgetDocsWithField in class LeafReaderjava.io.IOExceptionpublic final BinaryDocValues getBinaryDocValues(java.lang.String field) throws java.io.IOException
LeafReaderBinaryDocValues for this field, or
null if no BinaryDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getBinaryDocValues in class LeafReaderjava.io.IOExceptionpublic final SortedDocValues getSortedDocValues(java.lang.String field) throws java.io.IOException
LeafReaderSortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedDocValues in class LeafReaderjava.io.IOExceptionpublic final SortedNumericDocValues getSortedNumericDocValues(java.lang.String field) throws java.io.IOException
LeafReaderSortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedNumericDocValues in class LeafReaderjava.io.IOExceptionpublic final SortedSetDocValues getSortedSetDocValues(java.lang.String field) throws java.io.IOException
LeafReaderSortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedSetDocValues in class LeafReaderjava.io.IOExceptionpublic final NumericDocValues getNormValues(java.lang.String field) throws java.io.IOException
LeafReaderNumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. The returned instance should only be
used by a single thread.getNormValues in class LeafReaderjava.io.IOExceptionprotected void doClose()
throws java.io.IOException
IndexReaderdoClose in class IndexReaderjava.io.IOExceptionpublic long ramBytesUsed()
AccountableramBytesUsed in interface Accountablepublic java.util.Collection<Accountable> getChildResources()
AccountablegetChildResources in interface AccountableAccountablespublic void checkIntegrity()
throws java.io.IOException
LeafReaderNote that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
checkIntegrity in class LeafReaderjava.io.IOException