Class ArrayProcess

  • All Implemented Interfaces:
    AdditionalInformationHandler, CleanUpHandler, Destroyable, GlobalInfoSupporter, LoggingLevelHandler, LoggingSupporter, OptionHandler, Pausable, QuickInfoSupporter, ShallowCopySupporter<Actor>, SizeOfHandler, Stoppable, StoppableWithFeedback, VariablesInspectionHandler, FlowPauseStateListener, VariableChangeListener, AtomicExecution, Actor, ActorHandler, ActorWithConditionalEquivalent, ActorWithTimedEquivalent, ControlActor, ErrorHandler, Flushable, InputConsumer, MutableActorHandler, OptionalStopRestrictor, OutputProducer, PauseStateHandler, StopRestrictor, SubFlowWrapUp, Serializable, Comparable

    public class ArrayProcess
    extends SubProcess
    Applies all sub-actors to each of the array elements.

    -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel)
        The logging level for outputting errors and debugging output.
        default: WARNING
     
    -name <java.lang.String> (property: name)
        The name of the actor.
        default: ArrayProcess
     
    -annotation <adams.core.base.BaseAnnotation> (property: annotations)
        The annotations to attach to this actor.
        default: 
     
    -skip <boolean> (property: skip)
        If set to true, transformation is skipped and the input token is just forwarded 
        as it is.
        default: false
     
    -stop-flow-on-error <boolean> (property: stopFlowOnError)
        If set to true, the flow execution at this level gets stopped in case this
        actor encounters an error; the error gets propagated; useful for critical
        actors.
        default: false
     
    -silent <boolean> (property: silent)
        If enabled, then no errors are output in the console; Note: the enclosing
        actor handler must have this enabled as well.
        default: false
     
    -finish-before-stopping <boolean> (property: finishBeforeStopping)
        If enabled, actor first finishes processing all data before stopping.
        default: false
     
    -stopping-timeout <int> (property: stoppingTimeout)
        The timeout in milliseconds when waiting for actors to finish (<= 0 for
        infinity; see 'finishBeforeStopping').
        default: -1
        minimum: -1
     
    -actor <adams.flow.core.Actor> [-actor ...] (property: actors)
        All the actors that define this sequence.
        default:
     
    -array-class <adams.core.base.BaseClassname> (property: arrayClass)
        The class to use for the array; if none is specified, the class of the first
        element is used.
        default:
     
    -store-element-index <boolean> (property: storeElementIndex)
        If enabled, the element index (1-based) of the current element being processed
        gets stored in the specified variable.
        default: false
     
    -element-index-variable <adams.core.VariableName> (property: elementIndexVariable)
        The variable to store the element index in.
        default: variable
     
    Author:
    fracpete (fracpete at waikato dot ac dot nz)
    See Also:
    Serialized Form
    • Field Detail

      • BACKUP_OUTPUT

        public static final String BACKUP_OUTPUT
        the key for storing the output token in the backup.
        See Also:
        Constant Field Values
      • m_ArrayClass

        protected BaseClassname m_ArrayClass
        the class for the array.
      • m_StoreElementIndex

        protected boolean m_StoreElementIndex
        whether to store the index of the element currently being processed in a variable.
      • m_ElementIndexVariable

        protected VariableName m_ElementIndexVariable
        the variable to store the element index in.
      • m_OutputToken

        protected Token m_OutputToken
        the output array.
    • Constructor Detail

      • ArrayProcess

        public ArrayProcess()
    • Method Detail

      • setArrayClass

        public void setArrayClass​(BaseClassname value)
        Sets the class for the array.
        Parameters:
        value - the classname, use empty string to use class of first element
      • getArrayClass

        public BaseClassname getArrayClass()
        Returns the class for the array.
        Returns:
        the classname, empty string if class of first element is used
      • arrayClassTipText

        public String arrayClassTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setStoreElementIndex

        public void setStoreElementIndex​(boolean value)
        Sets whether to store the element index in a variable.
        Parameters:
        value - true if the element index should get stored in variable
      • getStoreElementIndex

        public boolean getStoreElementIndex()
        Returns whether to store the element index in a variable.
        Returns:
        true if the element index gets stored in variable
      • storeElementIndexTipText

        public String storeElementIndexTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setElementIndexVariable

        public void setElementIndexVariable​(VariableName value)
        Sets the variable name to store the current element index in.
        Parameters:
        value - the variable name
      • getElementIndexVariable

        public VariableName getElementIndexVariable()
        Returns the variable name to store the current element index in.
        Returns:
        the variable name
      • elementIndexVariableTipText

        public String elementIndexVariableTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • accepts

        public Class[] accepts()
        Returns the class that the consumer accepts.
        Specified by:
        accepts in interface InputConsumer
        Overrides:
        accepts in class SubProcess
        Returns:
        the Class of objects that can be processed
      • input

        public void input​(Token token)
        The method that accepts the input token and then processes it.
        Specified by:
        input in interface InputConsumer
        Overrides:
        input in class SubProcess
        Parameters:
        token - the token to accept and process
      • hasPendingOutput

        public boolean hasPendingOutput()
        Checks whether there is pending output to be collected after executing the flow item.
        Specified by:
        hasPendingOutput in interface OutputProducer
        Overrides:
        hasPendingOutput in class SubProcess
        Returns:
        true if there is pending output
      • wrapUp

        public void wrapUp()
        Cleans up after the execution has finished.
        Specified by:
        wrapUp in interface Actor
        Overrides:
        wrapUp in class Sequence