Package org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.writer

Source Code of org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.writer.AbstractMDXDataFactoryBundleWriteHandler

/*
* 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) 2009 Pentaho Corporation.  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.writer;

import java.io.IOException;

import org.pentaho.reporting.engine.classic.core.ClassicEngineBoot;
import org.pentaho.reporting.engine.classic.core.modules.parser.bundle.writer.BundleDataFactoryWriterHandler;
import org.pentaho.reporting.engine.classic.core.modules.parser.bundle.writer.BundleWriterException;
import org.pentaho.reporting.engine.classic.core.modules.parser.bundle.writer.BundleWriterState;
import org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.AbstractMDXDataFactory;
import org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.CubeFileProvider;
import org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.DataSourceProvider;
import org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.MondrianDataFactoryModule;
import org.pentaho.reporting.libraries.base.config.Configuration;
import org.pentaho.reporting.libraries.base.util.ObjectUtilities;
import org.pentaho.reporting.libraries.docbundle.WriteableDocumentBundle;
import org.pentaho.reporting.libraries.xmlns.common.AttributeList;
import org.pentaho.reporting.libraries.xmlns.writer.XmlWriter;

/**
* Todo: Document me!
* <p/>
* Date: 26.07.2009
* Time: 15:17:04
*
* @author Thomas Morgner.
*/
public abstract class AbstractMDXDataFactoryBundleWriteHandler
    implements BundleDataFactoryWriterHandler
{
  protected void writeBody(final WriteableDocumentBundle bundle,
                           final BundleWriterState state,
                           final AbstractMDXDataFactory mdxDataFactory,
                           final XmlWriter xmlWriter) throws IOException, BundleWriterException
  {

    final AttributeList configAttrs = new AttributeList();
    if (mdxDataFactory.getJdbcPassword() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "jdbc-password", String.valueOf(mdxDataFactory.getJdbcPassword()));
    }
    if (mdxDataFactory.getJdbcUser() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "jdbc-user", String.valueOf(mdxDataFactory.getJdbcUser()));
    }
    if (mdxDataFactory.getRole() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "role", String.valueOf(mdxDataFactory.getRole()));
    }
    if (mdxDataFactory.getJdbcPasswordField() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "jdbc-password-field", String.valueOf(mdxDataFactory.getJdbcPasswordField()));
    }
    if (mdxDataFactory.getJdbcUserField() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "jdbc-user-field", String.valueOf(mdxDataFactory.getJdbcUserField()));
    }
    if (mdxDataFactory.getRoleField() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "role-field", String.valueOf(mdxDataFactory.getRoleField()));
    }
    if (mdxDataFactory.getDesignTimeName() != null)
    {
      configAttrs.setAttribute(MondrianDataFactoryModule.NAMESPACE,
          "design-time-name", String.valueOf(mdxDataFactory.getDesignTimeName()));
    }

    xmlWriter.writeTag(MondrianDataFactoryModule.NAMESPACE, "connection", configAttrs, XmlWriter.OPEN);

    final DataSourceProvider dataSourceProvider = mdxDataFactory.getDataSourceProvider();
    if (dataSourceProvider != null)
    {
      writeConnectionInfo(bundle, state, xmlWriter, dataSourceProvider);
    }
    final CubeFileProvider cubeFileProvider = mdxDataFactory.getCubeFileProvider();
    if (cubeFileProvider != null)
    {
      writeCubeInfo(bundle, state, xmlWriter, cubeFileProvider);
    }

    xmlWriter.writeCloseTag();
  }

  private void writeConnectionInfo(final WriteableDocumentBundle bundle,
                                   final BundleWriterState state,
                                   final XmlWriter xmlWriter,
                                   final DataSourceProvider connectionProvider)
      throws IOException, BundleWriterException
  {
    final String configKey = MondrianDataFactoryModule.DATASOURCE_BUNDLEWRITER_PREFIX + connectionProvider.getClass().getName();
    final Configuration globalConfig = ClassicEngineBoot.getInstance().getGlobalConfig();
    final String value = globalConfig.getConfigProperty(configKey);
    if (value == null)
    {
      throw new BundleWriterException("Unable to locate writer for " + connectionProvider.getClass().getName());
    }
    final DataSourceProviderBundleWriteHandler handler =
        (DataSourceProviderBundleWriteHandler) ObjectUtilities.loadAndInstantiate
            (value, AbstractMDXDataFactoryBundleWriteHandler.class, DataSourceProviderBundleWriteHandler.class);
    if (handler == null)
    {
      throw new BundleWriterException("Invalid write-handler for " + connectionProvider.getClass().getName());
    }
    handler.write(bundle, state, xmlWriter, connectionProvider);
  }


  private void writeCubeInfo(final WriteableDocumentBundle bundle,
                             final BundleWriterState state,
                             final XmlWriter xmlWriter,
                             final CubeFileProvider cubeFileProvider)
      throws IOException, BundleWriterException
  {
    final String configKey = MondrianDataFactoryModule.CUBEFILE_BUNDLEWRITER_PREFIX + cubeFileProvider.getClass().getName();
    final Configuration globalConfig = ClassicEngineBoot.getInstance().getGlobalConfig();
    final String value = globalConfig.getConfigProperty(configKey);
    if (value == null)
    {
      throw new BundleWriterException("Unable to locate writer for " + cubeFileProvider.getClass().getName());
    }

    final CubeFileProviderBundleWriteHandler handler =
        (CubeFileProviderBundleWriteHandler) ObjectUtilities.loadAndInstantiate
            (value, AbstractMDXDataFactoryWriteHandler.class, CubeFileProviderBundleWriteHandler.class);
    if (handler == null)
    {
      throw new BundleWriterException("Invalid write-handler for " + cubeFileProvider.getClass().getName());
    }
    handler.write(bundle, state, xmlWriter, cubeFileProvider);
  }

}
TOP

Related Classes of org.pentaho.reporting.engine.classic.extensions.datasources.mondrian.writer.AbstractMDXDataFactoryBundleWriteHandler

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.