mirror of https://github.com/apache/lucene.git
LUCENE-3990: Fix CharFilter to delegate correctly (and prevent CharFilter slowdown! - maybe backport!!!)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1326512 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b07186492
commit
9252239fee
|
@ -54,6 +54,11 @@ public final class CharReader extends CharStream {
|
||||||
return input.read(cbuf, off, len);
|
return input.read(cbuf, off, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int read() throws IOException {
|
||||||
|
return input.read();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean markSupported(){
|
public boolean markSupported(){
|
||||||
return input.markSupported();
|
return input.markSupported();
|
||||||
|
|
|
@ -65,6 +65,11 @@ public abstract class CharFilter extends CharStream {
|
||||||
return input.read(cbuf, off, len);
|
return input.read(cbuf, off, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int read() throws IOException {
|
||||||
|
return input.read();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean markSupported(){
|
public boolean markSupported(){
|
||||||
return input.markSupported();
|
return input.markSupported();
|
||||||
|
|
|
@ -756,77 +756,32 @@ public class TestRandomChains extends BaseTokenStreamTestCase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// wants charfilter to be a filterreader...
|
static final class CheckThatYouDidntReadAnythingReaderWrapper extends CharFilter {
|
||||||
// do *NOT* refactor me to be a charfilter: LUCENE-3990
|
boolean readSomething = false;
|
||||||
static class CheckThatYouDidntReadAnythingReaderWrapper extends CharStream {
|
|
||||||
boolean readSomething;
|
|
||||||
CharStream in;
|
|
||||||
|
|
||||||
CheckThatYouDidntReadAnythingReaderWrapper(Reader in) {
|
CheckThatYouDidntReadAnythingReaderWrapper(Reader in) {
|
||||||
this.in = CharReader.get(in);
|
super(CharReader.get(in));
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int correctOffset(int currentOff) {
|
|
||||||
return in.correctOffset(currentOff);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
|
||||||
in.close();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int read(char[] cbuf, int off, int len) throws IOException {
|
public int read(char[] cbuf, int off, int len) throws IOException {
|
||||||
readSomething = true;
|
readSomething = true;
|
||||||
return in.read(cbuf, off, len);
|
return super.read(cbuf, off, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int read() throws IOException {
|
public int read() throws IOException {
|
||||||
readSomething = true;
|
readSomething = true;
|
||||||
return in.read();
|
return super.read();
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read(CharBuffer target) throws IOException {
|
|
||||||
readSomething = true;
|
|
||||||
return in.read(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void mark(int readAheadLimit) throws IOException {
|
|
||||||
in.mark(readAheadLimit);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean markSupported() {
|
|
||||||
return in.markSupported();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read(char[] cbuf) throws IOException {
|
|
||||||
readSomething = true;
|
|
||||||
return in.read(cbuf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean ready() throws IOException {
|
|
||||||
return in.ready();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void reset() throws IOException {
|
|
||||||
in.reset();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public long skip(long n) throws IOException {
|
public long skip(long n) throws IOException {
|
||||||
readSomething = true;
|
readSomething = true;
|
||||||
return in.skip(n);
|
return super.skip(n);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static class TokenizerSpec {
|
static class TokenizerSpec {
|
||||||
Tokenizer tokenizer;
|
Tokenizer tokenizer;
|
||||||
String toString;
|
String toString;
|
||||||
|
|
Loading…
Reference in New Issue