Added xampp start and stop action
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / actions / PHPOpenSQLTableEditorAction.java
index 011993c..5eda806 100644 (file)
@@ -1,20 +1,14 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This
- * program and the accompanying materials are made available under the terms of
- * the Common Public License v1.0 which accompanies this distribution, and is
- * available at http://www.eclipse.org/legal/cpl-v10.html
+/***********************************************************************************************************************************
+ * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This program and the accompanying materials are made
+ * available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
  * 
  * Contributors: www.phpeclipse.de
- ******************************************************************************/
+ **********************************************************************************************************************************/
 package net.sourceforge.phpeclipse.actions;
 
-import java.sql.Connection;
-import java.sql.DatabaseMetaData;
-import java.sql.ResultSet;
 import java.sql.SQLException;
-import java.util.ArrayList;
 
-import net.sourceforge.phpeclipse.PHPeclipsePlugin;
 import net.sourceforge.phpeclipse.phpeditor.PHPEditor;
 import net.sourceforge.phpeclipse.ui.WebUI;
 import net.sourceforge.phpeclipse.ui.overlaypages.ProjectPrefUtil;
@@ -29,8 +23,6 @@ import org.eclipse.jface.text.IDocument;
 import org.eclipse.jface.text.ITextSelection;
 import org.eclipse.jface.text.TextSelection;
 import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.LabelProvider;
-import org.eclipse.jface.window.Window;
 import org.eclipse.swt.graphics.Point;
 import org.eclipse.ui.IEditorActionDelegate;
 import org.eclipse.ui.IEditorPart;
@@ -40,26 +32,13 @@ import org.eclipse.ui.IWorkbenchPage;
 import org.eclipse.ui.IWorkbenchWindow;
 import org.eclipse.ui.PartInitException;
 import org.eclipse.ui.actions.ActionDelegate;
-import org.eclipse.ui.dialogs.ListSelectionDialog;
-import org.eclipse.ui.internal.dialogs.ListContentProvider;
 
+import com.quantum.ExternalInterface;
 import com.quantum.QuantumPlugin;
-import com.quantum.adapters.DatabaseAdapter;
-import com.quantum.model.Bookmark;
-import com.quantum.model.BookmarkCollection;
-import com.quantum.model.Entity;
-import com.quantum.model.EntityFactory;
 import com.quantum.model.NotConnectedException;
-import com.quantum.sql.MultiSQLServer;
-import com.quantum.sql.SQLResultSetCollection;
-import com.quantum.sql.SQLResultSetResults;
-import com.quantum.sql.SQLResults;
-import com.quantum.ui.dialog.ExceptionDisplayDialog;
-import com.quantum.util.connection.ConnectionUtil;
 import com.quantum.view.tableview.TableView;
 
-public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
-    IEditorActionDelegate {
+public class PHPOpenSQLTableEditorAction extends ActionDelegate implements IEditorActionDelegate {
 
   private IWorkbenchWindow fWindow;
 
@@ -78,16 +57,14 @@ public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
     if (!selection.isEmpty()) {
       if (selection instanceof TextSelection) {
         action.setEnabled(true);
-      } else if (fWindow.getActivePage() != null
-          && fWindow.getActivePage().getActivePart() != null) {
+      } else if (fWindow.getActivePage() != null && fWindow.getActivePage().getActivePart() != null) {
         //
       }
     }
   }
 
   private IWorkbenchPage getActivePage() {
-    fWindow = fEditor.getEditorSite()
-        .getWorkbenchWindow();
+    fWindow = fEditor.getEditorSite().getWorkbenchWindow();
     IWorkbenchPage page = fWindow.getActivePage();
     return page;
   }
@@ -99,8 +76,7 @@ public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
     return editorInput.getFile().getParent();
   }
 
