diff agent/src/share/classes/sun/jvm/hotspot/ui/FindByQueryPanel.java @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c18cbe5936b8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/agent/src/share/classes/sun/jvm/hotspot/ui/FindByQueryPanel.java	Sat Dec 01 00:00:00 2007 +0000
@@ -0,0 +1,111 @@
+/*
+ * Copyright 2003-2007 Sun Microsystems, Inc.  All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code 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
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+package sun.jvm.hotspot.ui;
+
+import java.awt.*;
+import java.awt.event.*;
+import java.util.*;
+import javax.swing.*;
+import javax.swing.event.*;
+import sun.jvm.hotspot.debugger.*;
+import sun.jvm.hotspot.oops.*;
+import sun.jvm.hotspot.runtime.*;
+import sun.jvm.hotspot.ui.tree.*;
+import sun.jvm.hotspot.utilities.soql.*;
+
+public class FindByQueryPanel extends SAPanel {
+   private JTextArea           queryEditor;
+   private JEditorPane         objectsEditor;
+   private SOQLEngine          queryEngine;
+
+   public FindByQueryPanel() {
+      queryEngine = SOQLEngine.getEngine();
+      HyperlinkListener hyperListener = new HyperlinkListener() {
+                         public void hyperlinkUpdate(HyperlinkEvent e) {
+                            if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
+                               VM vm = VM.getVM();
+                               OopHandle handle = vm.getDebugger().parseAddress(e.getDescription()).addOffsetToAsOopHandle(0);
+                               showInspector(vm.getObjectHeap().newOop(handle));
+                            }
+                         }
+                      };
+
+      objectsEditor = new JEditorPane();
+      objectsEditor.setContentType("text/html");
+      objectsEditor.setEditable(false);
+      objectsEditor.addHyperlinkListener(hyperListener);
+
+      queryEditor = new JTextArea();
+      JButton queryButton = new JButton("Execute");
+      queryButton.addActionListener(new ActionListener() {
+                                       public void actionPerformed(ActionEvent ae) {
+                                          final StringBuffer buf = new StringBuffer();
+                                          buf.append("<html><body>");
+                                          try {
+                                             queryEngine.executeQuery(queryEditor.getText(),
+                                                        new ObjectVisitor() {
+                                                           public void visit(Object o) {
+                                                              if (o != null && o instanceof JSJavaObject) {
+                                                                 String oopAddr = ((JSJavaObject)o).getOop().getHandle().toString();
+                                                                 buf.append("<a href='");
+                                                                 buf.append(oopAddr);
+                                                                 buf.append("'>");
+                                                                 buf.append(oopAddr);
+                                                                 buf.append("</a>");
+                                                              } else {
+                                                                 buf.append((o == null)? "null" : o.toString());
+                                                              }
+                                                              buf.append("<br>");
+                                                           }
+                                                        });
+
+                                          } catch (Exception e) {
+                                             e.printStackTrace();
+                                             buf.append("<b>");
+                                             buf.append(e.getMessage());
+                                             buf.append("</b>");
+                                          }
+                                          buf.append("</body></html>");
+                                          objectsEditor.setText(buf.toString());
+                                       }
+                                   });
+
+      JPanel topPanel = new JPanel();
+      topPanel.setLayout(new BorderLayout());
+      topPanel.add(new JLabel("SOQL Query :"), BorderLayout.WEST);
+      topPanel.add(new JScrollPane(queryEditor), BorderLayout.CENTER);
+      topPanel.add(queryButton, BorderLayout.EAST);
+
+      JPanel bottomPanel = new JPanel();
+      bottomPanel.setLayout(new BorderLayout());
+      bottomPanel.add(new JScrollPane(objectsEditor), BorderLayout.CENTER);
+
+      JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPanel, bottomPanel);
+      splitPane.setDividerLocation(0.3);
+
+      setLayout(new BorderLayout());
+      add(splitPane, BorderLayout.CENTER);
+   }
+}