557c7a5f72d067323f54a686a34116daeb0ca7bb
[jalview.git] / src / jalview / ws / Discoverer.java
1 /*
2 * Jalview - A Sequence Alignment Editor and Viewer
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18 */
19 package jalview.ws;
20
21 /**
22  * <p>Title: </p>
23  *
24  * <p>Description: </p>
25  *
26  * <p>Copyright: Copyright (c) 2004</p>
27  *
28  * <p>Company: Dundee University</p>
29  *
30  * @author not attributable
31  * @version 1.0
32  */
33 import ext.vamsas.*;
34 import java.util.Vector;
35 import java.util.Hashtable;
36 import java.util.StringTokenizer;
37
38 public class Discoverer
39     extends Thread implements Runnable
40 {
41   ext.vamsas.IRegistry registry; // the root registry service.
42   private java.beans.PropertyChangeSupport changeSupport = new java.beans.
43       PropertyChangeSupport(this);
44
45   /**
46    * change listeners are notified of "services" property changes
47    *
48    * @param listener to be added that consumes new services Hashtable object.
49    */
50   public void addPropertyChangeListener(
51       java.beans.PropertyChangeListener listener)
52   {
53     changeSupport.addPropertyChangeListener(listener);
54   }
55
56   /**
57    *
58    *
59    * @param listener to be removed
60    */
61   public void removePropertyChangeListener(
62       java.beans.PropertyChangeListener listener)
63   {
64     changeSupport.removePropertyChangeListener(listener);
65   }
66
67   /**
68    * Property change listener firing routine
69    *
70    * @param prop services
71    * @param oldvalue old services hash
72    * @param newvalue new services hash
73    */
74   public void firePropertyChange(String prop, Object oldvalue, Object newvalue)
75   {
76     changeSupport.firePropertyChange(prop, oldvalue, newvalue);
77   }
78
79   /**
80    * Initializes the server field with a valid service implementation.
81    *
82    * @return true if service was located.
83    */
84   private IRegistry locateWebService(java.net.URL WsURL)
85   {
86     IRegistryServiceLocator loc = new IRegistryServiceLocator(); // Default
87     IRegistry server = null;
88     try
89     {
90       server = loc.getRegistryService(WsURL);
91       ( (RegistryServiceSoapBindingStub) server).setTimeout(60000); // One minute timeout
92     }
93     catch (Exception ex)
94     {
95       jalview.bin.Cache.log.error(
96           "Serious!  Service location failed\nfor URL :" + WsURL +
97           "\n", ex);
98
99       return null;
100     }
101
102     loc.getEngine().setOption("axis", "1");
103
104     return server;
105   }
106
107   static private java.net.URL RootServiceURL = null;
108   static public Vector ServiceURLList = null;
109   static private boolean reallyDiscoverServices = true;
110
111   public static java.util.Hashtable services = null; // vectors of services stored by abstractServiceType string
112   public static java.util.Vector serviceList = null; // flat list of services
113   static private Vector getDiscoveryURLS() {
114     Vector urls = new Vector();
115     String RootServiceURLs = jalview.bin.Cache.getDefault("DISCOVERY_URLS",
116         "http://www.compbio.dundee.ac.uk/JalviewWS/services/ServiceRegistry");
117
118     try{
119       StringTokenizer st = new StringTokenizer(RootServiceURLs, ",");
120       while (st.hasMoreElements())
121       {
122         String url = null;
123         try
124         {
125           java.net.URL u = new java.net.URL(url = st.nextToken());
126           if (!urls.contains(u))
127             urls.add(u);
128           else
129             jalview.bin.Cache.log.info("Ignoring duplicate url in DISCOVERY_URLS list");
130         }
131         catch (Exception ex)
132         {
133           jalview.bin.Cache.log.warn(
134               "Problem whilst trying to make a URL from '" +
135               ( (url != null) ? url : "<null>")+"'");
136           jalview.bin.Cache.log.warn("This was probably due to a malformed comma separated list"
137                                        +" in the DISCOVERY_URLS entry of $(HOME)/.jalview_properties)");
138           jalview.bin.Cache.log.debug("Exception was ",ex);
139         }
140       }
141     }catch(Exception ex)
142     {jalview.bin.Cache.log.warn("Error parsing comma separated list of urls in DISCOVERY_URLS.",ex);}
143     if (urls.size()>0)
144       return urls;
145     return null;
146   }
147
148   /**
149    * fetch new services or reset to hardwired defaults depending on preferences.
150    */
151   static public void doDiscovery()
152   {
153     jalview.bin.Cache.log.debug("(Re)-Initialising the discovery URL list.");
154     try
155     {
156       reallyDiscoverServices = jalview.bin.Cache.getDefault("DISCOVERY_START", false);
157       if (reallyDiscoverServices)
158       {
159         ServiceURLList = getDiscoveryURLS();
160       }
161       else
162       {
163         jalview.bin.Cache.log.debug("Setting default services");
164         services = new Hashtable();
165         // Muscle, Clustal and JPred.
166         ServiceHandle[] defServices = {
167             new ServiceHandle(
168                 "MsaWS",
169                 "Edgar, Robert C. (2004), MUSCLE: multiple sequence alignment " +
170                 "with high accuracy and high throughput, Nucleic Acids Research 32(5), 1792-97.",
171                 "http://www.compbio.dundee.ac.uk/JalviewWS/services/MuscleWS",
172                 "Muscle Multiple Protein Sequence Alignment"
173 ),
174             new ServiceHandle(
175                 "MsaWS",
176                 "Thompson, J.D., Higgins, D.G. and Gibson, T.J. (1994) CLUSTAL W: improving the sensitivity of progressive multiple" +
177                 " sequence alignment through sequence weighting, position specific gap penalties and weight matrix choice." +
178                 " Nucleic Acids Research, 22 4673-4680",
179                 "http://www.compbio.dundee.ac.uk/JalviewWS/services/ClustalWS",
180                 "ClustalW Multiple Sequence Alignment"),
181             new ServiceHandle(
182                 "SecStrPred",
183                 "Cuff J. A and Barton G.J (2000) Application of " +
184                 "multiple sequence alignment profiles to improve protein secondary structure prediction, " +
185                 "Proteins 40:502-511",
186                 "http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred","JNet Secondary Structure Prediction"
187                 )};
188         services = new Hashtable();
189         serviceList = new Vector();
190         buildServiceLists(defServices, serviceList, services);
191       }
192
193     }
194     catch (Exception e)
195     {
196       System.err.println(
197           "jalview.rootRegistry is not a proper url!\nWas set to " +
198           RootServiceURL + "\n" + e);
199     }
200
201   }
202   // TODO: JBPNote : make this discover more services based on list of
203   // discovery service urls, break cyclic references to the same url and
204   // duplicate service entries (same endpoint *and* same interface)
205   private ServiceHandle[] getServices(java.net.URL location)
206   {
207     ServiceHandles shs = null;
208     try
209     {
210       jalview.bin.Cache.log.debug("Discovering services using " + location);
211       shs = locateWebService(location).getServices();
212     }
213     catch (Exception e)
214     {
215       jalview.bin.Cache.log.debug("No Discovery service at " +
216                          location);
217       jalview.bin.Cache.log.debug(e);
218
219     }
220     if ( (shs != null) && shs.getServices().length > 0)
221     {
222       return shs.getServices();
223     }
224     return null;
225   }
226
227   /**
228    * Adds a list of services to the service catalog and categorised catalog
229    * returns true if ServiceURLList was modified with a new DiscoveryService URL
230    * @param sh ServiceHandle[]
231    * @param cat Vector
232    * @param sscat Hashtable
233    * @return boolean
234    */
235   static private boolean buildServiceLists(ServiceHandle[] sh, Vector cat,
236                                     Hashtable sscat)
237   {
238     boolean seenNewDiscovery = false;
239     for (int i = 0, j = sh.length; i < j; i++)
240     {
241       if (!cat.contains(sh[i]))
242       {
243         jalview.bin.Cache.log.debug("A " + sh[i].getAbstractName() +
244                                       " service called " +
245                                       sh[i].getName() + " exists at " +
246                                       sh[i].getEndpointURL() + "\n");
247         if (!sscat.containsKey(sh[i].getAbstractName()))
248         {
249           sscat.put(sh[i].getAbstractName(), cat = new Vector());
250         }
251         else
252         {
253           cat = (Vector) sscat.get(sh[i].getAbstractName());
254         }
255         cat.add(sh[i]);
256         if (sh[i].getAbstractName().equals("Registry"))
257         {
258           for (int s = 0, sUrls = ServiceURLList.size(); s < sUrls; s++)
259           {
260             java.net.URL disc_serv = null;
261             try
262             {
263               disc_serv = new java.net.URL(sh[i].getEndpointURL());
264               if (!ServiceURLList.contains(disc_serv))
265               {
266                 jalview.bin.Cache.log.debug(
267                     "Adding new discovery service at " + disc_serv);
268                 ServiceURLList.add(disc_serv);
269                 seenNewDiscovery = true;
270               }
271             }
272             catch (Exception e)
273             {
274               jalview.bin.Cache.log.debug(
275                   "Ignoring bad discovery service URL " + sh[i].getEndpointURL(),
276                   e);
277             }
278           }
279         }
280       }
281     }
282     return seenNewDiscovery;
283   }
284
285   public void discoverServices()
286   {
287     Hashtable sscat = new Hashtable();
288     Vector cat = new Vector();
289     ServiceHandle sh[] = null;
290     int s_url = 0;
291     if (ServiceURLList==null)
292     {
293       jalview.bin.Cache.log.debug("No service endpoints to use for service discovery.");
294       return;
295     }
296     while (s_url < ServiceURLList.size())
297     {
298       if ( (sh = getServices( (java.net.URL) ServiceURLList.get(s_url))) != null)
299       {
300
301         buildServiceLists(sh, cat, sscat);
302       } else {
303         jalview.bin.Cache.log.warn(
304             "No services at "
305             +((java.net.URL) ServiceURLList.get(s_url))
306             +" - check DISCOVERY_URLS property in .jalview_properties");
307       }
308       s_url++;
309     }
310     // TODO: decide on correct semantics for services list - PropertyChange
311     // provides a way of passing the new object around
312     // so no need to access original discovery thread.
313     // Curent decision is to change properties then notify listeners with old and new values.
314     Hashtable oldServices = services;
315     //Vector oldServicelist = serviceList;
316     services = sscat;
317     serviceList = cat;
318     firePropertyChange("services", oldServices, services);
319   }
320
321   /**
322    * creates a new thread to call discoverServices()
323    */
324   public void run()
325   {
326     final Discoverer discoverer = this;
327     Thread discoverThread = new Thread() {
328       public void run() {
329         discoverer.doDiscovery();
330         discoverer.discoverServices();
331       }
332     };
333     discoverThread.start();
334   }
335 }