177 char const *
const *
const argv,
180 version_check_dev_decision{version_updates},
181 subcommands{std::move(subcommands)}
185 throw design_error{(
"The application name must only contain alpha-numeric characters or '_' and '-' "
186 "(regex: \"^[a-zA-Z0-9_-]+$\").")};
189 for (
auto & sub : this->subcommands)
193 throw design_error{
"The subcommand name must only contain alpha-numeric characters or '_' and '-' "
194 "(regex: \"^[a-zA-Z0-9_-]+$\")."};
207 if (version_check_future.
valid())
235 template <
typename option_type, val
idator val
idator_type = detail::default_val
idator<option_type>>
238 && std::invocable<validator_type, option_type>
244 validator_type option_validator = validator_type{})
246 if (sub_parser !=
nullptr)
247 throw design_error{
"You may only specify flags for the top-level parser."};
249 verify_identifiers(short_id, long_id);
253 [=, &value](
auto & f)
255 f.add_option(value, short_id, long_id, desc, spec, option_validator);
278 throw design_error(
"A flag's default value must be false.");
280 verify_identifiers(short_id, long_id);
284 [=, &value](
auto & f)
286 f.add_flag(value, short_id, long_id, desc, spec);
311 template <
typename option_type, val
idator val
idator_type = detail::default_val
idator<option_type>>
314 && std::invocable<validator_type, option_type>
317 validator_type option_validator = validator_type{})
319 if (sub_parser !=
nullptr)
320 throw design_error{
"You may only specify flags for the top-level parser."};
322 if (has_positional_list_option)
323 throw design_error{
"You added a positional option with a list value before so you cannot add "
324 "any other positional options."};
326 if constexpr (detail::is_container_option<option_type>)
327 has_positional_list_option =
true;
332 [=, &value](
auto & f)
334 f.add_positional_option(value, desc, option_validator);
407 if (parse_was_called)
408 throw design_error(
"The function parse() must only be called once!");
412 if (std::holds_alternative<detail::format_parse>(format) && !subcommands.empty() && sub_parser ==
nullptr)
414 throw too_few_arguments{detail::to_string(
"You either forgot or misspelled the subcommand! Please specify"
415 " which sub-program you want to use: one of ",
417 ". Use -h/--help for more information.")};
420 if (app_version.decide_if_check_is_performed(version_check_dev_decision, version_check_user_decision))
424 version_check_future = app_version_prom.
get_future();
425 app_version(std::move(app_version_prom));
434 parse_was_called =
true;
441 if (sub_parser ==
nullptr)
443 throw design_error(
"No subcommand was provided at the construction of the argument parser!");
475 template <
typename id_type>
476 requires std::same_as<id_type, char> || std::constructible_from<std::string, id_type>
bool
479 if (!parse_was_called)
480 throw design_error{
"You can only ask which options have been set after calling the function `parse()`."};
484 char_or_string_t short_or_long_id = {
id};
486 if constexpr (!std::same_as<id_type, char>)
488 if (short_or_long_id.size() == 1)
490 throw design_error{
"Long option identifiers must be longer than one character! If " + short_or_long_id
491 +
"' was meant to be a short identifier, please pass it as a char ('') not a string"
497 throw design_error{
"You can only ask for option identifiers that you added with add_option() before."};
500 auto end_of_options =
std::find(cmd_arguments.
begin(), cmd_arguments.
end(), end_of_options_indentifier);
501 auto option_it = detail::format_parse::find_option_id(cmd_arguments.
begin(), end_of_options, short_or_long_id);
502 return option_it != end_of_options;
519 f.add_section(title, spec);
535 f.add_subsection(title, spec);
554 f.add_line(text, is_paragraph, spec);
583 f.add_list_item(key, desc, spec);
641 bool parse_was_called{
false};
644 bool has_positional_list_option{
false};
653 friend struct ::seqan3::detail::test_accessor;
659 std::regex app_name_regex{
"^[a-zA-Z0-9_-]+$"};
679 detail::format_short_help,
680 detail::format_version,
683 detail::format_copyright
684> format{detail::format_help{{},
false}};
687 std::set<std::string> used_option_ids{
"h",
"hh",
"help",
"advanced-help",
"export-help",
"version",
"copyright"};
724 void init(
int argc,
char const *
const *
const argv)
728 format = detail::format_short_help{};
732 bool special_format_was_set{
false};
734 for (
int i = 1, argv_len = argc; i < argv_len; ++i)
740 sub_parser = std::make_unique<argument_parser>(
info.
app_name +
"-" + arg,
747 if (arg ==
"-h" || arg ==
"--help")
749 format = detail::format_help{subcommands,
false};
750 init_standard_options();
751 special_format_was_set =
true;
753 else if (arg ==
"-hh" || arg ==
"--advanced-help")
755 format = detail::format_help{subcommands,
true};
756 init_standard_options();
757 special_format_was_set =
true;
759 else if (arg ==
"--version")
761 format = detail::format_version{};
762 special_format_was_set =
true;
764 else if (arg.substr(0, 13) ==
"--export-help")
770 export_format = arg.
substr(14);
774 if (argv_len <= i + 1)
775 throw too_few_arguments{
"Option --export-help must be followed by a value."};
776 export_format = {argv[i + 1]};
779 if (export_format ==
"html")
780 format = detail::format_html{subcommands};
781 else if (export_format ==
"man")
782 format = detail::format_man{subcommands};
787 throw validation_error{
"Validation failed for option --export-help: "
788 "Value must be one of [html, man]"};
789 init_standard_options();
790 special_format_was_set =
true;
792 else if (arg ==
"--copyright")
794 format = detail::format_copyright{};
795 special_format_was_set =
true;
797 else if (arg ==
"--version-check")
800 throw too_few_arguments{
"Option --version-check must be followed by a value."};
804 if (arg ==
"1" || arg ==
"true")
805 version_check_user_decision =
true;
806 else if (arg ==
"0" || arg ==
"false")
807 version_check_user_decision =
false;
809 throw validation_error{
"Value for option --version-check must be true (1) or false (0)."};
820 if (!special_format_was_set)
821 format = detail::format_parse(argc, cmd_arguments);
825 void init_standard_options()
828 add_list_item(
"\fB-h\fP, \fB--help\fP",
"Prints the help page.");
829 add_list_item(
"\fB-hh\fP, \fB--advanced-help\fP",
"Prints the help page including advanced options.");
830 add_list_item(
"\fB--version\fP",
"Prints the version information.");
831 add_list_item(
"\fB--copyright\fP",
"Prints the copyright/license information.");
833 "Export the help page information. Value must be one of [html, man].");
836 "Whether to check for the newest app version. Default: true.");
844 template <
typename id_type>
845 bool id_exists(id_type
const &
id)
847 if (detail::format_parse::is_empty_id(
id))
861 void verify_identifiers(
char const short_id,
std::string const & long_id)
865 if (id_exists(short_id))
866 throw design_error(
"Option Identifier '" +
std::string(1, short_id) +
"' was already used before.");
867 if (id_exists(long_id))
868 throw design_error(
"Option Identifier '" + long_id +
"' was already used before.");
869 if (long_id.
length() == 1)
870 throw design_error(
"Long IDs must be either empty, or longer than one character.");
871 if (!allowed(short_id) && !
is_char<
'\0'>(short_id))
872 throw design_error(
"Option identifiers may only contain alphanumeric characters, '_', or '@'.");
873 if (long_id.
size() > 0 &&
is_char<
'-'>(long_id[0]))
874 throw design_error(
"First character of long ID cannot be '-'.");
880 if (!(allowed(c) || is_char<
'-'>(c)))
882 "Long identifiers may only contain alphanumeric characters, '_', '-', or '@'.");
884 if (detail::format_parse::is_empty_id(short_id) && detail::format_parse::is_empty_id(long_id))
885 throw design_error(
"Option Identifiers cannot both be empty.");
The SeqAn command line parser.
Definition: argument_parser.hpp:148
void add_positional_option(option_type &value, std::string const &desc, validator_type option_validator=validator_type{})
Adds a positional option to the seqan3::argument_parser.
Definition: argument_parser.hpp:315
void add_flag(bool &value, char const short_id, std::string const &long_id, std::string const &desc, option_spec const spec=option_spec::standard)
Adds a flag to the seqan3::argument_parser.
Definition: argument_parser.hpp:271
bool is_option_set(id_type const &id) const
Checks whether the option identifier (id) was set on the command line by the user.
Definition: argument_parser.hpp:477
void add_option(option_type &value, char const short_id, std::string const &long_id, std::string const &desc, option_spec const spec=option_spec::standard, validator_type option_validator=validator_type{})
Adds an option to the seqan3::argument_parser.
Definition: argument_parser.hpp:239
argument_parser(std::string const app_name, int const argc, char const *const *const argv, update_notifications version_updates=update_notifications::on, std::vector< std::string > subcommands={})
Initializes an seqan3::argument_parser object from the command line arguments.
Definition: argument_parser.hpp:175
argument_parser & operator=(argument_parser &&)=default
Defaulted.
~argument_parser()
The destructor.
Definition: argument_parser.hpp:204
argument_parser_meta_data info
Aggregates all parser related meta data (see seqan3::argument_parser_meta_data struct).
Definition: argument_parser.hpp:637
argument_parser(argument_parser &&)=default
Defaulted.
void parse()
Initiates the actual command line parsing.
Definition: argument_parser.hpp:405
argument_parser()=delete
Deleted.
void add_line(std::string const &text, bool is_paragraph=false, option_spec const spec=option_spec::standard)
Adds an help page text line to the seqan3::argument_parser.
Definition: argument_parser.hpp:549
void add_list_item(std::string const &key, std::string const &desc, option_spec const spec=option_spec::standard)
Adds an help page list item (key-value) to the seqan3::argument_parser.
Definition: argument_parser.hpp:578
void add_section(std::string const &title, option_spec const spec=option_spec::standard)
Adds an help page section to the seqan3::argument_parser.
Definition: argument_parser.hpp:514
void add_subsection(std::string const &title, option_spec const spec=option_spec::standard)
Adds an help page subsection to the seqan3::argument_parser.
Definition: argument_parser.hpp:530
argument_parser & operator=(argument_parser const &)=default
Defaulted.
argument_parser & get_sub_parser()
Returns a reference to the sub-parser instance if subcommand parsing was enabled.
Definition: argument_parser.hpp:439
argument_parser(argument_parser const &)=default
Defaulted.
Argument parser exception that is thrown whenever there is an design error directed at the developer ...
Definition: exceptions.hpp:151
Argument parser exception thrown when too few arguments are provided.
Definition: exceptions.hpp:79
option_spec
Used to further specify argument_parser options/flags.
Definition: auxiliary.hpp:248
@ standard
The default were no checking or special displaying is happening.
Definition: auxiliary.hpp:249
constexpr auto is_alnum
Checks whether c is a alphanumeric character.
Definition: predicate.hpp:197
constexpr auto is_char
Checks whether a given letter is the same as the template non-type argument.
Definition: predicate.hpp:63
Checks whether the the type can be used in an add_(positional_)option call on the argument parser.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
update_notifications
Indicates whether application allows automatic update notifications by the seqan3::argument_parser.
Definition: auxiliary.hpp:267
@ off
Automatic update notifications should be disabled.
@ on
Automatic update notifications should be enabled.
Checks if program is run interactively and retrieves dimensions of terminal (Transferred from seqan2)...
Forward declares seqan3::detail::test_accessor.
Auxiliary for pretty printing of exception messages.
Provides the version check functionality.