/* * JasperReports - Free Java Reporting Library. * Copyright (C) 2001 - 2009 Jaspersoft Corporation. All rights reserved. * http://www.jaspersoft.com * * Unless you have purchased a commercial license agreement from Jaspersoft, * the following license terms apply: * * This program is part of JasperReports. * * JasperReports is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JasperReports is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with JasperReports. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.jasperreports.engine.fill; import java.util.TimeZone; import net.sf.jasperreports.engine.JRDatasetRun; import net.sf.jasperreports.engine.JRElementDataset; import net.sf.jasperreports.engine.JRException; import net.sf.jasperreports.engine.JRExpression; import net.sf.jasperreports.engine.JRGroup; import net.sf.jasperreports.engine.type.IncrementTypeEnum; import net.sf.jasperreports.engine.type.ResetTypeEnum; /** * Abstract {@link JRElementDataset} implementation used at report fill time. * * <p> * A dataset implementation usually involves a set of expressions which are * used to feed data to some internal data structures. The collected data is * then transformed into report output. * An implementation needs to implement abstract methods that initialize, * evaluate and increment the dataset. * * @author Teodor Danciu (teodord@users.sourceforge.net) * @version $Id: JRFillElementDataset.java 3506 2010-03-04 14:48:54Z shertage $ * @see JRFillObjectFactory#registerElementDataset(JRFillElementDataset) */ public abstract class JRFillElementDataset implements JRElementDataset { /** * */ protected JRElementDataset parent = null; private final JRBaseFiller filler; protected JRGroup resetGroup = null; protected JRGroup incrementGroup = null; private boolean isIncremented = true; protected JRFillDatasetRun datasetRun; private boolean increment = false; /** * */ protected JRFillElementDataset( JRElementDataset dataset, JRFillObjectFactory factory ) { factory.put(dataset, this); parent = dataset; filler = factory.getFiller(); resetGroup = factory.getGroup(dataset.getResetGroup()); incrementGroup = factory.getGroup(dataset.getIncrementGroup()); datasetRun = factory.getDatasetRun(dataset.getDatasetRun()); } /** * @deprecated Replaced by {@link #getResetTypeValue()} */ public byte getResetType() { return parent.getResetType(); } /** * @deprecated Replaced by {@link #getIncrementTypeValue()} */ public byte getIncrementType() { return parent.getIncrementType(); } /** * */ public ResetTypeEnum getResetTypeValue() { return parent.getResetTypeValue(); } /** * */ public IncrementTypeEnum getIncrementTypeValue() { return parent.getIncrementTypeValue(); } /** * */ public JRGroup getResetGroup() { return resetGroup; } /** * */ public JRGroup getIncrementGroup() { return incrementGroup; } /** * */ protected TimeZone getTimeZone() { return filler.getTimeZone(); } /** * */ protected void initialize() { customInitialize(); isIncremented = false; increment = false; } /** * */ protected void evaluate(JRCalculator calculator) throws JRExpressionEvalException { evaluateIncrementWhenExpression(calculator); if (increment) { customEvaluate(calculator); } isIncremented = false; } protected void evaluateIncrementWhenExpression(JRCalculator calculator) throws JRExpressionEvalException { JRExpression incrementWhenExpression = getIncrementWhenExpression(); if (incrementWhenExpression == null) { increment = true; } else { Boolean evaluated = (Boolean) calculator.evaluate(incrementWhenExpression); increment = evaluated != null && evaluated.booleanValue(); } } /** * */ protected void increment() { if (!isIncremented && increment) { customIncrement(); } isIncremented = true; } /** * Initializes the element dataset. * * <p> * The dataset is initialized before being used and after each time the * dataset gets reset. * * @see #getResetType() */ protected abstract void customInitialize(); /** * Evaluates the expressions associated with the dataset. * * <p> * Usually, the result of the evaluation would be preserved so that it is * used in {@link #customIncrement()} * * @param calculator used to evaluate expressions * @throws JRExpressionEvalException any exception that occurs while * evaluating expressions */ protected abstract void customEvaluate(JRCalculator calculator) throws JRExpressionEvalException; /** * Increments the dataset by collecting the result of the expression * evaluation. */ protected abstract void customIncrement(); public JRDatasetRun getDatasetRun() { return datasetRun; } public void evaluateDatasetRun(byte evaluation) throws JRException { if (datasetRun != null) { datasetRun.evaluate(this, evaluation); } } public JRFillDataset getInputDataset() { JRFillDataset inputDataset; if (datasetRun != null) { inputDataset = datasetRun.getDataset(); } else { inputDataset = filler.mainDataset; } return inputDataset; } public JRExpression getIncrementWhenExpression() { return parent.getIncrementWhenExpression(); } /** * */ public Object clone() { throw new UnsupportedOperationException(); } }