Google Analytics statistics is added
[jabaws.git] / webservices / compbio / ws / server / ProbconsWS.java
index 8060be6..71f4730 100644 (file)
@@ -1,6 +1,6 @@
-/* Copyright (c) 2009 Peter Troshin\r
+/* Copyright (c) 2011 Peter Troshin\r
  *  \r
- *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 1.0 \r
+ *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0     \r
  * \r
  *  This library is free software; you can redistribute it and/or modify it under the terms of the\r
  *  Apache License version 2 as published by the Apache Software Foundation\r
@@ -21,18 +21,18 @@ package compbio.ws.server;
 import java.io.File;\r
 import java.util.List;\r
 \r
-import javax.annotation.Resource;\r
 import javax.jws.WebService;\r
-import javax.xml.ws.WebServiceContext;\r
 \r
 import org.apache.log4j.Logger;\r
 \r
+import compbio.data.msa.JABAService;\r
 import compbio.data.msa.MsaWS;\r
 import compbio.data.sequence.Alignment;\r
 import compbio.data.sequence.FastaSequence;\r
 import compbio.engine.AsyncExecutor;\r
 import compbio.engine.Configurator;\r
 import compbio.engine.client.ConfiguredExecutable;\r
+import compbio.engine.client.SkeletalExecutable;\r
 import compbio.metadata.ChunkHolder;\r
 import compbio.metadata.JobStatus;\r
 import compbio.metadata.JobSubmissionException;\r
@@ -47,116 +47,118 @@ import compbio.metadata.WrongParameterException;
 import compbio.runner.Util;\r
 import compbio.runner.msa.Probcons;\r
 \r
-@WebService(endpointInterface = "compbio.data.msa.MsaWS", targetNamespace = "http://msa.data.compbio/01/01/2010/", serviceName = "ProbconsWS")\r
+@WebService(endpointInterface = "compbio.data.msa.MsaWS", targetNamespace = JABAService.SERVICE_NAMESPACE, serviceName = "ProbconsWS")\r
 public class ProbconsWS implements MsaWS<Probcons> {\r
 \r
-    // Ask for resource injection\r
-    @Resource\r
-    WebServiceContext wsContext;\r
-\r
-    private static Logger statLog = Logger.getLogger("ProbconsWS-stats");\r
-\r
-    private static Logger log = Logger.getLogger(ProbconsWS.class);\r
-\r
-    private static final RunnerConfig<Probcons> probconsOptions = Util\r
-           .getSupportedOptions(Probcons.class);\r
-\r
-    @Override\r
-    public String align(List<FastaSequence> sequences)\r
-           throws JobSubmissionException {\r
-       WSUtil.validateFastaInput(sequences);\r
-       ConfiguredExecutable<Probcons> confProbcons = init(sequences);\r
-       return WSUtil.align(sequences, confProbcons, null, "align",\r
-               getLimit(""));\r
-    }\r
-\r
-    ConfiguredExecutable<Probcons> init(List<FastaSequence> dataSet)\r
-           throws JobSubmissionException {\r
-       Probcons probcons = new Probcons();\r
-       probcons.setInput("fasta.in").setOutput("alignment.out");\r
-       return Configurator.configureExecutable(probcons, dataSet);\r
-    }\r
-\r
-    @Override\r
-    public String customAlign(List<FastaSequence> sequences,\r
-           List<Option<Probcons>> options) throws JobSubmissionException,\r
-           WrongParameterException {\r
-       WSUtil.validateFastaInput(sequences);\r
-       ConfiguredExecutable<Probcons> confProbcons = init(sequences);\r
-       List<String> params = WSUtil.getCommands(options,\r
-               Probcons.KEY_VALUE_SEPARATOR);\r
-       log.info("Setting parameters:" + params);\r
-       confProbcons.addParameters(params);\r
-       return WSUtil.align(sequences, confProbcons, null, "customAlign",\r
-               getLimit(""));\r
-    }\r
-\r
-    @Override\r
-    public String presetAlign(List<FastaSequence> sequences,\r
-           Preset<Probcons> preset) throws JobSubmissionException,\r
-           WrongParameterException {\r
-       WSUtil.validateFastaInput(sequences);\r
-       if (preset == null) {\r
-           throw new WrongParameterException("Preset must be provided!");\r
+       private static Logger log = Logger.getLogger(ProbconsWS.class);\r
+\r
+       private static final RunnerConfig<Probcons> probconsOptions = Util\r
+                       .getSupportedOptions(Probcons.class);\r
+\r
+       private static final LimitsManager<Probcons> limitMan = compbio.engine.client.Util\r
+                       .getLimits(new Probcons().getType());\r
+\r
+       @Override\r
+       public String align(List<FastaSequence> sequences)\r
+                       throws JobSubmissionException {\r
+               WSUtil.validateFastaInput(sequences);\r
+               ConfiguredExecutable<Probcons> confProbcons = init(sequences);\r
+               return WSUtil\r
+                               .align(sequences, confProbcons, log, "align", getLimit(""));\r
+       }\r
+\r
+       ConfiguredExecutable<Probcons> init(List<FastaSequence> dataSet)\r
+                       throws JobSubmissionException {\r
+               Probcons probcons = new Probcons();\r
+               probcons.setInput(SkeletalExecutable.INPUT)\r
+                               .setOutput(SkeletalExecutable.OUTPUT)\r
+                               .setError(SkeletalExecutable.ERROR);\r
+               return Configurator.configureExecutable(probcons, dataSet);\r
+       }\r
+\r
+       @Override\r
+       public String customAlign(List<FastaSequence> sequences,\r
+                       List<Option<Probcons>> options) throws JobSubmissionException,\r
+                       WrongParameterException {\r
+               WSUtil.validateFastaInput(sequences);\r
+               ConfiguredExecutable<Probcons> confProbcons = init(sequences);\r
+               List<String> params = WSUtil.getCommands(options,\r
+                               Probcons.KEY_VALUE_SEPARATOR);\r
+               log.info("Setting parameters:" + params);\r
+               confProbcons.addParameters(params);\r
+               return WSUtil.align(sequences, confProbcons, log, "customAlign",\r
+                               getLimit(""));\r
+       }\r
+\r
+       @Override\r
+       public String presetAlign(List<FastaSequence> sequences,\r
+                       Preset<Probcons> preset) throws JobSubmissionException,\r
+                       WrongParameterException {\r
+               WSUtil.validateFastaInput(sequences);\r
+               if (preset == null) {\r
+                       throw new WrongParameterException("Preset must be provided!");\r
+               }\r
+               ConfiguredExecutable<Probcons> confProbcons = init(sequences);\r
+               confProbcons.addParameters(preset.getOptions());\r
+               Limit<Probcons> limit = getLimit(preset.getName());\r
+               return WSUtil.align(sequences, confProbcons, log, "presetAlign", limit);\r
+       }\r
+\r
+       @SuppressWarnings("unchecked")\r
+       @Override\r
+       public Alignment getResult(String jobId) throws ResultNotAvailableException {\r
+               WSUtil.validateJobId(jobId);\r
+               AsyncExecutor asyncEngine = Configurator.getAsyncEngine(jobId);\r
+               ConfiguredExecutable<Probcons> probcons = (ConfiguredExecutable<Probcons>) asyncEngine\r
+                               .getResults(jobId);\r
+               Alignment al = probcons.getResults();\r
+               // log(jobId, "getResults");\r
+               return al;\r
+       }\r
+\r
+       @Override\r
+       public Limit<Probcons> getLimit(String presetName) {\r
+               if (limitMan == null) {\r
+                       // Limit is not defined\r
+                       return null;\r
+               }\r
+               return limitMan.getLimitByName(presetName);\r
+       }\r
+\r
+       @Override\r
+       public LimitsManager<Probcons> getLimits() {\r
+               return limitMan;\r
+       }\r
+\r
+       @Override\r
+       public ChunkHolder pullExecStatistics(String jobId, long position) {\r
+               WSUtil.validateJobId(jobId);\r
+               // TODO check if output is the one to return\r
+               String file = Configurator.getWorkDirectory(jobId) + File.separator\r
+                               + new Probcons().getError();\r
+               return WSUtil.pullFile(file, position);\r
+       }\r
+\r
+       @Override\r
+       public boolean cancelJob(String jobId) {\r
+               WSUtil.validateJobId(jobId);\r
+               return WSUtil.cancelJob(jobId);\r
+       }\r
+\r
+       @Override\r
+       public JobStatus getJobStatus(String jobId) {\r
+               WSUtil.validateJobId(jobId);\r
+               return WSUtil.getJobStatus(jobId);\r
+       }\r
+\r
+       @Override\r
+       public PresetManager<Probcons> getPresets() {\r
+               return null;\r
+       }\r
+\r
+       @Override\r
+       public RunnerConfig<Probcons> getRunnerOptions() {\r
+               return probconsOptions;\r
        }\r
-       ConfiguredExecutable<Probcons> confProbcons = init(sequences);\r
-       confProbcons.addParameters(preset.getOptions());\r
-       Limit<Probcons> limit = getLimit(preset.getName());\r
-       return WSUtil\r
-               .align(sequences, confProbcons, null, "presetAlign", limit);\r
-    }\r
-\r
-    @SuppressWarnings("unchecked")\r
-    @Override\r
-    public Alignment getResult(String jobId) throws ResultNotAvailableException {\r
-       WSUtil.validateJobId(jobId);\r
-       AsyncExecutor asyncEngine = Configurator.getAsyncEngine(jobId);\r
-       ConfiguredExecutable<Probcons> probcons = (ConfiguredExecutable<Probcons>) asyncEngine\r
-               .getResults(jobId);\r
-       Alignment al = probcons.getResults();\r
-       //log(jobId, "getResults");\r
-       return al;\r
-    }\r
-\r
-    @Override\r
-    public Limit<Probcons> getLimit(String presetName) {\r
-       return new Probcons().getLimit(presetName);\r
-    }\r
-\r
-    @Override\r
-    public LimitsManager<Probcons> getLimits() {\r
-       return new Probcons().getLimits();\r
-    }\r
-\r
-    @Override\r
-    public ChunkHolder pullExecStatistics(String jobId, long position) {\r
-       WSUtil.validateJobId(jobId);\r
-       // TODO check if output is the one to return\r
-       String file = Configurator.getWorkDirectory(jobId) + File.separator\r
-               + new Probcons().getError();\r
-       return WSUtil.pullFile(file, position);\r
-    }\r
-\r
-    @Override\r
-    public boolean cancelJob(String jobId) {\r
-       WSUtil.validateJobId(jobId);\r
-       return WSUtil.cancelJob(jobId);\r
-    }\r
-\r
-    @Override\r
-    public JobStatus getJobStatus(String jobId) {\r
-       WSUtil.validateJobId(jobId);\r
-       return WSUtil.getJobStatus(jobId);\r
-    }\r
-\r
-    @Override\r
-    public PresetManager<Probcons> getPresets() {\r
-       return null;\r
-    }\r
-\r
-    @Override\r
-    public RunnerConfig<Probcons> getRunnerOptions() {\r
-       return probconsOptions;\r
-    }\r
 \r
 }\r