Package org.pentaho.reporting.ui.datasources.jdbc.ui

Source Code of org.pentaho.reporting.ui.datasources.jdbc.ui.SimpleJdbcDataSourceDialog$ConfirmAction

/*
* 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.ui.datasources.jdbc.ui;

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.Enumeration;
import java.util.Locale;
import java.util.Properties;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.pentaho.reporting.engine.classic.core.designtime.DesignTimeContext;
import org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.SwingUtil;
import org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.ConnectionProvider;
import org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.DriverConnectionProvider;
import org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.JndiConnectionProvider;
import org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.SimpleSQLReportDataFactory;
import org.pentaho.reporting.libraries.base.util.ObjectUtilities;
import org.pentaho.reporting.libraries.base.util.ResourceBundleSupport;
import org.pentaho.reporting.ui.datasources.jdbc.JdbcDataSourceModule;
import org.pentaho.reporting.ui.datasources.jdbc.connection.DriverConnectionDefinition;
import org.pentaho.reporting.ui.datasources.jdbc.connection.JdbcConnectionDefinition;
import org.pentaho.reporting.ui.datasources.jdbc.connection.JndiConnectionDefinition;

/**
* Todo: Document Me
*
* @author Thomas Morgner
*/
public class SimpleJdbcDataSourceDialog extends JDialog
{

  private class CancelAction extends AbstractAction
  {
    private CancelAction()
    {
      putValue(Action.NAME, getBundleSupport().getString("Button.cancel"));
    }

    public void actionPerformed(final ActionEvent e)
    {
      setConfirmed(false);
      dispose();
    }
  }

  private class ConfirmAction extends AbstractAction implements PropertyChangeListener
  {
    private ConfirmAction()
    {
      putValue(Action.NAME, getBundleSupport().getString("Button.ok"));
    }

    public void propertyChange(final PropertyChangeEvent evt)
    {
      final SimpleDataSourceDialogModel dialogModel = getDialogModel();
      setEnabled(dialogModel.isConnectionSelected());
    }

    public void actionPerformed(final ActionEvent e)
    {
      setConfirmed(true);
      dispose();
    }
  }

  protected static final Log log = LogFactory.getLog(JdbcDataSourceDialog.class);

  private boolean confirmed;

  private SimpleDataSourceDialogModel dialogModel;
  private ResourceBundleSupport bundleSupport;
  private DesignTimeContext designTimeContext;
  private JdbcConnectionPanel connectionComponent;

  public SimpleJdbcDataSourceDialog(final DesignTimeContext designTimeContext)
  {
    this.designTimeContext = designTimeContext;
    initDialog();
  }

  public SimpleJdbcDataSourceDialog(final DesignTimeContext designTimeContext, final JDialog parent)
  {
    super(parent);
    this.designTimeContext = designTimeContext;
    initDialog();
  }

  public SimpleJdbcDataSourceDialog(final DesignTimeContext designTimeContext, final JFrame parent)
  {
    super(parent);
    this.designTimeContext = designTimeContext;
    initDialog();
  }

  public DesignTimeContext getDesignTimeContext()
  {
    return designTimeContext;
  }

  /**
   * Displays the dialog and returns the newly created JNDIDataSetReportElement
   *
   * @param dataFactory the datafactory to be configured or null to create a new one
   * @return the a clone of the configured datafactory or null on cancel.
   */
  public SimpleSQLReportDataFactory performConfiguration(final SimpleSQLReportDataFactory dataFactory)
  {
    confirmed = false;
    dialogModel.clear();

    // Load the data from the current report element
    if (dataFactory != null)
    {
      dialogModel.setJdbcPasswordField(dataFactory.getPasswordField());
      dialogModel.setJdbcUserField(dataFactory.getUserField());

      final ConnectionProvider currentJNDISource = dataFactory.getConnectionProvider();
      final JdbcConnectionDefinition definition = connectionComponent.createConnectionDefinition(currentJNDISource);
      dialogModel.addConnection(definition);
      dialogModel.getConnections().setSelectedItem(definition);
    }

    // Enable the dialog
    setVisible(true);

    final JdbcConnectionDefinition connectionDefinition =
        (JdbcConnectionDefinition) dialogModel.getConnections().getSelectedItem();

    if (confirmed == false || connectionDefinition == null)
    {
      return null;
    }

    final SimpleSQLReportDataFactory newDataFactory;

    if (connectionDefinition instanceof JndiConnectionDefinition)
    {
      final JndiConnectionDefinition jcd = (JndiConnectionDefinition) connectionDefinition;
      final JndiConnectionProvider provider = new JndiConnectionProvider();
      provider.setConnectionPath(jcd.getJndiName());
      provider.setUsername(jcd.getUsername());
      provider.setPassword(jcd.getPassword());
      newDataFactory = new SimpleSQLReportDataFactory(provider);
    }
    else if (connectionDefinition instanceof DriverConnectionDefinition)
    {
      final DriverConnectionDefinition dcd = (DriverConnectionDefinition) connectionDefinition;
      final DriverConnectionProvider provider = new DriverConnectionProvider();
      provider.setDriver(dcd.getDriverClass());
      provider.setUrl(dcd.getConnectionString());

      final Properties properties = dcd.getProperties();
      final Enumeration keys = properties.keys();
      while (keys.hasMoreElements())
      {
        final String key = (String) keys.nextElement();
        provider.setProperty(key, properties.getProperty(key));
      }

      newDataFactory = new SimpleSQLReportDataFactory(provider);
    }
    else
    {
      return null;
    }

    newDataFactory.setPasswordField(dialogModel.getJdbcPasswordField());
    newDataFactory.setUserField(dialogModel.getJdbcUserField());
    return newDataFactory;
  }

  /**
   * Creates the panel which holds the main content of the dialog
   */
  private void initDialog()
  {
    dialogModel = new SimpleDataSourceDialogModel();
    bundleSupport = new ResourceBundleSupport(Locale.getDefault(), JdbcDataSourceModule.MESSAGES,
        ObjectUtilities.getClassLoader(JdbcDataSourceModule.class));
    connectionComponent = new JdbcConnectionPanel(dialogModel, designTimeContext);

    setTitle(bundleSupport.getString("JdbcDataSourceDialog.Title"));
    setModal(true);


    final JLabel descriptionLabel = new JLabel(bundleSupport.getString("SimpleJdbcDataSourceDialog.DescriptionLabel"));

    final JPanel headerPanel = new JPanel(new BorderLayout());
    headerPanel.add(BorderLayout.CENTER, descriptionLabel);
    headerPanel.setBorder(BorderFactory.createEmptyBorder(8, 8, 8, 8));

    // Create the connection panel

    // Create the button panel
    final ConfirmAction confirmAction = new ConfirmAction();
    dialogModel.addPropertyChangeListener(confirmAction);

    final JButton okButton = new JButton(confirmAction);
    final JButton cancelButton = new JButton(new CancelAction());

    final JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT, 5, 5));
    buttonPanel.add(okButton);
    buttonPanel.add(cancelButton);
    buttonPanel.setBorder(BorderFactory.createEmptyBorder(8, 8, 8, 8));

    // Create the content panel
    final JPanel contentPanel = new JPanel(new BorderLayout());
    // add padding between the containers
    contentPanel.add(BorderLayout.CENTER, connectionComponent);
    contentPanel.setBorder(BorderFactory.createEmptyBorder(8, 8, 8, 8));

    // Add some padding around the final containers

    // Create the center panel
    final JPanel centerPanel = new JPanel(new BorderLayout());
    centerPanel.add(BorderLayout.NORTH, headerPanel);
    centerPanel.add(BorderLayout.CENTER, contentPanel);
    centerPanel.add(BorderLayout.SOUTH, buttonPanel);

    // Return the center panel
    setContentPane(centerPanel);
    pack();
    SwingUtil.centerDialogInParent(this);
  }

  protected SimpleDataSourceDialogModel getDialogModel()
  {
    return dialogModel;
  }

  protected boolean isConfirmed()
  {
    return confirmed;
  }

  protected void setConfirmed(final boolean confirmed)
  {
    this.confirmed = confirmed;
  }

  protected ResourceBundleSupport getBundleSupport()
  {
    return bundleSupport;
  }
}
TOP

Related Classes of org.pentaho.reporting.ui.datasources.jdbc.ui.SimpleJdbcDataSourceDialog$ConfirmAction

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.