|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.Operator
public abstract class Operator
An operator accepts an array of input objects and generates an array of output objects that can be processed by other operators. Both must implement the IOObject interface. This is the superclass which must be extended by all Yale operators. Please refer to the YALE tutorial for a detailed description how to implement your operator.
As default, operators consume their input by using it. This is often a useful
behavior especially in complex experiments. For example, a learning operator
consumes an example set to produce a model and so does a cross validation to
produce a performance value of the learning method. To receive the input
IOObject
of a certain class simply use getInput(Class class)
.
This method delivers the first object of the desired class which is in the
input of this operator. The delivered object is consumed afterwards and thus
is removed from input. If the operator alters this object, it should return
the altered object as output again. Therefore, you have to add the object to
the output array which is delivered by the apply()
method of the
operator. You also have to declare it in getOutputClasses()
. All
input objects which are not used by your operator will be automatically
passed to the next operators.
In some cases it would be useful if the user can define if the input object
should be consumed or not. For example, a validation chain like cross
validation should estimate the performance but should also be able to return
the example set which is then used to learn the overall model. Operators can
change the default behavior for input consumation and a parameter will be
automatically defined and queried. The default behavior is defined in the
method getInputDescription(Class cls)
and should be overriden in
these cases. Please note that input objects with a changed input description
must not be defined in getOutputClasses()
and must not be returned
at the end of apply. Both is automatically done with respect to the value of
the automatically created parameter. Please refer to the Javadoc comments of
this method for further explanations.
OperatorChain
Field Summary | |
---|---|
private int |
applyCount
Number of times the operator was applied. |
private boolean[] |
breakPoint
Indicates if before / within / after this operator a breakpoint is set. |
private java.lang.Thread |
breakpointThread
The thread which runs this operator. |
private boolean |
enabled
Indicates if this operator is enabled. |
private java.util.List<java.lang.String> |
errorList
The list which stores the errors of this operator (parameter not set, wrong children number, wrong IO). |
private Experiment |
experiment
The experiment the operator belongs to. |
private IOContainer |
inputContainer
Its input as set by the apply method. |
private long |
loopStartTime
System time when the current loop of execution started. |
private java.lang.String |
name
Name of the operators (for logging). |
private OperatorDescription |
operatorDescription
The operator description of this operator (icon, classname, description, ...). |
private Parameters |
parameters
Parameters for this Operator. |
private OperatorChain |
parent
Its parent, if part of an operator chain. |
private long |
startTime
System time when execution started. |
private java.lang.String |
userDescription
A user defined description for this operator instance. |
private java.util.Map<java.lang.String,Value> |
valueMap
The values for this operator. |
Constructor Summary | |
---|---|
Operator(OperatorDescription description)
Creates an unnamed operator. |
Method Summary | ||
---|---|---|
void |
addError(java.lang.String message)
Adds an error message. |
|
void |
addValue(Value value)
Adds an implementation of Value. |
|
void |
addWarning(java.lang.String message)
Adds a warning message to the error list. |
|
abstract IOObject[] |
apply()
Implement this method in subclasses. |
|
IOContainer |
apply(IOContainer input)
Applies the operator. |
|
int |
checkDeprecations()
Will count an the number of deprecated operators, i.e. the operators which getDeprecationInfo() method does not return null. |
|
java.lang.Class[] |
checkIO(java.lang.Class[] input)
Subclasses will throw an exception if something isn't ok. |
|
int |
checkProperties()
Will count an error if a non optional property has no default value and is not defined by user. |
|
void |
clearErrorList()
Clears the list of errors. |
|
Operator |
cloneOperator(java.lang.String name)
Performs a deep clone on the most parts of this operator. |
|
private static java.lang.String |
createDescriptionFromXML(org.w3c.dom.Element element)
|
|
java.lang.String |
createExperimentTree(int indent)
Returns this operator's name and class. |
|
protected java.lang.String |
createExperimentTree(int indent,
java.lang.String selfPrefix,
java.lang.String childPrefix,
Operator markOperator,
java.lang.String mark)
Returns this operator's name and class. |
|
static Operator |
createFromXML(org.w3c.dom.Element element,
Experiment experiment)
|
|
java.lang.String |
createMarkedExperimentTree(int indent,
java.lang.String mark,
Operator markOperator)
Returns this operator's name and class. |
|
private static java.lang.Object[] |
createParameterFromXML(org.w3c.dom.Element element)
|
|
private static java.lang.Object[] |
createParameterListFromXML(org.w3c.dom.Element element)
|
|
protected void |
delete()
Deletes this operator removing it from the name map. |
|
private java.lang.String |
expandString(java.lang.String str)
Replaces %n with the name of this operator %c with the class of this operator %a with the number of times the operator was applied %b with the number of times the operator was applied plus one (a shortcut for %p[1]) %p[number] with the number of times the operator was applied plus number %t with the system time %% with % Returns null if str is null. |
|
void |
experimentFinished()
Called at the end of the experiment. |
|
void |
experimentStarts()
Called when the experiment starts. |
|
boolean |
getAddOnlyAdditionalOutput()
Indicates how additional output should be added to the IOContainer. |
|
int |
getApplyCount()
Returns the number of times this operator was already applied. |
|
java.lang.Class[] |
getDeliveredOutputClasses()
Returns the classes that are guaranteed to be returned by apply(). |
|
java.lang.String |
getDeprecationInfo()
Returns null if this operator is not deprecated. |
|
java.lang.Class[] |
getDesiredInputClasses()
Returns the classes that are needed as input. |
|
java.util.List |
getErrorList()
Returns a List of Strings containing error messages. |
|
Experiment |
getExperiment()
Returns the experiment of this operator. |
|
protected java.lang.String |
getInnerOperatorsXML(java.lang.String indent)
Writes the XML representation of the inner operators. |
|
IOContainer |
getInput()
Returns the complete input. |
|
protected
|
getInput(java.lang.Class<T> cls)
Returns an IOObject of class cls. |
|
protected
|
getInput(java.lang.Class<T> cls,
int nr)
Returns the nr-th IOObject of class cls. |
|
abstract java.lang.Class[] |
getInputClasses()
Returns the classes that are needed as input. |
|
InputDescription |
getInputDescription(java.lang.Class inputClass)
The default implementation returns an input description that consumes the input IOObject without a user parameter. |
|
protected IOContainer |
getIOContainerForInApplyLoopBreakpoint()
Returns the intermediate results of an in-apply-loop which will be displayed in case of a BreakpointListener.BREAKPOINT_WITHIN . |
|
private IODescription |
getIODescription()
If you find the getInputClasses() and getOuputClasses() methods for some reason not useful, you may override this method. |
|
java.lang.String |
getName()
Returns the name of the operator. |
|
int |
getNumberOfSteps()
Returns the number of steps (e.g. loops) the operator performs, e.g. 10 for a tenfold cross validation. |
|
java.lang.String |
getOperatorClassName()
Returns the "class name" of this operator from the operator description of the operator. |
|
OperatorDescription |
getOperatorDescription()
Returns the operator description of this operator. |
|
abstract java.lang.Class[] |
getOutputClasses()
Returns the classes that are guaranteed to be returned by apply() as additional output. |
|
java.lang.Object |
getParameter(java.lang.String key)
Returns a single parameter retrieved from the Parameters of this
Operator. |
|
boolean |
getParameterAsBoolean(java.lang.String key)
Returns a single named parameter and casts it to boolean. |
|
java.awt.Color |
getParameterAsColor(java.lang.String key)
Returns a single named parameter and casts it to Color. |
|
double |
getParameterAsDouble(java.lang.String key)
Returns a single named parameter and casts it to double. |
|
java.io.File |
getParameterAsFile(java.lang.String key)
Returns a single named parameter and casts it to File. |
|
int |
getParameterAsInt(java.lang.String key)
Returns a single named parameter and casts it to int. |
|
java.lang.String |
getParameterAsString(java.lang.String key)
Returns a single named parameter and casts it to String. |
|
java.util.List |
getParameterList(java.lang.String key)
Returns a single named parameter and casts it to List. |
|
Parameters |
getParameters()
Returns a collection of all parameters of this operator. |
|
ParameterType |
getParameterType(java.lang.String name)
Returns the parameter type with the given name. |
|
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
|
OperatorChain |
getParent()
Returns the parent of this operator which must be an operator chain. |
|
long |
getStartTime()
Returns the system time when the operator was started. |
|
java.lang.String |
getStatus()
Returns human readable status information. |
|
java.lang.String |
getUserDescription()
The user specified comment for this operator. |
|
double |
getValue(java.lang.String key)
Returns the value of the Value with the given key. |
|
java.util.Collection<Value> |
getValues()
Returns all Values sorted by key. |
|
java.lang.String |
getXML(java.lang.String indent)
Returns the XML representation of this operator. |
|
private IOContainer |
handleAdditionalOutput(IOContainer container,
IOObject[] additional)
The method appends the given additional IOObjects to the container. |
|
boolean |
hasBreakpoint()
Returns true iff this operator has a breakpoint at any possible position. |
|
boolean |
hasBreakpoint(int position)
Returns true iff a breakpoint is set at the given position |
|
protected boolean |
hasInput(java.lang.Class<? extends IOObject> cls)
Returns true if this operator has an input object of the desired class. |
|
void |
inApplyLoop()
Should be called if this operator performs a loop (for the loop time resetting used for Value creation used by DataTables). |
|
private java.lang.String |
indent(int indent)
Returns a whitespace with length indent. |
|
boolean |
isEnabled()
Returns true if this operator is enabled. |
|
boolean |
isParameterSet(java.lang.String key)
Returns true iff the parameter with the given name is set. |
|
void |
logMessage(java.lang.String message,
int verbosityLevel)
Convenience method for logging a message prefixed by the operator name. |
|
void |
performAdditionalChecks()
This method is invoked during the validation checks. |
|
private void |
processBreakpoint(IOContainer container,
int breakpointType)
|
|
void |
register(Experiment experiment,
java.lang.String name)
Registers this operator in an experiment. |
|
void |
remove()
Removes this operator from its parent. |
|
void |
rename(java.lang.String name)
Renames this operator updating the name map. |
|
private java.lang.String |
replaceMacros(java.lang.String value)
Replaces existing macros in the given value string by the macro values defined for the experiment. |
|
void |
resume()
This method should only be called by the command line breakpoint listener to resume the experiment after a breakpoint. |
|
void |
setBreakpoint(int position,
boolean on)
Sets or clears a breakpoint at the given position. |
|
void |
setEnabled(boolean enabled)
Sets the activation mode. |
|
protected void |
setExperiment(Experiment experiment)
Sets the experiment of this operator. |
|
protected void |
setInput(IOContainer input)
ATTENTION: Use this method only if you are ABSOLUTELY sure what you are doing! |
|
void |
setListParameter(java.lang.String key,
java.util.List list)
Sets the given parameter list to the Parameters object of this operator. |
|
private void |
setName(java.lang.String name)
Sets the name of the operator. |
|
void |
setOperatorParameters(org.w3c.dom.Element element)
Sets all parameters of this operator (including inner operators and their parameters). |
|
void |
setParameter(java.lang.String key,
java.lang.String value)
Sets the given single parameter to the Parameters object of this operator. |
|
void |
setParameters(Parameters parameters)
Sets all parameters of this operator. |
|
void |
setParent(OperatorChain parent)
Sets the enclosing operator chain. |
|
void |
setUserDescription(java.lang.String description)
Sets the user specified comment for this operator. |
|
private void |
stop()
|
|
java.lang.String |
toString()
Returns the name. |
|
void |
writeXML(java.io.PrintWriter out,
java.lang.String indent)
Writes the XML representation of this operator. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private boolean[] breakPoint
private java.lang.Thread breakpointThread
private boolean enabled
private java.lang.String name
private java.lang.String userDescription
private Experiment experiment
private OperatorChain parent
private IOContainer inputContainer
private int applyCount
private long startTime
private long loopStartTime
private Parameters parameters
private java.util.Map<java.lang.String,Value> valueMap
private java.util.List<java.lang.String> errorList
private OperatorDescription operatorDescription
Constructor Detail |
---|
public Operator(OperatorDescription description)
Creates an unnamed operator. This operator must be registered in an
experiment by using the method register(Experiment, String)
.
Subclasses must pass the given description object to this
super-constructor (i.e. invoking super(OperatorDescription)). They might
also add additional values for experiment logging.
NOTE: the preferred way for operator creation is using one of the factory
methods of OperatorService
.
Method Detail |
---|
public final OperatorDescription getOperatorDescription()
public final java.lang.String getOperatorClassName()
public final void register(Experiment experiment, java.lang.String name)
public final Experiment getExperiment()
protected void setExperiment(Experiment experiment)
private void setName(java.lang.String name)
public java.lang.String getName()
public final void rename(java.lang.String name)
public void setUserDescription(java.lang.String description)
public java.lang.String getUserDescription()
public final java.lang.String getDeprecationInfo()
public final void setParent(OperatorChain parent)
public final OperatorChain getParent()
public void remove()
protected void delete()
public void setEnabled(boolean enabled)
public boolean isEnabled()
public java.lang.String getStatus()
public int getApplyCount()
public Operator cloneOperator(java.lang.String name)
public abstract IOObject[] apply() throws OperatorException
OperatorException
public abstract java.lang.Class[] getInputClasses()
getOutputClasses()
and
apply()
if this is necessary. This default behavior can be
changed by overriding getInputDescription(Class)
. Subclasses
which implement this method should not make use of parameters since this
method is invoked by getParameterTypes(). Therefore, parameters are not
fully available at this point of time and this might lead to exceptions.
Please use InputDescriptions instead.
public abstract java.lang.Class[] getOutputClasses()
getInputDescription(Class)
and can be changed by
overwriting this method. Objects which are not consumed must not be
defined as additional output in this method. May be null or an empy array
(no additional output is produced).
public final java.lang.Class[] getDesiredInputClasses()
getInputClasses()
.
public final java.lang.Class[] getDeliveredOutputClasses()
public InputDescription getInputDescription(java.lang.Class inputClass)
public int getNumberOfSteps()
private IODescription getIODescription()
public java.lang.Class[] checkIO(java.lang.Class[] input) throws IllegalInputException, WrongNumberOfInnerOperatorsException
IllegalInputException
WrongNumberOfInnerOperatorsException
public void performAdditionalChecks() throws UserError
UserError
public int checkProperties()
public int checkDeprecations()
getDeprecationInfo()
method does not return null. Returns
the total number of deprecations.
private void stop() throws ExperimentStoppedException
ExperimentStoppedException
public final IOContainer apply(IOContainer input) throws OperatorException
OperatorException
public final void resume()
private void processBreakpoint(IOContainer container, int breakpointType) throws ExperimentStoppedException
ExperimentStoppedException
private final IOContainer handleAdditionalOutput(IOContainer container, IOObject[] additional)
getAddOnlyAdditionalOutput()
in order
to decide if simply a new IOContainer should be created from the
additional output objects or if these objects should be added to the
given container (default).
public boolean getAddOnlyAdditionalOutput()
protected <T extends IOObject> T getInput(java.lang.Class<T> cls) throws MissingIOObjectException
MissingIOObjectException
protected <T extends IOObject> T getInput(java.lang.Class<T> cls, int nr) throws MissingIOObjectException
MissingIOObjectException
protected boolean hasInput(java.lang.Class<? extends IOObject> cls)
public IOContainer getInput()
getInput(Class)
. However, some
operator chains must handle their inner input and have to use the
IOContainer directly.
protected void setInput(IOContainer input)
public void experimentStarts()
public void experimentFinished()
public void setBreakpoint(int position, boolean on)
position
- One out of BREAKPOINT_BEFORE and BREAKPOINT_AFTERpublic boolean hasBreakpoint()
public boolean hasBreakpoint(int position)
position
- One out of BREAKPOINT_BEFORE and BREAKPOINT_AFTERpublic void inApplyLoop() throws ExperimentStoppedException
getIOContainerForInApplyLoopBreakpoint()
in case of a BreakpointListener.BREAKPOINT_WITHIN
. Subclasses should invoke this method in case
of a loop in their method apply().
ExperimentStoppedException
protected IOContainer getIOContainerForInApplyLoopBreakpoint()
BreakpointListener.BREAKPOINT_WITHIN
.
public void addValue(Value value)
public final double getValue(java.lang.String key)
public java.util.Collection<Value> getValues()
public Parameters getParameters()
getParameters
in interface ConfigurationListener
public void setParameters(Parameters parameters)
setParameters
in interface ConfigurationListener
public void setParameter(java.lang.String key, java.lang.String value)
setListParameter(String, List)
should be used.
public void setListParameter(java.lang.String key, java.util.List list)
setParameter(String, String)
should be used.
public java.lang.Object getParameter(java.lang.String key) throws UndefinedParameterError
Parameters
of this
Operator.
UndefinedParameterError
public boolean isParameterSet(java.lang.String key) throws UndefinedParameterError
UndefinedParameterError
public java.lang.String getParameterAsString(java.lang.String key) throws UndefinedParameterError
UndefinedParameterError
public int getParameterAsInt(java.lang.String key) throws UndefinedParameterError
UndefinedParameterError
public double getParameterAsDouble(java.lang.String key) throws UndefinedParameterError
UndefinedParameterError
public boolean getParameterAsBoolean(java.lang.String key)
public java.util.List getParameterList(java.lang.String key) throws UndefinedParameterError
UndefinedParameterError
public java.awt.Color getParameterAsColor(java.lang.String key) throws UndefinedParameterError
UndefinedParameterError
public java.io.File getParameterAsFile(java.lang.String key) throws UndefinedParameterError
Experiment.resolveFileName(String)
.
UndefinedParameterError
private java.lang.String expandString(java.lang.String str)
private java.lang.String replaceMacros(java.lang.String value)
MacroHandler
of the Experiment
.
These macros might have been defined with help of a MacroDefinitionOperator
.
If any exception would be thrown it is catched and just the input string is returned.
TODO: allow macros for numerical and other parameter types.
public java.util.List<ParameterType> getParameterTypes()
public ParameterType getParameterType(java.lang.String name)
public void writeXML(java.io.PrintWriter out, java.lang.String indent) throws java.io.IOException
java.io.IOException
public java.lang.String getXML(java.lang.String indent)
protected java.lang.String getInnerOperatorsXML(java.lang.String indent)
private static java.lang.String createDescriptionFromXML(org.w3c.dom.Element element) throws XMLException
XMLException
private static java.lang.Object[] createParameterFromXML(org.w3c.dom.Element element) throws XMLException
XMLException
private static java.lang.Object[] createParameterListFromXML(org.w3c.dom.Element element) throws XMLException
XMLException
public static Operator createFromXML(org.w3c.dom.Element element, Experiment experiment) throws XMLException
XMLException
public void setOperatorParameters(org.w3c.dom.Element element) throws XMLException
XMLException
public void clearErrorList()
addError(String)
public void addError(java.lang.String message)
getErrorList()
public void addWarning(java.lang.String message)
getErrorList()
public java.util.List getErrorList()
addError(String)
public long getStartTime()
public void logMessage(java.lang.String message, int verbosityLevel)
LogService
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String createExperimentTree(int indent)
public java.lang.String createMarkedExperimentTree(int indent, java.lang.String mark, Operator markOperator)
protected java.lang.String createExperimentTree(int indent, java.lang.String selfPrefix, java.lang.String childPrefix, Operator markOperator, java.lang.String mark)
private java.lang.String indent(int indent)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |