Package com.sun.star.report.pentaho

Source Code of com.sun.star.report.pentaho.SOReportJobFactory

/*************************************************************************
*
*  OpenOffice.org - a multi-platform office productivity suite
*
*  $RCSfile: SOReportJobFactory.java,v $
*
*  $Revision: 1.2 $
*
*  last change: $Author: rt $ $Date: 2007/07/09 11:56:04 $
*
*  The Contents of this file are made available subject to
*  the terms of GNU Lesser General Public License Version 2.1.
*
*
*    GNU Lesser General Public License Version 2.1
*    =============================================
*    Copyright 2005 by Sun Microsystems, Inc.
*    901 San Antonio Road, Palo Alto, CA 94303, USA
*
*    This library 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.
*
*    This library 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 this library; if not, write to the Free Software
*    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
*    MA  02111-1307  USA
*
************************************************************************/
package com.sun.star.report.pentaho;

import java.net.URL;

import com.sun.star.beans.NamedValue;
import com.sun.star.beans.XPropertySet;
import com.sun.star.beans.UnknownPropertyException;
import com.sun.star.beans.PropertyVetoException;
import com.sun.star.beans.XPropertyChangeListener;
import com.sun.star.beans.XVetoableChangeListener;
import com.sun.star.embed.XStorage;
import com.sun.star.lang.XInitialization;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.lang.XSingleComponentFactory;
import com.sun.star.lang.WrappedTargetException;
import com.sun.star.lib.uno.helper.Factory;
import com.sun.star.lib.uno.helper.PropertySetMixin;
import com.sun.star.lib.uno.helper.WeakBase;
import com.sun.star.registry.XRegistryKey;
import com.sun.star.report.DataSourceFactory;
import com.sun.star.report.JobProperties;
import com.sun.star.report.ReportEngineParameterNames;
import com.sun.star.report.ReportJob;
import com.sun.star.report.ReportJobDefinition;
import com.sun.star.report.SDBCReportDataFactory;
import com.sun.star.report.SOImageService;
import com.sun.star.report.StorageRepository;
import com.sun.star.sdbc.XRowSet;
import com.sun.star.task.XJob;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XComponentContext;
import org.jfree.util.Log;

/**
* This class capsulates the class, that implements the minimal component, a factory for creating the service
* (<CODE>__getComponentFactory</CODE>) and a method, that writes the information into the given registry key
* (<CODE>__writeRegistryServiceInfo</CODE>).
*/
public class SOReportJobFactory
{
  private SOReportJobFactory()
  {
  }

  public static class _SOReportJobFactory extends WeakBase implements XInitialization, XServiceInfo, XJob, XPropertySet
  {
    /**
     * The service name, that must be used to get an instance of this service.
     */
    private static final String __serviceName =
        "com.sun.star.report.pentaho.SOReportJobFactory";

    private PropertySetMixin m_prophlp;

    /**
     * The initial component contextr, that gives access to the service manager, supported singletons, ... It's
     * often later used
     */
    private XComponentContext m_cmpCtx;

    public _SOReportJobFactory(final XComponentContext xCompContext)
    {
      m_cmpCtx = xCompContext;
      try
      {
        final XMultiComponentFactory m_xMCF = m_cmpCtx.getServiceManager();
        m_prophlp = new PropertySetMixin(m_cmpCtx, this,
            new Type(XJob.class),
            null); // no optionals
      }
      catch (Exception e)
      {
        Log.error ("Failed to query the service manager: ", e);
        throw new RuntimeException();
      }
    }

    /**
     * This method is a member of the interface for initializing an object directly after its creation.
     *
     * @param object This array of arbitrary objects will be passed to the component after its creation.
     * @throws Exception Every exception will not be handled, but will be passed to the caller.
     */
    public void initialize(final Object[] object)
        throws com.sun.star.uno.Exception
    {
      /* The component describes what arguments its expected and in which
      * order!At this point you can read the objects and can intialize
      * your component using these objects.
      */
    }

    /**
     * This method returns an array of all supported service names.
     *
     * @return Array of supported service names.
     */
    public String[] getSupportedServiceNames()
    {
      return getServiceNames();
    }

    /**
     * This method is a simple helper function to used in the static component initialisation functions as well as
     * in getSupportedServiceNames.
     */
    public static String[] getServiceNames()
    {
      return new String[]{__serviceName};
    }

    /**
     * This method returns true, if the given service will be supported by the component.
     *
     * @param sServiceName Service name.
     * @return True, if the given service name will be supported.
     */
    public boolean supportsService(final String sServiceName)
    {
      return sServiceName.equals(__serviceName);
    }

    /**
     * Return the class name of the component.
     *
     * @return Class name of the component.
     */
    public String getImplementationName()
    {
      return SOReportJobFactory.class.getName();
    }

    public Object execute(final NamedValue[] namedValue)
        throws com.sun.star.lang.IllegalArgumentException, com.sun.star.uno.Exception
    {
      final ClassLoader cl = java.lang.Thread.currentThread().getContextClassLoader();
      Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader());
      try
      {
        XStorage input = null;
        XStorage output = null;
        XRowSet rowSet = null;
        String mimetype = null;
        for (int i = 0; i < namedValue.length; ++i)
        {
          final NamedValue aProps = namedValue[i];
          if ("DataSource".equalsIgnoreCase(aProps.Name))
          {
          }
          else if ("RowSet".equalsIgnoreCase(aProps.Name))
          {
            rowSet = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, aProps.Value);
          }
          else if ("Parameters".equalsIgnoreCase(aProps.Name))
          {
          }
          else if ("InputStorage".equalsIgnoreCase(aProps.Name))
          {
            input = (XStorage) UnoRuntime.queryInterface(XStorage.class, aProps.Value);
          }
          else if ("OutputStorage".equalsIgnoreCase(aProps.Name))
          {
            output = (XStorage) UnoRuntime.queryInterface(XStorage.class, aProps.Value);
          }
          else if ("mimetype".equalsIgnoreCase(aProps.Name))
          {
            mimetype = (String) aProps.Value;
          }
        }

