/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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. * * Copyright (c) 2001 - 2013 Object Refinery Ltd, Pentaho Corporation and Contributors.. All rights reserved. */ package org.pentaho.reporting.engine.classic.core.modules.parser.ext.readhandlers; import org.pentaho.reporting.engine.classic.core.AttributeNames; import org.pentaho.reporting.engine.classic.core.SubReport; import org.pentaho.reporting.engine.classic.core.modules.parser.base.PropertyAttributes; import org.pentaho.reporting.engine.classic.core.modules.parser.base.ReportParserUtil; import org.pentaho.reporting.engine.classic.core.modules.parser.base.SubReportReadHandler; import org.pentaho.reporting.engine.classic.core.modules.parser.base.common.AbstractPropertyXmlReadHandler; import org.pentaho.reporting.engine.classic.core.modules.parser.base.common.FunctionsReadHandler; import org.pentaho.reporting.engine.classic.core.modules.parser.base.common.IncludeReadHandler; import org.pentaho.reporting.engine.classic.core.modules.parser.base.common.ParameterMappingReadHandler; import org.pentaho.reporting.engine.classic.core.modules.parser.ext.factory.base.ClassFactoryCollector; import org.pentaho.reporting.engine.classic.core.modules.parser.ext.factory.datasource.DataSourceCollector; import org.pentaho.reporting.engine.classic.core.modules.parser.ext.factory.elements.ElementFactoryCollector; import org.pentaho.reporting.engine.classic.core.modules.parser.ext.factory.stylekey.StyleKeyFactoryCollector; import org.pentaho.reporting.engine.classic.core.modules.parser.ext.factory.templates.TemplateCollector; import org.pentaho.reporting.engine.classic.core.style.ElementStyleSheet; import org.pentaho.reporting.libraries.xmlns.parser.RootXmlReadHandler; import org.pentaho.reporting.libraries.xmlns.parser.XmlReadHandler; import org.xml.sax.SAXException; import java.util.ArrayList; import java.util.HashMap; public class ExtSubReportReadHandler extends AbstractPropertyXmlReadHandler implements SubReportReadHandler { public static final String ELEMENT_FACTORY_KEY = "::element-factory"; public static final String STYLE_FACTORY_KEY = "::stylekey-factory"; public static final String CLASS_FACTORY_KEY = "::class-factory"; public static final String DATASOURCE_FACTORY_KEY = "::datasource-factory"; public static final String TEMPLATE_FACTORY_KEY = "::template-factory"; private ArrayList<ParameterMappingReadHandler> importParameters; private ArrayList<ParameterMappingReadHandler> exportParameters; private boolean disableRootTagWarning; public ExtSubReportReadHandler() { importParameters = new ArrayList<ParameterMappingReadHandler>(); exportParameters = new ArrayList<ParameterMappingReadHandler>(); } /** * Initialises the handler. * * @param rootHandler * the root handler. * @param tagName * the tag name. */ public void init( final RootXmlReadHandler rootHandler, final String uri, final String tagName ) throws SAXException { super.init( rootHandler, uri, tagName ); rootHandler.setHelperObject( "property-expansion", Boolean.TRUE ); } public void setDisableRootTagWarning( final boolean disableWarning ) { disableRootTagWarning = disableWarning; } public boolean isDisableRootTagWarning() { return disableRootTagWarning; } /** * Starts parsing. * * @param attrs * the attributes. * @throws org.xml.sax.SAXException * if there is a parsing error. */ protected void startParsing( final PropertyAttributes attrs ) throws SAXException { final RootXmlReadHandler rootHandler = getRootHandler(); final Object maybeReport = rootHandler.getHelperObject( ReportParserUtil.HELPER_OBJ_REPORT_NAME ); final SubReport report; if ( maybeReport instanceof SubReport == false ) { // replace it .. report = new SubReport(); report.setAttribute( AttributeNames.Core.NAMESPACE, AttributeNames.Core.SOURCE, getRootHandler().getSource() ); } else { report = (SubReport) maybeReport; } if ( ReportParserUtil.isIncluded( rootHandler ) == false ) { final String query = attrs.getValue( getUri(), "query" ); if ( query != null ) { report.setQuery( query ); } } if ( rootHandler.getHelperObject( ExtSubReportReadHandler.ELEMENT_FACTORY_KEY ) == null ) { final ElementFactoryCollector elementFactory = new ElementFactoryCollector(); rootHandler.setHelperObject( ExtSubReportReadHandler.ELEMENT_FACTORY_KEY, elementFactory ); } if ( rootHandler.getHelperObject( ExtSubReportReadHandler.STYLE_FACTORY_KEY ) == null ) { final StyleKeyFactoryCollector styleKeyFactory = new StyleKeyFactoryCollector(); rootHandler.setHelperObject( ExtSubReportReadHandler.STYLE_FACTORY_KEY, styleKeyFactory ); } if ( rootHandler.getHelperObject( ExtSubReportReadHandler.CLASS_FACTORY_KEY ) == null ) { final ClassFactoryCollector classFactory = new ClassFactoryCollector(); classFactory.configure( rootHandler.getParserConfiguration() ); rootHandler.setHelperObject( ExtSubReportReadHandler.CLASS_FACTORY_KEY, classFactory ); } if ( rootHandler.getHelperObject( ExtSubReportReadHandler.DATASOURCE_FACTORY_KEY ) == null ) { final DataSourceCollector dataSourceFactory = new DataSourceCollector(); dataSourceFactory.configure( rootHandler.getParserConfiguration() ); rootHandler.setHelperObject( ExtSubReportReadHandler.DATASOURCE_FACTORY_KEY, dataSourceFactory ); } if ( rootHandler.getHelperObject( ExtSubReportReadHandler.TEMPLATE_FACTORY_KEY ) == null ) { final TemplateCollector templateFactory = new TemplateCollector(); templateFactory.configure( rootHandler.getParserConfiguration() ); rootHandler.setHelperObject( ExtSubReportReadHandler.TEMPLATE_FACTORY_KEY, templateFactory ); } report.setName( attrs.getValue( getUri(), "name" ) ); rootHandler.setHelperObject( ReportParserUtil.HELPER_OBJ_REPORT_NAME, report ); if ( rootHandler.getHelperObject( ReportParserUtil.HELPER_OBJ_LEGACY_STYLES ) instanceof HashMap == false ) { rootHandler.setHelperObject( ReportParserUtil.HELPER_OBJ_LEGACY_STYLES, new HashMap<String, ElementStyleSheet>() ); } } /** * Returns the handler for a child element. * * @param tagName * the tag name. * @param atts * the attributes. * @return the handler or null, if the tagname is invalid. * @throws org.xml.sax.SAXException * if there is a parsing error. */ protected XmlReadHandler getHandlerForChild( final String uri, final String tagName, final PropertyAttributes atts ) throws SAXException { if ( isSameNamespace( uri ) == false ) { return null; } if ( "parser-config".equals( tagName ) ) { return new ParserConfigReadHandler(); } else if ( "report-config".equals( tagName ) ) { return new ReportConfigReadHandler(); } else if ( "styles".equals( tagName ) ) { return new StylesReadHandler(); } else if ( "templates".equals( tagName ) ) { return new TemplatesReadHandler(); } else if ( "report-description".equals( tagName ) ) { return new ReportDescriptionReadHandler(); } else if ( "functions".equals( tagName ) ) { return new FunctionsReadHandler( getSubReport() ); } else if ( "include".equals( tagName ) ) { return new IncludeReadHandler(); } else if ( "import-parameter".equals( tagName ) ) { final ParameterMappingReadHandler handler = new ParameterMappingReadHandler(); importParameters.add( handler ); return handler; } else if ( "export-parameter".equals( tagName ) ) { final ParameterMappingReadHandler handler = new ParameterMappingReadHandler(); exportParameters.add( handler ); return handler; } return null; } /** * Done parsing. * * @throws SAXException * if there is a parsing error. */ protected void doneParsing() throws SAXException { super.doneParsing(); final SubReport report = getSubReport(); for ( int i = 0; i < importParameters.size(); i++ ) { final ParameterMappingReadHandler handler = importParameters.get( i ); report.addInputParameter( handler.getName(), handler.getAlias() ); } for ( int i = 0; i < exportParameters.size(); i++ ) { final ParameterMappingReadHandler handler = exportParameters.get( i ); report.addExportParameter( handler.getAlias(), handler.getName() ); } } /** * Returns the object for this element or null, if this element does not create an object. * * @return the object. */ public Object getObject() { return getRootHandler().getHelperObject( ReportParserUtil.HELPER_OBJ_REPORT_NAME ); } public SubReport getSubReport() { return (SubReport) getObject(); } }