public class DocMaker extends Object implements Closeable
Document objects. Uses a ContentSource to generate
DocData objects. Supports the following parameters:
ContentSource class to use
(default SingleDocSource).
doc.tokenized.norms is set to false, to allow norms storing just
for the body field. (default true).
DocData.getProps() will be indexed. (default false).
| Modifier and Type | Class and Description |
|---|---|
protected static class |
DocMaker.DocState
Document state, supports reuse of field instances
across documents (see
reuseFields parameter). |
| Modifier and Type | Field and Description |
|---|---|
static String |
BODY_FIELD |
protected FieldType |
bodyValType |
static String |
BYTES_FIELD |
protected Config |
config |
static String |
DATE_FIELD |
static String |
DATE_MSEC_FIELD |
static String |
ID_FIELD |
protected boolean |
indexProperties |
static String |
NAME_FIELD |
protected boolean |
reuseFields |
protected ContentSource |
source |
static String |
TIME_SEC_FIELD |
static String |
TITLE_FIELD |
protected FieldType |
valType |
| Constructor and Description |
|---|
DocMaker() |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the
DocMaker. |
protected DocMaker.DocState |
getDocState() |
Document |
makeDocument()
Creates a
Document object ready for indexing. |
Document |
makeDocument(int size)
Same as
makeDocument(), only this method creates a document of the
given size input by size. |
void |
resetInputs()
Reset inputs so that the test run would behave, input wise, as if it just started.
|
void |
setConfig(Config config,
ContentSource source)
Set the configuration parameters of this doc maker.
|
public static final String BODY_FIELD
public static final String TITLE_FIELD
public static final String DATE_FIELD
public static final String DATE_MSEC_FIELD
public static final String TIME_SEC_FIELD
public static final String ID_FIELD
public static final String BYTES_FIELD
public static final String NAME_FIELD
protected Config config
protected FieldType valType
protected FieldType bodyValType
protected ContentSource source
protected boolean reuseFields
protected boolean indexProperties
protected DocMaker.DocState getDocState()
public void close()
throws IOException
DocMaker. The base implementation closes the
ContentSource, and it can be overridden to do more work (but make
sure to call super.close()).close in interface Closeableclose in interface AutoCloseableIOExceptionpublic Document makeDocument() throws Exception
Document object ready for indexing. This method uses the
ContentSource to get the next document from the source, and creates
a Document object from the returned fields. If
reuseFields was set to true, it will reuse Document
and Field instances.Exceptionpublic Document makeDocument(int size) throws Exception
makeDocument(), only this method creates a document of the
given size input by size.Exceptionpublic void resetInputs()
throws IOException
IOExceptionpublic void setConfig(Config config, ContentSource source)
Copyright © 2000-2024 Apache Software Foundation. All Rights Reserved.