You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ye...@apache.org on 2013/06/03 01:39:42 UTC

svn commit: r1488811 - in /poi/trunk: src/java/org/apache/poi/ss/formula/eval/ src/java/org/apache/poi/ss/formula/functions/ src/testcases/org/apache/poi/ss/formula/functions/ test-data/spreadsheet/

Author: yegor
Date: Sun Jun  2 23:39:41 2013
New Revision: 1488811

URL: http://svn.apache.org/r1488811
Log:
Bug 55047: REPT formula support

Added:
    poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestReptFunctionsFromSpreadsheet.java
    poi/trunk/test-data/spreadsheet/ReptFunctionTestCaseData.xls   (with props)
Modified:
    poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java?rev=1488811&r1=1488810&r2=1488811&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java Sun Jun  2 23:39:41 2013
@@ -89,6 +89,7 @@ public final class FunctionEval {
 		retval[27] = NumericFunction.ROUND;
 		retval[28] = new Lookup();
 		retval[29] = new Index();
+		retval[30] = new Rept();
 
 		retval[31] = TextFunction.MID;
 		retval[32] = TextFunction.LEN;

Added: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java?rev=1488811&view=auto
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java (added)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java Sun Jun  2 23:39:41 2013
@@ -0,0 +1,74 @@
+/* ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+==================================================================== */
+
+package org.apache.poi.ss.formula.functions;
+
+import org.apache.poi.ss.formula.OperationEvaluationContext;
+import org.apache.poi.ss.formula.eval.*;
+
+import java.math.BigDecimal;
+
+/**
+ * Implementation for Excel REPT () function.<p/>
+ * <p/>
+ * <b>Syntax</b>:<br/> <b>REPT  </b>(<b>text</b>,<b>number_times</b> )<br/>
+ * <p/>
+ * Repeats text a given number of times. Use REPT to fill a cell with a number of instances of a text string.
+ *
+ * text : text The text that you want to repeat.
+ * number_times:	A positive number specifying the number of times to repeat text.
+ *
+ * If number_times is 0 (zero), REPT returns "" (empty text).
+ * If this argument contains a decimal value, this function ignores the numbers to the right side of the decimal point.
+ *
+ * The result of the REPT function cannot be longer than 32,767 characters, or REPT returns #VALUE!.
+ *
+ * @author cedric dot walter @ gmail dot com
+ */
+public class Rept extends Fixed2ArgFunction  {
+
+
+    @Override
+    public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval text, ValueEval number_times) {
+
+        ValueEval veText1;
+        try {
+            veText1 = OperandResolver.getSingleValue(text, srcRowIndex, srcColumnIndex);
+        } catch (EvaluationException e) {
+            return e.getErrorEval();
+        }
+        String strText1 = OperandResolver.coerceValueToString(veText1);
+        double numberOfTime = 0;
+        try {
+            numberOfTime = OperandResolver.coerceValueToDouble(number_times);
+        } catch (EvaluationException e) {
+            return ErrorEval.VALUE_INVALID;
+        }
+
+        int numberOfTimeInt = new Double(numberOfTime).intValue();
+        StringBuffer strb = new StringBuffer(strText1.length() * numberOfTimeInt);
+        for(int i = 0; i < numberOfTimeInt; i++) {
+            strb.append(strText1);
+        }
+
+        if (strb.toString().length() > 32767) {
+            return ErrorEval.VALUE_INVALID;
+        }
+
+        return new StringEval(strb.toString());
+    }
+}

Added: poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestReptFunctionsFromSpreadsheet.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestReptFunctionsFromSpreadsheet.java?rev=1488811&view=auto
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestReptFunctionsFromSpreadsheet.java (added)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestReptFunctionsFromSpreadsheet.java Sun Jun  2 23:39:41 2013
@@ -0,0 +1,31 @@
+/* ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+==================================================================== */
+
+package org.apache.poi.ss.formula.functions;
+
+/**
+ * Tests REPT() as loaded from a test data spreadsheet.<p/>
+ *
+ * @author cedric dot walter @ gmail dot com
+ */
+public class TestReptFunctionsFromSpreadsheet extends BaseTestFunctionsFromSpreadsheet {
+
+    @Override
+    protected String getFilename() {
+        return "ReptFunctionTestCaseData.xls";
+    }
+}
\ No newline at end of file

Added: poi/trunk/test-data/spreadsheet/ReptFunctionTestCaseData.xls
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/spreadsheet/ReptFunctionTestCaseData.xls?rev=1488811&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/spreadsheet/ReptFunctionTestCaseData.xls
------------------------------------------------------------------------------
    svn:mime-type = application/vnd.ms-excel



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org