Class MapVariableIterator

  • All Implemented Interfaces:
    AdditionalInformationHandler, CleanUpHandler, Destroyable, GlobalInfoSupporter, LoggingLevelHandler, LoggingSupporter, OptionHandler, QuickInfoSupporter, ShallowCopySupporter<Actor>, SizeOfHandler, Stoppable, StoppableWithFeedback, VariablesInspectionHandler, VariableChangeListener, Actor, ErrorHandler, InputConsumer, OutputProducer, Serializable, Comparable

    public class MapVariableIterator
    extends AbstractTransformer
    Iterates over the keys of the incoming map and sets variables for current key and variable. The incoming map is forwarded each time.

    Input/output:
    - accepts:
       java.util.Map
    - generates:
       java.util.Map


    -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: MapIterator
     
    -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
     
    -regexp <adams.core.base.BaseRegExp> (property: regExp)
        The regular expression to match the map keys against.
        default: .*
        more: https://docs.oracle.com/javase/tutorial/essential/regex/
        https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html
     
    -skip-non-primitive <boolean> (property: skipNonPrimitive)
        If enabled, all values get skipped that are not primitive objects.
        default: false
     
    -var-key <adams.core.VariableName> (property: varKey)
        The variable to store the map key in.
        default: key
     
    -var-value <adams.core.VariableName> (property: varValue)
        The variable to store the map value in.
        default: value
     
    Author:
    fracpete (fracpete at waikato dot ac dot nz)
    See Also:
    Serialized Form
    • Field Detail

      • m_RegExp

        protected BaseRegExp m_RegExp
        the regular expression that the map keys must match.
      • m_SkipNonPrimitive

        protected boolean m_SkipNonPrimitive
        whether to skip non-primitive values.
      • m_VarKey

        protected VariableName m_VarKey
        the variable for the keys.
      • m_VarValue

        protected VariableName m_VarValue
        the variable for the values.
      • m_CurrentKeys

        protected transient List<Object> m_CurrentKeys
        the current keys to broadcast.
      • m_CurrentMap

        protected transient Map m_CurrentMap
        the current map.
    • Constructor Detail

      • MapVariableIterator

        public MapVariableIterator()
    • Method Detail

      • reset

        protected void reset()
        Resets the scheme.
        Overrides:
        reset in class AbstractActor
      • accepts

        public Class[] accepts()
        Returns the class that the consumer accepts.
        Returns:
        the Class of objects that can be processed
      • generates

        public Class[] generates()
        Returns the class of objects that it generates.
        Returns:
        the Class of the generated tokens
      • setRegExp

        public void setRegExp​(BaseRegExp value)
        Sets the regular expressions to use.
        Parameters:
        value - the regular expressions
      • getRegExp

        public BaseRegExp getRegExp()
        Returns the regular expressions in use.
        Returns:
        the regular expressions
      • regExpTipText

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

        public void setSkipNonPrimitive​(boolean value)
        Sets whether to skip non-primitive values.
        Parameters:
        value - true if to skip
      • getSkipNonPrimitive

        public boolean getSkipNonPrimitive()
        Returns whether to skip non-primitive values.
        Returns:
        true if to skip
      • skipNonPrimitiveTipText

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

        public void setVarKey​(VariableName value)
        Sets the variable to store the key in.
        Parameters:
        value - the variable
      • getVarKey

        public VariableName getVarKey()
        Returns the variable to store the key in.
        Returns:
        the variable
      • varKeyTipText

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

        public void setVarValue​(VariableName value)
        Sets the variable to store the value in.
        Parameters:
        value - the variable
      • getVarValue

        public VariableName getVarValue()
        Returns the variable to store the value in.
        Returns:
        the variable
      • varValueTipText

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

        protected String doExecute()
        Executes the flow item.
        Specified by:
        doExecute in class AbstractActor
        Returns:
        null if everything is fine, otherwise error message