Class CmdLineValueHandler<T>

java.lang.Object
org.tquadrat.foundation.config.cli.CmdLineValueHandler<T>
Type Parameters:
T - The target type.
Direct Known Subclasses:
BooleanValueHandler, DateValueHandler, DocumentValueHandler, EnumValueHandler, ImageValueHandler, SimpleCmdLineValueHandler, StringValueHandler, TimeValueHandler

@ClassVersion(sourceVersion="$Id: CmdLineValueHandler.java 1061 2023-09-25 16:32:43Z tquadrat $") @API(status=STABLE, since="0.1.0") public abstract class CmdLineValueHandler<T> extends Object

The abstract base class for the value handler that takes a String value from the command line, translates it to the target type and sets the value to the property.

To circumvent possible problems with reflection in a modularised context, the handler uses an instance of BiConsumer to set the property; the BiConsumer.accept(Object, Object) method of that instance is called with two arguments:

  1. the name of the property to set
  2. the value for that property

Basically, the implementation of such a value setter function may be implemented in any way, but the annotation processor creates them as simple as possible. To set a value to the attribute m_Value, it would look like

(p,v) -> m_Value = v;

and to add a value to the list attribute m_List, it would be

(p,v) -> m_List.add( v );

That means that the name of the property is ignored.

But customer implementations may use other implementations as well.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: CmdLineValueHandler.java 1061 2023-09-25 16:32:43Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.cli.CmdLineValueHandler"

UML Diagram for "org.tquadrat.foundation.config.cli.CmdLineValueHandler"

UML Diagram for "org.tquadrat.foundation.config.cli.CmdLineValueHandler"
  • Field Details

  • Constructor Details

    • CmdLineValueHandler

      protected CmdLineValueHandler(BiConsumer<String,T> valueSetter)
      Creates a new CmdLineValueHandler instance.
      Parameters:
      valueSetter - The Consumer that places the translated value to the property.
    • CmdLineValueHandler

      protected CmdLineValueHandler(CLIDefinition context, BiConsumer<String,T> valueSetter)
      Creates a new CmdLineValueHandler instance.
      Parameters:
      context - The CLI definition that provides the context for this value handler.
      valueSetter - The Consumer that places the translated value to the property.
  • Method Details

    • getCLIDefinition

      Returns a reference to the context.
      Returns:
      An instance of Optional that holds the CLI definition.
    • getPropertyName

      protected String getPropertyName()
      Returns the name of the property that is the target for the value.
      Returns:
      The property name.
    • getValueSetter

      protected final BiConsumer<String,T> getValueSetter()
      Returns a reference for the value setter.
      Returns:
      The value setter.
    • parseCmdLine

      @MountPoint public int parseCmdLine(Parameters params)
      Parses the given command line snippet and stores the result to the property.
      Note:
      • This method can be overridden, but in most cases, the implementation provided here should be sufficient.
      Parameters:
      params - The command line values to parse.
      Returns:
      The number of values that the method took from the command line.
      Throws:
      CmdLineException - An error occurred when parsing the parameters.
    • setContext

      public final void setContext(CLIDefinition context)
      Sets the CLI definition that provides the context for this value handler.
      Parameters:
      context - The CLI definition.
    • translate

      protected abstract Collection<T> translate(Parameters params) throws CmdLineException
      Translates the command line values that can be referenced via the params argument to the target type.
      Parameters:
      params - The command line values to translate.
      Returns:
      A collection with the result; each entry in the collection corresponds to one value from the command line.
      Throws:
      CmdLineException - The given parameters cannot be parsed to the target type.