Differences
This shows you the differences between two versions of the page.
research:software:reflex:documentation:command_line_argument_handling [2007/08/13 19:57] – created admin | research:software:reflex:documentation:command_line_argument_handling [2007/08/13 19:58] (current) – admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Command line arguments handling ====== | ||
+ | Here is how argument handling works in Reflex as of today. | ||
+ | |||
+ | |||
+ | Argument handlers register to the argument manager. Each handler specifies which arguments it can handle by implementing the '' | ||
+ | * The tags that identify the argument. Tags must start with a dash (' | ||
+ | * The syntax and description of the argument. Both are human-readable strings that are presented to the user when argument usage information is requested. The syntax shows how the argument is used (eg. '' | ||
+ | * The number (0..n) of parameters expected after the argument tag. Parameters are separated by space characters, If the argument can handle a variable number of arguments, it should specify one parameter, and when processing it, split it with the '' | ||
+ | |||
+ | The argument manager parses all command line arguments before passing them to the handlers for processing. The order in which the arguments are processed does not depend on their order on the command line, but rather on the priority of the argument handlers, which is indicated by the '' | ||
+ | |||
+ | Example argument handler: | ||
+ | <code java> | ||
+ | public class CmdLineConfigHandler implements ArgumentHandler | ||
+ | { | ||
+ | public static final Argument USE_ARG = new Argument( | ||
+ | " | ||
+ | | ||
+ | | ||
+ | " | ||
+ | |||
+ | public static final Argument USE_CLASS_ARG = new Argument( | ||
+ | " | ||
+ | 1, | ||
+ | | ||
+ | " | ||
+ | |||
+ | public Argument[] supportedArgs() | ||
+ | { | ||
+ | return new Argument[]{USE_ARG, | ||
+ | } | ||
+ | |||
+ | public int getPriority() | ||
+ | { | ||
+ | return PRIORITY_META; | ||
+ | } | ||
+ | |||
+ | public void handleArgs(Map< | ||
+ | { | ||
+ | // The following method retrieves the unique parameter to the USE_ARG argument, | ||
+ | // and splits it with the default delimiter | ||
+ | String[] thePaths = USE_ARG.getSplitValues(aArguments); | ||
+ | if (thePaths != null) | ||
+ | { | ||
+ | // (...) | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ |