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.
24 package jalview.ws.jws2;
26 import jalview.bin.Cache;
27 import jalview.ws.jws2.jabaws2.Jws2Instance;
28 import jalview.ws.jws2.jabaws2.Jws2InstanceFactory;
30 import java.io.IOException;
31 import java.net.MalformedURLException;
33 import java.util.HashSet;
36 import compbio.data.msa.Category;
37 import compbio.data.msa.JABAService;
38 import compbio.ws.client.Jws2Client;
39 import compbio.ws.client.Services;
45 public class JabaWsServerQuery implements Runnable
48 Jws2Discoverer jws2Discoverer = null;
50 String jwsserver = null;
52 boolean quit = false, running = false;
57 public boolean isRunning()
66 public void setQuit(boolean quit)
71 public JabaWsServerQuery(Jws2Discoverer jws2Discoverer, String server)
73 this.jws2Discoverer = jws2Discoverer;
74 this.jwsserver = server;
77 Services[] JABAWS1SERVERS = new Services[] { Services.ClustalWS,
78 Services.MuscleWS, Services.MafftWS, Services.ProbconsWS,
81 Services[] JABAWS2SERVERS = new Services[] { Services.ClustalWS,
82 Services.MuscleWS, Services.MafftWS, Services.ProbconsWS,
83 Services.TcoffeeWS, Services.AAConWS, Services.DisemblWS,
84 Services.GlobPlotWS, Services.IUPredWS, Services.JronnWS,
85 Services.RNAalifoldWS };
90 * @see java.lang.Runnable#run()
98 // TODO this test doesn't seem to attempt a connection - should it?
99 // would save a lot of failed tries with UnknownHostException
100 if (isValidUrl(jwsserver))
102 compbio.data.msa.RegistryWS registry = null;
103 Set svccategories = null;
104 boolean noservices = true;
106 boolean jabasws2 = false;
107 // If we are dealing with a JABAWS2 service, then just go and ask the
108 // JABAWS 2 service registry
109 Set<Services> srv_set = new HashSet<Services>();
111 Set<Category> categories = Category.getCategories();
116 // JBPNote: why is RegistryWS in compbio.data.msa ?
117 registry = Jws2Client.connectToRegistry(jwsserver);
118 if (registry != null)
120 // System.err.println("Test Services Output\n"
121 // + registry.testAllServices());
122 // TODO: enumerate services and test those that haven't been tested
123 // in the last n-days/hours/etc.
126 srv_set = registry.getSupportedServices();
129 System.out.println("registry.getSupportedServices: "
130 + srv_set.toString());
132 svccategories = registry.getServiceCategories();
135 // System.out.println("registry.getServiceCategories: " +
136 // svccategories.toString());
139 } catch (Exception ex)
141 System.err.println("Exception whilst trying to get at registry:");
142 ex.printStackTrace();
143 // if that failed, then we are probably working with a JABAWS1 server.
144 // in that case, look for each service endpoint
145 System.err.println("JWS2 Discoverer: " + jwsserver
146 + " is a JABAWS1 server. Using hardwired list.");
147 for (Services srv : JABAWS1SERVERS)
153 for (Category cat : categories)
155 for (Services srv : cat.getServices())
162 if (!srv_set.contains(srv))
166 JABAService service = null;
169 service = Jws2Client.connect(jwsserver, srv);
170 } catch (Exception e)
172 System.err.println("Jws2 Discoverer: Problem on " + jwsserver
173 + " with service " + srv + ":\n" + e.getMessage());
174 if (!(e instanceof javax.xml.ws.WebServiceException))
178 // For moment, report service as a problem.
179 jws2Discoverer.addInvalidServiceUrl(jwsserver);
183 && !Jws2InstanceFactory.ignoreService(srv.toString()))
186 Jws2Instance svc = null;
187 if (registry != null)
190 String description = registry.getServiceDescription(srv);
192 svc = Jws2InstanceFactory.newJws2Instance(jwsserver,
193 srv.toString(), cat.name, description, service);
197 svc = Jws2InstanceFactory.newJws2Instance(jwsserver,
198 srv.toString(), cat.name,
199 "JABAWS 1 Alignment Service", service);
201 jws2Discoverer.addService(jwsserver, svc);
209 jws2Discoverer.addUrlwithnoservices(jwsserver);
214 jws2Discoverer.addInvalidServiceUrl(jwsserver);
215 Cache.log.warn("Ignoring invalid Jws2 service url " + jwsserver);
217 } catch (Exception e)
220 Cache.log.warn("Exception when discovering Jws2 services.", e);
221 jws2Discoverer.addInvalidServiceUrl(jwsserver);
224 Cache.log.error("Exception when discovering Jws2 services.", e);
225 jws2Discoverer.addInvalidServiceUrl(jwsserver);
231 * Check if the URL is valid and responding.
235 private boolean isValidUrl(String server)
237 // return Jws2Client.validURL(jwsserver); // checks syntax only
238 boolean result = false;
243 URL url = new URL(server);
244 url.openStream().close();
246 } catch (MalformedURLException e)
248 System.err.println("Invalid server URL: " + server);
250 } catch (IOException e)
252 System.err.println("Error connecting to server: " + server + ": "