|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.Operator
edu.udo.cs.yale.operator.CommandLineOperator
public class CommandLineOperator
This operator executes a system command. The command and all its arguments
are specified by the parameter command
. The standard output
stream and the error stream of the process can be redirected to the logfile.
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.
The method
Runtime.exec(String)
is used to execute the command. Please
note, that this (Java) method parses the string into tokens before it is
executed. These tokens are not 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.
Field Summary | |
---|---|
private static java.lang.Class[] |
INPUT_CLASSES
|
private static java.lang.Class[] |
OUTPUT_CLASSES
|
Constructor Summary | |
---|---|
CommandLineOperator(OperatorDescription description)
|
Method Summary | |
---|---|
IOObject[] |
apply()
Implement this method in subclasses. |
java.lang.Class[] |
getInputClasses()
no input |
java.lang.Class[] |
getOutputClasses()
no output |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
private void |
logOutput(java.lang.String message,
java.io.InputStream in)
Sends the output to the LogService. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final java.lang.Class[] INPUT_CLASSES
private static final java.lang.Class[] OUTPUT_CLASSES
Constructor Detail |
---|
public CommandLineOperator(OperatorDescription description)
Method Detail |
---|
public IOObject[] apply() throws OperatorException
Operator
apply
in class Operator
OperatorException
private void logOutput(java.lang.String message, java.io.InputStream in) throws java.io.IOException
java.io.IOException
public java.lang.Class[] getInputClasses()
getInputClasses
in class Operator
public java.lang.Class[] getOutputClasses()
getOutputClasses
in class Operator
public java.util.List<ParameterType> getParameterTypes()
Operator
getParameterTypes
in class Operator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |