You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by la...@apache.org on 2011/10/18 16:31:49 UTC

svn commit: r1185685 - in /incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui: ExperimentMenu.java RegistryLoaderWindow.java

Author: lahiru
Date: Tue Oct 18 14:31:48 2011
New Revision: 1185685

URL: http://svn.apache.org/viewvc?rev=1185685&view=rev
Log:
fixing  https://issues.apache.org/jira/browse/AIRAVATA-149.

Added:
    incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/RegistryLoaderWindow.java
Modified:
    incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/ExperimentMenu.java

Modified: incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/ExperimentMenu.java
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/ExperimentMenu.java?rev=1185685&r1=1185684&r2=1185685&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/ExperimentMenu.java (original)
+++ incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/ExperimentMenu.java Tue Oct 18 14:31:48 2011
@@ -122,12 +122,12 @@ public class ExperimentMenu {
 
     private void createLoadWorkflowfromXRegistryItem() {
         this.loadWorkflowfromRegistryItem = new JMenuItem("Load Workflow from Registry");
-       // this.loadWorkflowfromRegistryItem.addActionListener(new AbstractAction() {
-//            public void actionPerformed(ActionEvent e) {
-//                new OGCEXRegistryLoaderWindow(ExperimentMenu.this.engine).show();
-//
-//            }
-       // });
+       this.loadWorkflowfromRegistryItem.addActionListener(new AbstractAction() {
+            public void actionPerformed(ActionEvent e) {
+                new RegistryLoaderWindow(ExperimentMenu.this.engine).show();
+
+            }
+       });
     }
 
     private void createSaveWorkflowtoXRegistryItem() {

Added: incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/RegistryLoaderWindow.java
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/RegistryLoaderWindow.java?rev=1185685&view=auto
==============================================================================
--- incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/RegistryLoaderWindow.java (added)
+++ incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/experiment/gui/RegistryLoaderWindow.java Tue Oct 18 14:31:48 2011
@@ -0,0 +1,235 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+
+package org.apache.airavata.xbaya.experiment.gui;
+
+import java.awt.event.ActionEvent;
+import java.awt.event.MouseAdapter;
+import java.awt.event.MouseEvent;
+import java.util.Map;
+import java.util.Set;
+import java.util.Vector;
+
+import javax.jcr.Node;
+import javax.jcr.RepositoryException;
+import javax.jcr.Session;
+import javax.swing.AbstractAction;
+import javax.swing.JButton;
+import javax.swing.JPanel;
+import javax.swing.SwingUtilities;
+import javax.swing.border.EtchedBorder;
+import javax.swing.border.TitledBorder;
+import javax.xml.namespace.QName;
+
+import org.apache.airavata.xbaya.XBayaEngine;
+import org.apache.airavata.xbaya.gui.ErrorMessages;
+import org.apache.airavata.xbaya.gui.GridPanel;
+import org.apache.airavata.xbaya.gui.XBayaDialog;
+import org.apache.airavata.xbaya.gui.XbayaEnhancedList;
+import org.apache.airavata.xbaya.wf.Workflow;
+import org.apache.airavata.xbaya.registry.RegistryAccesser;
+
+
+public class RegistryLoaderWindow {
+
+    private XBayaEngine engine;
+
+    private XBayaDialog dialog;
+
+    private JButton okButton;
+
+    private JButton deleteButton;
+
+    private XbayaEnhancedList<OGCEXRegistrySearchResult> list;
+
+    /**
+     * Constructs a XRegistryLoaderWindow.
+     * 
+     * @param engine
+     */
+    public RegistryLoaderWindow(XBayaEngine engine) {
+        this.engine = engine;
+        initGUI();
+    }
+
+    /**
+     * Shows the window.
+     */
+    public void show() {
+
+        /*
+         * this.list.getList().setListData( new String[]{ "Loading the workflow list from the XRegistry.",
+         * "Please wait for a moment."});
+         */
+        this.list.setEnabled(false);
+        this.okButton.setEnabled(false);
+        this.deleteButton.setEnabled(false);
+
+        new Thread() {
+            @Override
+            public void run() {
+                try {
+                    RegistryAccesser registryAccesser = new RegistryAccesser(RegistryLoaderWindow.this.engine);
+
+                    final Map<QName, Node> resultList = registryAccesser.getOGCEWorkflowTemplateList();
+                    final Set<QName> keys = resultList.keySet();
+
+                    SwingUtilities.invokeLater(new Runnable() {
+                        public void run() {
+                            if (resultList == null || resultList.size() == 0) {
+                                /*
+                                 * OGCEXRegistryLoaderWindow.this.list.getList(). setListData( new
+                                 * String[]{"No workflow"});
+                                 */
+                            } else {
+                                Vector<OGCEXRegistrySearchResult> results = new Vector<OGCEXRegistrySearchResult>();
+                                Node val = null;
+                                for (QName key : keys) {
+                                    val = resultList.get(key);
+                                    results.add(new OGCEXRegistrySearchResult(val));
+                                }
+                                Session session = null;
+                                try {
+                                    session = val.getSession();
+                                } catch (RepositoryException e) {
+                                    RegistryLoaderWindow.this.engine.getErrorWindow().error(ErrorMessages.UNEXPECTED_ERROR, e);
+                                }
+                                if (session != null && session.isLive()) {
+                                    session.logout();
+                                }
+                                RegistryLoaderWindow.this.list.setListData(results);
+                                RegistryLoaderWindow.this.list.setEnabled(true);
+                            }
+                        }
+                    });
+                } catch (RuntimeException e) {
+                    RegistryLoaderWindow.this.engine.getErrorWindow().error(
+                            ErrorMessages.XREGISTRY_WORKFLOW_LIST_LOAD_ERROR, e);
+                    hide();
+                } catch (Error e) {
+                    RegistryLoaderWindow.this.engine.getErrorWindow().error(ErrorMessages.UNEXPECTED_ERROR, e);
+                    hide();
+                } catch (RepositoryException e){
+                    RegistryLoaderWindow.this.engine.getErrorWindow().error(ErrorMessages.UNEXPECTED_ERROR, e);
+                    hide();
+                }
+            }
+        }.start();
+
+        // This has to be the last because it blocks when the dialog is modal.
+        this.dialog.show();
+    }
+
+    /**
+     * Hides the window.
+     */
+    public void hide() {
+        this.dialog.hide();
+    }
+
+    private void ok() {
+        OGCEXRegistrySearchResult result = this.list.getSelectedValue();
+        hide();
+
+        try {
+            Workflow workflow = new RegistryAccesser(this.engine).getWorkflow(result.getResourceName());
+            RegistryLoaderWindow.this.engine.setWorkflow(workflow);
+        } catch (Exception e) {
+            RegistryLoaderWindow.this.engine.getErrorWindow().error(e);
+        }
+    }
+
+    private void delete() {
+        RegistryAccesser registryAccesser = new RegistryAccesser(RegistryLoaderWindow.this.engine);
+        for (OGCEXRegistrySearchResult i : this.list.getSelectedValues()) {
+            try {
+                registryAccesser.deleteOGCEWorkflow(i.getResourceId());
+            } catch (RepositoryException e) {
+                e.printStackTrace();
+            }
+        }
+        this.list.removeSelectedRows();
+        hide();
+    }
+
+    /**
+     * Initializes the GUI
+     */
+    private void initGUI() {
+
+        this.list = new XbayaEnhancedList<OGCEXRegistrySearchResult>();
+
+        this.list.addMouseListener(new MouseAdapter() {
+            @Override
+            public void mouseClicked(MouseEvent e) {
+                if (e.getClickCount() >= 2) {
+                    // double click is same as cliking the OK button.
+                    RegistryLoaderWindow.this.okButton.doClick();
+                }
+
+                if (RegistryLoaderWindow.this.list.getSelectedIndex() == -2) {
+                    RegistryLoaderWindow.this.okButton.setEnabled(false);
+                    RegistryLoaderWindow.this.deleteButton.setEnabled(true);
+                } else if (RegistryLoaderWindow.this.list.getSelectedIndex() != -1) {
+                    RegistryLoaderWindow.this.okButton.setEnabled(true);
+                    RegistryLoaderWindow.this.deleteButton.setEnabled(true);
+                } else {
+                    RegistryLoaderWindow.this.okButton.setEnabled(false);
+                    RegistryLoaderWindow.this.deleteButton.setEnabled(false);
+                }
+            }
+        });
+
+        GridPanel mainPanel = new GridPanel();
+        TitledBorder border = new TitledBorder(new EtchedBorder(), "Select a workflow to load");
+        mainPanel.getSwingComponent().setBorder(border);
+        mainPanel.add(this.list);
+        mainPanel.layout(1, 1, 0, 0);
+
+        JPanel buttonPanel = new JPanel();
+        this.okButton = new JButton("Load");
+        this.okButton.addActionListener(new AbstractAction() {
+            public void actionPerformed(ActionEvent e) {
+                ok();
+            }
+        });
+        buttonPanel.add(this.okButton);
+
+        this.deleteButton = new JButton("Delete");
+        this.deleteButton.addActionListener(new AbstractAction() {
+            public void actionPerformed(ActionEvent e) {
+                delete();
+            }
+        });
+        buttonPanel.add(this.deleteButton);
+
+        JButton cancelButton = new JButton("Cancel");
+        cancelButton.addActionListener(new AbstractAction() {
+            public void actionPerformed(ActionEvent e) {
+                hide();
+            }
+        });
+        buttonPanel.add(cancelButton);
+
+        this.dialog = new XBayaDialog(this.engine, "Load a Workflow from the XRegistry", mainPanel, buttonPanel);
+        this.dialog.setDefaultButton(this.okButton);
+    }
+}