Package net.sourceforge.squirrel_sql.client.gui.db

Source Code of net.sourceforge.squirrel_sql.client.gui.db.DriverWindowFactory

package net.sourceforge.squirrel_sql.client.gui.db;
/*
* Copyright (C) 2001-2004 Colin Bell
* colbell@users.sourceforge.net
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* 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
*/
import java.util.HashMap;
import java.util.Map;

import net.sourceforge.squirrel_sql.fw.gui.GUIUtils;
import net.sourceforge.squirrel_sql.fw.id.IIdentifier;
import net.sourceforge.squirrel_sql.fw.id.IIdentifierFactory;
import net.sourceforge.squirrel_sql.fw.persist.ValidationException;
import net.sourceforge.squirrel_sql.fw.sql.ISQLDriver;
import net.sourceforge.squirrel_sql.fw.util.StringManager;
import net.sourceforge.squirrel_sql.fw.util.StringManagerFactory;
import net.sourceforge.squirrel_sql.fw.util.log.ILogger;
import net.sourceforge.squirrel_sql.fw.util.log.LoggerController;

import net.sourceforge.squirrel_sql.client.IApplication;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.WidgetAdapter;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.WidgetEvent;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.DialogWidget;
import net.sourceforge.squirrel_sql.client.util.IdentifierFactory;
/**
* TODO: Move all code other than for window creation up to AliasWindowManager
* Factory to handle creation of maintenance sheets for SQL Driver objects.
*
* @author <A HREF="mailto:colbell@users.sourceforge.net">Colin Bell</A>
*/
class DriverWindowFactory implements AliasInternalFrame.IMaintenanceType
{
  /** Logger for this class. */
  private static ILogger s_log =
    LoggerController.createLogger(DriverWindowFactory.class);

  /** Application API. */
  private IApplication _app;

    /** Internationalized strings for this class. */
    private static final StringManager s_stringMgr =
        StringManagerFactory.getStringManager(DriverWindowFactory.class);
   
  /**
   * Collection of <TT>DriverMaintDialog</TT> that are currently visible
   * modifying an existing driver. Keyed by
   * <TT>ISQLDriver.getIdentifier()</TT>.
   */
  private final Map<IIdentifier, DriverInternalFrame> _modifySheets =
        new HashMap<IIdentifier, DriverInternalFrame>();

  /**
   * ctor.
   *
   * @param  app    Application API.
   *
   * @throws  IllegalArgumentException
   *      Thrown if <tt>null</tt> <tt>IApplication</tt> passed.
   */
  public DriverWindowFactory(IApplication app)
  {
    super();
    if (app == null)
    {
      throw new IllegalArgumentException("IApplication == null");
    }

    _app = app;
  }

  /**
   * Get a maintenance sheet for the passed driver. If one
   * already exists it will be returned, otherwise one will be created.
   *
   * @param  driver  The driver that user has requested to modify.
   *
   * @return  The maintenance sheet for the passed driver.
   *
   * @throws  IllegalArgumentException  if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
   */
  public synchronized DriverInternalFrame getModifySheet(ISQLDriver driver)
  {
    if (driver == null)
    {
      throw new IllegalArgumentException("ISQLDriver == null");
    }

    DriverInternalFrame sheet = get(driver);
    if (sheet == null)
    {
      sheet = new DriverInternalFrame(_app, driver, MODIFY);
      _modifySheets.put(driver.getIdentifier(), sheet);
      _app.getMainFrame().addWidget(sheet);

      sheet.addWidgetListener(new WidgetAdapter()
      {
            @Override
            public void widgetClosed(WidgetEvent evt)
            {
               synchronized (DriverWindowFactory.this)
               {
                  DriverInternalFrame frame = (DriverInternalFrame) evt.getWidget();
                  _modifySheets.remove(frame.getSQLDriver().getIdentifier());
               }
            }

      });
      DialogWidget.centerWithinDesktop(sheet);
    }

    return sheet;
  }

  /**
   * Create and show a new maintenance sheet to allow the user to create a new driver.
   *
   * @return  The new maintenance sheet.
   */
  public DriverInternalFrame getCreateSheet()
  {
    final net.sourceforge.squirrel_sql.client.gui.db.DataCache cache = _app.getDataCache();
    final IIdentifierFactory factory = IdentifierFactory.getInstance();
    final ISQLDriver driver = cache.createDriver(factory.createIdentifier());
    final DriverInternalFrame sheet = new DriverInternalFrame(_app, driver, NEW);
    _app.getMainFrame().addWidget(sheet);
    DialogWidget.centerWithinDesktop(sheet);
    return sheet;
  }

  /**
   * Create and show a new maintenance sheet that will allow the user to create a
   * new driver that is a copy of the passed one.
   *
   * @return  The new maintenance sheet.
   *
   * @throws  IllegalArgumentException  if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
   */
  public DriverInternalFrame showCopySheet(ISQLDriver driver)
  {
    if (driver == null)
    {
      throw new IllegalArgumentException("ISQLDriver == null");
    }

    final DataCache cache = _app.getDataCache();
    final IIdentifierFactory factory = IdentifierFactory.getInstance();
    ISQLDriver newDriver = cache.createDriver(factory.createIdentifier());
    try
    {
      newDriver.assignFrom(driver);
    }
    catch (ValidationException ex)
    {
            // i18n[DriverWindowFactory.error.copyingdriver=Error occured copying the driver]
      s_log.error(s_stringMgr.getString("DriverWindowFactory.error.copyingdriver"), ex);
    }
    final DriverInternalFrame sheet =
      new DriverInternalFrame(_app, newDriver, COPY);
    _app.getMainFrame().addWidget(sheet);
    DialogWidget.centerWithinDesktop(sheet);

    return sheet;
  }

  private DriverInternalFrame get(ISQLDriver driver)
  {
    return _modifySheets.get(driver.getIdentifier());
  }
}
TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.db.DriverWindowFactory

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.