mirror of https://github.com/apache/lucene.git
LUCENE-3042: When a filter or consumer added Attributes to a TokenStream chain after it was already (partly) consumed [or clearAttributes(), captureState(), cloneAttributes(),... was called by the Tokenizer], the Tokenizer calling clearAttributes() or capturing state after addition may not do this on the newly added Attribute
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1096073 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d566917576
commit
49ab81b316
|
@ -387,8 +387,8 @@ Test Cases
|
|||
|
||||
Build
|
||||
|
||||
* LUCENE-3006: Building javadocs will fail on warnings by default. Override with -Dfailonjavadocwarning=false (sarowe, gsingers)
|
||||
|
||||
* LUCENE-3006: Building javadocs will fail on warnings by default.
|
||||
Override with -Dfailonjavadocwarning=false (sarowe, gsingers)
|
||||
|
||||
======================= Lucene 3.x (not yet released) =======================
|
||||
|
||||
|
@ -410,6 +410,14 @@ Bug fixes
|
|||
seeking TermEnum (eg used by Solr's faceting) (Tom Burton-West, Mike
|
||||
McCandless)
|
||||
|
||||
* LUCENE-3042: When a filter or consumer added Attributes to a TokenStream
|
||||
chain after it was already (partly) consumed [or clearAttributes(),
|
||||
captureState(), cloneAttributes(),... was called by the Tokenizer],
|
||||
the Tokenizer calling clearAttributes() or capturing state after addition
|
||||
may not do this on the newly added Attribute. This bug affected only
|
||||
very special use cases of the TokenStream-API, most users would not
|
||||
have recognized it. (Uwe Schindler, Robert Muir)
|
||||
|
||||
======================= Lucene 3.1.0 =======================
|
||||
|
||||
Changes in backwards compatibility policy
|
||||
|
|
|
@ -93,10 +93,33 @@ public class AttributeSource {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This class holds the state of an AttributeSource.
|
||||
* @see #captureState
|
||||
* @see #restoreState
|
||||
*/
|
||||
public static final class State implements Cloneable {
|
||||
AttributeImpl attribute;
|
||||
State next;
|
||||
|
||||
@Override
|
||||
public Object clone() {
|
||||
State clone = new State();
|
||||
clone.attribute = (AttributeImpl) attribute.clone();
|
||||
|
||||
if (next != null) {
|
||||
clone.next = (State) next.clone();
|
||||
}
|
||||
|
||||
return clone;
|
||||
}
|
||||
}
|
||||
|
||||
// These two maps must always be in sync!!!
|
||||
// So they are private, final and read-only from the outside (read-only iterators)
|
||||
private final Map<Class<? extends Attribute>, AttributeImpl> attributes;
|
||||
private final Map<Class<? extends AttributeImpl>, AttributeImpl> attributeImpls;
|
||||
private final State[] currentState;
|
||||
|
||||
private AttributeFactory factory;
|
||||
|
||||
|
@ -116,6 +139,7 @@ public class AttributeSource {
|
|||
}
|
||||
this.attributes = input.attributes;
|
||||
this.attributeImpls = input.attributeImpls;
|
||||
this.currentState = input.currentState;
|
||||
this.factory = input.factory;
|
||||
}
|
||||
|
||||
|
@ -125,6 +149,7 @@ public class AttributeSource {
|
|||
public AttributeSource(AttributeFactory factory) {
|
||||
this.attributes = new LinkedHashMap<Class<? extends Attribute>, AttributeImpl>();
|
||||
this.attributeImpls = new LinkedHashMap<Class<? extends AttributeImpl>, AttributeImpl>();
|
||||
this.currentState = new State[1];
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
|
@ -147,11 +172,8 @@ public class AttributeSource {
|
|||
* if one instance implements more than one Attribute interface.
|
||||
*/
|
||||
public final Iterator<AttributeImpl> getAttributeImplsIterator() {
|
||||
if (hasAttributes()) {
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
final State initState = currentState;
|
||||
final State initState = getCurrentState();
|
||||
if (initState != null) {
|
||||
return new Iterator<AttributeImpl>() {
|
||||
private State state = initState;
|
||||
|
||||
|
@ -225,7 +247,7 @@ public class AttributeSource {
|
|||
// Attribute is a superclass of this interface
|
||||
if (!attributes.containsKey(curInterface)) {
|
||||
// invalidate state to force recomputation in captureState()
|
||||
this.currentState = null;
|
||||
this.currentState[0] = null;
|
||||
attributes.put(curInterface, att);
|
||||
attributeImpls.put(clazz, att);
|
||||
}
|
||||
|
@ -284,33 +306,12 @@ public class AttributeSource {
|
|||
return attClass.cast(attImpl);
|
||||
}
|
||||
|
||||
/**
|
||||
* This class holds the state of an AttributeSource.
|
||||
* @see #captureState
|
||||
* @see #restoreState
|
||||
*/
|
||||
public static final class State implements Cloneable {
|
||||
AttributeImpl attribute;
|
||||
State next;
|
||||
|
||||
@Override
|
||||
public Object clone() {
|
||||
State clone = new State();
|
||||
clone.attribute = (AttributeImpl) attribute.clone();
|
||||
|
||||
if (next != null) {
|
||||
clone.next = (State) next.clone();
|
||||
private State getCurrentState() {
|
||||
State s = currentState[0];
|
||||
if (s != null || !hasAttributes()) {
|
||||
return s;
|
||||
}
|
||||
|
||||
return clone;
|
||||
}
|
||||
}
|
||||
|
||||
private State currentState = null;
|
||||
|
||||
private void computeCurrentState() {
|
||||
currentState = new State();
|
||||
State c = currentState;
|
||||
State c = s = currentState[0] = new State();
|
||||
final Iterator<AttributeImpl> it = attributeImpls.values().iterator();
|
||||
c.attribute = it.next();
|
||||
while (it.hasNext()) {
|
||||
|
@ -318,6 +319,7 @@ public class AttributeSource {
|
|||
c = c.next;
|
||||
c.attribute = it.next();
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -325,29 +327,18 @@ public class AttributeSource {
|
|||
* {@link AttributeImpl#clear()} on each Attribute implementation.
|
||||
*/
|
||||
public final void clearAttributes() {
|
||||
if (hasAttributes()) {
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
for (State state = currentState; state != null; state = state.next) {
|
||||
for (State state = getCurrentState(); state != null; state = state.next) {
|
||||
state.attribute.clear();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Captures the state of all Attributes. The return value can be passed to
|
||||
* {@link #restoreState} to restore the state of this or another AttributeSource.
|
||||
*/
|
||||
public final State captureState() {
|
||||
if (!hasAttributes()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
return (State) this.currentState.clone();
|
||||
final State state = this.getCurrentState();
|
||||
return (state == null) ? null : (State) state.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -382,15 +373,9 @@ public class AttributeSource {
|
|||
@Override
|
||||
public int hashCode() {
|
||||
int code = 0;
|
||||
if (hasAttributes()) {
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
for (State state = currentState; state != null; state = state.next) {
|
||||
for (State state = getCurrentState(); state != null; state = state.next) {
|
||||
code = code * 31 + state.attribute.hashCode();
|
||||
}
|
||||
}
|
||||
|
||||
return code;
|
||||
}
|
||||
|
||||
|
@ -413,14 +398,8 @@ public class AttributeSource {
|
|||
}
|
||||
|
||||
// it is only equal if all attribute impls are the same in the same order
|
||||
if (this.currentState == null) {
|
||||
this.computeCurrentState();
|
||||
}
|
||||
State thisState = this.currentState;
|
||||
if (other.currentState == null) {
|
||||
other.computeCurrentState();
|
||||
}
|
||||
State otherState = other.currentState;
|
||||
State thisState = this.getCurrentState();
|
||||
State otherState = other.getCurrentState();
|
||||
while (thisState != null && otherState != null) {
|
||||
if (otherState.attribute.getClass() != thisState.attribute.getClass() || !otherState.attribute.equals(thisState.attribute)) {
|
||||
return false;
|
||||
|
@ -473,15 +452,10 @@ public class AttributeSource {
|
|||
* @see AttributeImpl#reflectWith
|
||||
*/
|
||||
public final void reflectWith(AttributeReflector reflector) {
|
||||
if (hasAttributes()) {
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
for (State state = currentState; state != null; state = state.next) {
|
||||
for (State state = getCurrentState(); state != null; state = state.next) {
|
||||
state.attribute.reflectWith(reflector);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs a clone of all {@link AttributeImpl} instances returned in a new
|
||||
|
@ -495,10 +469,7 @@ public class AttributeSource {
|
|||
|
||||
if (hasAttributes()) {
|
||||
// first clone the impls
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
for (State state = currentState; state != null; state = state.next) {
|
||||
for (State state = getCurrentState(); state != null; state = state.next) {
|
||||
clone.attributeImpls.put(state.attribute.getClass(), (AttributeImpl) state.attribute.clone());
|
||||
}
|
||||
|
||||
|
@ -520,11 +491,7 @@ public class AttributeSource {
|
|||
* {@link #cloneAttributes} instead of {@link #captureState}.
|
||||
*/
|
||||
public final void copyTo(AttributeSource target) {
|
||||
if (hasAttributes()) {
|
||||
if (currentState == null) {
|
||||
computeCurrentState();
|
||||
}
|
||||
for (State state = currentState; state != null; state = state.next) {
|
||||
for (State state = getCurrentState(); state != null; state = state.next) {
|
||||
final AttributeImpl targetImpl = target.attributeImpls.get(state.attribute.getClass());
|
||||
if (targetImpl == null) {
|
||||
throw new IllegalArgumentException("This AttributeSource contains AttributeImpl of type " +
|
||||
|
@ -533,6 +500,5 @@ public class AttributeSource {
|
|||
state.attribute.copyTo(targetImpl);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package org.apache.lucene.analysis;
|
||||
|
||||
import java.io.StringReader;
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.apache.lucene.util.automaton.Automaton;
|
||||
|
@ -95,4 +96,19 @@ public class TestMockAnalyzer extends BaseTokenStreamTestCase {
|
|||
new String[] { "ok", "fine" },
|
||||
new int[] { 1, 2 });
|
||||
}
|
||||
|
||||
public void testLUCENE_3042() throws Exception {
|
||||
String testString = "t";
|
||||
|
||||
Analyzer analyzer = new MockAnalyzer(random);
|
||||
TokenStream stream = analyzer.reusableTokenStream("dummy", new StringReader(testString));
|
||||
stream.reset();
|
||||
while (stream.incrementToken()) {
|
||||
// consume
|
||||
}
|
||||
stream.end();
|
||||
|
||||
assertAnalyzesToReuse(analyzer, testString, new String[] { "t" });
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue