X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws2%2Fjabaws2%2FJws2Instance.java;h=47fb9c6a0240c1ee7ebb070f014b1ea4ad9d7a35;hb=ab58313e7bb31264ddb2715a1c548cdc789d7fa6;hp=69f90725576b769ec7c62c8e92c48ef0104c570b;hpb=e341b16beaae6c54348381d4a0bc11f094246067;p=jalview.git diff --git a/src/jalview/ws/jws2/jabaws2/Jws2Instance.java b/src/jalview/ws/jws2/jabaws2/Jws2Instance.java index 69f9072..47fb9c6 100644 --- a/src/jalview/ws/jws2/jabaws2/Jws2Instance.java +++ b/src/jalview/ws/jws2/jabaws2/Jws2Instance.java @@ -20,18 +20,16 @@ */ package jalview.ws.jws2.jabaws2; -import jalview.gui.AlignFrame; import jalview.gui.Desktop; import jalview.util.MessageManager; -import jalview.ws.api.UIinfo; +import jalview.ws.api.JalviewServiceEndpointProviderI; +import jalview.ws.api.ServiceWithParameters; import jalview.ws.jws2.JabaParamStore; -import jalview.ws.jws2.MsaWSClient; -import jalview.ws.jws2.SequenceAnnotationWSClient; import jalview.ws.params.ParamDatastoreI; +import jalview.ws.params.ParamManager; import java.io.Closeable; - -import javax.swing.JMenu; +import java.net.URL; import compbio.data.msa.JABAService; import compbio.data.msa.MsaWS; @@ -39,14 +37,12 @@ import compbio.data.msa.SequenceAnnotation; import compbio.metadata.PresetManager; import compbio.metadata.RunnerConfig; -public class Jws2Instance extends UIinfo +public class Jws2Instance extends ServiceWithParameters + implements JalviewServiceEndpointProviderI, AutoCloseable { - public String hosturl; public JABAService service; - public String docUrl; - /** * * @param hosturl @@ -64,17 +60,40 @@ public class Jws2Instance extends UIinfo public Jws2Instance(String hosturl, String serviceType, String action, String description, JABAService service) { - super(action, action, serviceType, description); - this.hosturl = hosturl; + super(action, action, serviceType, description, hosturl); this.service = service; + if (service instanceof MsaWS) + { + style = ServiceClient.MSAWSCLIENT; + } + else if (service instanceof SequenceAnnotation) + { + style = ServiceClient.SEQUENCEANNOTATIONWSCLIENT; + } + int p = description.indexOf("MORE INFORMATION:"); if (p > -1) { - docUrl = description.substring(description.indexOf("http", p)).trim(); + String docUrl = description.substring(description.indexOf("http", p)) + .trim(); if (docUrl.indexOf('\n') > -1) { docUrl = docUrl.substring(0, docUrl.indexOf("\n")).trim(); } + if (docUrl.length() > 0) + { + try + { + URL url = new URL(docUrl); + if (url != null) + { + setDocumentationUrl(docUrl); + } + } catch (Exception x) + { + + } + } } } @@ -107,32 +126,12 @@ public class Jws2Instance extends UIinfo } catch (Exception ex) { System.err.println("Exception when retrieving presets for service " - + getServiceType() + " at " + hosturl); + + getServiceType() + " at " + getHostURL()); } } return presets; } - public String getHost() - { - return hosturl; - /* - * try { URL serviceurl = new URL(hosturl); if (serviceurl.getPort()!=80) { - * return serviceurl.getHost()+":"+serviceurl.getPort(); } return - * serviceurl.getHost(); } catch (Exception e) { - * System.err.println("Failed to parse service URL '" + hosturl + - * "' as a valid URL!"); } return null; - */ - } - - /** - * @return short description of what the service will do - */ - public String getActionText() - { - return getAction() + " with " + getServiceType(); - } - /** * non-thread safe - blocks whilst accessing service to get complete set of * available options and parameters @@ -156,7 +155,7 @@ public class Jws2Instance extends UIinfo } @Override - protected void finalize() throws Throwable + public void close() { if (service != null) { @@ -168,9 +167,10 @@ public class Jws2Instance extends UIinfo // ignore } } - super.finalize(); + // super.finalize(); } + @Override public ParamDatastoreI getParamStore() { if (paramStore == null) @@ -178,7 +178,7 @@ public class Jws2Instance extends UIinfo try { paramStore = new JabaParamStore(this, - (Desktop.instance != null ? Desktop.getUserParameterStore() + (Desktop.getInstance() != null ? Desktop.getUserParameterStore() : null)); } catch (Exception ex) { @@ -190,17 +190,9 @@ public class Jws2Instance extends UIinfo return paramStore; } - public String getUri() - { - // this is only valid for Jaba 1.0 - this formula might have to change! - return hosturl - + (hosturl.lastIndexOf("/") == (hosturl.length() - 1) ? "" - : "/") - + getServiceType(); - } - private boolean hasParams = false, lookedForParams = false; + @Override public boolean hasParameters() { if (!lookedForParams) @@ -217,28 +209,62 @@ public class Jws2Instance extends UIinfo return hasParams; } - public void attachWSMenuEntry(JMenu atpoint, AlignFrame alignFrame) + /** + * initialise a parameter store for this service + * + * @param userParameterStore + * - the user ParamManager (e.g. Desktop.getUserParameterStore() ) + */ + @Override + public void initParamStore(ParamManager userParameterStore) { - if (service instanceof MsaWS) - { - new MsaWSClient().attachWSMenuEntry(atpoint, this, alignFrame); - } - else if (service instanceof SequenceAnnotation) + if (paramStore == null) { - new SequenceAnnotationWSClient().attachWSMenuEntry(atpoint, this, - alignFrame); + paramStore = new JabaParamStore(this, userParameterStore); } } - public String getNameURI() + /** + * an object that implements one or more interfaces in jalview.ws.api + * + * @return + */ + @Override + public Object getEndpoint() { - return "java:" + getName(); - } - - jalview.ws.uimodel.AlignAnalysisUIText aaui; + if (service instanceof MsaWS) + { + if (aaui != null) + { + throw new Error( + "JABAWS MsaWS based instant calculation not implemented."); - public jalview.ws.uimodel.AlignAnalysisUIText getAlignAnalysisUI() - { - return aaui; + } + else + { + return new JabawsMsaInstance(this); + } + } + else + { + if (service instanceof compbio.data.msa.SequenceAnnotation) + { + if (aaui != null) + { + try + { + // probably a factory would be nicer but.. + return aaui.getClient().getConstructor(getClass()) + .newInstance(this); + } catch (Throwable t) + { + throw new Error("Implementation Error in web service framework", + t); + } + } + return new AADisorderClient(this); + } + return null; + } } }