2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.jws1;
25 import java.util.Hashtable;
26 import java.util.StringTokenizer;
27 import java.util.Vector;
29 import ext.vamsas.IRegistry;
30 import ext.vamsas.IRegistryServiceLocator;
31 import ext.vamsas.RegistryServiceSoapBindingStub;
32 import ext.vamsas.ServiceHandle;
33 import ext.vamsas.ServiceHandles;
34 import jalview.bin.Cache;
35 import jalview.bin.Console;
36 import jalview.bin.ApplicationSingletonProvider;
37 import jalview.bin.ApplicationSingletonProvider.ApplicationSingletonI;
38 import jalview.gui.JvOptionPane;
39 import jalview.util.MessageManager;
41 public class Discoverer implements Runnable, ApplicationSingletonI
43 public static Discoverer getInstance()
45 return (Discoverer) ApplicationSingletonProvider.getInstance(Discoverer.class);
52 ext.vamsas.IRegistry registry; // the root registry service.
54 private java.beans.PropertyChangeSupport changeSupport = new java.beans.PropertyChangeSupport(
58 * change listeners are notified of "services" property changes
61 * to be added that consumes new services Hashtable object.
63 public void addPropertyChangeListener(
64 java.beans.PropertyChangeListener listener)
66 changeSupport.addPropertyChangeListener(listener);
75 public void removePropertyChangeListener(
76 java.beans.PropertyChangeListener listener)
78 changeSupport.removePropertyChangeListener(listener);
82 * Property change listener firing routine
91 public void firePropertyChange(String prop, Object oldvalue,
94 changeSupport.firePropertyChange(prop, oldvalue, newvalue);
98 * Initializes the server field with a valid service implementation.
100 * @return true if service was located.
102 private IRegistry locateWebService(java.net.URL WsURL)
104 IRegistryServiceLocator loc = new IRegistryServiceLocator(); // Default
105 IRegistry server = null;
108 server = loc.getRegistryService(WsURL);
109 ((RegistryServiceSoapBindingStub) server).setTimeout(60000); // One
112 } catch (Exception ex)
115 "Serious! Service location failed\nfor URL :" + WsURL + "\n",
121 loc.getEngine().setOption("axis", "1");
126 private java.net.URL RootServiceURL = null;
128 private Vector<URL> ServiceURLList = null;
130 public Vector<URL> getServiceURLList() {
131 return ServiceURLList;
134 private boolean reallyDiscoverServices = true;
136 private java.util.Hashtable<String, Vector<ServiceHandle>> services = null;
138 // abstractServiceType
141 public java.util.Vector<ServiceHandle> serviceList = null;
143 private Vector<URL> getDiscoveryURLS()
145 Vector<URL> urls = new Vector<>();
146 String RootServiceURLs = Cache.getDefault("DISCOVERY_URLS",
147 "http://www.compbio.dundee.ac.uk/JalviewWS/services/ServiceRegistry");
151 StringTokenizer st = new StringTokenizer(RootServiceURLs, ",");
152 while (st.hasMoreElements())
157 java.net.URL u = new java.net.URL(url = st.nextToken());
158 if (!urls.contains(u))
164 Console.info("Ignoring duplicate url in DISCOVERY_URLS list");
166 } catch (Exception ex)
168 Console.warn("Problem whilst trying to make a URL from '"
169 + ((url != null) ? url : "<null>") + "'");
171 "This was probably due to a malformed comma separated list"
172 + " in the DISCOVERY_URLS entry of $(HOME)/.jalview_properties)");
173 Console.debug("Exception was ", ex);
176 } catch (Exception ex)
179 "Error parsing comma separated list of urls in DISCOVERY_URLS.",
190 * fetch new services or reset to hardwired defaults depending on preferences.
192 static public void doDiscovery()
194 getInstance().discovery();
197 private void discovery()
200 .debug("(Re)-Initialising the discovery URL list.");
203 Discoverer d = getInstance();
204 reallyDiscoverServices = Cache
205 .getDefault("DISCOVERY_START", false);
206 if (reallyDiscoverServices)
208 ServiceURLList = getDiscoveryURLS();
212 Console.debug("Setting default services");
213 services = new Hashtable<>();
214 // Muscle, Clustal and JPred.
215 ServiceHandle[] defServices = { new ServiceHandle("MsaWS",
216 "Edgar, Robert C. (2004), MUSCLE: multiple sequence alignment "
217 + "with high accuracy and high throughput, Nucleic Acids Research 32(5), 1792-97.",
218 "http://www.compbio.dundee.ac.uk/JalviewWS/services/MuscleWS",
219 MessageManager.getString(
220 "label.muscle_multiple_protein_sequence_alignment")),
221 new ServiceHandle("MsaWS",
222 "Katoh, K., K. Kuma, K., Toh, H., and Miyata, T. (2005) "
223 + "\"MAFFT version 5: improvement in accuracy of multiple sequence alignment.\""
224 + " Nucleic Acids Research, 33 511-518",
225 "http://www.compbio.dundee.ac.uk/JalviewWS/services/MafftWS",
226 MessageManager.getString(
227 "label.mafft_multiple_sequence_alignment")),
228 new ServiceHandle("MsaWS",
229 "Thompson, J.D., Higgins, D.G. and Gibson, T.J. (1994) CLUSTAL W: improving the sensitivity of progressive multiple"
230 + " sequence alignment through sequence weighting, position specific gap penalties and weight matrix choice."
231 + " Nucleic Acids Research, 22 4673-4680",
232 "http://www.compbio.dundee.ac.uk/JalviewWS/services/ClustalWS",
233 MessageManager.getString(
234 "label.clustalw_multiple_sequence_alignment")),
235 new ServiceHandle("SecStrPred",
236 "Drozdetskiy A, Cole C, Procter J & Barton GJ. (2015)\nJPred4: a protein secondary structure prediction server"
237 + "\nNucleic Acids Research, Web Server issue (first published 15th April 2015)"
238 + "\ndoi://10.1093/nar/gkv332",
239 "http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred",
240 "JPred Secondary Structure Prediction") };
241 services = new Hashtable<>();
242 serviceList = new Vector<>();
243 buildServiceLists(defServices, serviceList, services);
246 } catch (Exception e)
249 "jalview.rootRegistry is not a proper url!\nWas set to "
250 + RootServiceURL + "\n" + e);
255 // TODO: JBPNote : make this discover more services based on list of
256 // discovery service urls, break cyclic references to the same url and
257 // duplicate service entries (same endpoint *and* same interface)
258 private ServiceHandle[] getServices(java.net.URL location)
260 ServiceHandles shs = null;
263 Console.debug("Discovering services using " + location);
264 shs = locateWebService(location).getServices();
265 } catch (org.apache.axis.AxisFault f)
267 // JBPNote - should do this a better way!
268 if (f.getFaultReason().indexOf("(407)") > -1)
270 if (jalview.gui.Desktop.getDesktopPane() != null)
272 JvOptionPane.showMessageDialog(jalview.gui.Desktop.getDesktopPane(),
273 MessageManager.getString("label.set_proxy_settings"),
275 .getString("label.proxy_authorization_failed"),
276 JvOptionPane.WARNING_MESSAGE);
281 Console.warn("No Discovery service at " + location);
282 Console.debug("Axis Fault", f);
284 } catch (Exception e)
286 Console.warn("No Discovery service at " + location);
287 Console.debug("Discovery Service General Exception", e);
289 if ((shs != null) && shs.getServices().length > 0)
291 return shs.getServices();
297 * Adds a list of services to the service catalog and categorised catalog
298 * returns true if ServiceURLList was modified with a new DiscoveryService URL
308 private boolean buildServiceLists(ServiceHandle[] sh,
309 Vector<ServiceHandle> cat,
310 Hashtable<String, Vector<ServiceHandle>> sscat)
312 boolean seenNewDiscovery = false;
313 for (int i = 0, j = sh.length; i < j; i++)
315 if (!cat.contains(sh[i]))
317 Console.debug("A " + sh[i].getAbstractName() + " service called "
318 + sh[i].getName() + " exists at " + sh[i].getEndpointURL()
320 if (!sscat.containsKey(sh[i].getAbstractName()))
322 sscat.put(sh[i].getAbstractName(), cat = new Vector<>());
326 cat = sscat.get(sh[i].getAbstractName());
329 if (sh[i].getAbstractName().equals("Registry"))
331 for (int s = 0, sUrls = ServiceURLList.size(); s < sUrls; s++)
333 java.net.URL disc_serv = null;
336 disc_serv = new java.net.URL(sh[i].getEndpointURL());
337 if (!ServiceURLList.contains(disc_serv))
340 "Adding new discovery service at " + disc_serv);
341 ServiceURLList.add(disc_serv);
342 seenNewDiscovery = true;
344 } catch (Exception e)
346 Console.debug("Ignoring bad discovery service URL "
347 + sh[i].getEndpointURL(), e);
353 return seenNewDiscovery;
356 public void discoverServices()
358 Hashtable<String, Vector<ServiceHandle>> sscat = new Hashtable<>();
359 Vector<ServiceHandle> cat = new Vector<>();
360 ServiceHandle sh[] = null;
362 if (ServiceURLList == null)
364 Console.debug("No service endpoints to use for service discovery.");
367 while (s_url < ServiceURLList.size())
369 if ((sh = getServices(
370 ServiceURLList.get(s_url))) != null)
373 buildServiceLists(sh, cat, sscat);
377 Console.warn("No services at " + (ServiceURLList.get(s_url))
378 + " - check DISCOVERY_URLS property in .jalview_properties");
382 // TODO: decide on correct semantics for services list - PropertyChange
383 // provides a way of passing the new object around
384 // so no need to access original discovery thread.
385 // Curent decision is to change properties then notify listeners with old
387 Hashtable<String, Vector<ServiceHandle>> oldServices = services;
388 // Vector oldServicelist = serviceList;
391 changeSupport.firePropertyChange("services", oldServices, services);
395 * creates a new thread to call discoverServices()
400 Console.info("Discovering jws1 services");
401 Discoverer.doDiscovery();
406 * binding service abstract name to handler class
408 private Hashtable<String, WS1Client> serviceClientBindings;
410 public static WS1Client getServiceClient(ServiceHandle sh)
412 return getInstance().getClient(sh);
416 * notes on discovery service 1. need to allow multiple discovery source urls.
417 * 2. user interface to add/control list of urls in preferences notes on
418 * wsclient discovery 1. need a classpath property with list of additional
419 * plugin directories 2. optional config to cite specific bindings between
420 * class name and Abstract service name. 3. precedence for automatic discovery
421 * by using getAbstractName for WSClient - user added plugins override default
422 * plugins ? notes on wsclient gui code for gui attachment now moved to
423 * wsclient implementation. Needs more abstraction but approach seems to work.
424 * is it possible to 'generalise' the data retrieval calls further ? current
425 * methods are very specific (gatherForMSA or gatherForSeqOrMsaSecStrPred),
426 * new methods for conservation (group or alignment), treecalc (aligned
427 * profile), seqannot (sequences selected from dataset, annotation back to
432 private WS1Client getClient(ServiceHandle sh)
434 if (serviceClientBindings == null)
436 // get a list from Config or create below
437 serviceClientBindings = new Hashtable<>();
438 serviceClientBindings.put("MsaWS", new MsaWSClient());
439 serviceClientBindings.put("SecStrPred", new JPredClient());
440 serviceClientBindings.put("SeqSearch", new SeqSearchWSClient());
442 WS1Client instance = serviceClientBindings
443 .get(sh.getAbstractName());
444 if (instance == null)
447 "WARNING - POSSIBLE IMPLEMENTATION ERROR - cannot find WSClient implementation for "
448 + sh.getAbstractName());
452 instance.serviceHandle = sh;
456 public static Hashtable<String, Vector<ServiceHandle>> getServices()
458 return getInstance().services;