        if (rowSet == null || input == null || output == null)
        {
          throw new com.sun.star.lang.IllegalArgumentException();
        }

        if (mimetype == null)
        {
          mimetype = "application/vnd.oasis.opendocument.text";
        }

        final DataSourceFactory dataFactory = new SDBCReportDataFactory(rowSet);
        final StorageRepository storageRepository = new StorageRepository(input, output);
        final PentahoReportEngine engine = new PentahoReportEngine();
        final ReportJobDefinition definition = engine.createJobDefinition();
        final JobProperties procParms = definition.getProcessingParameters();

        final String inputName = "content.xml";
        final String outputName = "content.xml";
        procParms.setProperty(ReportEngineParameterNames.INPUT_REPOSITORY, storageRepository);
        procParms.setProperty(ReportEngineParameterNames.OUTPUT_REPOSITORY, storageRepository);
        procParms.setProperty(ReportEngineParameterNames.INPUT_NAME, inputName);
        procParms.setProperty(ReportEngineParameterNames.OUTPUT_NAME, outputName);
        procParms.setProperty(ReportEngineParameterNames.CONTENT_TYPE, mimetype);
        procParms.setProperty(ReportEngineParameterNames.INPUT_DATASOURCE_FACTORY, dataFactory);
        procParms.setProperty(ReportEngineParameterNames.IMAGE_SERVICE, new SOImageService(m_cmpCtx));

        final ReportJob job = engine.createJob(definition);
        job.execute();
      }
      catch (java.lang.Exception e)
      {
        Log.error("ReportProcessing failed", e);
        throw new com.sun.star.lang.WrappedTargetException
            ("caught a " + e.getClass().getName(), this, new com.sun.star.uno.Exception(e.getLocalizedMessage()));
      }
      catch (java.lang.IncompatibleClassChangeError e2)
      {
        Log.error("Detected an IncompatibleClassChangeError");
        e2.printStackTrace(System.err);
        System.err.println(e2);
      }
      Thread.currentThread().setContextClassLoader(cl);

      return null;
    }

    // com.sun.star.beans.XPropertySet:
    public com.sun.star.beans.XPropertySetInfo getPropertySetInfo()
    {
      return m_prophlp.getPropertySetInfo();
    }

    public void setPropertyValue(final String aPropertyName, final Object aValue)
        throws UnknownPropertyException, PropertyVetoException, com.sun.star.lang.IllegalArgumentException,
        WrappedTargetException
    {
      m_prophlp.setPropertyValue(aPropertyName, aValue);
    }

    public Object getPropertyValue(final String aPropertyName)
        throws UnknownPropertyException, WrappedTargetException
    {
      return m_prophlp.getPropertyValue(aPropertyName);
    }

    public void addPropertyChangeListener(final String aPropertyName, final XPropertyChangeListener xListener)
        throws UnknownPropertyException, WrappedTargetException
    {
      m_prophlp.addPropertyChangeListener(aPropertyName, xListener);
    }

    public void removePropertyChangeListener(final String aPropertyName, final XPropertyChangeListener xListener)
        throws UnknownPropertyException, WrappedTargetException
    {
      m_prophlp.removePropertyChangeListener(aPropertyName, xListener);
    }

    public void addVetoableChangeListener(final String aPropertyName, final XVetoableChangeListener xListener)
        throws UnknownPropertyException, WrappedTargetException
    {
      m_prophlp.addVetoableChangeListener(aPropertyName, xListener);
    }

    public void removeVetoableChangeListener(final String aPropertyName, final XVetoableChangeListener xListener)
        throws UnknownPropertyException, WrappedTargetException
    {
      m_prophlp.removeVetoableChangeListener(aPropertyName, xListener);
    }
  }

  /**
   * Gives a factory for creating the service. This method is called by the <code>JavaLoader</code>
   * <p/>
   *
   * @param sImplName the name of the implementation for which a service is desired
   * @return returns a <code>XSingleComponentFactory</code> for creating the component
   * @see com.sun.star.comp.loader.JavaLoader
   */
  public static XSingleComponentFactory __getComponentFactory(final String sImplName)
  {
    XSingleComponentFactory xFactory = null;

    try
    {
      if (sImplName.equals(_SOReportJobFactory.class.getName()))
      {
        xFactory = Factory.createComponentFactory(_SOReportJobFactory.class,
            _SOReportJobFactory.getServiceNames());
      }
    }
    catch (java.lang.IncompatibleClassChangeError e2)
    {
      e2.printStackTrace(System.err);
      System.err.println(e2);
    }

    return xFactory;
  }

  /**
   * Writes the service information into the given registry key. This method is called by the <code>JavaLoader</code>
   * <p/>
   *
   * @param regKey the registryKey
   * @return returns true if the operation succeeded
   * @see com.sun.star.comp.loader.JavaLoader
   */
  public static boolean __writeRegistryServiceInfo(final XRegistryKey regKey)
  {
    return Factory.writeRegistryServiceInfo(_SOReportJobFactory.class.getName(),
        _SOReportJobFactory.getServiceNames(),
        regKey);
  }
}
TOP

Related Classes of com.sun.star.report.pentaho.SOReportJobFactory

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.