java.lang.Object
org.apache.lucene.codecs.StoredFieldsWriter
- All Implemented Interfaces:
Closeable,AutoCloseable,Accountable
- Direct Known Subclasses:
Lucene90CompressingStoredFieldsWriter,SimpleTextStoredFieldsWriter
Codec API for writing stored fields:
- For every document,
startDocument()is called, informing the Codec that a new document has started. writeField(FieldInfo, IndexableField)is called for each field in the document.- After all documents have been written,
finish(int)is called for verification/sanity-checks. - Finally the writer is closed (
close())
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classA visitor that adds every field it sees.private static class -
Field Summary
Fields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidclose()abstract voidfinish(int numDocs) Called beforeclose(), passing in the number of documents that were written.voidCalled when a document and all its fields have been added.intmerge(MergeState mergeState) Merges in the stored fields from the readers inmergeState.abstract voidCalled before writing the stored fields of the document.abstract voidwriteField(FieldInfo info, IndexableField field) Writes a single stored field.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.lucene.util.Accountable
getChildResources, ramBytesUsed
-
Constructor Details
-
StoredFieldsWriter
protected StoredFieldsWriter()Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
startDocument
Called before writing the stored fields of the document.writeField(FieldInfo, IndexableField)will be called for each stored field. Note that this is called even if the document has no stored fields.- Throws:
IOException
-
finishDocument
Called when a document and all its fields have been added.- Throws:
IOException
-
writeField
Writes a single stored field.- Throws:
IOException
-
finish
Called beforeclose(), passing in the number of documents that were written. Note that this is intentionally redundant (equivalent to the number of calls tostartDocument(), but a Codec should check that this is the case to detect the JRE bug described in LUCENE-1282.- Throws:
IOException
-
merge
Merges in the stored fields from the readers inmergeState. The default implementation skips over deleted documents, and usesstartDocument(),writeField(FieldInfo, IndexableField), andfinish(int), returning the number of documents that were written. Implementations can override this method for more sophisticated merging (bulk-byte copying, etc).- Throws:
IOException
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-