-  private IFile getIncludeFile(IProject project, IFileEditorInput editorInput,
-      String relativeFilename) {
+  private IFile getIncludeFile(IProject project, IFileEditorInput editorInput, String relativeFilename) {
     //         IContainer container = getWorkingLocation(editorInput);
     //         String fullPath = project.getLocation().toString();
     Path path = new Path(relativeFilename);
@@ -116,35 +92,56 @@ public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
       }
     }
     if (fEditor != null) {
-      //                       TableView view = TableView.getInstance();
-
-      //                       determine the current Project from a (file-based) Editor
       fWindow = fEditor.getEditorSite().getWorkbenchWindow();
       IFile f = ((IFileEditorInput) fEditor.getEditorInput()).getFile();
       fProject = f.getProject();
-
-      ITextSelection selection = (ITextSelection) fEditor
-          .getSelectionProvider().getSelection();
-      IDocument doc = fEditor.getDocumentProvider().getDocument(
-          fEditor.getEditorInput());
-      int pos = selection.getOffset();
-      //  System.out.println(selection.getText());
-      String tableName = getSQLTableName(doc, pos);
-
-      IViewPart viewPart = null;
-      String view = "com.quantum.view.tableview.TableView";
-      try {
-        IWorkbenchPage page = QuantumPlugin.getDefault().getActivePage();
-        viewPart = page.findView(view);
-        if (viewPart == null) {
-          viewPart = page.showView(view);
-        }
-        page.bringToTop(viewPart);
-        getTables((TableView) viewPart, fProject, tableName);
-      } catch (PartInitException e) {
-        e.printStackTrace();
+      String bookmarkString = ProjectPrefUtil.getMiscProjectsPreferenceValue(fProject, WebUI.PHP_BOOKMARK_DEFAULT);
+      if (bookmarkString != null && !bookmarkString.equals("")) {
+        ITextSelection selection = (ITextSelection) fEditor.getSelectionProvider().getSelection();
+        IDocument doc = fEditor.getDocumentProvider().getDocument(fEditor.getEditorInput());
+        int pos = selection.getOffset();
+        //  System.out.println(selection.getText());
+        String tableName = getSQLTableName(doc, pos);
+        if (tableName != null && tableName.length() > 0)
+          try {
+            ExternalInterface.displayTable(bookmarkString, tableName);
+            
+            IViewPart viewPart = null;
+            String view = "com.quantum.view.tableview.TableView";
+            try {
+              IWorkbenchPage page = QuantumPlugin.getDefault().getActivePage();
+              viewPart = page.findView(view);
+              if (viewPart == null) {
+                viewPart = page.showView(view);
+              }
+              page.bringToTop(viewPart);
+            } catch (PartInitException e) {
+              e.printStackTrace();
+            }
+          } catch (NotConnectedException e) {
+            // TODO Auto-generated catch block
+            e.printStackTrace();
+          } catch (SQLException e) {
+            // TODO Auto-generated catch block
+            e.printStackTrace();
+          }
       }
 
+      //
+      //      IViewPart viewPart = null;
+      //      String view = "com.quantum.view.tableview.TableView";
+      //      try {
+      //        IWorkbenchPage page = QuantumPlugin.getDefault().getActivePage();
+      //        viewPart = page.findView(view);
+      //        if (viewPart == null) {
+      //          viewPart = page.showView(view);
+      //        }
+      //        page.bringToTop(viewPart);
+      //        getTables((TableView) viewPart, fProject, tableName);
+      //      } catch (PartInitException e) {
+      //        e.printStackTrace();
+      //      }
+
     }
   }
 
