Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command options are parsed as subcommand if "required()" is not set #1144

Open
ngiangiax opened this issue Mar 24, 2025 · 7 comments
Open

Command options are parsed as subcommand if "required()" is not set #1144

ngiangiax opened this issue Mar 24, 2025 · 7 comments

Comments

@ngiangiax
Copy link

If a command option is not required and if the option matches the name of another command, the option is not parsed properly.

@phlptp
Copy link
Collaborator

phlptp commented Mar 24, 2025

Do you have an example of what the issue is, not entirely sure I follow what is going on?

@ngiangiax
Copy link
Author

ngiangiax commented Mar 25, 2025

In my specific implementation I have two subcommands:

  • "ls": similar to linux command ls, lists all the file in a directory. It supports optional "options", such as the name of file or directory to be listed. It can also be run without any argument, to print the content of current directory.
  • "config": custom command.

I also have a directory called "config". When I run ls config the cli interprets "config" as the config command, and not as an argument of the ls command. To print the content of the directory, I have to run the command ls ./config

I hope it is a bit clearer now, please contact me for more information.

INFO: I am using v2.5.0

NOTE: After investigation, I think that the issue is originating in this part of the code:

CLI11_INLINE bool App::_parse_subcommand(std::vector<std::string> &args) {
    if(_count_remaining_positionals(/* required */ true) > 0) {

I also noticed that the issue disappears if the previous code is changed to:

CLI11_INLINE bool App::_parse_subcommand(std::vector<std::string> &args) {
    if(_count_remaining_positionals(/* required */ false) > 0) {

@phlptp
Copy link
Collaborator

phlptp commented Mar 25, 2025

Any way you can post the code setup for this, or a minimal example?

Changing that particular line of code would break a bunch of situation, so isn't really a viable change.
There are various modifiers that might work in that situation but I need to see what your setup is.

@ngiangiax
Copy link
Author

    auto *ls_cmd = p_cli->add_subcommand("ls", "List files");
    ls_cmd->add_flag("-l", "Long format");
    ls_cmd->add_option("filepath", "Path to list");
    ls_cmd->callback([this, ls_cmd, &p_thread_id]() {
                         List(ls_cmd, &m_io, m_cwd);
                         p_thread_id = std::nullopt;
                     });

This is how the ls command is defined. If this is not enough for your investigation I'll try providing a minimal example

@phlptp
Copy link
Collaborator

phlptp commented Mar 25, 2025

Do you have other subcommands? how many, are there cases when multiple subcommands will be used in the same command line?

@ngiangiax
Copy link
Author

ngiangiax commented Mar 25, 2025

I just found that the same issue was already fixed here: #1022

subcommand_fallthrough(false); modifier fixes it!

I guess we can close the issue! Many thanks for your support

@ngiangiax
Copy link
Author

Do you have other subcommands? how many, are there cases when multiple subcommands will be used in the same command line?

We have a few other subcommands, like "cd" "cp" "mv". For the moment multiple commands in the same line is not supported

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants