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

net.sf.jasperreports.engine.fill.JRFillReportTemplate Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2014 TIBCO Software Inc. 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 .
 */
package net.sf.jasperreports.engine.fill;

import java.io.File;
import java.io.InputStream;
import java.net.URL;

import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRReportTemplate;
import net.sf.jasperreports.engine.JRRuntimeException;
import net.sf.jasperreports.engine.JRTemplate;
import net.sf.jasperreports.engine.xml.JRXmlTemplateLoader;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;


/**
 * Fill-time {@link JRReportTemplate} implementation.
 * 

* Used to evaluate template source expressions. * * @author Lucian Chirita ([email protected]) */ public class JRFillReportTemplate implements JRReportTemplate { private static final Log log = LogFactory.getLog(JRFillReportTemplate.class); public static final String EXCEPTION_MESSAGE_KEY_UNKNOWN_TEMPLATE_SOURCE = "fill.report.template.unknown.template.source"; private final JRReportTemplate parent; private final JRBaseFiller filler; public JRFillReportTemplate(JRReportTemplate template, JRBaseFiller filler, JRFillObjectFactory factory) { factory.put(template, this); parent = template; this.filler = filler; } @Override public JRExpression getSourceExpression() { return parent.getSourceExpression(); } public JRTemplate evaluate() throws JRException { JRTemplate template; JRExpression sourceExpression = getSourceExpression(); Object source = filler.evaluateExpression(sourceExpression, JRExpression.EVALUATION_DEFAULT); if (source == null) { template = null; } else { if (source instanceof JRTemplate) { template = (JRTemplate) source; } else { template = loadTemplate(source, filler); } } return template; } protected static JRTemplate loadTemplate(Object source, JRBaseFiller filler) throws JRException { JRTemplate template; if (filler.fillContext.hasLoadedTemplate(source)) { template = filler.fillContext.getLoadedTemplate(source); } else { if (log.isDebugEnabled()) { log.debug("Loading styles template from " + source); } if (source instanceof String) { template = JRXmlTemplateLoader.getInstance(filler.getJasperReportsContext()).loadTemplate((String) source); } else if (source instanceof File) { template = JRXmlTemplateLoader.getInstance(filler.getJasperReportsContext()).loadTemplate((File) source); } else if (source instanceof URL) { template = JRXmlTemplateLoader.getInstance(filler.getJasperReportsContext()).loadTemplate((URL) source); } else if (source instanceof InputStream) { template = JRXmlTemplateLoader.getInstance(filler.getJasperReportsContext()).loadTemplate((InputStream) source); } else { throw new JRRuntimeException( EXCEPTION_MESSAGE_KEY_UNKNOWN_TEMPLATE_SOURCE, new Object[]{source.getClass().getName()} ); } filler.fillContext.registerLoadedTemplate(source, template); } return template; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy