/* * JasperReports - Free Java Reporting Library. * Copyright (C) 2001 - 2009 Jaspersoft Corporation. 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 <http://www.gnu.org/licenses/>. */ package net.sf.jasperreports.engine.util.xml; import net.sf.jasperreports.engine.JRException; import net.sf.jasperreports.engine.util.JRProperties; import net.sf.jasperreports.engine.util.JRSingletonCache; /** * Helper class used to instantiate {@link JRXPathExecuter XPath executers}. * <p/> * The {@link JRXPathExecuterFactory XPath executer factory} class name is given by the * {@link #PROPERTY_XPATH_EXECUTER_FACTORY net.sf.jasperreports.xpath.executer.factory} property. * The class should have a public default constructor so that it can be instantiated via reflection. * <p/> * By default, {@link XalanXPathExecuter XPath executers} based on <a href="http://xml.apache.org/xalan-j/" target="_blank">Apache Xalan</a> * are used. * * @author Lucian Chirita (lucianc@users.sourceforge.net) * @version $Id: JRXPathExecuterUtils.java 3712 2010-04-08 09:53:09Z teodord $ */ public final class JRXPathExecuterUtils { /** * Property that holds the {@link JRXPathExecuterFactory XPath executer factory} class name. */ public static final String PROPERTY_XPATH_EXECUTER_FACTORY = JRProperties.PROPERTY_PREFIX + "xpath.executer.factory"; private static final JRSingletonCache cache = new JRSingletonCache(JRXPathExecuterFactory.class); /** * Return an {@link JRXPathExecuterFactory XPath executer factory} instance. * * @return a JRXPathExecuterFactory instance * @throws JRException if the {@link #PROPERTY_XPATH_EXECUTER_FACTORY XPath factory property} is not defined * or the factory cannot be instantiated. */ public static JRXPathExecuterFactory getXPathExecuterFactory() throws JRException { String factoryClassName = JRProperties.getProperty(PROPERTY_XPATH_EXECUTER_FACTORY); if (factoryClassName == null) { throw new JRException("XPath executer factory property not found. " + "Create a propery named " + PROPERTY_XPATH_EXECUTER_FACTORY + "."); } return (JRXPathExecuterFactory) cache.getCachedInstance(factoryClassName); } /** * Produces an {@link JRXPathExecuter XPath executer} instance by means of the factory * returned by {@link #getXPathExecuterFactory() getXPathExecuterFactory()}. * * @return an JRXPathExecuter instance * @throws JRException if the {@link #PROPERTY_XPATH_EXECUTER_FACTORY XPath factory property} is not defined * or the factory cannot be instantiated. */ public static JRXPathExecuter getXPathExecuter() throws JRException { JRXPathExecuterFactory executerFactory = getXPathExecuterFactory(); return executerFactory.getXPathExecuter(); } private JRXPathExecuterUtils() { } }