Package org.apache.commons.cli
Class DefaultParser
- java.lang.Object
-
- org.apache.commons.cli.DefaultParser
-
- All Implemented Interfaces:
CommandLineParser
public class DefaultParser extends java.lang.Object implements CommandLineParser
Default parser.- Since:
- 1.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDefaultParser.BuilderA nested builder class to createDefaultParserinstances using descriptive methods.static classDefaultParser.NonOptionActionEnum representing possible actions that may be done when "non option" is discovered during parsing.
-
Field Summary
Fields Modifier and Type Field Description protected CommandLinecmdThe command-line instance.protected OptioncurrentOptionThe last option parsed.protected java.lang.StringcurrentTokenThe token currently processed.protected java.util.ListexpectedOptsThe required options and groups expected to be found when parsing the command line.protected DefaultParser.NonOptionActionnonOptionActionAction to happen when "non option" token is discovered.protected OptionsoptionsThe current options.protected booleanskipParsingFlag indicating if tokens should no longer be analyzed and simply added as arguments of the command line.protected booleanstopAtNonOptionDeprecated.UsenonOptionActioninstead.
-
Constructor Summary
Constructors Constructor Description DefaultParser()Creates a new DefaultParser instance with partial matching enabled.DefaultParser(boolean allowPartialMatching)Create a new DefaultParser instance with the specified partial matching policy.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddArg(java.lang.String token)Adds token to command lineCommandLine.addArg(String).static DefaultParser.Builderbuilder()Creates a newDefaultParser.Builderto create anDefaultParserusing descriptive methods.protected voidcheckRequiredOptions()Throws aMissingOptionExceptionif all of the required options are not present.protected voidhandleConcatenatedOptions(java.lang.String token)Breakstokeninto its constituent parts using the following algorithm.protected voidhandleUnknownToken(java.lang.String token)Handles an unknown token.CommandLineparse(Options options, java.lang.String[] arguments)Parses the arguments according to the specified options.CommandLineparse(Options options, java.lang.String[] arguments, boolean stopAtNonOption)Parses the arguments according to the specified options.CommandLineparse(Options options, java.lang.String[] arguments, java.util.Properties properties)Parses the arguments according to the specified options and properties.CommandLineparse(Options options, java.lang.String[] arguments, java.util.Properties properties, boolean stopAtNonOption)Parses the arguments according to the specified options and properties.CommandLineparse(Options options, java.util.Properties properties, DefaultParser.NonOptionAction nonOptionAction, java.lang.String... arguments)Parses the arguments according to the specified options and properties.
-
-
-
Field Detail
-
cmd
protected CommandLine cmd
The command-line instance.
-
stopAtNonOption
@Deprecated protected boolean stopAtNonOption
Deprecated.UsenonOptionActioninstead. This field is unused, and left for binary compatibility reasons.Flag indicating how unrecognized tokens are handled.trueto stop the parsing and add the remaining tokens to the args list.falseto throw an exception.
-
nonOptionAction
protected DefaultParser.NonOptionAction nonOptionAction
Action to happen when "non option" token is discovered.- Since:
- 1.10.0
-
currentToken
protected java.lang.String currentToken
The token currently processed.
-
currentOption
protected Option currentOption
The last option parsed.
-
skipParsing
protected boolean skipParsing
Flag indicating if tokens should no longer be analyzed and simply added as arguments of the command line.
-
expectedOpts
protected java.util.List expectedOpts
The required options and groups expected to be found when parsing the command line.
-
-
Constructor Detail
-
DefaultParser
public DefaultParser()
Creates a new DefaultParser instance with partial matching enabled. By "partial matching" we mean that given the following code:{ @code final Options options = new Options(); options.addOption(new Option("d", "debug", false, "Turn on debug.")); options.addOption(new Option("e", "extract", false, "Turn on extract.")); options.addOption(new Option("o", "option", true, "Turn on option with argument.")); }with "partial matching" turned on,-deonly matches the"debug"option. However, with "partial matching" disabled,-dewould enable bothdebugas well asextractoptions.
-
DefaultParser
public DefaultParser(boolean allowPartialMatching)
Create a new DefaultParser instance with the specified partial matching policy. By "partial matching" we mean that given the following code:{ @code final Options options = new Options(); options.addOption(new Option("d", "debug", false, "Turn on debug.")); options.addOption(new Option("e", "extract", false, "Turn on extract.")); options.addOption(new Option("o", "option", true, "Turn on option with argument.")); }with "partial matching" turned on,-deonly matches the"debug"option. However, with "partial matching" disabled,-dewould enable bothdebugas well asextractoptions.- Parameters:
allowPartialMatching- if partial matching of long options shall be enabled
-
-
Method Detail
-
builder
public static DefaultParser.Builder builder()
Creates a newDefaultParser.Builderto create anDefaultParserusing descriptive methods.- Returns:
- a new
DefaultParser.Builderinstance - Since:
- 1.5.0
-
addArg
protected void addArg(java.lang.String token)
Adds token to command lineCommandLine.addArg(String).- Parameters:
token- the unrecognized option/argument.- Since:
- 1.10.0
-
checkRequiredOptions
protected void checkRequiredOptions() throws MissingOptionException
Throws aMissingOptionExceptionif all of the required options are not present.- Throws:
MissingOptionException- if any of the required Options are not present.
-
handleConcatenatedOptions
protected void handleConcatenatedOptions(java.lang.String token) throws ParseException
Breakstokeninto its constituent parts using the following algorithm.- ignore the first character ("-")
- for each remaining character check if an
Optionexists with that id. - if an
Optiondoes exist then add that character prepended with "-" to the list of processed tokens. - if the
Optioncan have an argument value and there are remaining characters in the token then add the remaining characters as a token to the list of processed tokens. - if an
Optiondoes NOT exist ANDstopAtNonOptionIS set then add the special token "--" followed by the remaining characters and also the remaining tokens directly to the processed tokens list. - if an
Optiondoes NOT exist ANDstopAtNonOptionIS NOT set then add that character prepended with "-".
- Parameters:
token- The current token to be burst at the first non-Option encountered.- Throws:
ParseException- if there are any problems encountered while parsing the command line token.
-
handleUnknownToken
protected void handleUnknownToken(java.lang.String token) throws ParseException
Handles an unknown token. If the token starts with a dash an UnrecognizedOptionException is thrown. Otherwise the token is added to the arguments of the command line. If the stopAtNonOption flag is set, this stops the parsing and the remaining tokens are added as-is in the arguments of the command line.- Parameters:
token- the command line token to handle.- Throws:
ParseException- if parsing should fail.- Since:
- 1.10.0
-
parse
public CommandLine parse(Options options, java.util.Properties properties, DefaultParser.NonOptionAction nonOptionAction, java.lang.String... arguments) throws ParseException
Parses the arguments according to the specified options and properties.- Parameters:
options- the specified Optionsproperties- command line option name-value pairsnonOptionAction- seeDefaultParser.NonOptionAction.arguments- the command line arguments- Returns:
- the list of atomic option and value tokens.
- Throws:
ParseException- if there are any problems encountered while parsing the command line tokens.- Since:
- 1.10.0
-
parse
public CommandLine parse(Options options, java.lang.String[] arguments) throws ParseException
Description copied from interface:CommandLineParserParses the arguments according to the specified options.- Specified by:
parsein interfaceCommandLineParser- Parameters:
options- the specified Optionsarguments- the command line arguments- Returns:
- the list of atomic option and value tokens
- Throws:
ParseException- if there are any problems encountered while parsing the command line tokens.
-
parse
public CommandLine parse(Options options, java.lang.String[] arguments, boolean stopAtNonOption) throws ParseException
Description copied from interface:CommandLineParserParses the arguments according to the specified options.- Specified by:
parsein interfaceCommandLineParser- Parameters:
options- the specified Optionsarguments- the command line argumentsstopAtNonOption- iftruean unrecognized argument stops the parsing and the remaining arguments are added to theCommandLines args list. Iffalsean unrecognized argument triggers a ParseException.- Returns:
- the list of atomic option and value tokens
- Throws:
ParseException- if there are any problems encountered while parsing the command line tokens.- See Also:
parse(Options, Properties, NonOptionAction, String[])
-
parse
public CommandLine parse(Options options, java.lang.String[] arguments, java.util.Properties properties) throws ParseException
Parses the arguments according to the specified options and properties.- Parameters:
options- the specified Options.arguments- the command line arguments.properties- command line option name-value pairs.- Returns:
- the list of atomic option and value tokens.
- Throws:
ParseException- if there are any problems encountered while parsing the command line tokens.
-
parse
public CommandLine parse(Options options, java.lang.String[] arguments, java.util.Properties properties, boolean stopAtNonOption) throws ParseException
Parses the arguments according to the specified options and properties.- Parameters:
options- the specified Options.arguments- the command line arguments.properties- command line option name-value pairs.stopAtNonOption- iftruean unrecognized argument stops the parsing and the remaining arguments are added to theCommandLines args list. Iffalsean unrecognized argument triggers a ParseException.- Returns:
- the list of atomic option and value tokens.
- Throws:
ParseException- if there are any problems encountered while parsing the command line tokens.- See Also:
parse(Options, Properties, NonOptionAction, String[])
-
-