/*! * 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) 2002-2013 Pentaho Corporation.. All rights reserved. */ package org.pentaho.reporting.engine.classic.samples; import java.io.File; import java.io.IOException; import java.net.URL; import java.util.Map; import java.util.HashMap; import org.pentaho.reporting.engine.classic.core.DataFactory; import org.pentaho.reporting.engine.classic.core.MasterReport; import org.pentaho.reporting.engine.classic.core.ReportProcessingException; import org.pentaho.reporting.libraries.resourceloader.Resource; import org.pentaho.reporting.libraries.resourceloader.ResourceException; import org.pentaho.reporting.libraries.resourceloader.ResourceManager; /** * Generates a report in the following scenario: * <ol> * <li>The report definition file is a .prpt file which will be loaded and parsed * <li>The data factory is a simple JDBC data factory using HSQLDB * <li>There are no runtime report parameters used * </ol> */ public class Sample1 extends AbstractReportGenerator { /** * Default constructor for this sample report generator */ public Sample1() { } /** * Returns the report definition which will be used to generate the report. In this case, the report will be * loaded and parsed from a file contained in this package. * * @return the loaded and parsed report definition to be used in report generation. */ public MasterReport getReportDefinition() { try { // Using the classloader, get the URL to the reportDefinition file final ClassLoader classloader = this.getClass().getClassLoader(); final URL reportDefinitionURL = classloader.getResource("org/pentaho/reporting/engine/classic/samples/Sample1.prpt"); // Parse the report file final ResourceManager resourceManager = new ResourceManager(); final Resource directly = resourceManager.createDirectly(reportDefinitionURL, MasterReport.class); return (MasterReport) directly.getResource(); } catch (ResourceException e) { e.printStackTrace(); } return null; } /** * Returns the data factory which will be used to generate the data used during report generation. In this example, * we will return null since the data factory has been defined in the report definition. * * @return the data factory used with the report generator */ public DataFactory getDataFactory() { return null; } /** * Returns the set of runtime report parameters. This sample report uses the following three parameters: * <ul> * <li><b>Report Title</b> - The title text on the top of the report</li> * <li><b>Customer Names</b> - an array of customer names to show in the report</li> * <li><b>Col Headers BG Color</b> - the background color for the column headers</li> * </ul> * * @return <code>null</code> indicating the report generator does not use any report parameters */ public Map<String, Object> getReportParameters() { final Map parameters = new HashMap<String, Object>(); parameters.put("Report Title", "Simple Embedded Report Example with Parameters"); parameters.put("Col Headers BG Color", "yellow"); parameters.put("Customer Names", new String [] { "American Souvenirs Inc", "Toys4GrownUps.com", "giftsbymail.co.uk", "BG&E Collectables", "Classic Gift Ideas, Inc", }); return parameters; } /** * Simple command line application that will generate a PDF version of the report. In this report, * the report definition has already been created with the Pentaho Report Designer application and * it located in the same package as this class. The data query is located in that report definition * as well, and there are a few report-modifying parameters that will be passed to the engine at runtime. * <p/> * The output of this report will be a PDF file located in the current directory and will be named * <code>SimpleReportGeneratorExample.pdf</code>. * * @param args none * @throws IOException indicates an error writing to the filesystem * @throws ReportProcessingException indicates an error generating the report */ public static void main(String[] args) throws IOException, ReportProcessingException { // Create an output filename final File outputFilename = new File(Sample1.class.getSimpleName() + ".pdf"); // Generate the report new Sample1().generateReport(AbstractReportGenerator.OutputType.PDF, outputFilename); // Output the location of the file System.err.println("Generated the report [" + outputFilename.getAbsolutePath() + "]"); } }