Package org.pentaho.reporting.engine.classic.core.modules.gui.rtf

Source Code of org.pentaho.reporting.engine.classic.core.modules.gui.rtf.RTFExportTask

/*
* 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 - 2009 Object Refinery Ltd, Pentaho Corporation and Contributors..  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.core.modules.gui.rtf;

import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Locale;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.pentaho.reporting.engine.classic.core.MasterReport;
import org.pentaho.reporting.engine.classic.core.ReportInterruptedException;
import org.pentaho.reporting.engine.classic.core.ReportProcessingException;
import org.pentaho.reporting.engine.classic.core.modules.gui.common.StatusListener;
import org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.ReportProgressDialog;
import org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.StatusType;
import org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.SwingGuiContext;
import org.pentaho.reporting.engine.classic.core.modules.gui.pdf.PdfExportPlugin;
import org.pentaho.reporting.engine.classic.core.modules.output.table.base.StreamReportProcessor;
import org.pentaho.reporting.engine.classic.core.modules.output.table.rtf.StreamRTFOutputProcessor;
import org.pentaho.reporting.libraries.base.util.Messages;
import org.pentaho.reporting.libraries.base.util.ObjectUtilities;

/**
* An export task implementation, which writes a given report into an Excel file.
*
* @author Thomas Morgner
*/
public class RTFExportTask implements Runnable
{
  private static final Log logger = LogFactory.getLog(RTFExportTask.class);
  private Messages messages;

  /**
   * The progress dialog that will be used to visualize the report progress.
   */
  private final ReportProgressDialog progressDialog;
  /**
   * The file name of the output file.
   */
  private final String fileName;
  /**
   * The report which should be exported.
   */
  private final MasterReport report;
  private StatusListener statusListener;

  /**
   * Creates a new export task.
   *
   * @param dialog the progress dialog that will monitor the report progress.
   * @param report the report that should be exported.
   */
  public RTFExportTask
      (final MasterReport report,
       final ReportProgressDialog dialog,
       final SwingGuiContext swingGuiContext) throws ReportProcessingException
  {
    if (report == null)
    {
      throw new ReportProcessingException("RtfExportTask(..): Report-Parameter cannot be null"); //$NON-NLS-1$
    }

    if (swingGuiContext != null)
    {
      this.statusListener = swingGuiContext.getStatusListener();
      this.messages = new Messages(swingGuiContext.getLocale(), RTFExportPlugin.BASE_RESOURCE_CLASS,
          ObjectUtilities.getClassLoader(RTFExportPlugin.class));
    }
    else
    {
      this.messages = new Messages(Locale.getDefault(), RTFExportPlugin.BASE_RESOURCE_CLASS,
          ObjectUtilities.getClassLoader(RTFExportPlugin.class));
    }

    final String filename = report.getConfiguration().getConfigProperty
        ("org.pentaho.reporting.engine.classic.core.modules.gui.rtf.FileName"); //$NON-NLS-1$
    if (filename == null)
    {
      throw new ReportProcessingException(messages.getErrorString(
          "RTFExportTask.RTFExportTask.ERROR_0001_NULL_FILENAME")); //$NON-NLS-1$
    }
    this.fileName = filename;
    this.progressDialog = dialog;
    this.report = report;
  }

  /**
   * Exports the report into an Excel file.
   */
  public void run()
  {
    OutputStream out = null;
    File file = null;
    try
    {
      file = new File(fileName).getCanonicalFile();
      final File directory = file.getParentFile();
      if (directory != null)
      {
        if (directory.exists() == false)
        {
          if (directory.mkdirs() == false)
          {
            RTFExportTask.logger.warn("Can't create directories. Hoping and praying now.."); //$NON-NLS-1$
          }
        }
      }
      out = new BufferedOutputStream(new FileOutputStream(file));
      final StreamRTFOutputProcessor target =
          new StreamRTFOutputProcessor(report.getConfiguration(), out, report.getResourceManager());
      final StreamReportProcessor proc = new StreamReportProcessor(report, target);
      if (progressDialog != null)
      {
        progressDialog.setModal(false);
        progressDialog.setVisible(true);
        proc.addReportProgressListener(progressDialog);
      }
      proc.processReport();
      out.close();
      if (progressDialog != null)
      {
        proc.removeReportProgressListener(progressDialog);
      }

      if (statusListener != null)
      {
        statusListener.setStatus
            (StatusType.INFORMATION, messages.getString("RTFExportTask.USER_TASK_FINISHED"), null); //$NON-NLS-1$
      }

    }
    catch (ReportInterruptedException re)
    {
      if (statusListener != null)
      {
        statusListener.setStatus
            (StatusType.WARNING, messages.getString("RTFExportTask.USER_TASK_ABORTED"), null); //$NON-NLS-1$
      }
      try
      {
        out.close();
        out = null;
        if (file.delete() == false)
        {
          RTFExportTask.logger.warn("Unable to delete incomplete export:" + file); //$NON-NLS-1$
        }
      }
      catch (SecurityException se)
      {
        // ignore me
      }
      catch (IOException ioe)
      {
        // ignore me...
      }
    }
    catch (Exception re)
    {
      RTFExportTask.logger.error("RTF export failed", re); //$NON-NLS-1$
      if (statusListener != null)
      {
        statusListener.setStatus
            (StatusType.WARNING, messages.getString("RTFExportTask.USER_TASK_FAILED"), re); //$NON-NLS-1$
      }

    }
    finally
    {
      try
      {
        if (out != null)
        {
          out.close();
        }
      }
      catch (Exception e)
      {
        RTFExportTask.logger.error("Unable to close the output stream.", e); //$NON-NLS-1$
        if (statusListener != null)
        {
          statusListener.setStatus
              (StatusType.WARNING, messages.getString("RTFExportTask.USER_TASK_FAILED"), e); //$NON-NLS-1$
        }

        // if there is already another error, this exception is
        // just a minor obstactle. Something big crashed before ...
      }
    }
    if (progressDialog != null)
    {
      progressDialog.setVisible(false);
    }
  }
}
TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.gui.rtf.RTFExportTask

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.