![]() |
Stellarator-Tools
|
Base class containing a parsed bmw_commandline. More...
Public Member Functions | |
procedure, pass | get_string (this, arg) |
Get the value of an argument as a string. | |
procedure, pass | get_integer (this, arg, default_value) |
Get the value of an argument as an integer. | |
procedure, pass | get_real (this, arg, default_value) |
Get the value of an argument as a Real. | |
GENERIC | get get_string, get_integer, get_real |
procedure, pass | is_flag_set (this, arg) |
Check if a command line argument was set. | |
procedure, pass | flag_requires_value (this, index) |
Check if a command line argument requires a value. | |
procedure, pass | check_arg (this, arg) |
Check if a command line argument is valid. | |
FINAL | bmw_commandline_parser_destruct (this) |
Deconstruct a bmw_commandline_parser_class object. | |
class(bmw_commandline_parser_class) function, pointer | bmw_commandline_parser_construct (parallel) |
Construct a bmw_commandline_parser_class object. | |
Base class containing a parsed bmw_commandline.
Interface for the bmw_commandline_parser constructor.
class (bmw_commandline_parser_class) function, pointer bmw_commandline_parser::bmw_commandline_parser_class::bmw_commandline_parser_construct | ( | class (bmw_parallel_context_class), intent(in) | parallel | ) |
Construct a bmw_commandline_parser_class object.
Allocates memory and initializes a bmw_commandline_parser_class object. The command line is parsed assuming the the flags take the form of -flag=value. If the '=' is missing, it is assumed there is no value. If -h is found, the help text is printed out and the program terminated.
[in] | parallel | bmw_parallel_context_class object instance. |
|
final |
Deconstruct a bmw_commandline_parser_class object.
Deallocates memory and uninitializes a bmw_commandline_parser_class object.
[in,out] | this | A bmw_commandline_parser_class instance. |
procedure, pass bmw_commandline_parser::bmw_commandline_parser_class::check_arg | ( | class (bmw_commandline_parser_class), intent(in) | this, |
character (len=*), intent(in) | arg | ||
) |
Check if a command line argument is valid.
Valid commands are
[in] | this | A bmw_commandline_parser_class instance. |
[in] | arg | A command line argument to check. |
procedure, pass bmw_commandline_parser::bmw_commandline_parser_class::flag_requires_value | ( | class (bmw_commandline_parser_class), intent(in) | this, |
integer, intent(in) | index | ||
) |
Check if a command line argument requires a value.
Command line arguments for
require a value to be set.
[in] | this | A bmw_commandline_parser_class instance. |
[in] | index | A argument string to search for. |
procedure, pass bmw_commandline_parser::bmw_commandline_parser_class::get_integer | ( | class (bmw_commandline_parser_class), intent(in) | this, |
character (len=*), intent(in) | arg, | ||
integer, intent(in) | default_value | ||
) |
Get the value of an argument as an integer.
Searches the parsed command line flags for a matching command like argument. If no matching argument is found, no value was set or the value cannot be converted to an integer, the default value is returned. Command line arguments take the form of -flag.
[in] | this | A bmw_commandline_parser_class instance. |
[in] | arg | A argument string to search for. |
[in] | default_value | Default value in case flag is not set. |
procedure, pass bmw_commandline_parser::bmw_commandline_parser_class::get_real | ( | class (bmw_commandline_parser_class), intent(in) | this, |
character (len=*), intent(in) | arg, | ||
real (rprec), intent(in) | default_value | ||
) |
Get the value of an argument as a Real.
Searches the parsed command line flags for a matching command like argument. If no matching argument is found, no value was set or the value cannot be converted to an integer, the default value is returned. Command line arguments take the form of -flag.
[in] | this | A bmw_commandline_parser_class instance. |
[in] | arg | A argument string to search for. |
[in] | default_value | Default value in case flag is not set. |
procedure, pass bmw_commandline_parser::bmw_commandline_parser_class::get_string | ( | class (bmw_commandline_parser_class), intent(in) | this, |
character (len=*), intent(in) | arg | ||
) |
Get the value of an argument as a string.
Searches the parsed command line flags for a matching command like argument. If no matching argument is found or no value was set, a blank string is returned. command line arguments take the form of -flag.
[in] | this | A bmw_commandline_parser_class instance. |
[in] | arg | A argument string to search for. |
procedure, pass bmw_commandline_parser::bmw_commandline_parser_class::is_flag_set | ( | class (bmw_commandline_parser_class), intent(in) | this, |
character (len=*), intent(in) | arg | ||
) |
Check if a command line argument was set.
Searches the parsed command line flags for a matching command line argument. If no matching argument is found the flag was not set.
[in] | this | A bmw_commandline_parser_class instance. |
[in] | arg | A argument string to search for. |