All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.xssf.usermodel.XSSFFormulaEvaluator Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   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.xssf.usermodel;

import java.util.Iterator;

import org.apache.poi.hssf.record.formula.eval.BoolEval;
import org.apache.poi.hssf.record.formula.eval.ErrorEval;
import org.apache.poi.hssf.record.formula.eval.NumberEval;
import org.apache.poi.hssf.record.formula.eval.StringEval;
import org.apache.poi.hssf.record.formula.eval.ValueEval;
import org.apache.poi.hssf.record.formula.udf.UDFFinder;
import org.apache.poi.ss.formula.IStabilityClassifier;
import org.apache.poi.ss.formula.WorkbookEvaluator;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellValue;
import org.apache.poi.ss.usermodel.FormulaEvaluator;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;

/**
 * Evaluates formula cells.

* * For performance reasons, this class keeps a cache of all previously calculated intermediate * cell values. Be sure to call {@link #clearAllCachedResultValues()} if any workbook cells are changed between * calls to evaluate~ methods on this class. * * @author Amol S. Deshmukh < amolweb at ya hoo dot com > * @author Josh Micich */ public class XSSFFormulaEvaluator implements FormulaEvaluator { private WorkbookEvaluator _bookEvaluator; public XSSFFormulaEvaluator(XSSFWorkbook workbook) { this(workbook, null, null); } /** * @param stabilityClassifier used to optimise caching performance. Pass null * for the (conservative) assumption that any cell may have its definition changed after * evaluation begins. * @deprecated (Sep 2009) (reduce overloading) use {@link #create(XSSFWorkbook, org.apache.poi.ss.formula.IStabilityClassifier, org.apache.poi.hssf.record.formula.udf.UDFFinder)} */ @Deprecated public XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier) { _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, null); } private XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) { _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, udfFinder); } /** * @param stabilityClassifier used to optimise caching performance. Pass null * for the (conservative) assumption that any cell may have its definition changed after * evaluation begins. * @param udfFinder pass null for default (AnalysisToolPak only) */ public static XSSFFormulaEvaluator create(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) { return new XSSFFormulaEvaluator(workbook, stabilityClassifier, udfFinder); } /** * Should be called whenever there are major changes (e.g. moving sheets) to input cells * in the evaluated workbook. * Failure to call this method after changing cell values will cause incorrect behaviour * of the evaluate~ methods of this class */ public void clearAllCachedResultValues() { _bookEvaluator.clearAllCachedResultValues(); } public void notifySetFormula(Cell cell) { _bookEvaluator.notifyUpdateCell(new XSSFEvaluationCell((XSSFCell)cell)); } public void notifyDeleteCell(Cell cell) { _bookEvaluator.notifyDeleteCell(new XSSFEvaluationCell((XSSFCell)cell)); } /** * If cell contains a formula, the formula is evaluated and returned, * else the CellValue simply copies the appropriate cell value from * the cell and also its cell type. This method should be preferred over * evaluateInCell() when the call should not modify the contents of the * original cell. * @param cell */ public CellValue evaluate(Cell cell) { if (cell == null) { return null; } switch (cell.getCellType()) { case XSSFCell.CELL_TYPE_BOOLEAN: return CellValue.valueOf(cell.getBooleanCellValue()); case XSSFCell.CELL_TYPE_ERROR: return CellValue.getError(cell.getErrorCellValue()); case XSSFCell.CELL_TYPE_FORMULA: return evaluateFormulaCellValue(cell); case XSSFCell.CELL_TYPE_NUMERIC: return new CellValue(cell.getNumericCellValue()); case XSSFCell.CELL_TYPE_STRING: return new CellValue(cell.getRichStringCellValue().getString()); } throw new IllegalStateException("Bad cell type (" + cell.getCellType() + ")"); } /** * If cell contains formula, it evaluates the formula, * and saves the result of the formula. The cell * remains as a formula cell. * Else if cell does not contain formula, this method leaves * the cell unchanged. * Note that the type of the formula result is returned, * so you know what kind of value is also stored with * the formula. *

	 * int evaluatedCellType = evaluator.evaluateFormulaCell(cell);
	 * 
* Be aware that your cell will hold both the formula, * and the result. If you want the cell replaced with * the result of the formula, use {@link #evaluate(org.apache.poi.ss.usermodel.Cell)} } * @param cell The cell to evaluate * @return The type of the formula result (the cell's type remains as HSSFCell.CELL_TYPE_FORMULA however) */ public int evaluateFormulaCell(Cell cell) { if (cell == null || cell.getCellType() != XSSFCell.CELL_TYPE_FORMULA) { return -1; } CellValue cv = evaluateFormulaCellValue(cell); // cell remains a formula cell, but the cached value is changed setCellValue(cell, cv); return cv.getCellType(); } /** * If cell contains formula, it evaluates the formula, and * puts the formula result back into the cell, in place * of the old formula. * Else if cell does not contain formula, this method leaves * the cell unchanged. * Note that the same instance of HSSFCell is returned to * allow chained calls like: *
	 * int evaluatedCellType = evaluator.evaluateInCell(cell).getCellType();
	 * 
* Be aware that your cell value will be changed to hold the * result of the formula. If you simply want the formula * value computed for you, use {@link #evaluateFormulaCell(org.apache.poi.ss.usermodel.Cell)} } * @param cell */ public XSSFCell evaluateInCell(Cell cell) { if (cell == null) { return null; } XSSFCell result = (XSSFCell) cell; if (cell.getCellType() == XSSFCell.CELL_TYPE_FORMULA) { CellValue cv = evaluateFormulaCellValue(cell); setCellType(cell, cv); // cell will no longer be a formula cell setCellValue(cell, cv); } return result; } private static void setCellType(Cell cell, CellValue cv) { int cellType = cv.getCellType(); switch (cellType) { case XSSFCell.CELL_TYPE_BOOLEAN: case XSSFCell.CELL_TYPE_ERROR: case XSSFCell.CELL_TYPE_NUMERIC: case XSSFCell.CELL_TYPE_STRING: cell.setCellType(cellType); return; case XSSFCell.CELL_TYPE_BLANK: // never happens - blanks eventually get translated to zero case XSSFCell.CELL_TYPE_FORMULA: // this will never happen, we have already evaluated the formula } throw new IllegalStateException("Unexpected cell value type (" + cellType + ")"); } private static void setCellValue(Cell cell, CellValue cv) { int cellType = cv.getCellType(); switch (cellType) { case XSSFCell.CELL_TYPE_BOOLEAN: cell.setCellValue(cv.getBooleanValue()); break; case XSSFCell.CELL_TYPE_ERROR: cell.setCellErrorValue(cv.getErrorValue()); break; case XSSFCell.CELL_TYPE_NUMERIC: cell.setCellValue(cv.getNumberValue()); break; case XSSFCell.CELL_TYPE_STRING: cell.setCellValue(new XSSFRichTextString(cv.getStringValue())); break; case XSSFCell.CELL_TYPE_BLANK: // never happens - blanks eventually get translated to zero case XSSFCell.CELL_TYPE_FORMULA: // this will never happen, we have already evaluated the formula default: throw new IllegalStateException("Unexpected cell value type (" + cellType + ")"); } } /** * Loops over all cells in all sheets of the supplied * workbook. * For cells that contain formulas, their formulas are * evaluated, and the results are saved. These cells * remain as formula cells. * For cells that do not contain formulas, no changes * are made. * This is a helpful wrapper around looping over all * cells, and calling evaluateFormulaCell on each one. */ public static void evaluateAllFormulaCells(XSSFWorkbook wb) { XSSFFormulaEvaluator evaluator = new XSSFFormulaEvaluator(wb); for(int i=0; i rit = sheet.rowIterator(); rit.hasNext();) { Row r = rit.next(); for (Iterator cit = r.cellIterator(); cit.hasNext();) { XSSFCell c = (XSSFCell) cit.next(); if (c.getCellType() == XSSFCell.CELL_TYPE_FORMULA) evaluator.evaluateFormulaCell(c); } } } } /** * Returns a CellValue wrapper around the supplied ValueEval instance. */ private CellValue evaluateFormulaCellValue(Cell cell) { ValueEval eval = _bookEvaluator.evaluate(new XSSFEvaluationCell((XSSFCell) cell)); if (eval instanceof NumberEval) { NumberEval ne = (NumberEval) eval; return new CellValue(ne.getNumberValue()); } if (eval instanceof BoolEval) { BoolEval be = (BoolEval) eval; return CellValue.valueOf(be.getBooleanValue()); } if (eval instanceof StringEval) { StringEval ne = (StringEval) eval; return new CellValue(ne.getStringValue()); } if (eval instanceof ErrorEval) { return CellValue.getError(((ErrorEval)eval).getErrorCode()); } throw new RuntimeException("Unexpected eval class (" + eval.getClass().getName() + ")"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy