/* * RapidMiner * * Copyright (C) 2001-2014 by RapidMiner and the contributors * * Complete list of developers available at our web site: * * http://rapidminer.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.operator; import java.io.BufferedReader; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.logging.Level; import com.rapidminer.operator.nio.file.BufferedFileObject; import com.rapidminer.operator.nio.file.FileObject; import com.rapidminer.operator.ports.DummyPortPairExtender; import com.rapidminer.operator.ports.InputPort; import com.rapidminer.operator.ports.OutputPort; import com.rapidminer.operator.ports.Port; import com.rapidminer.operator.ports.PortPairExtender; import com.rapidminer.operator.ports.metadata.MetaData; import com.rapidminer.parameter.ParameterType; import com.rapidminer.parameter.ParameterTypeBoolean; import com.rapidminer.parameter.ParameterTypeString; import com.rapidminer.parameter.PortProvider; import com.rapidminer.parameter.conditions.PortConnectedCondition; import com.rapidminer.tools.Tools; /** * <p>This operator executes a system command. The command and all its arguments * are specified by the parameter <code>command</code>. The standard output * stream and the error stream of the process can be redirected to the logfile. <br/> * Please note also that the command is system dependent. Characters that have * special meaning on the shell like e.g. the pipe symbol or brackets and braces * do not have a special meaning to Java. <br/> The method * <code>Runtime.exec(String)</code> is used to execute the command. Please * note, that this (Java) method parses the string into tokens before it is * executed. These tokens are <em>not</em> interpreted by a shell (which?). If * the desired command involves piping, redirection or other shell features, it * is best to create a small shell script to handle this.</p> * * <p> * A hint for Windows / MS DOS users: simple commands should be preceeded by * <code>cmd call</code> which opens a new shell, executes the command and closes * the shell again. After this, the rest of the process will be executed. * Another option would be to preceed the command with <code>cmd start</code> * which opens the shell and keeps it open. The rest process will not be * executed until the shell is closed by the user. * </p> * * * @author Ingo Mierswa, Simon Fischer */ public class CommandLineOperator extends Operator { public static final String PARAMETER_COMMAND = "command"; public static final String PARAMETER_LOG_STDOUT = "log_stdout"; public static final String PARAMETER_LOG_STDERR = "log_stderr"; private InputPort stdin = getInputPorts().createPort("in", new MetaData(FileObject.class)); private OutputPort stdout = getOutputPorts().createPort("out"); private OutputPort stderr = getOutputPorts().createPort("err"); private PortPairExtender dummyPorts = new DummyPortPairExtender("through", getInputPorts(), getOutputPorts()); public CommandLineOperator(OperatorDescription description) { super(description); dummyPorts.start(); getTransformer().addRule(dummyPorts.makePassThroughRule()); getTransformer().addGenerationRule(stdout, FileObject.class); getTransformer().addGenerationRule(stderr, FileObject.class); } @Override public void doWork() throws OperatorException { String command = getParameterAsString(PARAMETER_COMMAND); final boolean logOut = !stdout.isConnected() && getParameterAsBoolean(PARAMETER_LOG_STDOUT); final boolean logErr = !stderr.isConnected() && getParameterAsBoolean(PARAMETER_LOG_STDERR); final List<Throwable> exceptions = Collections.synchronizedList(new ArrayList<Throwable>(3)); try { final Process process = Runtime.getRuntime().exec(command); final ByteArrayOutputStream stdOutBuf = new ByteArrayOutputStream(); final ByteArrayOutputStream stdErrBuf = new ByteArrayOutputStream(); if (stdin.isConnected()) { final FileObject input = stdin.getData(FileObject.class); new Thread(getName()+"-stdin") { public void run() { try { Tools.copyStreamSynchronously(input.openStream(), process.getOutputStream(), true); } catch (Exception e) { exceptions.add(e); } }; }.start(); } new Thread(getName()+"-stdout") { public void run() { try { if (logOut) { logOutput("stdout:", process.getInputStream()); } else { Tools.copyStreamSynchronously(process.getInputStream(), stdOutBuf, true); } } catch (Exception e) { exceptions.add(e); } } }.start(); new Thread(getName()+"-stderr") { public void run() { try { if (logErr) { logOutput("stderr:", process.getErrorStream()); } else { Tools.copyStreamSynchronously(process.getErrorStream(), stdErrBuf, true); } } catch (Exception e) { exceptions.add(e); } } }.start(); Tools.waitForProcess(this, process, command); getLogger().info("Program exited succesfully."); if (stdout.isConnected()) { stdout.deliver(new BufferedFileObject(stdOutBuf.toByteArray())); } if (stderr.isConnected()) { stderr.deliver(new BufferedFileObject(stdErrBuf.toByteArray())); } } catch (IOException e) { throw new UserError(this, e, 310, new Object[] { command, e.getMessage() }); } finally { getLogger().log(Level.WARNING, "com.rapidminer.operator.CommandLineOperator.errors_occurred", new Object[] {exceptions.size(), command}); for (Throwable t : exceptions) { getLogger().log(Level.WARNING, t.toString(), t); } if (!exceptions.isEmpty()) { Throwable t = exceptions.get(0); if (t instanceof OperatorException) { throw (OperatorException)t; } else { throw new UserError(this, t, 310, new Object[] { command, t.getMessage() }); } } } dummyPorts.passDataThrough(); } /** Sends the output to the LogService. */ private void logOutput(String message, InputStream in) throws IOException { BufferedReader bin = new BufferedReader(new InputStreamReader(in)); String line = null; StringBuffer buffer = new StringBuffer(message); while ((line = bin.readLine()) != null) { buffer.append(Tools.getLineSeparator()); buffer.append(line); } logNote(buffer.toString()); } @Override public List<ParameterType> getParameterTypes() { List<ParameterType> types = super.getParameterTypes(); types.add(new ParameterTypeString(PARAMETER_COMMAND, "Command to execute.", false, false)); ParameterTypeBoolean t = new ParameterTypeBoolean(PARAMETER_LOG_STDOUT, "If set to true, the stdout stream of the command is redirected to the logfile.", true); t.registerDependencyCondition(new PortConnectedCondition(this, new PortProvider() { @Override public Port getPort() { return stdout; } }, false, false)); types.add(t); ParameterTypeBoolean e = new ParameterTypeBoolean(PARAMETER_LOG_STDERR, "If set to true, the stderr stream of the command is redirected to the logfile.", true); e.registerDependencyCondition(new PortConnectedCondition(this, new PortProvider() { @Override public Port getPort() { return stderr; } }, false, false)); types.add(e); return types; } }