blob: aadae0ffd423139bc27b511c924f8d515978b89c [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2007 The University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
******************************************************************************/
package net.sf.taverna.t2.commandline;
import java.util.HashMap;
import java.util.Map;
import net.sf.taverna.t2.commandline.data.SaveResultsHandler;
import net.sf.taverna.t2.facade.ResultListener;
import net.sf.taverna.t2.invocation.WorkflowDataToken;
import org.apache.log4j.Logger;
/**
* A ResultListener that is using for collecting and storing results when running
* workflows from the commandline.
*
* @author Stuart Owen
*/
public class CommandLineResultListener implements ResultListener {
private static final Logger logger = Logger.getLogger(CommandLineResultListener.class);
private Map<String, WorkflowDataToken> outputMap = new HashMap<String, WorkflowDataToken>();
private Map<String,WorkflowDataToken> finalTokens = new HashMap<String, WorkflowDataToken>();
private final SaveResultsHandler saveResultsHandler;
private final int numberOfOutputs;
private final boolean saveIndividualResults;
private final boolean saveOutputDocument;
private boolean saveOpm;
private boolean saveJanus;
private final String workflowRunId;
public CommandLineResultListener(int numberOfOutputs,SaveResultsHandler saveResultsHandler,boolean saveIndividualResults,boolean saveOutputDocument, boolean saveOpm, boolean saveJanus, String workflowRunId) {
this.numberOfOutputs = numberOfOutputs;
this.saveResultsHandler = saveResultsHandler;
this.saveIndividualResults = saveIndividualResults;
this.saveOutputDocument = saveOutputDocument;
this.saveOpm = saveOpm;
this.saveJanus = saveJanus;
this.workflowRunId = workflowRunId;
}
public Map<String, WorkflowDataToken> getOutputMap() {
return outputMap;
}
public void resultTokenProduced(WorkflowDataToken token, String portName) {
if (saveIndividualResults) {
saveResultsHandler.tokenReceived(token, portName);
}
if (token.isFinal()) {
finalTokens.put(portName, token);
}
}
public void saveOutputDocument() {
if (saveOutputDocument) {
try {
saveResultsHandler.saveOutputDocument(finalTokens);
} catch (Exception e) {
logger.error("An error occurred saving the final results to -outputdoc",e);
}
}
}
public void saveProvenance() {
if (saveOpm) {
saveResultsHandler.saveOpm(workflowRunId);
}
if (saveJanus) {
saveResultsHandler.saveJanus(workflowRunId);
}
}
}