/*
* 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.design;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import net.sf.jasperreports.engine.JRConstants;
import net.sf.jasperreports.engine.JRDefaultStyleProvider;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRExpressionCollector;
import net.sf.jasperreports.engine.JRSubreport;
import net.sf.jasperreports.engine.JRSubreportParameter;
import net.sf.jasperreports.engine.JRSubreportReturnValue;
import net.sf.jasperreports.engine.JRVisitor;
import net.sf.jasperreports.engine.base.JRBaseSubreport;
import net.sf.jasperreports.engine.type.ModeEnum;
import net.sf.jasperreports.engine.util.JRStyleResolver;
/**
* @author Teodor Danciu (teodord@users.sourceforge.net)
* @version $Id: JRDesignSubreport.java 3939 2010-08-20 09:52:00Z teodord $
*/
public class JRDesignSubreport extends JRDesignElement implements JRSubreport
{
/**
*
*/
private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
public static final String PROPERTY_CONNECTION_EXPRESSION = "connectionExpression";
public static final String PROPERTY_DATASOURCE_EXPRESSION = "dataSourceExpression";
public static final String PROPERTY_EXPRESSION = "expression";
public static final String PROPERTY_PARAMETERS_MAP_EXPRESSION = "parametersMapExpression";
public static final String PROPERTY_PARAMETERS = "parameters";
public static final String PROPERTY_RETURN_VALUES = "returnValues";
/**
*
*/
protected Boolean isUsingCache;
private Boolean runToBottom;
/**
*
*/
protected Map parametersMap = new LinkedHashMap();
/**
* Values to be copied from the subreport into the master report.
*/
protected List returnValues = new ArrayList();
/**
*
*/
protected JRExpression parametersMapExpression;
protected JRExpression connectionExpression;
protected JRExpression dataSourceExpression;
protected JRExpression expression;
/**
*
*/
public JRDesignSubreport(JRDefaultStyleProvider defaultStyleProvider)
{
super(defaultStyleProvider);
}
/**
*
*/
public ModeEnum getModeValue()
{
return JRStyleResolver.getMode(this, ModeEnum.TRANSPARENT);
}
/**
*
*/
public boolean isUsingCache()
{
if (isUsingCache == null)
{
JRExpression subreportExpression = getExpression();
if (subreportExpression != null)
{
return String.class.getName().equals(subreportExpression.getValueClassName());
}
return true;
}
return isUsingCache.booleanValue();
}
/**
* @deprecated Replaced by {@link #setUsingCache(Boolean)}.
*/
public void setUsingCache(boolean isUsingCache)
{
setUsingCache(isUsingCache ? Boolean.TRUE : Boolean.FALSE);
}
/**
*
*/
public JRExpression getParametersMapExpression()
{
return this.parametersMapExpression;
}
/**
*
*/
public void setParametersMapExpression(JRExpression parametersMapExpression)
{
Object old = this.parametersMapExpression;
this.parametersMapExpression = parametersMapExpression;
getEventSupport().firePropertyChange(PROPERTY_PARAMETERS_MAP_EXPRESSION, old, this.parametersMapExpression);
}
/**
*
*/
public JRSubreportParameter[] getParameters()
{
JRSubreportParameter[] parametersArray = new JRSubreportParameter[parametersMap.size()];
parametersMap.values().toArray(parametersArray);
return parametersArray;
}
/**
*
*/
public Map getParametersMap()
{
return this.parametersMap;
}
/**
*
*/
public void addParameter(JRSubreportParameter subreportParameter) throws JRException
{
if (this.parametersMap.containsKey(subreportParameter.getName()))
{
throw new JRException("Duplicate declaration of subreport parameter : " + subreportParameter.getName());
}
this.parametersMap.put(subreportParameter.getName(), subreportParameter);
getEventSupport().fireCollectionElementAddedEvent(PROPERTY_PARAMETERS,
subreportParameter, parametersMap.size() - 1);
}
/**
*
*/
public JRSubreportParameter removeParameter(String name)
{
JRSubreportParameter removed = (JRSubreportParameter)this.parametersMap.remove(name);
if (removed != null)
{
getEventSupport().fireCollectionElementRemovedEvent(PROPERTY_PARAMETERS, removed, -1);
}
return removed;
}
/**
*
*/
public JRExpression getConnectionExpression()
{
return this.connectionExpression;
}
/**
*
*/
public void setConnectionExpression(JRExpression connectionExpression)
{
Object old = this.connectionExpression;
this.connectionExpression = connectionExpression;
if (this.connectionExpression != null)
{
setDataSourceExpression(null);
}
getEventSupport().firePropertyChange(PROPERTY_CONNECTION_EXPRESSION, old, this.connectionExpression);
}
/**
*
*/
public JRExpression getDataSourceExpression()
{
return this.dataSourceExpression;
}
/**
*
*/
public void setDataSourceExpression(JRExpression dataSourceExpression)
{
Object old = this.dataSourceExpression;
this.dataSourceExpression = dataSourceExpression;
if (this.dataSourceExpression != null)
{
setConnectionExpression(null);
}
getEventSupport().firePropertyChange(PROPERTY_DATASOURCE_EXPRESSION, old, this.dataSourceExpression);
}
/**
*
*/
public JRExpression getExpression()
{
return this.expression;
}
/**
*
*/
public void setExpression(JRExpression expression)
{
Object old = this.expression;
this.expression = expression;
getEventSupport().firePropertyChange(PROPERTY_EXPRESSION, old, this.expression);
}
/**
*
*/
public void collectExpressions(JRExpressionCollector collector)
{
collector.collect(this);
}
/**
*
*/
public void visit(JRVisitor visitor)
{
visitor.visitSubreport(this);
}
/**
* Adds a return value to the subreport.
*
* @param returnValue the return value to be added.
*/
public void addReturnValue(JRSubreportReturnValue returnValue)
{
this.returnValues.add(returnValue);
getEventSupport().fireCollectionElementAddedEvent(PROPERTY_RETURN_VALUES,
returnValue, returnValues.size() - 1);
}
/**
* Returns the list of values to be copied from the subreport into the master.
*
* @return the list of values to be copied from the subreport into the master.
*/
public JRSubreportReturnValue[] getReturnValues()
{
JRSubreportReturnValue[] returnValuesArray = new JRSubreportReturnValue[returnValues.size()];
returnValues.toArray(returnValuesArray);
return returnValuesArray;
}
/**
* Returns the list of values to be copied from the subreport into the master.
*
* @return list of {@link JRSubreportReturnValue JRSubreportReturnValue} objects
*/
public List getReturnValuesList()
{
return returnValues;
}
/**
* Removes a return value from the subreport.
*
* @param returnValue the return value to be removed
* @return <code>true</code> if the return value was found and removed
*/
public boolean removeReturnValue(JRSubreportReturnValue returnValue)
{
int idx = this.returnValues.indexOf(returnValue);
if (idx >= 0)
{
this.returnValues.remove(idx);
getEventSupport().fireCollectionElementRemovedEvent(PROPERTY_RETURN_VALUES, returnValue, idx);
return true;
}
return false;
}
public Boolean isOwnUsingCache()
{
return isUsingCache;
}
public void setUsingCache(Boolean isUsingCache)
{
Object old = this.isUsingCache;
this.isUsingCache = isUsingCache;
getEventSupport().firePropertyChange(JRBaseSubreport.PROPERTY_USING_CACHE, old, this.isUsingCache);
}
public Boolean isRunToBottom()
{
return runToBottom;
}
public void setRunToBottom(Boolean runToBottom)
{
Object old = this.runToBottom;
this.runToBottom = runToBottom;
getEventSupport().firePropertyChange(JRBaseSubreport.PROPERTY_RUN_TO_BOTTOM, old, this.runToBottom);
}
/**
*
*/
public Object clone()
{
JRDesignSubreport clone = (JRDesignSubreport)super.clone();
if (parametersMap != null)
{
clone.parametersMap = new LinkedHashMap();
for(Iterator it = parametersMap.keySet().iterator(); it.hasNext();)
{
String key = (String)it.next();
JRSubreportParameter parameter = (JRSubreportParameter)parametersMap.get(key);
clone.parametersMap.put(key, parameter.clone());
}
}
if (returnValues != null)
{
clone.returnValues = new ArrayList(returnValues.size());
for(int i = 0; i < returnValues.size(); i++)
{
clone.returnValues.add(((JRSubreportReturnValue)returnValues.get(i)).clone());
}
}
if (parametersMapExpression != null)
{
clone.parametersMapExpression = (JRExpression)parametersMapExpression.clone();
}
if (connectionExpression != null)
{
clone.connectionExpression = (JRExpression)connectionExpression.clone();
}
if (dataSourceExpression != null)
{
clone.dataSourceExpression = (JRExpression)dataSourceExpression.clone();
}
if (expression != null)
{
clone.expression = (JRExpression)expression.clone();
}
return clone;
}
}