X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws2%2FJws2Client.java;h=ab047d400f1a9620af25b832f9cf3b5fc171a3d0;hb=d043ce47fc710d3eb2629ba926a8a7417bd67d8c;hp=a5c1b5d8a8eaee1d93a33fd3d8d9d3fbf9b630be;hpb=a8f483d04205bb8273ee311c12968b7e86d205fa;p=jalview.git diff --git a/src/jalview/ws/jws2/Jws2Client.java b/src/jalview/ws/jws2/Jws2Client.java index a5c1b5d..ab047d4 100644 --- a/src/jalview/ws/jws2/Jws2Client.java +++ b/src/jalview/ws/jws2/Jws2Client.java @@ -1,38 +1,33 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.ws.jws2; +import jalview.gui.AlignFrame; +import jalview.ws.api.ServiceWithParameters; +import jalview.ws.params.ArgumentI; +import jalview.ws.params.WsParamSetI; import java.util.List; import javax.swing.JMenu; -import compbio.metadata.Argument; - -import jalview.gui.AlignFrame; -import jalview.gui.Desktop; -import jalview.gui.WebserviceInfo; -import jalview.gui.WsJobParameters; -import jalview.util.MessageManager; -import jalview.ws.jws2.dm.JabaWsParamSet; -import jalview.ws.jws2.jabaws2.Jws2Instance; -import jalview.ws.params.WsParamSetI; - /** * provides metadata for a jabaws2 service instance - resolves names, etc. * @@ -41,82 +36,19 @@ import jalview.ws.params.WsParamSetI; */ public abstract class Jws2Client extends jalview.ws.WSClient { - protected AlignFrame alignFrame; - - protected WsParamSetI preset; - - protected List paramset; + /** + * instantiate a new service client. preset and arguments are assumed to be + * valid for the service + * + * @param _alignFrame + * @param preset + * @param arguments + */ public Jws2Client(AlignFrame _alignFrame, WsParamSetI preset, - List arguments) + List arguments) { - alignFrame = _alignFrame; - this.preset = preset; - if (preset != null) - { - if (!((preset instanceof JabaPreset) || preset instanceof JabaWsParamSet)) - { - /* - * { this.preset = ((JabaPreset) preset).p; } else if (preset instanceof - * JabaWsParamSet) { List newargs = new ArrayList(); - * JabaWsParamSet pset = ((JabaWsParamSet) preset); for (Option opt : - * pset.getjabaArguments()) { newargs.add(opt); } if (arguments != null - * && arguments.size() > 0) { // merge arguments with preset's own - * arguments. for (Argument opt : arguments) { newargs.add(opt); } } - * paramset = newargs; } else { - */ - throw new Error( - "Implementation error: Can only instantiate Jaba parameter sets."); - } - } - else - { - // just provided with a bunch of arguments - this.paramset = arguments; - } - } - - boolean processParams(Jws2Instance sh, boolean editParams) - { - return processParams(sh, editParams, false); - } - - protected boolean processParams(Jws2Instance sh, boolean editParams, - boolean adjustingExisting) - { - - if (editParams) - { - if (sh.paramStore == null) - { - sh.paramStore = new JabaParamStore(sh, - Desktop.getUserParameterStore()); - } - WsJobParameters jobParams = (preset == null && paramset != null && paramset - .size() > 0) ? new WsJobParameters(null, sh, null, paramset) - : new WsJobParameters(sh, preset); - if (adjustingExisting) - { - jobParams.setName(MessageManager.getString("label.adjusting_parameters_for_calculation")); - } - if (!jobParams.showRunDialog()) - { - return false; - } - WsParamSetI prset = jobParams.getPreset(); - if (prset == null) - { - paramset = jobParams.isServiceDefaults() ? null : JabaParamStore - .getJabafromJwsArgs(jobParams.getJobParams()); - this.preset = null; - } - else - { - this.preset = prset; // ((JabaPreset) prset).p; - paramset = null; // no user supplied parameters. - } - } - return true; + super(_alignFrame, preset, arguments); } @@ -125,21 +57,6 @@ public abstract class Jws2Client extends jalview.ws.WSClient // anonymous constructor - used for headless method calls only } - protected WebserviceInfo setWebService(Jws2Instance serv, boolean b) - { - // serviceHandle = serv; - String serviceInstance = serv.action; // serv.service.getClass().getName(); - WebServiceName = serv.serviceType; - WebServiceJobTitle = serv.getActionText(); - WsURL = serv.hosturl; - if (!b) - { - return new WebserviceInfo(WebServiceJobTitle, WebServiceJobTitle - + " using service hosted at " + serv.hosturl + "\n" - + (serv.description != null ? serv.description : "")); - } - return null; - } /* * Jws2Instance serviceHandle; (non-Javadoc) @@ -159,7 +76,9 @@ public abstract class Jws2Client extends jalview.ws.WSClient * @param service * @param alignFrame */ - abstract void attachWSMenuEntry(JMenu wsmenu, final Jws2Instance service, + abstract void attachWSMenuEntry(JMenu wsmenu, + final ServiceWithParameters service, final AlignFrame alignFrame); + }