Package net.sourceforge.squirrel_sql.plugins.refactoring.commands

Source Code of net.sourceforge.squirrel_sql.plugins.refactoring.commands.ModifySequenceCommand$i18n

package net.sourceforge.squirrel_sql.plugins.refactoring.commands;

/*
* Copyright (C) 2007 Daniel Regli & Yannick Winiger
* http://sourceforge.net/projects/squirrel-sql
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

import net.sourceforge.squirrel_sql.client.session.ISession;
import net.sourceforge.squirrel_sql.client.session.SQLExecuterTask;
import net.sourceforge.squirrel_sql.fw.dialects.DatabaseObjectQualifier;
import net.sourceforge.squirrel_sql.fw.dialects.HibernateDialect;
import net.sourceforge.squirrel_sql.fw.dialects.UserCancelledOperationException;
import net.sourceforge.squirrel_sql.fw.gui.GUIUtils;
import net.sourceforge.squirrel_sql.fw.sql.IDatabaseObjectInfo;
import net.sourceforge.squirrel_sql.fw.sql.SQLUtilities;
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.plugins.refactoring.gui.AddModifySequenceDialog;

public class ModifySequenceCommand extends AbstractRefactoringCommand
{
  /**
   * Logger for this class.
   */
  private final static ILogger s_log = LoggerController.createLogger(ModifySequenceCommand.class);

  /**
   * Internationalized strings for this class.
   */
  private static final StringManager s_stringMgr =
    StringManagerFactory.getStringManager(ModifySequenceCommand.class);

  static interface i18n
  {
    String SHOWSQL_DIALOG_TITLE = s_stringMgr.getString("ModifySequenceCommand.sqlDialogTitle");

    String SQL_DIALOG_TITLE = s_stringMgr.getString("ModifySequenceCommand.sqlDialogTitle");

    String SQL_ERROR_SEQUENCE_DATA = s_stringMgr.getString("ModifySequenceCommand.sqlErrorNoSequenceData");
  }

  protected AddModifySequenceDialog customDialog;

  public ModifySequenceCommand(ISession session, IDatabaseObjectInfo[] info)
  {
    super(session, info);
  }

  /**
   * @see net.sourceforge.squirrel_sql.plugins.refactoring.commands.AbstractRefactoringCommand#onExecute()
   */
  @Override
  protected void onExecute() throws SQLException
  {
    showCustomDialog();
  }

  /**
   * @see net.sourceforge.squirrel_sql.plugins.refactoring.commands.AbstractRefactoringCommand#generateSQLStatements()
   */
  @Override
  protected String[] generateSQLStatements() throws UserCancelledOperationException
  {
    DatabaseObjectQualifier qualifier =
      new DatabaseObjectQualifier(_info[0].getCatalogName(), _info[0].getSchemaName());

    String[] result =
      _dialect.getAlterSequenceSQL(customDialog.getSequenceName(),
        customDialog.getIncrement(),
        customDialog.getMinimum(),
        customDialog.getMaximum(),
        customDialog.getStart(),
        customDialog.getCache(),
        customDialog.isCycled(),
        qualifier,
        _sqlPrefs);

    return result;
  }

  /**
   * @see net.sourceforge.squirrel_sql.plugins.refactoring.commands.AbstractRefactoringCommand#executeScript(java.lang.String)
   */
  @Override
  protected void executeScript(String script)
  {
    CommandExecHandler handler = new CommandExecHandler(_session);

    SQLExecuterTask executer = new SQLExecuterTask(_session, script, handler);
    executer.run(); // Execute the sql synchronously

    _session.getApplication().getThreadPool().addTask(new Runnable()
    {
      public void run()
      {
        GUIUtils.processOnSwingEventThread(new Runnable()
        {
          public void run()
          {
            customDialog.setVisible(false);
            _session.getSchemaInfo().reload(_info[0]);
          }
        });
      }
    });
  }

  /**
   * Returns a boolean value indicating whether or not this refactoring is supported for the specified
   * dialect.
   *
   * @param dialectExt
   *           the HibernateDialect to check
   * @return true if this refactoring is supported; false otherwise.
   */
  @Override
  protected boolean isRefactoringSupportedForDialect(HibernateDialect dialect)
  {
    return dialect.supportsAlterSequence();
  }

  private void showCustomDialog() throws SQLException
  {
    customDialog = createCustomDialog();
    customDialog.addExecuteListener(new ExecuteListener());
    customDialog.addEditSQLListener(new EditSQLListener(customDialog));
    customDialog.addShowSQLListener(new ShowSQLListener(i18n.SHOWSQL_DIALOG_TITLE, customDialog));
    customDialog.setLocationRelativeTo(_session.getApplication().getMainFrame());
    customDialog.setVisible(true);
  }

  private AddModifySequenceDialog createCustomDialog() throws SQLException
  {
    ResultSet rs = null;
    AddModifySequenceDialog result = null;

    String simpleName = _info[0].getSimpleName();
    DatabaseObjectQualifier qualifier =
      new DatabaseObjectQualifier(_info[0].getCatalogName(), _info[0].getSchemaName());
    String sql = _dialect.getSequenceInformationSQL(simpleName, qualifier, _sqlPrefs);

    try
    {
      rs = executeQuery(sql, simpleName);
      if (rs.next())
      {
        // Here we use index inside of column names so that we don't have to alias the columns in the
        // dialect.  Different dialects call these sequence information columns by different names.  Just
        // make sure to preserve the order in the dialect.
        String last_value = rs.getString(1); // last_value
        String max_value = rs.getString(2); // max_value
        String min_value = rs.getString(3); // min_value
        String cache_value = rs.getString(4); // cache_value
        String increment_by = rs.getString(5); // increment_by
        int cycleInt = rs.getInt(6); // is_cycled
        boolean is_cyled = cycleInt == 1 ? true : false;

        result =
          new AddModifySequenceDialogAddModifySequenceDialog.MODIFY_MODE,
                              simpleName,
                              last_value,
                              increment_by,
                              min_value,
                              max_value,
                              cache_value, is_cyled);
      } else {
        throw new IllegalStateException("createCustomDialog: failed to find sequence named : "+simpleName);
      }
    } finally
    {
      SQLUtilities.closeResultSet(rs, true);
    }
    return result;
  }

  /**
   * Determines if the specified sql ends with ?, and if so executes a PreparedStatement; otherwise a
   * Statement
   *
   * @param sql
   *           the SQL to execute
   * @param sequenceName
   *           the name of the sequence
   * @return the ResultSet of the query.
   * @throws SQLException
   *            if an error occurs
   */
  private ResultSet executeQuery(String sql, String sequenceName) throws SQLException
  {
    ResultSet result = null;
    if (sql.endsWith("?") || sql.endsWith("?)"))
    {
      if (s_log.isDebugEnabled())
      {
        s_log.debug("ModifySequenceCommand: running sql=" + sql);
        s_log.debug("param sequenceName = " + sequenceName);
      }
      PreparedStatement stmt = _session.getSQLConnection().prepareStatement(sql);
      stmt.setString(1, sequenceName);
      result = stmt.executeQuery();
    } else
    {
      s_log.debug("ModifySequenceCommand: running sql=" + sql);
      Statement stmt = _session.getSQLConnection().createStatement();
      result = stmt.executeQuery(sql);
    }
    return result;
  }
}
TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.refactoring.commands.ModifySequenceCommand$i18n

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.