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

net.sf.jasperreports.engine.JRAbstractExporter Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2016 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;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.net.URLStreamHandlerFactory;
import java.text.DateFormat;
import java.text.NumberFormat;
import java.text.ParseException;
import java.util.Date;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Locale;
import java.util.Map;
import java.util.TimeZone;

import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.export.DefaultHyperlinkProducerFactory;
import net.sf.jasperreports.engine.export.ExporterFilter;
import net.sf.jasperreports.engine.export.ExporterFilterFactory;
import net.sf.jasperreports.engine.export.ExporterFilterFactoryUtil;
import net.sf.jasperreports.engine.export.JRExporterContext;
import net.sf.jasperreports.engine.export.JRHyperlinkProducer;
import net.sf.jasperreports.engine.export.JRHyperlinkProducerFactory;
import net.sf.jasperreports.engine.export.data.BooleanTextValue;
import net.sf.jasperreports.engine.export.data.DateTextValue;
import net.sf.jasperreports.engine.export.data.NumberTextValue;
import net.sf.jasperreports.engine.export.data.StringTextValue;
import net.sf.jasperreports.engine.export.data.TextValue;
import net.sf.jasperreports.engine.fonts.FontUtil;
import net.sf.jasperreports.engine.util.DefaultFormatFactory;
import net.sf.jasperreports.engine.util.FileResolver;
import net.sf.jasperreports.engine.util.FormatFactory;
import net.sf.jasperreports.engine.util.JRClassLoader;
import net.sf.jasperreports.engine.util.JRDataUtils;
import net.sf.jasperreports.engine.util.JRStyledText;
import net.sf.jasperreports.engine.util.JRStyledTextParser;
import net.sf.jasperreports.engine.util.JRStyledTextUtil;
import net.sf.jasperreports.engine.util.LocalJasperReportsContext;
import net.sf.jasperreports.engine.util.Pair;
import net.sf.jasperreports.export.CompositeExporterConfigurationFactory;
import net.sf.jasperreports.export.Exporter;
import net.sf.jasperreports.export.ExporterConfiguration;
import net.sf.jasperreports.export.ExporterInput;
import net.sf.jasperreports.export.ExporterInputItem;
import net.sf.jasperreports.export.ExporterOutput;
import net.sf.jasperreports.export.PropertiesDefaultsConfigurationFactory;
import net.sf.jasperreports.export.PropertiesNoDefaultsConfigurationFactory;
import net.sf.jasperreports.export.ReportExportConfiguration;
import net.sf.jasperreports.export.SimpleExporterInputItem;
import net.sf.jasperreports.properties.PropertyConstants;
import net.sf.jasperreports.renderers.util.RendererUtil;


/**
 * @author Teodor Danciu ([email protected])
 */
public abstract class JRAbstractExporter implements JRExporter
{
	public static final String EXCEPTION_MESSAGE_KEY_START_PAGE_INDEX_OUT_OF_RANGE = "export.common.start.page.index.out.of.range";
	public static final String EXCEPTION_MESSAGE_KEY_END_PAGE_INDEX_OUT_OF_RANGE = "export.common.end.page.index.out.of.range";
	public static final String EXCEPTION_MESSAGE_KEY_INVALID_IMAGE_NAME = "export.common.invalid.image.name";
	public static final String EXCEPTION_MESSAGE_KEY_INVALID_ZOOM_RATIO = "export.common.invalid.zoom.ratio";
	public static final String EXCEPTION_MESSAGE_KEY_MIXED_CALLS_NOT_ALLOWED = "export.common.mixed.calls.not.allowed";
	public static final String EXCEPTION_MESSAGE_KEY_PAGE_INDEX_OUT_OF_RANGE = "export.common.page.index.out.of.range";
	public static final String EXCEPTION_MESSAGE_KEY_OUTPUT_WRITER_ERROR = "export.common.output.writer.error";

	/**
	 * The suffix applied to properties that give the default filter factory for
	 * a specific exporter.
	 * 
	 * For instance, the default filter factory for XLS exporters is
	 * net.sf.jasperreports.export.xls.default.filter.factory.
	 * 
	 * If this property is not defined for a specific exporter, the generic
	 * exporter factory given by {@link #PROPERTY_DEFAULT_FILTER_FACTORY} is used.
	 */
	@Property(
			name = "net.sf.jasperreports.export.{arbitrary_name}.default.filter.factory",
			valueType = Class.class,
			category = PropertyConstants.CATEGORY_EXPORT,
			defaultValue = "same default value as for net.sf.jasperreports.export.default.filter.factory",
			scopes = {PropertyScope.CONTEXT},
			sinceVersion = PropertyConstants.VERSION_3_0_1
			)
	public static final String PROPERTY_SUFFIX_DEFAULT_FILTER_FACTORY = "default.filter.factory";

	/**
	 * A property that gives the generic default filter factory class name.
	 * 
	 * @see #PROPERTY_SUFFIX_DEFAULT_FILTER_FACTORY
	 */
	@Property(
			category = PropertyConstants.CATEGORY_EXPORT,
			valueType = Class.class,
			defaultValue = "net.sf.jasperreports.engine.export.DefaultExporterFilterFactory",
			scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT},
			sinceVersion = PropertyConstants.VERSION_3_0_1
			)
	public static final String PROPERTY_DEFAULT_FILTER_FACTORY = 
		JRPropertiesUtil.PROPERTY_PREFIX + "export." + PROPERTY_SUFFIX_DEFAULT_FILTER_FACTORY;
	
	public abstract class BaseExporterContext implements JRExporterContext
	{
		private Map values = new HashMap();

		/**
		 * @deprecated Replaced by {@link #getExporterRef()}.
		 */
		@Override
		public JRExporter getExporter()
		{
			return JRAbstractExporter.this;
		}

		@Override
		public Exporter getExporterRef()
		{
			return JRAbstractExporter.this;
		}

		@Override
		public JasperReportsContext getJasperReportsContext()
		{
			return JRAbstractExporter.this.getJasperReportsContext();
		}
		
		@Override
		public JasperPrint getExportedReport()
		{
			return jasperPrint;
		}

		@Override
		@SuppressWarnings("deprecation")
		public Map getExportParameters()
		{
			return parameters;
		}

		@Override
		public int getOffsetX()
		{
			return JRAbstractExporter.this.getOffsetX();
		}

		@Override
		public int getOffsetY()
		{
			return JRAbstractExporter.this.getOffsetY();
		}

		@Override
		@SuppressWarnings("deprecation")
		public String getExportPropertiesPrefix()
		{
			return JRAbstractExporter.this.getExporterPropertiesPrefix();
		}
		
		@Override
		public Object getValue(String key)
		{
			return values.get(key);
		}
		
		@Override
		public void setValue(String key, Object value)
		{
			values.put(key, value);
		}

		@Override
		public Map getValues()
		{
			return values;
		}
	}
	
	// this would make the applet require logging library
	//private final static Log log = LogFactory.getLog(JRAbstractExporter.class);
	
	private Boolean useOldApi = null;

	/**
	 *
	 */
	protected JasperReportsContext jasperReportsContext;
	protected JRPropertiesUtil propertiesUtil;
	protected RendererUtil rendererUtil;
	protected JRStyledTextAttributeSelector allSelector;
	protected JRStyledTextAttributeSelector noBackcolorSelector;
	protected JRStyledTextAttributeSelector noneSelector;
	protected JRStyledTextUtil styledTextUtil;
	protected FontUtil fontUtil;
	
	/**
	 *
	 */
	@SuppressWarnings("deprecation")
	protected Map parameters = new HashMap();

	/**
	 *
	 */
	protected ExporterInput exporterInput;
	protected RC itemConfiguration;
	protected C exporterConfiguration;
	protected O exporterOutput;

	protected ExporterInputItem crtItem;
	protected RC crtCompositeItemConfiguration;
	protected C crtCompositeConfiguration;
	protected JasperPrint jasperPrint;

	/**
	 *
	 */
	protected ExporterFilter filter;

	/**
	 *
	 */
	private LinkedList elementOffsetStack = new LinkedList();
	private int elementOffsetX;
	private int elementOffsetY;

	/**
	 *
	 */
	protected Map dateFormatCache = new HashMap();
	protected Map numberFormatCache = new HashMap();

	/*
	 * cached text locale, JRDataUtils.getLocale(String) is rather slow.
	 * helps in cases where there's a single report locale, which are most likely 9x% of all cases.
	 * note that we're assuming single threaded exporting, otherwise we would need volatile.
	 */
	private Pair lastTextLocale;
	
	/*
	 * cache of text value class to avoid calling JRClassLoader.loadClassForRealName() each time.
	 * note that we're assuming single threaded exporting.
	 */
	protected Map> textValueClasses = new HashMap>();
	
	/**
	 *
	 */
	private ReportContext reportContext;
	protected E exporterContext;


	/**
	 *
	 */
	protected JRHyperlinkProducerFactory hyperlinkProducerFactory;

	/**
	 *
	 */
	protected JRAbstractExporter(JasperReportsContext jasperReportsContext)
	{
		setJasperReportsContext(jasperReportsContext);
	}
	
	
	/**
	 * 
	 */
	private void checkApi(boolean isOldApi)
	{
		if (useOldApi == null)
		{
			useOldApi = isOldApi;
		}
		else
		{
			if (useOldApi != isOldApi)
			{
				throw 
					new JRRuntimeException(
						EXCEPTION_MESSAGE_KEY_MIXED_CALLS_NOT_ALLOWED,  
						(Object[])null 
						);
			}
		}
	}
	
	
	/**
	 *
	 */
	public void reset()
	{
		useOldApi = null;

		@SuppressWarnings("deprecation")
		Map dep = new HashMap();
		parameters = dep;
		
		elementOffsetStack = new LinkedList();
		exporterInput = null;
		exporterOutput = null;
		exporterConfiguration = null;
		itemConfiguration = null;
	}
	
	
	/**
	 * @deprecated Replaced by {@link #setExporterInput(ExporterInput)}, {@link #setConfiguration(ExporterConfiguration)},
	 * {@link #setConfiguration(ReportExportConfiguration)} and {@link #setExporterOutput(ExporterOutput)}
	 */
	@Override
	public void setParameter(JRExporterParameter parameter, Object value)
	{
		checkApi(true);
		
		parameters.put(parameter, value);
		exporterInput = null;
		exporterOutput = null;
		exporterConfiguration = null;
	}


	/**
	 * @deprecated Replaced by {@link #setExporterInput(ExporterInput)}, {@link #setConfiguration(ExporterConfiguration)},
	 * {@link #setConfiguration(ReportExportConfiguration)} and {@link #setExporterOutput(ExporterOutput)}.
	 */
	@Override
	public Object getParameter(JRExporterParameter parameter)
	{
		return parameters.get(parameter);
	}


	/**
	 * @deprecated Replaced by {@link #setExporterInput(ExporterInput)}, {@link #setConfiguration(ExporterConfiguration)},
	 * {@link #setConfiguration(ReportExportConfiguration)} and {@link #setExporterOutput(ExporterOutput)}
	 */
	@Override
	public void setParameters(Map parameters)
	{
		checkApi(true);

		this.parameters = parameters;
		exporterInput = null;
		exporterOutput = null;
		exporterConfiguration = null;
	}
	

	/**
	 * @deprecated Replaced by {@link #setExporterInput(ExporterInput)}, {@link #setConfiguration(ExporterConfiguration)},
	 * {@link #setConfiguration(ReportExportConfiguration)} and {@link #setExporterOutput(ExporterOutput)}
	 */
	@Override
	public Map getParameters()
	{
		return parameters;
	}

	/**
	 *
	 */
	protected ExporterInput getExporterInput()
	{
		return exporterInput;
	}

	
	@Override
	public void setExporterInput(ExporterInput exporterInput)
	{
		checkApi(false);

		this.exporterInput = exporterInput;
	}

	
	/**
	 *
	 */
	protected O getExporterOutput()
	{
		return exporterOutput;
	}

	
	@Override
	public void setExporterOutput(O exporterOutput)
	{
		checkApi(false);

		this.exporterOutput = exporterOutput;
	}

	
	@Override
	public void setConfiguration(RC configuration)
	{
		checkApi(false);
		
		this.itemConfiguration = configuration;
	}

	
	@Override
	public void setConfiguration(C configuration)
	{
		checkApi(false);
		
		this.exporterConfiguration = configuration;
	}

	
	/**
	 *
	 */
	public JasperReportsContext getJasperReportsContext()
	{
		return jasperReportsContext;
	}

	
	/**
	 *
	 */
	protected void setJasperReportsContext(JasperReportsContext jasperReportsContext)
	{
		this.jasperReportsContext = jasperReportsContext;
		this.propertiesUtil = JRPropertiesUtil.getInstance(jasperReportsContext);
		this.rendererUtil = RendererUtil.getInstance(jasperReportsContext);
		this.allSelector = JRStyledTextAttributeSelector.getAllSelector(jasperReportsContext);
		this.noBackcolorSelector = JRStyledTextAttributeSelector.getNoBackcolorSelector(jasperReportsContext);
		this.noneSelector = JRStyledTextAttributeSelector.getNoneSelector(jasperReportsContext);
		this.styledTextUtil = JRStyledTextUtil.getInstance(jasperReportsContext);
		this.fontUtil = FontUtil.getInstance(jasperReportsContext);
	}

	
	@Override
	public void setReportContext(ReportContext reportContext)
	{
		this.reportContext = reportContext;
	}

	
	@Override
	public ReportContext getReportContext()
	{
		return reportContext;
	}

	
	/**
	 *
	 */
	public JRPropertiesUtil getPropertiesUtil()
	{
		return propertiesUtil;
	}

	
	/**
	 *
	 */
	public RendererUtil getRendererUtil()
	{
		return rendererUtil;
	}

	
	@Override
	public abstract void exportReport() throws JRException;


	protected void setOffset()
	{
		setOffset(true);
	}
	
	/**
	 *
	 */
	protected void setOffset(boolean setElementOffsets)
	{
		if (setElementOffsets)
		{
			ReportExportConfiguration configuration = getCurrentItemConfiguration();
			Integer offsetX = configuration.getOffsetX();
			if (offsetX != null)
			{
				elementOffsetX = offsetX.intValue();
			}
			else
			{
				elementOffsetX = 0;
			}

			Integer offsetY = configuration.getOffsetY();
			if (offsetY != null)
			{
				elementOffsetY = offsetY.intValue();
			}
			else
			{
				elementOffsetY = 0;
			}
		}
	}
	

	/**
	 *
	 */
	@SuppressWarnings("deprecation")
	protected void ensureJasperReportsContext()
	{
		if (
			parameters.containsKey(JRExporterParameter.CLASS_LOADER)
			|| parameters.containsKey(JRExporterParameter.URL_HANDLER_FACTORY)
			|| parameters.containsKey(JRExporterParameter.FILE_RESOLVER)
			)
		{
			LocalJasperReportsContext localJasperReportsContext = new LocalJasperReportsContext(jasperReportsContext);

			if (parameters.containsKey(JRExporterParameter.CLASS_LOADER))
			{
				localJasperReportsContext.setClassLoader((ClassLoader)parameters.get(JRExporterParameter.CLASS_LOADER));
			}

			if (parameters.containsKey(JRExporterParameter.URL_HANDLER_FACTORY))
			{
				localJasperReportsContext.setURLStreamHandlerFactory((URLStreamHandlerFactory)parameters.get(JRExporterParameter.URL_HANDLER_FACTORY));
			}

			if (parameters.containsKey(JRExporterParameter.FILE_RESOLVER))
			{
				localJasperReportsContext.setFileResolver((FileResolver)parameters.get(JRExporterParameter.FILE_RESOLVER));
			}
			
			setJasperReportsContext(localJasperReportsContext);
		}
		
		FontUtil.getInstance(jasperReportsContext).resetThreadMissingFontsCache();
	}
		

	/**
	 *
	 */
	protected void resetExportContext()
	{
	}

	
	/**
	 * @deprecated replaced by {@link #ensureJasperReportsContext() setExportContext} 
	 */
	protected void setClassLoader()
	{
		ensureJasperReportsContext();
	}

	
	/**
	 * @deprecated replaced by {@link #resetExportContext() resetExportContext} 
	 */
	protected void resetClassLoader()
	{
		resetExportContext();
	}


	/**
	 *
	 */
	protected void setCurrentExporterInputItem(ExporterInputItem crtItem)
	{
		this.crtItem = crtItem;

		jasperPrint = crtItem.getJasperPrint();

		crtCompositeItemConfiguration = null;
		
		initReport();
	}


	/**
	 *
	 */
	protected RC getCurrentItemConfiguration()
	{
		if (crtCompositeItemConfiguration == null)
		{
			RC crtItemConfiguration = (RC)crtItem.getConfiguration();
			
			if (crtItemConfiguration != null)
			{
				checkApi(false);
			}
			
			if (useOldApi)
			{
				@SuppressWarnings("deprecation")
				RC depConf = 
					new net.sf.jasperreports.export.parameters.ParametersExporterConfigurationFactory(
						getJasperReportsContext(),
						getParameters(),
						getCurrentJasperPrint()
						).getConfiguration(
							getItemConfigurationInterface()
							);
				crtCompositeItemConfiguration = depConf; 
			}
			else
			{
				PropertiesDefaultsConfigurationFactory defaultsFactory = new PropertiesDefaultsConfigurationFactory(jasperReportsContext);
				RC defaultsConfiguration = defaultsFactory.getConfiguration(getItemConfigurationInterface());
				
				PropertiesNoDefaultsConfigurationFactory noDefaultsFactory = new PropertiesNoDefaultsConfigurationFactory(jasperReportsContext);
				RC noDefaultsConfiguration = noDefaultsFactory.getConfiguration(getItemConfigurationInterface(), getCurrentJasperPrint());

				CompositeExporterConfigurationFactory compositeFactory = new CompositeExporterConfigurationFactory(jasperReportsContext, getItemConfigurationInterface());

				RC tmpItemConfiguration = compositeFactory.getConfiguration(crtItemConfiguration, noDefaultsConfiguration);
				
				tmpItemConfiguration = compositeFactory.getConfiguration(itemConfiguration, tmpItemConfiguration);
				
				crtCompositeItemConfiguration = compositeFactory.getConfiguration(tmpItemConfiguration, defaultsConfiguration, true);

			}
		}
		return crtCompositeItemConfiguration;
	}
	
	
	/**
	 *
	 */
	protected C getCurrentConfiguration()
	{
		if (crtCompositeConfiguration == null)
		{
			if (useOldApi)
			{
				@SuppressWarnings("deprecation")
				C depConf = 
					new net.sf.jasperreports.export.parameters.ParametersExporterConfigurationFactory(
						getJasperReportsContext(),
						getParameters(),
						getCurrentJasperPrint()
						).getConfiguration(
							getConfigurationInterface()
							);
				crtCompositeConfiguration = depConf;
			}
			else
			{
				PropertiesDefaultsConfigurationFactory defaultsFactory = new PropertiesDefaultsConfigurationFactory(jasperReportsContext);
				C defaultsConfiguration = defaultsFactory.getConfiguration(getConfigurationInterface());

				PropertiesNoDefaultsConfigurationFactory noDefaultsFactory = new PropertiesNoDefaultsConfigurationFactory(jasperReportsContext);
				C noDefaultsConfiguration = noDefaultsFactory.getConfiguration(getConfigurationInterface(), getCurrentJasperPrint());

				CompositeExporterConfigurationFactory compositeFactory = new CompositeExporterConfigurationFactory(jasperReportsContext, getConfigurationInterface());

				C tmpItemConfiguration = compositeFactory.getConfiguration(exporterConfiguration, noDefaultsConfiguration);
				
				crtCompositeConfiguration = compositeFactory.getConfiguration(tmpItemConfiguration, defaultsConfiguration, true);
			}

		}
		return crtCompositeConfiguration;
	}
	
	
	/**
	 * @deprecated Replaced by {@link #setCurrentExporterInputItem(ExporterInputItem)}.
	 */
	protected void setJasperPrint(JasperPrint jasperPrint)
	{
		setCurrentExporterInputItem(new SimpleExporterInputItem(jasperPrint));
	}
	

	/**
	 *
	 */
	protected abstract Class getConfigurationInterface();

	
	/**
	 *
	 */
	protected abstract Class getItemConfigurationInterface();

	
	/**
	 *
	 */
	@SuppressWarnings("deprecation")
	protected void ensureInput()
	{
		if (exporterInput == null)
		{
			exporterInput = new net.sf.jasperreports.export.parameters.ParametersExporterInput(parameters);
		}
		
		jasperPrint = exporterInput.getItems().get(0).getJasperPrint();//this is just for the sake of getCurrentConfiguration() calls made prior to any setCurrentExporterInputItem() call
	}

	
	/**
	 *
	 */
	protected abstract void ensureOutput();
	

	/**
	 *
	 */
	protected void initExport()
	{
		crtCompositeConfiguration = null;
	}
	

	

	/**
	 *
	 */
	protected void initReport()
	{
		JRStyledTextParser.setLocale(getLocale());

		setOffset();
		
		filter = getCurrentItemConfiguration().getExporterFilter();
		if (filter == null)
		{
			filter = createFilter();
		}
	}
	

	/**
	 *
	 */
	protected PageRange getPageRange()
	{
		Integer startPageIndex = null;
		Integer endPageIndex = null;
		
		int lastPageIndex = -1;
		if (jasperPrint.getPages() != null)
		{
			lastPageIndex = jasperPrint.getPages().size() - 1;
		}

		ReportExportConfiguration configuration = getCurrentItemConfiguration();
		
		Integer start = configuration.getStartPageIndex();
		if (start != null)
		{
			startPageIndex = start;
			if (startPageIndex < 0 || startPageIndex > lastPageIndex)
			{
				throw 
					new JRRuntimeException(
						EXCEPTION_MESSAGE_KEY_START_PAGE_INDEX_OUT_OF_RANGE,  
						new Object[]{startPageIndex, lastPageIndex} 
						);
			}
		}

		Integer end = configuration.getEndPageIndex();
		if (end != null)
		{
			endPageIndex = end;
			int startPage = startPageIndex == null ? 0 : startPageIndex;
			if (endPageIndex < startPage || endPageIndex > lastPageIndex)
			{
				throw 
					new JRRuntimeException(
						EXCEPTION_MESSAGE_KEY_END_PAGE_INDEX_OUT_OF_RANGE,  
						new Object[]{startPage, endPageIndex, lastPageIndex} 
						);
			}
		}

		Integer pageIndex = configuration.getPageIndex();
		if (pageIndex != null)
		{
			if (pageIndex < 0 || pageIndex > lastPageIndex)
			{
				throw 
					new JRRuntimeException(
						EXCEPTION_MESSAGE_KEY_PAGE_INDEX_OUT_OF_RANGE,  
						new Object[]{pageIndex, lastPageIndex}
						);
			}
			startPageIndex = pageIndex;
			endPageIndex = pageIndex;
		}
		
		PageRange pageRange = null;
		
		if (startPageIndex != null || endPageIndex != null)
		{
			pageRange = new PageRange(startPageIndex, endPageIndex);
		}
		
		return pageRange;
	}
	

	/**
	 *
	 */
	protected JRStyledText getStyledText(JRPrintText textElement, boolean setBackcolor)
	{
		return styledTextUtil.getStyledText(textElement, setBackcolor ? allSelector : noBackcolorSelector);
	}

	
	protected JRStyledText getStyledText(JRPrintText textElement)
	{
		return getStyledText(textElement, true);
	}


	/**
	 * Returns the X axis offset used for element export.
	 * 
	 * @return the X axis offset
	 */
	protected int getOffsetX()
	{
		return elementOffsetX;
	}


	/**
	 * Returns the Y axis offset used for element export.
	 * 
	 * @return the Y axis offset
	 */
	protected int getOffsetY()
	{
		return elementOffsetY;
	}

	
	/**
	 * Sets the offsets for exporting elements from a {@link JRPrintFrame frame}.
	 * 

* After the frame elements are exported, a call to {@link #restoreElementOffsets() popElementOffsets} is required * so that the previous offsets are restored. * * @param frame * @param relative * @see #getOffsetX() * @see #getOffsetY() * @see #restoreElementOffsets() */ protected void setFrameElementsOffset(JRPrintFrame frame, boolean relative) { if (relative) { setElementOffsets(0, 0); } else { int topPadding = frame.getLineBox().getTopPadding().intValue(); int leftPadding = frame.getLineBox().getLeftPadding().intValue(); setElementOffsets(getOffsetX() + frame.getX() + leftPadding, getOffsetY() + frame.getY() + topPadding); } } private void setElementOffsets(int offsetX, int offsetY) { elementOffsetStack.addLast(new int[]{elementOffsetX, elementOffsetY}); elementOffsetX = offsetX; elementOffsetY = offsetY; } /** * Restores offsets after a call to * {@link #setFrameElementsOffset(JRPrintFrame, boolean) setFrameElementsOffset}. */ protected void restoreElementOffsets() { int[] offsets = elementOffsetStack.removeLast(); elementOffsetX = offsets[0]; elementOffsetY = offsets[1]; } /** * */ protected boolean insideFrame() { return elementOffsetStack != null && elementOffsetStack.size() > 0; } protected String getTextFormatFactoryClass(JRPrintText text) { String formatFactoryClass = text.getFormatFactoryClass(); if (formatFactoryClass == null) { formatFactoryClass = jasperPrint.getFormatFactoryClass(); } return formatFactoryClass; } public Locale getLocale() { String localeCode = jasperPrint.getLocaleCode(); return localeCode == null ? null : JRDataUtils.getLocale(localeCode); } protected Locale getTextLocale(JRPrintText text) { String localeCode = text.getLocaleCode(); if (localeCode == null) { localeCode = jasperPrint.getLocaleCode(); } if (localeCode == null) { return null; } Pair last = lastTextLocale; if (last != null && last.first().equals(localeCode)) { return last.second(); } Locale locale = JRDataUtils.getLocale(localeCode); lastTextLocale = new Pair(localeCode, locale); return locale; } protected TimeZone getTextTimeZone(JRPrintText text) { String tzId = text.getTimeZoneId(); if (tzId == null) { tzId = jasperPrint.getTimeZoneId(); } return tzId == null ? null : JRDataUtils.getTimeZone(tzId); } protected TextValue getTextValue(JRPrintText text, String textStr) { TextValue textValue; String valueClassName = text.getValueClassName(); if (valueClassName == null) { textValue = getTextValueString(text, textStr); } else { try { Class valueClass = textValueClasses.get(valueClassName); if (valueClass == null) { valueClass = JRClassLoader.loadClassForRealName(valueClassName); textValueClasses.put(valueClassName, valueClass); } if (java.lang.Number.class.isAssignableFrom(valueClass)) { textValue = getNumberCellValue(text, textStr); } else if (Date.class.isAssignableFrom(valueClass)) { textValue = getDateCellValue(text, textStr); } else if (Boolean.class.equals(valueClass)) { textValue = getBooleanCellValue(text, textStr); } else { textValue = getTextValueString(text, textStr); } } catch (ParseException e) { //log.warn("Error parsing text value", e); textValue = getTextValueString(text, textStr); } catch (ClassNotFoundException e) { //log.warn("Error loading text value class", e); textValue = getTextValueString(text, textStr); } } return textValue; } protected TextValue getTextValueString(JRPrintText text, String textStr) { return new StringTextValue(textStr); } protected TextValue getDateCellValue(JRPrintText text, String textStr) throws ParseException { if (textStr != null && text.getValue() == null) { TextValue textValue; String pattern = text.getPattern(); if (pattern == null || pattern.trim().length() == 0)//FIXMENOW there might be formatters that do not use pattern, in which case this test would skip them { textValue = getTextValueString(text, textStr); } else { DateFormat dateFormat = getDateFormat(getTextFormatFactoryClass(text), pattern, getTextLocale(text), getTextTimeZone(text)); Date value = null; if (textStr != null && textStr.length() > 0) { value = dateFormat.parse(textStr); } textValue = new DateTextValue(textStr, value, text.getPattern()); } return textValue; } else { return new DateTextValue(textStr, (Date)text.getValue(), text.getPattern()); } } protected TextValue getNumberCellValue(JRPrintText text, String textStr) throws ParseException, ClassNotFoundException { if (textStr != null && text.getValue() == null) { TextValue textValue; String pattern = text.getPattern(); if (pattern == null || pattern.trim().length() == 0)//FIXMENOW there might be formatters that do not use pattern, in which case this test would skip them { if (textStr != null && textStr.length() > 0) { Number value = defaultParseNumber(textStr, JRClassLoader.loadClassForRealName(text.getValueClassName())); if (value != null) { textValue = new NumberTextValue(textStr, value, text.getPattern()); } else { textValue = getTextValueString(text, textStr); } } else { textValue = new NumberTextValue(textStr, null, text.getPattern()); } } else { NumberFormat numberFormat = getNumberFormat(getTextFormatFactoryClass(text), pattern, getTextLocale(text)); Number value = null; if (textStr != null && textStr.length() > 0) { value = numberFormat.parse(textStr); } textValue = new NumberTextValue(textStr, value, text.getPattern()); } return textValue; } else { return new NumberTextValue(textStr, (Number)text.getValue(), text.getPattern()); } } protected Number defaultParseNumber(String textStr, Class valueClass) { Number value = null; try { if (valueClass.equals(Byte.class)) { value = Byte.valueOf(textStr); } else if (valueClass.equals(Short.class)) { value = Short.valueOf(textStr); } else if (valueClass.equals(Integer.class)) { value = Integer.valueOf(textStr); } else if (valueClass.equals(Long.class)) { value = Long.valueOf(textStr); } else if (valueClass.equals(Float.class)) { value = Float.valueOf(textStr); } else if (valueClass.equals(Double.class)) { value = Double.valueOf(textStr); } else if (valueClass.equals(BigInteger.class)) { value = new BigInteger(textStr); } else if (valueClass.equals(BigDecimal.class)) { value = new BigDecimal(textStr); } } catch (NumberFormatException e) { //skip } return value; } protected TextValue getBooleanCellValue(JRPrintText text, String textStr) { Boolean value = null; if (textStr != null && textStr.length() > 0) { value = Boolean.valueOf(textStr); } return new BooleanTextValue(textStr, value); } protected DateFormat getDateFormat(String formatFactoryClass, String pattern, Locale lc, TimeZone tz) { String key = formatFactoryClass + "|" + pattern + "|" + (lc == null ? "" : JRDataUtils.getLocaleCode(lc)) + "|" + (tz == null ? "" : JRDataUtils.getTimeZoneId(tz)); DateFormat dateFormat = dateFormatCache.get(key); if (dateFormat == null) { FormatFactory formatFactory = DefaultFormatFactory.createFormatFactory(formatFactoryClass);//FIXMEFORMAT cache this too dateFormat = formatFactory.createDateFormat(pattern, lc, tz); dateFormatCache.put(key, dateFormat); } return dateFormat; } protected NumberFormat getNumberFormat(String formatFactoryClass, String pattern, Locale lc) { String key = formatFactoryClass + "|" + pattern + "|" + (lc == null ? "" : JRDataUtils.getLocaleCode(lc)); NumberFormat numberFormat = numberFormatCache.get(key); if (numberFormat == null) { FormatFactory formatFactory = DefaultFormatFactory.createFormatFactory(formatFactoryClass);//FIXMEFORMAT cache this too numberFormat = formatFactory.createNumberFormat(pattern, lc); numberFormatCache.put(key, numberFormat); } return numberFormat; } /** * */ protected ExporterFilter createFilter() { String exportDefaultFactoryProperty = getExporterPropertiesPrefix() + PROPERTY_SUFFIX_DEFAULT_FILTER_FACTORY; //the default filter class is determined from 4 possible sources String defaultFilterClassName = null; if (jasperPrint.hasProperties()) { //try first the exporter specific property from the report defaultFilterClassName = jasperPrint.getPropertiesMap().getProperty( exportDefaultFactoryProperty); //then the generic property from the report if (defaultFilterClassName == null) { defaultFilterClassName = jasperPrint.getPropertiesMap().getProperty( PROPERTY_DEFAULT_FILTER_FACTORY); } } //then the global exporter specific property if (defaultFilterClassName == null) { defaultFilterClassName = getPropertiesUtil().getProperty(exportDefaultFactoryProperty); } //and finally the global generic property if (defaultFilterClassName == null) { defaultFilterClassName = getPropertiesUtil().getProperty(PROPERTY_DEFAULT_FILTER_FACTORY); } ExporterFilter filter = null; try { ExporterFilterFactory defaultFactory = ExporterFilterFactoryUtil.getFilterFactory(defaultFilterClassName); filter = defaultFactory.getFilter(getExporterContext()); } catch (JRException e) { throw new JRRuntimeException(e); } return filter; } public JRHyperlinkProducer getHyperlinkProducer(JRPrintHyperlink link) { if (hyperlinkProducerFactory == null) { hyperlinkProducerFactory = getCurrentItemConfiguration().getHyperlinkProducerFactory(); if (hyperlinkProducerFactory == null) { hyperlinkProducerFactory = new DefaultHyperlinkProducerFactory(jasperReportsContext); } } return hyperlinkProducerFactory.getHandler(link.getLinkType()); } /** * @deprecated Replaced by {@link #getHyperlinkProducer(JRPrintHyperlink)}. */ protected JRHyperlinkProducer getCustomHandler(JRPrintHyperlink link) { return getHyperlinkProducer(link); } /** * */ public abstract String getExporterKey(); /** * Returns the properties prefix for the current exporter. * * @return the properties prefix for the current exporter */ public abstract String getExporterPropertiesPrefix(); /** * */ public E getExporterContext() { return exporterContext; } public JasperPrint getCurrentJasperPrint() { return jasperPrint; } protected class PageRange { private Integer startPageIndex; private Integer endPageIndex; /** * */ public PageRange(Integer startPageIndex, Integer endPageIndex) { this.startPageIndex = startPageIndex; this.endPageIndex = endPageIndex; } /** * */ public Integer getStartPageIndex() { return startPageIndex; } /** * */ public Integer getEndPageIndex() { return endPageIndex; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy