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

net.sf.jasperreports.engine.export.ElementKeyExporterFilterFactory Maven / Gradle / Ivy

There is a newer version: 6.21.2
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.export;

import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.JRAbstractExporter;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRPropertiesUtil;
import net.sf.jasperreports.engine.JRPropertiesUtil.PropertySuffix;
import net.sf.jasperreports.properties.PropertyConstants;

/**
 * Factory of {@link ElementKeyExporterFilter} instances.
 * 
 * The factory uses report properties to decide which element keys are to
 * be filtered on export.
 * 
 * @author Lucian Chirita ([email protected])
 */
public class ElementKeyExporterFilterFactory implements ExporterFilterFactory
{

	/**
	 * The prefix of element exclusion properties.
	 * 
	 * This prefix is appended to the exporter properties prefix, resulting
	 * in element exclusion properties such as
	 * net.sf.jasperreports.export.xls.exclude.key.*. 
	 */
	@Property(
			name = "net.sf.jasperreports.export.{format}.exclude.key.{suffix}",
			category = PropertyConstants.CATEGORY_EXPORT,
			scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT},
			sinceVersion = PropertyConstants.VERSION_3_0_1
			)
	public static final String PROPERTY_EXCLUDED_KEY_PREFIX = "exclude.key.";
	
	/**
	 * The exported report is searched for element exclusion properties, and
	 * if any is found a {@link ElementKeyExporterFilter} instance is returned.
	 * 
	 * Each property results in a excluded element key in the following manner:
	 * 
    *
  • If the property value is not empty, it is used as excluded element key.
  • *
  • Otherwise, the property suffix is used as element key.
  • *
* * @see #PROPERTY_EXCLUDED_KEY_PREFIX */ @Override public ExporterFilter getFilter(JRExporterContext exporterContext) throws JRException { ExporterFilter filter = null; JRAbstractExporter exporter = exporterContext.getExporterRef() instanceof JRAbstractExporter ? (JRAbstractExporter)exporterContext.getExporterRef() : null; if (exporter != null) { String excludeKeyPrefix = exporter.getExporterPropertiesPrefix() + PROPERTY_EXCLUDED_KEY_PREFIX; JRPropertiesUtil propsUtil = JRPropertiesUtil.getInstance( exporterContext.getJasperReportsContext()); List props = propsUtil.getAllProperties( exporterContext.getExportedReport(), excludeKeyPrefix); if (!props.isEmpty()) { Set excludedKeys = new HashSet(); for (Iterator it = props.iterator(); it.hasNext();) { PropertySuffix prop = it.next(); String key = prop.getValue(); if (key == null || key.length() == 0) { key = prop.getSuffix(); } excludedKeys.add(key); } filter = new ElementKeyExporterFilter(excludedKeys); } } return filter; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy