X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Frest%2FRestClient.java;h=0d56e87d151f067eff977a92b0e77a0beea2e31c;hb=7dd9c4874042f584dc1feb6a345fe929a8509e2b;hp=ac4f44ec2795245762e5783e3ccc179444778e78;hpb=f149a335b5467a4802eded5da0ca2fc732d7caf7;p=jalview.git diff --git a/src/jalview/ws/rest/RestClient.java b/src/jalview/ws/rest/RestClient.java index ac4f44e..0d56e87 100644 --- a/src/jalview/ws/rest/RestClient.java +++ b/src/jalview/ws/rest/RestClient.java @@ -7,6 +7,7 @@ import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Collection; import java.util.Hashtable; +import java.util.Vector; import javax.swing.JMenu; import javax.swing.JMenuItem; @@ -14,6 +15,7 @@ import javax.swing.JOptionPane; import javax.swing.event.MenuEvent; import javax.swing.event.MenuListener; +import jalview.bin.Cache; import jalview.datamodel.AlignmentView; import jalview.gui.AlignFrame; import jalview.gui.AlignViewport; @@ -341,14 +343,92 @@ public class RestClient extends WSClient implements WSClientI, return true; } + protected static Vector services=null; + public static final String RSBS_SERVICES="RSBS_SERVICES"; public static RestClient[] getRestClients() { - return new RestClient[] { makeShmmrRestClient() }; + if (services==null) + { + services = new Vector(); + try { + for (RestServiceDescription descr: RestServiceDescription.parseDescriptions(jalview.bin.Cache.getDefault(RSBS_SERVICES,makeShmmrRestClient().service.toString()))) + { + services.add(descr.toString()); + } + } + catch (Exception ex) { + System.err.println("Serious - RSBS descriptions in user preferences are corrupt!"); + ex.printStackTrace(); + } + + } + RestClient[] lst = new RestClient[services.size()]; + int i=0; + for (String svc:services) { + lst[i++] = new RestClient(new RestServiceDescription(svc)); + } + return lst; + } + public static void main(String args[]) + { + try { + RestClient[] clients = getRestClients(); + System.out.println("Got "+clients.length+" clients."); + int i=0; + Vector urls=new Vector(); + for (RestClient cl:clients) { + System.out.println(""+(++i)+": "+cl.service.toString()); + urls.add(cl.service.toString()); + } + setRsbsServices(urls); + if (clients.length!=getRestClients().length) + { + System.err.println("Failed. Differing numbers of clients when stringified and parsed again."); + } + + } catch (Throwable x) + { + System.err.println("Failed. Unexpected exception."); + x.printStackTrace(); + } } - public String getAction() { return service.details.Action; } + public RestServiceDescription getRestDescription() + { + return service; + } + + public static Vector getRsbsDescriptions() + { + Vector rsbsDescrs = new Vector(); + for (RestClient rsbs:getRestClients()) + { + rsbsDescrs.add(rsbs.getRestDescription().toString()); + } + return rsbsDescrs; + } + + public static void setRsbsServices(Vector rsbsUrls) + { + if (rsbsUrls!=null) + { + // TODO: consider validating services ? + services = new Vector(rsbsUrls); + StringBuffer sprop = new StringBuffer(); + for (String s:services) + { + sprop.append(s); + } + Cache.setProperty(RSBS_SERVICES, sprop.toString()); + } + else + { + Cache.removeProperty(RSBS_SERVICES); + } + } + }