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

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

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2023 Cloud Software Group, 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.Collection;
import java.util.Iterator;
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.JRPropertiesUtil;
import net.sf.jasperreports.engine.JasperReportsContext;
import net.sf.jasperreports.engine.component.ComponentsBundle;
import net.sf.jasperreports.engine.component.ComponentsEnvironment;
import net.sf.jasperreports.engine.component.ComponentsXmlParser;
import net.sf.jasperreports.engine.part.PartComponentsBundle;
import net.sf.jasperreports.engine.part.PartComponentsEnvironment;
import net.sf.jasperreports.properties.PropertyConstants;

/**
 * The default report SAX parser factory.
 * 
 * 

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

* JRXMLs 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 JRReportSaxParserFactory extends BaseSaxParserFactory { private static final Log log = LogFactory.getLog(JRReportSaxParserFactory.class); /** * Whether to validate the xml report when compiling. *

* Defaults to true. */ @Property( category = PropertyConstants.CATEGORY_COMPILE, defaultValue = PropertyConstants.BOOLEAN_TRUE, scopes = {PropertyScope.CONTEXT}, sinceVersion = PropertyConstants.VERSION_1_0_0, valueType = Boolean.class ) public static final String COMPILER_XML_VALIDATION = JRPropertiesUtil.PROPERTY_PREFIX + "compiler.xml.validation"; private final static ThreadLocal> GRAMMAR_POOL_CACHE = new ThreadLocal<>(); public JRReportSaxParserFactory(JasperReportsContext jasperReportsContext) { super(jasperReportsContext); } @Override protected boolean isValidating() { return JRPropertiesUtil.getInstance(jasperReportsContext).getBooleanProperty(COMPILER_XML_VALIDATION); } @Override protected List getSchemaLocations() { List schemas = new ArrayList<>(); schemas.add(getResourceURI(JRXmlConstants.JASPERREPORT_XSD_RESOURCE)); schemas.add(getResourceURI(JRXmlConstants.JASPERREPORT_XSD_DTD_COMPAT_RESOURCE)); Collection components = ComponentsEnvironment.getInstance(jasperReportsContext).getBundles(); for (Iterator it = components.iterator(); it.hasNext();) { ComponentsBundle componentManager = it.next(); ComponentsXmlParser xmlParser = componentManager.getXmlParser(); String schemaURI; String schemaResource = xmlParser.getInternalSchemaResource(); if (schemaResource != null) { schemaURI = getResourceURI(schemaResource); } else { schemaURI = xmlParser.getPublicSchemaLocation(); } if (log.isDebugEnabled()) { log.debug("Adding components schema at " + schemaURI); } schemas.add(schemaURI); } Collection parts = PartComponentsEnvironment.getInstance(jasperReportsContext).getBundles(); for (Iterator it = parts.iterator(); it.hasNext();) { PartComponentsBundle componentManager = it.next(); ComponentsXmlParser xmlParser = componentManager.getXmlParser(); String schemaURI; String schemaResource = xmlParser.getInternalSchemaResource(); if (schemaResource != null) { schemaURI = getResourceURI(schemaResource); } else { schemaURI = xmlParser.getPublicSchemaLocation(); } if (log.isDebugEnabled()) { log.debug("Adding components schema at " + schemaURI); } schemas.add(schemaURI); } return schemas; } @Override protected ThreadLocal> getGrammarPoolCache() { return GRAMMAR_POOL_CACHE; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy