mirror of https://github.com/apache/lucene.git
LUCENE-3919: add convenience ctors to MockTokenizer,MockCharFilter, fix MockCharFilter to chain its correctOffset
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1310811 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ed485b29ec
commit
4b638a2903
|
@ -22,19 +22,24 @@ import java.io.Reader;
|
||||||
import java.util.SortedMap;
|
import java.util.SortedMap;
|
||||||
import java.util.TreeMap;
|
import java.util.TreeMap;
|
||||||
|
|
||||||
// the purpose of this charfilter is to send offsets out of bounds
|
/** the purpose of this charfilter is to send offsets out of bounds
|
||||||
// if the analyzer doesn't use correctOffset or does incorrect offset math.
|
if the analyzer doesn't use correctOffset or does incorrect offset math. */
|
||||||
class MockCharFilter extends CharStream {
|
public class MockCharFilter extends CharStream {
|
||||||
final Reader in;
|
final CharStream in;
|
||||||
final int remainder;
|
final int remainder;
|
||||||
|
|
||||||
// for testing only
|
// for testing only
|
||||||
public MockCharFilter(Reader in, int remainder) {
|
public MockCharFilter(Reader in, int remainder) {
|
||||||
this.in = in;
|
this.in = CharReader.get(in);
|
||||||
this.remainder = remainder;
|
this.remainder = remainder;
|
||||||
assert remainder >= 0 && remainder < 10 : "invalid parameter";
|
assert remainder >= 0 && remainder < 10 : "invalid parameter";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// for testing only, uses a remainder of 0
|
||||||
|
public MockCharFilter(Reader in) {
|
||||||
|
this(in, 0);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
in.close();
|
in.close();
|
||||||
|
@ -89,7 +94,7 @@ class MockCharFilter extends CharStream {
|
||||||
SortedMap<Integer,Integer> subMap = corrections.subMap(0, currentOff+1);
|
SortedMap<Integer,Integer> subMap = corrections.subMap(0, currentOff+1);
|
||||||
int ret = subMap.isEmpty() ? currentOff : currentOff + subMap.get(subMap.lastKey());
|
int ret = subMap.isEmpty() ? currentOff : currentOff + subMap.get(subMap.lastKey());
|
||||||
assert ret >= 0 : "currentOff=" + currentOff + ",diff=" + (ret-currentOff);
|
assert ret >= 0 : "currentOff=" + currentOff + ",diff=" + (ret-currentOff);
|
||||||
return ret;
|
return in.correctOffset(ret); // chain the call
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void addOffCorrectMap(int off, int cumulativeDiff) {
|
protected void addOffCorrectMap(int off, int cumulativeDiff) {
|
||||||
|
|
|
@ -95,6 +95,11 @@ public class MockTokenizer extends Tokenizer {
|
||||||
this(input, runAutomaton, lowerCase, DEFAULT_MAX_TOKEN_LENGTH);
|
this(input, runAutomaton, lowerCase, DEFAULT_MAX_TOKEN_LENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Calls {@link #MockTokenizer(Reader, CharacterRunAutomaton, boolean) MockTokenizer(Reader, WHITESPACE, true)} */
|
||||||
|
public MockTokenizer(Reader input) {
|
||||||
|
this(input, WHITESPACE, true);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final boolean incrementToken() throws IOException {
|
public final boolean incrementToken() throws IOException {
|
||||||
assert !enableChecks || (streamState == State.RESET || streamState == State.INCREMENT)
|
assert !enableChecks || (streamState == State.RESET || streamState == State.INCREMENT)
|
||||||
|
|
Loading…
Reference in New Issue