Bug 58341: fix some edge cases in the DStar function
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1708606 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc576a9887
commit
d15ef65b8f
@ -24,6 +24,7 @@ import org.apache.poi.ss.formula.eval.EvaluationException;
|
|||||||
import org.apache.poi.ss.formula.eval.NotImplementedException;
|
import org.apache.poi.ss.formula.eval.NotImplementedException;
|
||||||
import org.apache.poi.ss.formula.eval.NumericValueEval;
|
import org.apache.poi.ss.formula.eval.NumericValueEval;
|
||||||
import org.apache.poi.ss.formula.eval.RefEval;
|
import org.apache.poi.ss.formula.eval.RefEval;
|
||||||
|
import org.apache.poi.ss.formula.eval.StringEval;
|
||||||
import org.apache.poi.ss.formula.eval.StringValueEval;
|
import org.apache.poi.ss.formula.eval.StringValueEval;
|
||||||
import org.apache.poi.ss.formula.eval.ValueEval;
|
import org.apache.poi.ss.formula.eval.ValueEval;
|
||||||
import org.apache.poi.ss.util.NumberComparer;
|
import org.apache.poi.ss.util.NumberComparer;
|
||||||
@ -234,23 +235,26 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
targetHeader = solveReference(targetHeader);
|
targetHeader = solveReference(targetHeader);
|
||||||
|
|
||||||
|
|
||||||
if(!(targetHeader instanceof StringValueEval))
|
if(!(targetHeader instanceof StringValueEval)) {
|
||||||
columnCondition = false;
|
throw new EvaluationException(ErrorEval.VALUE_INVALID);
|
||||||
else if (getColumnForName(targetHeader, db) == -1)
|
}
|
||||||
|
|
||||||
|
if (getColumnForName(targetHeader, db) == -1)
|
||||||
// No column found, it's again a special column that accepts formulas.
|
// No column found, it's again a special column that accepts formulas.
|
||||||
columnCondition = false;
|
columnCondition = false;
|
||||||
|
|
||||||
if(columnCondition == true) { // normal column condition
|
if(columnCondition == true) { // normal column condition
|
||||||
// Should not throw, checked above.
|
// Should not throw, checked above.
|
||||||
ValueEval target = db.getValue(
|
ValueEval value = db.getValue(
|
||||||
row, getColumnForName(targetHeader, db));
|
row, getColumnForName(targetHeader, db));
|
||||||
// Must be a string.
|
if(!testNormalCondition(value, condition)) {
|
||||||
String conditionString = getStringFromValueEval(condition);
|
|
||||||
if(!testNormalCondition(target, conditionString)) {
|
|
||||||
matches = false;
|
matches = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else { // It's a special formula condition.
|
} else { // It's a special formula condition.
|
||||||
|
if(getStringFromValueEval(condition).isEmpty()) {
|
||||||
|
throw new EvaluationException(ErrorEval.VALUE_INVALID);
|
||||||
|
}
|
||||||
throw new NotImplementedException(
|
throw new NotImplementedException(
|
||||||
"D* function with formula conditions");
|
"D* function with formula conditions");
|
||||||
}
|
}
|
||||||
@ -270,10 +274,13 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
* @return Whether the condition holds.
|
* @return Whether the condition holds.
|
||||||
* @throws EvaluationException If comparison operator and operands don't match.
|
* @throws EvaluationException If comparison operator and operands don't match.
|
||||||
*/
|
*/
|
||||||
private static boolean testNormalCondition(ValueEval value, String condition)
|
private static boolean testNormalCondition(ValueEval value, ValueEval condition)
|
||||||
throws EvaluationException {
|
throws EvaluationException {
|
||||||
if(condition.startsWith("<")) { // It's a </<= condition.
|
if(condition instanceof StringEval) {
|
||||||
String number = condition.substring(1);
|
String conditionString = ((StringEval)condition).getStringValue();
|
||||||
|
|
||||||
|
if(conditionString.startsWith("<")) { // It's a </<= condition.
|
||||||
|
String number = conditionString.substring(1);
|
||||||
if(number.startsWith("=")) {
|
if(number.startsWith("=")) {
|
||||||
number = number.substring(1);
|
number = number.substring(1);
|
||||||
return testNumericCondition(value, operator.smallerEqualThan, number);
|
return testNumericCondition(value, operator.smallerEqualThan, number);
|
||||||
@ -281,8 +288,8 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
return testNumericCondition(value, operator.smallerThan, number);
|
return testNumericCondition(value, operator.smallerThan, number);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(condition.startsWith(">")) { // It's a >/>= condition.
|
else if(conditionString.startsWith(">")) { // It's a >/>= condition.
|
||||||
String number = condition.substring(1);
|
String number = conditionString.substring(1);
|
||||||
if(number.startsWith("=")) {
|
if(number.startsWith("=")) {
|
||||||
number = number.substring(1);
|
number = number.substring(1);
|
||||||
return testNumericCondition(value, operator.largerEqualThan, number);
|
return testNumericCondition(value, operator.largerEqualThan, number);
|
||||||
@ -290,8 +297,12 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
return testNumericCondition(value, operator.largerThan, number);
|
return testNumericCondition(value, operator.largerThan, number);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(condition.startsWith("=")) { // It's a = condition.
|
else if(conditionString.startsWith("=")) { // It's a = condition.
|
||||||
String stringOrNumber = condition.substring(1);
|
String stringOrNumber = conditionString.substring(1);
|
||||||
|
|
||||||
|
if(stringOrNumber.isEmpty()) {
|
||||||
|
return value instanceof BlankEval;
|
||||||
|
}
|
||||||
// Distinguish between string and number.
|
// Distinguish between string and number.
|
||||||
boolean itsANumber = false;
|
boolean itsANumber = false;
|
||||||
try {
|
try {
|
||||||
@ -308,12 +319,38 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
if(itsANumber) {
|
if(itsANumber) {
|
||||||
return testNumericCondition(value, operator.equal, stringOrNumber);
|
return testNumericCondition(value, operator.equal, stringOrNumber);
|
||||||
} else { // It's a string.
|
} else { // It's a string.
|
||||||
String valueString = getStringFromValueEval(value);
|
String valueString = value instanceof BlankEval ? "" : getStringFromValueEval(value);
|
||||||
return stringOrNumber.equals(valueString);
|
return stringOrNumber.equals(valueString);
|
||||||
}
|
}
|
||||||
} else { // It's a text starts-with condition.
|
} else { // It's a text starts-with condition.
|
||||||
String valueString = getStringFromValueEval(value);
|
if(conditionString.isEmpty()) {
|
||||||
return valueString.startsWith(condition);
|
return value instanceof StringEval;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
String valueString = value instanceof BlankEval ? "" : getStringFromValueEval(value);
|
||||||
|
return valueString.startsWith(conditionString);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(condition instanceof NumericValueEval) {
|
||||||
|
double conditionNumber = ((NumericValueEval)condition).getNumberValue();
|
||||||
|
Double valueNumber = getNumerFromValueEval(value);
|
||||||
|
if(valueNumber == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return conditionNumber == valueNumber;
|
||||||
|
}
|
||||||
|
else if(condition instanceof ErrorEval) {
|
||||||
|
if(value instanceof ErrorEval) {
|
||||||
|
return ((ErrorEval)condition).getErrorCode() == ((ErrorEval)value).getErrorCode();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -362,6 +399,23 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
return false; // Can not be reached.
|
return false; // Can not be reached.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static Double getNumerFromValueEval(ValueEval value) {
|
||||||
|
if(value instanceof NumericValueEval) {
|
||||||
|
return ((NumericValueEval)value).getNumberValue();
|
||||||
|
}
|
||||||
|
else if(value instanceof StringValueEval) {
|
||||||
|
String stringValue = ((StringValueEval)value).getStringValue();
|
||||||
|
try {
|
||||||
|
return Double.parseDouble(stringValue);
|
||||||
|
} catch (NumberFormatException e2) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Takes a ValueEval and tries to retrieve a String value from it.
|
* Takes a ValueEval and tries to retrieve a String value from it.
|
||||||
* It tries to resolve references if there are any.
|
* It tries to resolve references if there are any.
|
||||||
@ -373,8 +427,6 @@ public final class DStarRunner implements Function3Arg {
|
|||||||
private static String getStringFromValueEval(ValueEval value)
|
private static String getStringFromValueEval(ValueEval value)
|
||||||
throws EvaluationException {
|
throws EvaluationException {
|
||||||
value = solveReference(value);
|
value = solveReference(value);
|
||||||
if(value instanceof BlankEval)
|
|
||||||
return "";
|
|
||||||
if(!(value instanceof StringValueEval))
|
if(!(value instanceof StringValueEval))
|
||||||
throw new EvaluationException(ErrorEval.VALUE_INVALID);
|
throw new EvaluationException(ErrorEval.VALUE_INVALID);
|
||||||
return ((StringValueEval)value).getStringValue();
|
return ((StringValueEval)value).getStringValue();
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user