/* * Eoulsan development code * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public License version 2.1 or * later and CeCILL-C. This should be distributed with the code. * If you do not have a copy, see: * * http://www.gnu.org/licenses/lgpl-2.1.txt * http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt * * Copyright for this code is held jointly by the Genomic platform * of the Institut de Biologie de l'École normale supérieure and * the individual authors. These should be listed in @author doc * comments. * * For more information on the Eoulsan project and its aims, * or to join the Eoulsan Google group, visit the home page * at: * * http://outils.genomique.biologie.ens.fr/eoulsan * */ package fr.ens.biologie.genomique.eoulsan.galaxytools.elements; import static fr.ens.biologie.genomique.eoulsan.galaxytools.GalaxyToolXMLParserUtils.extractChildElementsByTagName; import static fr.ens.biologie.genomique.eoulsan.util.XMLUtils.getElementsByTagName; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import org.w3c.dom.Element; import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.Multimap; import fr.ens.biologie.genomique.eoulsan.EoulsanException; import fr.ens.biologie.genomique.eoulsan.EoulsanRuntimeException; import fr.ens.biologie.genomique.eoulsan.core.Parameter; import fr.ens.biologie.genomique.eoulsan.data.DataFormat; /** * The Class ToolConditionalElement. * @author Sandrine Perrin * @since 2.0 */ public class ConditionalToolElement implements ToolElement { /** The Constant TYPE. */ public final static String TYPE = "boolean"; /** The name space. */ private final String nameSpace; // Parameter represent choice in option list /** The tool parameter select. */ private final ToolElement toolElementSelect; // Variable name in command tag and tool parameter related /** The actions related options. */ private final Multimap<String, ToolElement> actionsRelatedOptions; /** The tool parameters selected. */ private final Map<String, ToolElement> toolElementSelected; /** The value. */ private String value; /** The is settings. */ private boolean isSettings = false; @Override public void setDefaultValue() { // TODO Auto-generated method stub } @Override public boolean isFile() { return false; } @Override public DataFormat getDataFormat() { throw new UnsupportedOperationException(); } @Override public void setValues(final Map<String, Parameter> stepParameters) throws EoulsanException { this.toolElementSelect.setValues(stepParameters); // Parameter corresponding to choice final Collection<ToolElement> toolParameters = this.actionsRelatedOptions.get(this.toolElementSelect.getValue()); // Check value parameter corresponding to a key for (final ToolElement toolParameter : toolParameters) { // Parse parameter // Extract parameter related tool element final Parameter parameter = toolParameter.extractParameterByName(stepParameters); if (parameter == null) { // No parameters found, call default settings toolParameter.setDefaultValue(); } else { // Set param toolParameter.setValue(parameter); } // Save map result this.toolElementSelected.put(toolParameter.getName(), toolParameter); } // Save setting parameter this.isSettings = true; } // // Private methods // /** * Parses the actions related options. * @param element the element * @return the multimap * @throws EoulsanException the eoulsan exception */ private Multimap<String, ToolElement> parseActionsRelatedOptions( final Element element) throws EoulsanException { // Associate value options with param define in when tag, can be empty final Multimap<String, ToolElement> result = ArrayListMultimap.create(); final List<Element> whenElement = getElementsByTagName(element, "when"); for (final Element e : whenElement) { final String whenName = e.getAttribute("value"); final List<Element> paramElement = new ArrayList<>(); paramElement.addAll(getElementsByTagName(e, "param")); paramElement.addAll(getElementsByTagName(e, "data")); // Can be empty, nothing to do if (paramElement == null || paramElement.isEmpty()) { result.put(whenName, new EmptyToolElement()); continue; } // Save param element for (final Element elem : paramElement) { // Initialize tool parameter related to the choice final ToolElement toolParameter = ToolElementFactory.newToolElement(elem, this.nameSpace); if (toolParameter != null) { // Add tool parameter in result result.put(whenName, toolParameter); } } } return result; } @Override public Parameter extractParameterByName( Map<String, Parameter> stepParameters) { throw new UnsupportedOperationException(); } // // Getter // @Override public String getName() { return this.nameSpace; } @Override public String getValidatedName() { throw new EoulsanRuntimeException( "Name tool conditional can not be change."); } /** * Gets the tool parameter select. * @return the tool parameter select */ public ToolElement getToolElementSelect() { return this.toolElementSelect; } /** * Gets the tool parameters result. * @return the tool parameters result */ public Map<String, ToolElement> getToolElementsResult() { if (this.toolElementSelected.isEmpty()) { return Collections.emptyMap(); } return this.toolElementSelected; } @Override public boolean isSet() { return this.isSettings; } @Override public String getValue() { return this.value; } @Override public void setValue(final Parameter stepParameter) { } @Override public String toString() { return "ToolConditionalElement [name=" + this.nameSpace + ", toolParameterSelect=" + this.toolElementSelect + ", options=" + this.actionsRelatedOptions + ", parameterEoulsan=" + this.getValue() + "]"; } // // Constructor // /** * Instantiates a new tool conditional element. * @param element the element * @throws EoulsanException the eoulsan exception */ public ConditionalToolElement(final Element element) throws EoulsanException { this.nameSpace = element.getAttribute("name"); final List<Element> param = extractChildElementsByTagName(element, "param"); if (param.isEmpty() || param.size() != 1) { throw new EoulsanException( "Parsing tool xml: not found valid param element " + param.size() + ". Must be 1 in conditional element, for type select"); } // Check element select exist if (!param.get(0).getAttribute("type").equals("select")) { throw new EoulsanException( "Parsing tool xml: no parameter type select found, in conditional element."); } // Init parameter select this.toolElementSelect = new SelectParameterToolElement(param.get(0), this.nameSpace); // Init default value if (this.toolElementSelect.isSet()) { this.value = this.toolElementSelect.getValue(); } // Extract all case available this.actionsRelatedOptions = this.parseActionsRelatedOptions(element); this.toolElementSelected = new HashMap<>(); } }