@@ -166,8 +163,7 @@ public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
 
       while (position >= 0) {
         character = doc.getChar(position);
-        if (Character.isWhitespace(character) || (character == '\"')
-            || (character == '\'') || (character == '\r')
+        if (Character.isWhitespace(character) || (character == '\"') || (character == '\'') || (character == '\r')
             || (character == '\n'))
           break;
         --position;
@@ -180,8 +176,7 @@ public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
 
       while (position < length) {
         character = doc.getChar(position);
-        if (Character.isWhitespace(character) || (character == '\"')
-            || (character == '\'') || (character == '\r')
+        if (Character.isWhitespace(character) || (character == '\"') || (character == '\'') || (character == '\r')
             || (character == '\n'))
           break;
         ++position;
@@ -205,118 +200,118 @@ public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
     return "";
   }
 
-  public void getTables(TableView tableView, IProject project, String tableName) {
-    // Get The Database bookmark from the Quantum SQL plugin:
-    BookmarkCollection sqlBookMarks = BookmarkCollection.getInstance();
-    if (sqlBookMarks != null) {
-      String bookmarkString = ProjectPrefUtil.getMiscProjectsPreferenceValue(project,
-          WebUI.PHP_BOOKMARK_DEFAULT);
-      if (bookmarkString != null && !bookmarkString.equals("")) {
-        Bookmark bookmark = sqlBookMarks.find(bookmarkString);
-        ArrayList sqlList = new ArrayList();
-        if (bookmark != null && !bookmark.isConnected()) {
-          new ConnectionUtil().connect(bookmark, null);
-        }
-        if (bookmark != null && bookmark.isConnected()) {
-          try {
-            Connection connection = bookmark.getConnection();
-            DatabaseMetaData metaData = connection.getMetaData();
-            ConnectionUtil connectionUtil = new ConnectionUtil();
-            Entity entity;
-            DatabaseAdapter adapter;
-
-            if (metaData != null) {
-              String columnName;
-              String prefixWithoutDollar = tableName;
-              if (prefixWithoutDollar.charAt(0) == '$') {
-                prefixWithoutDollar = prefixWithoutDollar.substring(1);
-              }
-              ResultSet set;
-              set = metaData.getTables(null, null, "%" + prefixWithoutDollar
-                  + "%", null);
-              while (set.next()) {
-                tableName = set.getString("TABLE_NAME");
-                tableName = (tableName == null) ? "" : tableName.trim();
-                if (tableName != null && tableName.length() > 0) {
-                  sqlList.add(tableName);
-                }
-              }
-              set.close();
-              EntityFactory entityFactory = EntityFactory.getInstance();
-              if (sqlList.size() == 1) {
-                adapter = bookmark.getAdapter();
-                entity = entityFactory.create(bookmark, null, (String) sqlList
-                    .get(0), Entity.TABLE_TYPE, false);
-                String query = adapter.getTableQuery(entity.getQualifiedName());
-
-                try {
-                  SQLResults results = MultiSQLServer.getInstance().execute(
-                      bookmark, connectionUtil.connect(bookmark, fWindow.getShell()),  
-                      entity, query);
-
-                  if (results != null && results.isResultSet()) {
-                    SQLResultSetCollection.getInstance().addSQLResultSet(
-                        (SQLResultSetResults) results);
-                  }
-                } catch (SQLException e) {
-                  ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
-                }
-                //                                                             tableView.loadTable(entityFactory.create(
-                //                                                                             bookmark, null,
-                //                                                                             (String) sqlList.get(0),
-                //                                                                             Entity.TABLE_TYPE));
-              } else if (sqlList.size() > 1) {
-                ListSelectionDialog listSelectionDialog = new ListSelectionDialog(
-                    PHPeclipsePlugin.getDefault().getWorkbench()
-                        .getActiveWorkbenchWindow().getShell(), sqlList,
-                    new ListContentProvider(), new LabelProvider(),
-                    "Select the SQL table to open.");
-                listSelectionDialog.setTitle("Multiple tablenames found");
-                if (listSelectionDialog.open() == Window.OK) {
-                  Object[] locations = listSelectionDialog.getResult();
-                  if (locations != null) {
-                    for (int i = 0; i < locations.length; i++) {
-                      adapter = bookmark.getAdapter();
-                      entity = entityFactory.create(bookmark, null,
-                          (String) locations[i], Entity.TABLE_TYPE, false);
-                      String query = adapter.getTableQuery(entity
-                          .getQualifiedName());
-
-                      try {
-                        SQLResults results = MultiSQLServer.getInstance()
-                            .execute(bookmark,
-                                connectionUtil.connect(bookmark, fWindow.getShell()),
-                                entity, query);
-
-                        if (results != null && results.isResultSet()) {
-                          SQLResultSetCollection.getInstance().addSQLResultSet(
-                              (SQLResultSetResults) results);
-                        }
-                      } catch (SQLException e) {
-                        ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
-                      }
-
-                      //                                                                                       tableView
-                      //                                                                                                       .loadTable(entityFactory
-                      //                                                                                                                       .create(
-                      //                                                                                                                                       bookmark,
-                      //                                                                                                                                       null,
-                      //                                                                                                                                       (String) locations[i],
-                      //                                                                                                                                       Entity.TABLE_TYPE));
-                    }
-
-                  }
-                }
-              }
-            }
-          } catch (NotConnectedException e) {
-            // ignore this - not mission critical
-          } catch (SQLException e) {
-            e.printStackTrace();
-          }
-        }
-      }
-    }
-  }
+  //  public void getTables(TableView tableView, IProject project, String tableName) {
+  //    // Get The Database bookmark from the Quantum SQL plugin:
+  //    BookmarkCollection sqlBookMarks = BookmarkCollection.getInstance();
+  //    if (sqlBookMarks != null) {
+  //      String bookmarkString = ProjectPrefUtil.getMiscProjectsPreferenceValue(project,
+  //          WebUI.PHP_BOOKMARK_DEFAULT);
+  //      if (bookmarkString != null && !bookmarkString.equals("")) {
+  //        Bookmark bookmark = sqlBookMarks.find(bookmarkString);
+  //        ArrayList sqlList = new ArrayList();
+  //        if (bookmark != null && !bookmark.isConnected()) {
+  //          new ConnectionUtil().connect(bookmark, null);
+  //        }
+  //        if (bookmark != null && bookmark.isConnected()) {
+  //          try {
+  //            Connection connection = bookmark.getConnection();
+  //            DatabaseMetaData metaData = connection.getMetaData();
+  //            ConnectionUtil connectionUtil = new ConnectionUtil();
+  //            Entity entity;
+  //            DatabaseAdapter adapter;
+  //
+  //            if (metaData != null) {
+  //              String columnName;
+  //              String prefixWithoutDollar = tableName;
+  //              if (prefixWithoutDollar.charAt(0) == '$') {
+  //                prefixWithoutDollar = prefixWithoutDollar.substring(1);
+  //              }
+  //              ResultSet set;
+  //              set = metaData.getTables(null, null, "%" + prefixWithoutDollar
+  //                  + "%", null);
+  //              while (set.next()) {
+  //                tableName = set.getString("TABLE_NAME");
+  //                tableName = (tableName == null) ? "" : tableName.trim();
+  //                if (tableName != null && tableName.length() > 0) {
+  //                  sqlList.add(tableName);
+  //                }
+  //              }
+  //              set.close();
+  //              EntityFactory entityFactory = EntityFactory.getInstance();
+  //              if (sqlList.size() == 1) {
+  //                adapter = bookmark.getAdapter();
+  //                entity = entityFactory.create(bookmark, null, (String) sqlList
+  //                    .get(0), Entity.TABLE_TYPE, false);
+  //                String query = adapter.getTableQuery(entity.getQualifiedName());
+  //
+  //                try {
+  //                  SQLResults results = MultiSQLServer.getInstance().execute(
+  //                      bookmark, connectionUtil.connect(bookmark, fWindow.getShell()),
+  //                      entity, query);
+  //
+  //                  if (results != null && results.isResultSet()) {
+  //                    SQLResultSetCollection.getInstance().addSQLResultSet(
+  //                        (SQLResultSetResults) results);
+  //                  }
+  //                } catch (SQLException e) {
+  //                  ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
+  //                }
+  //                // tableView.loadTable(entityFactory.create(
+  //                // bookmark, null,
+  //                // (String) sqlList.get(0),
+  //                // Entity.TABLE_TYPE));
+  //              } else if (sqlList.size() > 1) {
+  //                ListSelectionDialog listSelectionDialog = new ListSelectionDialog(
+  //                    PHPeclipsePlugin.getDefault().getWorkbench()
+  //                        .getActiveWorkbenchWindow().getShell(), sqlList,
+  //                    new ListContentProvider(), new LabelProvider(),
+  //                    "Select the SQL table to open.");
+  //                listSelectionDialog.setTitle("Multiple tablenames found");
+  //                if (listSelectionDialog.open() == Window.OK) {
+  //                  Object[] locations = listSelectionDialog.getResult();
+  //                  if (locations != null) {
+  //                    for (int i = 0; i < locations.length; i++) {
+  //                      adapter = bookmark.getAdapter();
+  //                      entity = entityFactory.create(bookmark, null,
+  //                          (String) locations[i], Entity.TABLE_TYPE, false);
+  //                      String query = adapter.getTableQuery(entity
+  //                          .getQualifiedName());
+  //
+  //                      try {
+  //                        SQLResults results = MultiSQLServer.getInstance()
+  //                            .execute(bookmark,
+  //                                connectionUtil.connect(bookmark, fWindow.getShell()),
+  //                                entity, query);
+  //
+  //                        if (results != null && results.isResultSet()) {
+  //                          SQLResultSetCollection.getInstance().addSQLResultSet(
+  //                              (SQLResultSetResults) results);
+  //                        }
+  //                      } catch (SQLException e) {
+  //                        ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
+  //                      }
+  //
+  //                      // tableView
+  //                      // .loadTable(entityFactory
+  //                      // .create(
+  //                      // bookmark,
+  //                      // null,
+  //                      // (String) locations[i],
+  //                      // Entity.TABLE_TYPE));
+  //                    }
+  //
+  //                  }
+  //                }
+  //              }
+  //            }
+  //          } catch (NotConnectedException e) {
+  //            // ignore this - not mission critical
+  //          } catch (SQLException e) {
+  //            e.printStackTrace();
+  //          }
+  //        }
+  //      }
+  //    }
+  //  }
 
 }
\ No newline at end of file