X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FWsPreferences.java;h=6e3da27db1c4a74c3223817f9ed6e67f7b1a5b39;hb=47168f025aefdaa044802bd5f8f510ffe43a4808;hp=e2482f6c3391f1ee3cd6c99730d38b0d04fb38d3;hpb=a45774ee31d9f35d4eff46d54d7deab719afb092;p=jalview.git diff --git a/src/jalview/gui/WsPreferences.java b/src/jalview/gui/WsPreferences.java index e2482f6..6e3da27 100644 --- a/src/jalview/gui/WsPreferences.java +++ b/src/jalview/gui/WsPreferences.java @@ -1,37 +1,47 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * * Jalview 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 3 of the License, or (at your option) any later version. - * + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * * Jalview 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 Jalview. If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.gui; +import jalview.bin.Cache; +import jalview.jbgui.GWsPreferences; +import jalview.util.MessageManager; +import jalview.ws.jws2.Jws2Discoverer; +import jalview.ws.rest.RestServiceDescription; + import java.awt.BorderLayout; +import java.awt.Color; +import java.awt.Component; +import java.awt.Dimension; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.net.URL; import java.util.Vector; -import javax.swing.JCheckBox; import javax.swing.JLabel; import javax.swing.JOptionPane; import javax.swing.JPanel; +import javax.swing.JTable; import javax.swing.JTextField; - -import jalview.bin.Cache; -import jalview.jbgui.GWsPreferences; -import jalview.ws.rest.RestServiceDescription; +import javax.swing.table.AbstractTableModel; +import javax.swing.table.TableCellRenderer; public class WsPreferences extends GWsPreferences { @@ -42,7 +52,7 @@ public class WsPreferences extends GWsPreferences initFromPreferences(); } - Vector wsUrls, oldUrls,rsbsUrls,oldRsbsUrls; + Vector wsUrls, oldUrls, rsbsUrls, oldRsbsUrls; private boolean needWsMenuUpdate; @@ -62,6 +72,8 @@ public class WsPreferences extends GWsPreferences oldUrls = null; wsUrls = new Vector(); } + wsList.setDefaultRenderer(Integer.class, new JabaWSStatusRenderer()); + wsList.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS); updateList(); rsbsUrls = jalview.ws.rest.RestClient.getRsbsDescriptions(); if (rsbsUrls != null) @@ -103,7 +115,119 @@ public class WsPreferences extends GWsPreferences private void updateList() { - wsList.setListData(wsUrls); + Object tdat[][] = new Object[wsUrls.size()][2]; + int r = 0; + for (String url : wsUrls) + { + int status = Jws2Discoverer.getDiscoverer().getServerStatusFor(url); + tdat[r][1] = new Integer(status); + tdat[r++][0] = url; + } + + wsList.setModel(new WsUrlTableModel(tdat)); + wsList.getColumn("Status").setMinWidth(10); + } + + private class JabaWSStatusRenderer extends JPanel implements + TableCellRenderer + { + public JabaWSStatusRenderer() + { + setOpaque(true); + setMinimumSize(new Dimension(10, 10)); + // setText(" "); + + } + + /** + * render an Integer reflecting service status as a colour and symbol + */ + + @Override + public Component getTableCellRendererComponent(JTable arg0, + Object status, boolean isSelected, boolean hasFocus, int row, + int column) + { + Color c; + String t = new String(""); + switch (((Integer) status).intValue()) + { + case 1: + // cb.setSelected(true); + // cb.setBackground( + c = Color.green; + break; + case 0: + // cb.setSelected(true); + // cb.setBackground( + c = Color.lightGray; + break; + case -1: + // cb.setSelected(false); + // cb.setBackground( + c = Color.red; + break; + default: + // cb.setSelected(false); + // cb.setBackground( + c = Color.orange; + } + setBackground(c); + // setText(t); + return this; + + } + + } + + private class WsUrlTableModel extends AbstractTableModel + { + + private Object[][] data; + + public WsUrlTableModel(Object[][] tdat) + { + this.data = tdat; + } + + @Override + public int getColumnCount() + { + return 2; + } + + @Override + public String getColumnName(int column) + { + if (column == 1) + { + return "Status"; + } + return "Service URL"; + } + + @Override + public int getRowCount() + { + if (data == null) + { + return 0; + } + return data.length; + } + + @Override + public java.lang.Class getColumnClass(int columnIndex) + { + return getValueAt(0, columnIndex).getClass(); + }; + + @Override + public Object getValueAt(int rowIndex, int columnIndex) + { + return data[rowIndex][columnIndex]; + } + } private void updateRsbsList() @@ -131,7 +255,7 @@ public class WsPreferences extends GWsPreferences @Override protected void deleteWsUrl_actionPerformed(ActionEvent e) { - int sel = wsList.getSelectedIndex(); + int sel = wsList.getSelectedRow(); if (sel > -1) { wsUrls.removeElementAt(sel); @@ -149,7 +273,7 @@ public class WsPreferences extends GWsPreferences @Override protected void editWsUrl_actionPerformed(ActionEvent e) { - int sel = wsList.getSelectedIndex(); + int sel = wsList.getSelectedRow(); if (sel > -1) { String url = editUrl(wsUrls.elementAt(sel), "Edit JABAWS URL"); @@ -173,37 +297,44 @@ public class WsPreferences extends GWsPreferences } } } + @Override protected void newSbrsUrl_actionPerformed(ActionEvent e) { RestServiceEditorPane rse = new RestServiceEditorPane(); rse.showDialog("Add a new Simple Bioinformatics Rest Service"); String rservice = rse.getEditedRestService(); - if (rservice!=null && !rsbsUrls.contains(rservice)) + if (rservice != null && !rsbsUrls.contains(rservice)) { rsbsUrls.add(rservice); update++; updateRsbsList(); } } + @Override protected void editSbrsUrl_actionPerformed(ActionEvent e) { int sel = sbrsList.getSelectedIndex(); if (sel > -1) { - RestServiceEditorPane rse = new RestServiceEditorPane(new RestServiceDescription(rsbsUrls.elementAt(sel))); + RestServiceEditorPane rse = new RestServiceEditorPane( + new RestServiceDescription(rsbsUrls.elementAt(sel))); rse.showDialog("Edit Simple Bioinformatics Rest Service entry"); String rservice = rse.getEditedRestService(); - if (rservice!=null) + if (rservice != null) { int present = rsbsUrls.indexOf(rservice); - if (present==-1) { + if (present == -1) + { update++; - rsbsUrls.setElementAt(rservice,sel); + rsbsUrls.setElementAt(rservice, sel); updateRsbsList(); - } else { - if (present!=sel) { + } + else + { + if (present != sel) + { rsbsUrls.removeElementAt(sel); update++; updateRsbsList(); @@ -212,17 +343,21 @@ public class WsPreferences extends GWsPreferences } } } - + void updateWsMenuConfig(boolean old) { if (old) { - if (oldUrls!=wsUrls || (wsUrls!=null && oldUrls!=null && !wsUrls.equals(oldUrls))) + if (oldUrls != wsUrls + || (wsUrls != null && oldUrls != null && !wsUrls + .equals(oldUrls))) { update++; } wsUrls = (oldUrls == null) ? null : new Vector(oldUrls); - if (oldRsbsUrls!=rsbsUrls || (rsbsUrls!=null && oldRsbsUrls!=null && !oldRsbsUrls.equals(rsbsUrls))) + if (oldRsbsUrls != rsbsUrls + || (rsbsUrls != null && oldRsbsUrls != null && !oldRsbsUrls + .equals(rsbsUrls))) { update++; } @@ -249,9 +384,12 @@ public class WsPreferences extends GWsPreferences "WSMENU_BYTYPE", Boolean.valueOf(old ? oldIndexByType : indexByType.isSelected()) .toString()); - - Cache.setProperty("SHOW_WSDISCOVERY_ERRORS", - Boolean.valueOf(old ? oldWsWarning : displayWsWarning.isSelected()).toString()); + + Cache.setProperty( + "SHOW_WSDISCOVERY_ERRORS", + Boolean.valueOf( + old ? oldWsWarning : displayWsWarning.isSelected()) + .toString()); updateServiceList(); updateRsbsServiceList(); } @@ -266,14 +404,14 @@ public class WsPreferences extends GWsPreferences @Override protected void moveWsUrlDown_actionPerformed(ActionEvent e) { - int p = wsList.getSelectedIndex(); + int p = wsList.getSelectedRow(); if (p > -1 && p < wsUrls.size() - 1) { String t = wsUrls.get(p + 1); wsUrls.setElementAt(wsUrls.elementAt(p), p + 1); wsUrls.setElementAt(t, p); updateList(); - wsList.setSelectedIndex(p + 1); + wsList.getSelectionModel().setSelectionInterval(p + 1, p + 1); update++; } } @@ -288,14 +426,14 @@ public class WsPreferences extends GWsPreferences @Override protected void moveWsUrlUp_actionPerformed(ActionEvent e) { - int p = wsList.getSelectedIndex(); + int p = wsList.getSelectedRow(); if (p > 0) { String t = wsUrls.get(p - 1); wsUrls.setElementAt(wsUrls.elementAt(p), p - 1); wsUrls.setElementAt(t, p); updateList(); - wsList.setSelectedIndex(p - 1); + wsList.getSelectionModel().setSelectionInterval(p - 1, p - 1); update++; } } @@ -311,7 +449,7 @@ public class WsPreferences extends GWsPreferences JTextField urltf = new JTextField(url, 40); JPanel panel = new JPanel(new BorderLayout()); JPanel pane12 = new JPanel(new BorderLayout()); - pane12.add(new JLabel("URL: "), BorderLayout.CENTER); + pane12.add(new JLabel(MessageManager.getString("label.url")), BorderLayout.CENTER); pane12.add(urltf, BorderLayout.EAST); panel.add(pane12, BorderLayout.NORTH); boolean valid = false; @@ -326,9 +464,9 @@ public class WsPreferences extends GWsPreferences // TODO: do a better job of checking that the url is a valid discovery // URL for web services. String tx = urltf.getText().trim(); - while (tx.length()>0 && tx.lastIndexOf('/')==tx.length()-1) + while (tx.length() > 0 && tx.lastIndexOf('/') == tx.length() - 1) { - tx = tx.substring(0, tx.length()-1); + tx = tx.substring(0, tx.length() - 1); } foo = new URL(tx); valid = true; @@ -337,7 +475,7 @@ public class WsPreferences extends GWsPreferences { valid = false; JOptionPane.showInternalMessageDialog(Desktop.desktop, - "Invalid URL !"); + MessageManager.getString("label.invalid_url")); } } if (valid && resp == JOptionPane.OK_OPTION) @@ -384,7 +522,7 @@ public class WsPreferences extends GWsPreferences { if (!wsUrls.contains(url)) { - int selind = wsList.getSelectedIndex(); + int selind = wsList.getSelectedRow(); if (selind > -1) { wsUrls.insertElementAt(url, selind); @@ -446,6 +584,8 @@ public class WsPreferences extends GWsPreferences lastrefresh = update; Desktop.instance.startServiceDiscovery(true); // wait around for all // threads to complete + updateList(); + } progressBar.setIndeterminate(false); progressBar.setVisible(false); @@ -468,6 +608,7 @@ public class WsPreferences extends GWsPreferences { lastrefresh = update; Desktop.instance.startServiceDiscovery(true); + updateList(); } Desktop.instance.setProgressBar(null, ct); } @@ -493,12 +634,13 @@ public class WsPreferences extends GWsPreferences { jalview.ws.jws2.Jws2Discoverer.setServiceUrls(null); Vector nwsUrls = jalview.ws.jws2.Jws2Discoverer.getServiceUrls(); - if (!wsUrls.equals(nwsUrls)) { + if (!wsUrls.equals(nwsUrls)) + { update++; } - wsUrls=nwsUrls; + wsUrls = nwsUrls; updateList(); - + updateAndRefreshWsMenuConfig(true); }