Bug 55116: patch for missing function Dec2Bin

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1531390 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Cédric Walter 2013-10-11 18:49:19 +00:00
parent be144a48fd
commit c70043f1d5
3 changed files with 112 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public final class AnalysisToolPak implements UDFFinder {
r(m, "CUBEVALUE", null);
r(m, "CUMIPMT", null);
r(m, "CUMPRINC", null);
r(m, "DEC2BIN", null);
r(m, "DEC2BIN", Dec2Bin.instance);
r(m, "DEC2HEX", null);
r(m, "DEC2OCT", null);
r(m, "DELTA", Delta.instance);

View File

@ -0,0 +1,111 @@
package org.apache.poi.ss.formula.functions;
import org.apache.poi.ss.formula.OperationEvaluationContext;
import org.apache.poi.ss.formula.eval.*;
/**
* Implementation for Excel Bin2Dec() function.<p/>
* <p/>
* <b>Syntax</b>:<br/> <b>Bin2Dec </b>(<b>number</b>,<b>[places]</b> )<br/>
* <p/>
* Converts a decimal number to binary.
* <p/>
* The DEC2BIN function syntax has the following arguments:
* <ul>
* <li>Number Required. The decimal integer you want to convert. If number is negative, valid place values are ignored and DEC2BIN returns a 10-character (10-bit) binary number in which the most significant bit is the sign bit. The remaining 9 bits are magnitude bits. Negative numbers are represented using two's-complement notation.</li>
* <li>Places Optional. The number of characters to use. If places is omitted, DEC2BIN uses the minimum number of characters necessary. Places is useful for padding the return value with leading 0s (zeros).</li>
* </ul>
* <p/>
* Remarks
* <ul>
* <li>If number < -512 or if number > 511, DEC2BIN returns the #NUM! error value.</li>
* <li>If number is nonnumeric, DEC2BIN returns the #VALUE! error value.</li>
* <li>If DEC2BIN requires more than places characters, it returns the #NUM! error value.</li>
* <li>If places is not an integer, it is truncated.</li>
* <li>If places is nonnumeric, DEC2BIN returns the #VALUE! error value.</li>
* <li>If places is zero or negative, DEC2BIN returns the #NUM! error value.</li>
* </ul>
*
* @author cedric dot walter @ gmail dot com
*/
public class Dec2Bin extends Var1or2ArgFunction implements FreeRefFunction {
public static final FreeRefFunction instance = new Dec2Bin();
private final static long MIN_VALUE = Long.parseLong("-512");
private final static long MAX_VALUE = Long.parseLong("512");
private final static int DEFAULT_PLACES_VALUE = 10;
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval numberVE, ValueEval placesVE) {
ValueEval veText1;
try {
veText1 = OperandResolver.getSingleValue(numberVE, srcRowIndex, srcColumnIndex);
} catch (EvaluationException e) {
return e.getErrorEval();
}
String strText1 = OperandResolver.coerceValueToString(veText1);
Double number = OperandResolver.parseDouble(strText1);
//If this number argument is non numeric, this function returns the #VALUE! error value.
if (number == null) {
return ErrorEval.VALUE_INVALID;
}
//If number < -512 or if number > 512, this function returns the #NUM! error value.
if (number.longValue() < MIN_VALUE || number.longValue() > MAX_VALUE) {
return ErrorEval.NUM_ERROR;
}
int placesNumber;
if (number < 0 || placesVE == null) {
placesNumber = DEFAULT_PLACES_VALUE;
} else {
ValueEval placesValueEval;
try {
placesValueEval = OperandResolver.getSingleValue(placesVE, srcRowIndex, srcColumnIndex);
} catch (EvaluationException e) {
return e.getErrorEval();
}
String placesStr = OperandResolver.coerceValueToString(placesValueEval);
Double placesNumberDouble = OperandResolver.parseDouble(placesStr);
//non numeric value
if (placesNumberDouble == null) {
return ErrorEval.VALUE_INVALID;
}
//If this argument contains a decimal value, this function ignores the numbers to the right side of the decimal point.
placesNumber = placesNumberDouble.intValue();
if (placesNumber < 0 || placesNumber == 0) {
return ErrorEval.NUM_ERROR;
}
}
String binary = Integer.toBinaryString(number.intValue());
if (binary.length() > DEFAULT_PLACES_VALUE) {
binary = binary.substring(binary.length() - DEFAULT_PLACES_VALUE, binary.length());
}
//If DEC2BIN requires more than places characters, it returns the #NUM! error value.
if (binary.length() > placesNumber) {
return ErrorEval.NUM_ERROR;
}
return new StringEval(binary);
}
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval numberVE) {
return this.evaluate(srcRowIndex, srcColumnIndex, numberVE, null);
}
public ValueEval evaluate(ValueEval[] args, OperationEvaluationContext ec) {
if (args.length == 1) {
return evaluate(ec.getRowIndex(), ec.getColumnIndex(), args[0]);
}
if (args.length == 2) {
return evaluate(ec.getRowIndex(), ec.getColumnIndex(), args[0], args[1]);
}
return ErrorEval.VALUE_INVALID;
}
}