X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws2%2FJws2Discoverer.java;h=f1f8690c5d4fe704a3bc08bbe56f512c582ceaab;hb=c794c5033adeee182b03a5ea92c0a7495a29661f;hp=d270c8533cbfb314c3b52acdd8872d7b670d94f9;hpb=d95566a60c5dbc13f653c1e52bfa06954f1fbf4d;p=jalview.git diff --git a/src/jalview/ws/jws2/Jws2Discoverer.java b/src/jalview/ws/jws2/Jws2Discoverer.java index d270c85..f1f8690 100644 --- a/src/jalview/ws/jws2/Jws2Discoverer.java +++ b/src/jalview/ws/jws2/Jws2Discoverer.java @@ -22,35 +22,25 @@ package jalview.ws.jws2; import jalview.bin.Cache; import jalview.gui.AlignFrame; -import jalview.gui.Desktop; -import jalview.gui.JvSwingUtils; import jalview.util.MessageManager; import jalview.ws.WSMenuEntryProviderI; import jalview.ws.api.ServiceWithParameters; import jalview.ws.jws2.jabaws2.Jws2Instance; import jalview.ws.params.ParamDatastoreI; -import java.awt.Color; -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.beans.PropertyChangeSupport; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; import java.util.HashSet; -import java.util.Hashtable; import java.util.List; -import java.util.Map; import java.util.Set; import java.util.StringTokenizer; import java.util.Vector; import javax.swing.JMenu; -import javax.swing.JMenuItem; import compbio.ws.client.Services; @@ -250,7 +240,6 @@ public class Jws2Discoverer implements Runnable, WSMenuEntryProviderI } catch (Exception e) { } - ; for (JabaWsServerQuery squery : qrys) { if (squery.isRunning()) @@ -342,246 +331,28 @@ public class Jws2Discoverer implements Runnable, WSMenuEntryProviderI @Override public void attachWSMenuEntry(JMenu wsmenu, final AlignFrame alignFrame) { + if (running || services == null || services.size() == 0) + { + return; + } // dynamically regenerate service list. populateWSMenuEntry(wsmenu, alignFrame, null); } - private boolean isRecalculable(String action) - { - return (action != null && action.equalsIgnoreCase("conservation")); - } - private void populateWSMenuEntry(JMenu jws2al, final AlignFrame alignFrame, String typeFilter) { - if (running || services == null || services.size() == 0) - { - return; - } - - /** - * eventually, JWS2 services will appear under the same align/etc submenus. - * for moment we keep them separate. - */ - JMenu atpoint; - List enumerableServices = new ArrayList<>(); - // jws2al.removeAll(); - Map preferredHosts = new HashMap<>(); - Map> alternates = new HashMap<>(); - for (Jws2Instance service : services.toArray(new Jws2Instance[0])) - { - // TODO: check this behaves with refactored serviceType to getName - if (!isRecalculable(service.getName())) - { - // add 'one shot' services to be displayed using the classic menu - // structure - enumerableServices.add(service); - } - else - { - if (!preferredHosts.containsKey(service.getName())) - { - ServiceWithParameters preferredInstance = getPreferredServiceFor( - alignFrame, service.getName()); - if (preferredInstance != null) - { - preferredHosts.put(service.getName(), preferredInstance); - } - else - { - preferredHosts.put(service.getName(), service); - } - } - List ph = alternates.get(service.getName()); - if (preferredHosts.get(service.getName()) != service) - { - if (ph == null) - { - ph = new ArrayList<>(); - } - ph.add(service); - alternates.put(service.getName(), ph); - } - } - - } - - // create GUI element for classic services - addEnumeratedServices(jws2al, alignFrame, enumerableServices); - // and the instantaneous services - for (final ServiceWithParameters service : preferredHosts.values()) - { - atpoint = JvSwingUtils.findOrCreateMenu(jws2al, - service.getServiceType()); - JMenuItem hitm; - if (atpoint.getItemCount() > 1) - { - // previous service of this type already present - atpoint.addSeparator(); - } - atpoint.add(hitm = new JMenuItem(service.getHostURL())); - hitm.setForeground(Color.blue); - hitm.addActionListener(new ActionListener() - { - - @Override - public void actionPerformed(ActionEvent e) - { - Desktop.showUrl(service.getHostURL()); - } - }); - hitm.setToolTipText(JvSwingUtils.wrapTooltip(false, - MessageManager.getString("label.open_jabaws_web_page"))); - - service.attachWSMenuEntry(atpoint, alignFrame); - if (alternates.containsKey(service.getName())) - { - atpoint.add(hitm = new JMenu( - MessageManager.getString("label.switch_server"))); - hitm.setToolTipText(JvSwingUtils.wrapTooltip(false, - MessageManager.getString("label.choose_jabaws_server"))); - for (final ServiceWithParameters sv : alternates.get(service.getName())) - { - JMenuItem itm; - hitm.add(itm = new JMenuItem(sv.getHostURL())); - itm.setForeground(Color.blue); - itm.addActionListener(new ActionListener() - { - - @Override - public void actionPerformed(ActionEvent arg0) - { - new Thread(new Runnable() - { - @Override - public void run() - { - setPreferredServiceFor(alignFrame, sv.getName(), - sv.getServiceType(), sv); - changeSupport.firePropertyChange("services", - new Vector(), services); - }; - }).start(); - - } - }); - } - } - } + PreferredServiceRegistry.getRegistry().populateWSMenuEntry( + getServices(), + changeSupport, jws2al, + alignFrame, typeFilter); } /** - * add services using the Java 2.5/2.6/2.7 system which optionally creates - * submenus to index by host and service program type + * + * @param args + * @j2sIgnore */ - private void addEnumeratedServices(final JMenu jws2al, - final AlignFrame alignFrame, - List enumerableServices) - { - boolean byhost = Cache.getDefault("WSMENU_BYHOST", false), - bytype = Cache.getDefault("WSMENU_BYTYPE", false); - /** - * eventually, JWS2 services will appear under the same align/etc submenus. - * for moment we keep them separate. - */ - JMenu atpoint; - - List hostLabels = new ArrayList<>(); - Hashtable lasthostFor = new Hashtable<>(); - Hashtable> hosts = new Hashtable<>(); - ArrayList hostlist = new ArrayList<>(); - for (Jws2Instance service : enumerableServices) - { - ArrayList hostservices = hosts - .get(service.getHostURL()); - if (hostservices == null) - { - hosts.put(service.getHostURL(), - hostservices = new ArrayList<>()); - hostlist.add(service.getHostURL()); - } - hostservices.add(service); - } - // now add hosts in order of the given array - for (String host : hostlist) - { - Jws2Instance orderedsvcs[] = hosts.get(host) - .toArray(new Jws2Instance[1]); - String sortbytype[] = new String[orderedsvcs.length]; - for (int i = 0; i < sortbytype.length; i++) - { - sortbytype[i] = orderedsvcs[i].getName(); - } - jalview.util.QuickSort.sort(sortbytype, orderedsvcs); - for (final Jws2Instance service : orderedsvcs) - { - atpoint = JvSwingUtils.findOrCreateMenu(jws2al, - service.getAction()); - String type = service.getName(); - if (byhost) - { - atpoint = JvSwingUtils.findOrCreateMenu(atpoint, host); - if (atpoint.getToolTipText() == null) - { - atpoint.setToolTipText(MessageManager - .formatMessage("label.services_at", new String[] - { host })); - } - } - if (bytype) - { - atpoint = JvSwingUtils.findOrCreateMenu(atpoint, type); - if (atpoint.getToolTipText() == null) - { - atpoint.setToolTipText(service.getActionText()); - } - } - if (!byhost && !hostLabels.contains( - host + service.getName() + service.getActionText())) - // !hostLabels.contains(host + (bytype ? - // service.serviceType+service.getActionText() : ""))) - { - // add a marker indicating where this service is hosted - // relies on services from the same host being listed in a - // contiguous - // group - JMenuItem hitm; - if (hostLabels.contains(host)) - { - atpoint.addSeparator(); - } - else - { - hostLabels.add(host); - } - if (lasthostFor.get(service.getAction()) == null - || !lasthostFor.get(service.getAction()).equals(host)) - { - atpoint.add(hitm = new JMenuItem(host)); - hitm.setForeground(Color.blue); - hitm.addActionListener(new ActionListener() - { - - @Override - public void actionPerformed(ActionEvent e) - { - Desktop.showUrl(service.getHostURL()); - } - }); - hitm.setToolTipText( - JvSwingUtils.wrapTooltip(true, MessageManager - .getString("label.open_jabaws_web_page"))); - lasthostFor.put(service.getAction(), host); - } - hostLabels.add( - host + service.getName() + service.getActionText()); - } - - service.attachWSMenuEntry(atpoint, alignFrame); - } - } - } - public static void main(String[] args) { if (args.length > 0) @@ -591,7 +362,6 @@ public class Jws2Discoverer implements Runnable, WSMenuEntryProviderI { testUrls.add(url); } - ; } Thread runner = getDiscoverer() .startDiscoverer(new PropertyChangeListener() @@ -624,7 +394,6 @@ public class Jws2Discoverer implements Runnable, WSMenuEntryProviderI } catch (InterruptedException e) { } - ; } try { @@ -944,120 +713,6 @@ public class Jws2Discoverer implements Runnable, WSMenuEntryProviderI } /** - * pick the user's preferred service based on a set of URLs (jaba server - * locations) and service URIs (specifying version and service interface - * class) - * - * @param serviceURL - * @return null or best match for given uri/ls. - */ - public ServiceWithParameters getPreferredServiceFor(String[] serviceURLs) - { - HashSet urls = new HashSet<>(); - urls.addAll(Arrays.asList(serviceURLs)); - ServiceWithParameters match = null; - List ourServices = getServices(); - - if (ourServices != null) - { - for (ServiceWithParameters svc : ourServices) - { - // TODO getNameURI Should return a versioned URI for the service, but - // doesn't as of 2.11 - if (urls.contains(svc.getNameURI())) - { - if (match == null) - { - // for moment we always pick service from server ordered first in - // user's preferences - match = svc; - } - if (urls.contains(svc.getUri())) - { - // stop and return - we've matched type URI and URI for service - // endpoint - return svc; - } - } - } - } - return match; - } - - Map> preferredServiceMap = new HashMap<>(); - - /** - * get current preferred endpoint of the given Jabaws service, or global - * default - * - * @param af - * null or a specific alignFrame - * @param serviceName - * Jws2Instance.getName() for service - * @return null if no service of this type is available, the preferred service - * for the serviceType and af if specified and if defined. - */ - public ServiceWithParameters getPreferredServiceFor(AlignFrame af, - String serviceName) - { - String serviceurl = null; - synchronized (preferredServiceMap) - { - String afid = (af == null) ? "" : af.getViewport().getSequenceSetId(); - Map prefmap = preferredServiceMap.get(afid); - if (afid.length() > 0 && prefmap == null) - { - // recover global setting, if any - prefmap = preferredServiceMap.get(""); - } - if (prefmap != null) - { - serviceurl = prefmap.get(serviceName); - } - - } - ServiceWithParameters response = null; - for (ServiceWithParameters svc : getServices()) - { - if (svc.getName().equals(serviceName)) - { - if (serviceurl == null || serviceurl.equals(svc.getHostURL())) - { - response = svc; - break; - } - } - } - return response; - } - - public void setPreferredServiceFor(AlignFrame af, String serviceName, - String serviceAction, ServiceWithParameters selectedServer) - { - // TODO: pull out and generalise for the selectedServer's attributes - String afid = (af == null) ? "" : af.getViewport().getSequenceSetId(); - if (preferredServiceMap == null) - { - preferredServiceMap = new HashMap<>(); - } - Map prefmap = preferredServiceMap.get(afid); - if (prefmap == null) - { - prefmap = new HashMap<>(); - preferredServiceMap.put(afid, prefmap); - } - prefmap.put(serviceName, selectedServer.getHostURL()); - prefmap.put(serviceAction, selectedServer.getHostURL()); - } - - public void setPreferredServiceFor(String serviceType, - String serviceAction, ServiceWithParameters selectedServer) - { - setPreferredServiceFor(null, serviceType, serviceAction, - selectedServer); - } - - /** * Set a URL to try before any others. For use with command-line parameter to * configure a local Jabaws installation without the need to add to property * files.