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

net.sf.jasperreports.engine.xml.PrintSaxParserFactory Maven / Gradle / Ivy

/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 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.xml;

import java.util.ArrayList;
import java.util.List;

import org.apache.commons.collections4.map.ReferenceMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.DefaultJasperReportsContext;
import net.sf.jasperreports.engine.JRPropertiesUtil;
import net.sf.jasperreports.engine.JasperReportsContext;
import net.sf.jasperreports.properties.PropertyConstants;

/**
 * The default XML export SAX parser factory.
 * 
 * 

* This factory creates a parser via the default SAX parser factory * (javax.xml.parsers.SAXParserFactory.newInstance()). * *

* XML exports are always validated using W3C XML schemas. Reports that refer * the JasperReports DTD (which has been deprecated) are validated using an * internal XML schema equivalent to the DTD. * *

* To improve performance, XML schemas can be cached when using a Xerces * SAX parser. See {@link #PROPERTY_CACHE_SCHEMAS}. * * @author Lucian Chirita ([email protected]) */ public class PrintSaxParserFactory extends BaseSaxParserFactory { private static final Log log = LogFactory.getLog(PrintSaxParserFactory.class); /** * Validation flag used by the XML exporter. *

* Defaults to true. */ @Property( category = PropertyConstants.CATEGORY_EXPORT, defaultValue = PropertyConstants.BOOLEAN_TRUE, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT}, sinceVersion = PropertyConstants.VERSION_1_0_0, valueType = Boolean.class ) public static final String EXPORT_XML_VALIDATION = JRPropertiesUtil.PROPERTY_PREFIX + "export.xml.validation"; private final static ThreadLocal> GRAMMAR_POOL_CACHE = new ThreadLocal>(); /** * @deprecated Replaced by {@link #PrintSaxParserFactory(JasperReportsContext)}. */ public PrintSaxParserFactory() { this(DefaultJasperReportsContext.getInstance()); } public PrintSaxParserFactory(JasperReportsContext jasperReportsContext) { super(jasperReportsContext); } @Override protected boolean isValidating() { return JRPropertiesUtil.getInstance(jasperReportsContext).getBooleanProperty(EXPORT_XML_VALIDATION); } @Override protected List getSchemaLocations() { List schemas = new ArrayList(); schemas.add(getResourceURI(JRXmlConstants.JASPERPRINT_XSD_RESOURCE)); schemas.add(getResourceURI(JRXmlConstants.JASPERPRINT_XSD_DTD_COMPAT_RESOURCE)); List handlers = XmlValueHandlerUtils.instance().getHandlers(); for (XmlValueHandler handler : handlers) { XmlHandlerNamespace namespace = handler.getNamespace(); if (namespace != null) { String schemaURI; String schemaResource = namespace.getInternalSchemaResource(); if (schemaResource != null) { schemaURI = getResourceURI(schemaResource); } else { schemaURI = namespace.getPublicSchemaLocation(); } if (log.isDebugEnabled()) { log.debug("Adding schema at " + schemaURI); } schemas.add(schemaURI); } } return schemas; } @Override protected ThreadLocal> getGrammarPoolCache() { return GRAMMAR_POOL_CACHE; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy