public final class TeeSinkTokenFilter extends TokenFilter
TeeSinkTokenFilter source1 = new TeeSinkTokenFilter(new WhitespaceTokenizer(version, reader1)); TeeSinkTokenFilter.SinkTokenStream sink1 = source1.newSinkTokenStream(); TeeSinkTokenFilter.SinkTokenStream sink2 = source1.newSinkTokenStream(); TeeSinkTokenFilter source2 = new TeeSinkTokenFilter(new WhitespaceTokenizer(version, reader2)); source2.addSinkTokenStream(sink1); source2.addSinkTokenStream(sink2); TokenStream final1 = new LowerCaseFilter(version, source1); TokenStream final2 = source2; TokenStream final3 = new EntityDetect(sink1); TokenStream final4 = new URLDetect(sink2); d.add(new TextField("f1", final1, Field.Store.NO)); d.add(new TextField("f2", final2, Field.Store.NO)); d.add(new TextField("f3", final3, Field.Store.NO)); d.add(new TextField("f4", final4, Field.Store.NO));In this example,
sink1
and sink2
will both get tokens from both
reader1
and reader2
after whitespace tokenizer
and now we can further wrap any of these in extra analysis, and more "sources" can be inserted if desired.
It is important, that tees are consumed before sinks (in the above example, the field names must be
less the sink's field names). If you are not sure, which stream is consumed first, you can simply
add another sink and then pass all tokens to the sinks at once using consumeAllTokens()
.
This TokenFilter is exhausted after this. In the above example, change
the example above to:
... TokenStream final1 = new LowerCaseFilter(version, source1.newSinkTokenStream()); TokenStream final2 = source2.newSinkTokenStream(); sink1.consumeAllTokens(); sink2.consumeAllTokens(); ...In this case, the fields can be added in any order, because the sources are not used anymore and all sinks are ready.
Note, the EntityDetect and URLDetect TokenStreams are for the example and do not currently exist in Lucene.
Modifier and Type | Class and Description |
---|---|
static class |
TeeSinkTokenFilter.SinkFilter
A filter that decides which
AttributeSource states to store in the sink. |
static class |
TeeSinkTokenFilter.SinkTokenStream
TokenStream output from a tee with optional filtering.
|
AttributeSource.State
input
DEFAULT_TOKEN_ATTRIBUTE_FACTORY
DEFAULT_ATTRIBUTE_FACTORY
Constructor and Description |
---|
TeeSinkTokenFilter(TokenStream input)
Instantiates a new TeeSinkTokenFilter.
|
Modifier and Type | Method and Description |
---|---|
void |
addSinkTokenStream(TeeSinkTokenFilter.SinkTokenStream sink)
Adds a
TeeSinkTokenFilter.SinkTokenStream created by another TeeSinkTokenFilter
to this one. |
void |
consumeAllTokens()
TeeSinkTokenFilter passes all tokens to the added sinks
when itself is consumed. |
void |
end() |
boolean |
incrementToken() |
TeeSinkTokenFilter.SinkTokenStream |
newSinkTokenStream()
Returns a new
TeeSinkTokenFilter.SinkTokenStream that receives all tokens consumed by this stream. |
TeeSinkTokenFilter.SinkTokenStream |
newSinkTokenStream(TeeSinkTokenFilter.SinkFilter filter)
Returns a new
TeeSinkTokenFilter.SinkTokenStream that receives all tokens consumed by this stream
that pass the supplied filter. |
close, reset
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, restoreState, toString
public TeeSinkTokenFilter(TokenStream input)
public TeeSinkTokenFilter.SinkTokenStream newSinkTokenStream()
TeeSinkTokenFilter.SinkTokenStream
that receives all tokens consumed by this stream.public TeeSinkTokenFilter.SinkTokenStream newSinkTokenStream(TeeSinkTokenFilter.SinkFilter filter)
TeeSinkTokenFilter.SinkTokenStream
that receives all tokens consumed by this stream
that pass the supplied filter.TeeSinkTokenFilter.SinkFilter
public void addSinkTokenStream(TeeSinkTokenFilter.SinkTokenStream sink)
TeeSinkTokenFilter.SinkTokenStream
created by another TeeSinkTokenFilter
to this one. The supplied stream will also receive all consumed tokens.
This method can be used to pass tokens from two different tees to one sink.public void consumeAllTokens() throws IOException
TeeSinkTokenFilter
passes all tokens to the added sinks
when itself is consumed. To be sure, that all tokens from the input
stream are passed to the sinks, you can call this methods.
This instance is exhausted after this, but all sinks are instant available.IOException
public boolean incrementToken() throws IOException
incrementToken
in class TokenStream
IOException
public final void end() throws IOException
end
in class TokenFilter
IOException
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.