Package net.sourceforge.squirrel_sql.plugins.sqlscript.table_script

Source Code of net.sourceforge.squirrel_sql.plugins.sqlscript.table_script.DropTableScriptCommand

package net.sourceforge.squirrel_sql.plugins.sqlscript.table_script;

/*
* Copyright (C) 2006 Rob Manning
* manningr@sourceforge.net
*
* 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 net.sourceforge.squirrel_sql.client.session.IObjectTreeAPI;
import net.sourceforge.squirrel_sql.client.session.ISQLPanelAPI;
import net.sourceforge.squirrel_sql.client.session.ISession;
import net.sourceforge.squirrel_sql.fw.gui.GUIUtils;
import net.sourceforge.squirrel_sql.fw.sql.IDatabaseObjectInfo;
import net.sourceforge.squirrel_sql.fw.sql.ITableInfo;
import net.sourceforge.squirrel_sql.fw.util.ICommand;
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.sqlscript.FrameWorkAcessor;
import net.sourceforge.squirrel_sql.plugins.sqlscript.SQLScriptPlugin;

public class DropTableScriptCommand implements ICommand {
    /**
     * Current session.
     */
    private ISession _session;

    /**
     * Current plugin.
     */
    private final SQLScriptPlugin _plugin;

    /** Logger for this class. */
    private static ILogger s_log = LoggerController
            .createLogger(DropTableScriptCommand.class);

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

    /**
     * Ctor specifying the current session.
     */
    public DropTableScriptCommand(ISession session, SQLScriptPlugin plugin) {
        super();
        _session = session;
        _plugin = plugin;
    }

    /**
     * Execute this command. Use the database meta data to construct a Create
     * Table SQL script and place it in the SQL entry panel.
     */
    public void execute() {
        IObjectTreeAPI api = FrameWorkAcessor.getObjectTreeAPI(_session,
                _plugin);
        IDatabaseObjectInfo[] dbObjs = api.getSelectedDatabaseObjects();
        scriptTablesToSQLEntryArea(dbObjs);
    }

    public void scriptTablesToSQLEntryArea(final IDatabaseObjectInfo[] dbObjs) {
        _session.getApplication().getThreadPool().addTask(new Runnable() {
            public void run() {
                final String script = dropTableScriptString(dbObjs);
                if (script != null) {
                    GUIUtils.processOnSwingEventThread(new Runnable() {
                        public void run() {
                            ISQLPanelAPI api = FrameWorkAcessor.getSQLPanelAPI(
                                    _session, _plugin);
                            api.appendSQLScript(script, true);
                            int tabIdx = ISession.IMainPanelTabIndexes.SQL_TAB;
                            _session.selectMainTab(tabIdx);
                        }
                    });
                }
            }
        });
    }

    public String dropTableScriptString(IDatabaseObjectInfo[] dbObjs) {
        StringBuffer sbScript = new StringBuffer(1000);
        try {
            for (int k = 0; k < dbObjs.length; k++) {
                if (false == dbObjs[k] instanceof ITableInfo) {
                    continue;

                }
                ITableInfo ti = (ITableInfo) dbObjs[k];

                String sTable = ScriptUtil.getTableName(ti);
                sbScript.append("DROP TABLE ");
                sbScript.append(sTable);
                sbScript.append(ScriptUtil.getStatementSeparator(_session));
                sbScript.append("\n");
            }
        } catch (Exception e) {
            _session.showErrorMessage(e);
        }
        return sbScript.toString();
    }
}
TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.sqlscript.table_script.DropTableScriptCommand

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.