Package net.sourceforge.squirrel_sql.plugins.sqlparam

Source Code of net.sourceforge.squirrel_sql.plugins.sqlparam.SQLParamExecutionListener

package net.sourceforge.squirrel_sql.plugins.sqlparam;
/*
* Copyright (C) 2007 Thorsten Mürell
*
* 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.gui.desktopcontainer.SelectWidgetCommand;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.DialogWidget;
import net.sourceforge.squirrel_sql.client.session.ISession;
import net.sourceforge.squirrel_sql.client.session.event.ISQLExecutionListener;
import net.sourceforge.squirrel_sql.fw.gui.GUIUtils;
import net.sourceforge.squirrel_sql.fw.util.log.ILogger;
import net.sourceforge.squirrel_sql.fw.util.log.LoggerController;
import net.sourceforge.squirrel_sql.plugins.sqlparam.gui.AskParamValueDialog;

import javax.swing.*;
import java.awt.*;
import java.lang.reflect.InvocationTargetException;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
* This listener listens for SQL execution.
*
* @author Thorsten Mürell
*/
public class SQLParamExecutionListener implements ISQLExecutionListener {

  private final static ILogger log = LoggerController.createLogger(SQLParamPlugin.class);
  private ISession session = null;
  private SQLParamPlugin plugin = null;
  private AskParamValueDialog dialog = null;

  /**
   * The constructor
   *
   * @param plugin
   * @param session
   */
  public SQLParamExecutionListener(SQLParamPlugin plugin, ISession session) {
    this.session = session;
    this.plugin = plugin;
  }

  /**
   * This method is called when the SQL was executed.
   *
   * @param sql
   */
  public void statementExecuted(String sql) {
    // log.info("SQL executed: " + sql);
  }

  /**
   * Called prior to an individual statement being executed. If you modify the
   * script remember to return it so that the caller knows about the
   * modifications.
   *
   * @param  sql  The SQL to be executed.
   *
   * @return  The SQL to be executed. If <TT>null</TT> returned then the
   *      statement will not be executed.
   */
  public String statementExecuting(String sql) {
    // log.info("SQL starting to execute: " + sql);
    StringBuffer buffer = new StringBuffer(sql);
    Map<String, String> cache = plugin.getCache();
    Map<String, String> currentCache = new HashMap<String, String>();
    Pattern p = Pattern.compile(":[a-zA-Z]\\w+");

    Matcher m = p.matcher(buffer);

    while (m.find()) {
      if (isQuoted(buffer, m.start()))
        continue;
      final String var = m.group();
      String value = null;
      if (currentCache.containsKey(var)) {
        value = currentCache.get(var);
      } else {
        final String oldValue = cache.get(var);
        if (SwingUtilities.isEventDispatchThread()) {
          createParameterDialog(var, oldValue);
          while (!dialog.isDone()) {
            try {
              AWTEvent event = Toolkit.getDefaultToolkit().getSystemEventQueue().getNextEvent();
              Object source = event.getSource();
              if (event instanceof ActiveEvent) {
                ((ActiveEvent)event).dispatch();
              } else if (source instanceof Component) {
                ((Component)source).dispatchEvent(
                    event);
              } else if (source instanceof MenuComponent) {
                ((MenuComponent)source).dispatchEvent(
                    event);
              } else {
                System.err.println(
                    "Unable to dispatch: " + event);
              }
            } catch (Exception e) {
              e.printStackTrace();
            }
          }
        } else {
          try {
            SwingUtilities.invokeAndWait(new Runnable() {
              public void run() {
                createParameterDialog(var, oldValue);
              }
            });
            while (!dialog.isDone()) {
              wait();
            }
          } catch (InvocationTargetException ite) {
            ite.printStackTrace();
          } catch (InterruptedException ie) {
            ie.printStackTrace();
          }
        }
        if (dialog.isCancelled()) {
          dialog = null;
          return null;
        }
        value = sanitizeValue(dialog.getValue(), dialog.isQuotingNeeded());
        cache.put(var, dialog.getValue());
        currentCache.put(var, value);
        dialog = null;
      }
      buffer.replace(m.start(), m.end(), value);
      m.reset();
    }

    GUIUtils.processOnSwingEventThread(new Runnable() {
      public void run() {
        new SelectWidgetCommand(session.getActiveSessionWindow()).execute();
      }
    });
    // log.info("SQL passing to execute: " + buffer.toString());
    return buffer.toString();
  }

  private void createParameterDialog(String parameter, String oldValue) {
    dialog = new AskParamValueDialog(parameter, oldValue, session.getApplication());
    session.getApplication().getMainFrame().addWidget(dialog);
    dialog.setLayer(JLayeredPane.MODAL_LAYER);
    dialog.moveToFront();
    DialogWidget.centerWithinDesktop(dialog);
    dialog.setVisible(true);
  }

  private String sanitizeValue(String value, boolean quoting) {
    String retValue = value;
    boolean quotesNeeded = quoting;

    try {
      Float.parseFloat(value);
    } catch (NumberFormatException nfe) {
      quotesNeeded = true;
    }

    if (quotesNeeded) {
      retValue = "'" + value + "'";
    }
    return retValue;
  }

  private boolean isQuoted(StringBuffer buffer, int position) {
    String part = buffer.substring(0, position);
    if (searchAllOccurences(part, "\"") % 2 != 0)
      return true;
    if (searchAllOccurences(part, "'") % 2 != 0)
      return true;
    return false;
  }

  private int searchAllOccurences(String haystack, String needle) {
    int i = 0;
    int pos = 0;
    while ((pos = haystack.indexOf(needle, pos + 1)) > -1) {
      i++;
    }
    return i;
  }

}
TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.sqlparam.SQLParamExecutionListener

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.