My tests indicate that the following code is not thread safe even though the class is stateless and all state shared between methods is passed as parameters from method to method. A single instance of the following class is being invoked by multiple threads.
public class ThingFinder {
Token findFoo(TokenIterator<? extends Token> iterator,
Token start, final Token limit) {
Token partOfFoo = searchForward(iterator, start, new TokenSearcher() {
int maxTokens = 5;
@Override
public SearchAction assessToken(Token aToken) {
if (limit != null && (aToken.getStart() >= limit.getStart())) {
return SearchAction.STOP;
}
if (maxTokens-- == 0) {
return SearchAction.STOP;
}
if (isAThing(aToken)) {
return SearchAction.MATCH;
} else {
return SearchAction.IGNORE;
}
}
});
return partOfFoo;
}
public Token extractAThing(TokenIterator<? extends Token> iterator) {
Token start = findStart(iterator);
Token limit = findLimit(iterator, start);
return findFoo(iterator, start, limit);
}
}
The intent was for this class to be thread safe due to the fact that is is stateless and all state that needs to be shared among methods is passed from method to method as parameters. However, the tests indicate that sometimes we get a null pointer exception at this line:
if (limit != null && (aToken.getStart() >= limit.getStart())) {
It seems that sometime between the null value check and the invocation of getStart the parameter limit is becoming null.
Note that the method findFoo declares the limit parameter to be final:
Token findFoo(TokenIterator<? extends Token> iterator, Token start,
final Token limit) {
Is it the case that final method parameters are not on the stack frame but instead one instance is shared among all invocations of the method? If it is true that there is one instance shared among all invocations then does this imply that using final parameters makes a class inherently thread Unsafe?
limitis the culprit, and notaToken? – Kevin K May 26 '11 at 22:43