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

Cannot parse boolean options #238

Closed
sliekens opened this issue Sep 4, 2015 · 6 comments
Closed

Cannot parse boolean options #238

sliekens opened this issue Sep 4, 2015 · 6 comments

Comments

@sliekens
Copy link

sliekens commented Sep 4, 2015

Version 2.0.261-beta

My option looks like this

[Option('t', "trusted", Default = true, SetName = "noconnectionstring", HelpText = "Specify whether the connection uses integrated security.")]
public bool IntegratedSecurity { get; set; }

No matter what I try, the parser always sets ÌntegratedSecurity to its default value true.

ConsoleApplication.exe -t false
ConsoleApplication.exe -t False
ConsoleApplication.exe -t 0

Even if I remove the part Default = true, I still get value true.

Is this a type conversion bug?

@sliekens
Copy link
Author

sliekens commented Sep 4, 2015

Just a thought, but maybe there should be an extension mechanism for custom type converters. Something along the lines of a custom class that implements a given interface IArgumentConverter<T>.

// namespace CommandLine
interface IArgumentConverter<T>
{
    T ConvertArgument(string argument);
}
// custom namespace
class BooleanConverter : IArgumentConverter<bool>
{
    bool ConvertArgument(string argument)
    {
        return bool.Parse(argument);
    }
}

Then let us inject the type converter using either the Action<ParserSettings> delegate or by setting it on the OptionAttribute directly.

var parser = new Parser(
                parserSettings =>
                {
                    // TypeConverters : IDictionary<Type, IArgumentConverter>
                    parserSettings.TypeConverters[typeof(bool)] = new BooleanConverter();
                });
[Option('t', "trusted", Default = true, ..., TypeConverter = typeof(BooleanConverter))]
public bool IntegratedSecurity { get; set; }

@gsscoder
Copy link
Owner

gsscoder commented Sep 5, 2015

@StevenLiekens, this is covered by a variety of issues. Please check! :)

As in #213, no enhancemente will be added until stable is reached.

@sliekens
Copy link
Author

sliekens commented Sep 5, 2015

Okay but what about the original question? I still can't parse arguments as boolean.

@gsscoder
Copy link
Owner

gsscoder commented Sep 7, 2015

More references: #115 and #133 for example.

The problem is that the parser has its own logic of parsing booleans directly grasped from getopt() \ *nix terminal style.

Having:

class Options {
  [Option('v')]
  public bool Verbose { get; set; }
}

For the moment you can't explictely set Verbose to false. This is done, by design, omitting it:

$ app

But you can enable it explitely:

$ app -v

In fact this kind of options are internally treated as Switch.

Anyway it's possible that after 2.0 reaches stable status, I'll add some pre/post processing machinery that will add allow explicit setting of boolean with syntax like app -v true or using custom tokens like app -v+. (See quoted issues/pr for discussion).

@sliekens
Copy link
Author

sliekens commented Sep 7, 2015

Oh, I get it now. :) Thanks.

@sliekens sliekens closed this as completed Sep 7, 2015
@gsscoder
Copy link
Owner

Perfect! :)

manison added a commit to manison/PdbComparer that referenced this issue Jun 13, 2016
The original solution didn't work because of the way the command line
parser parses the boolean switches, see
gsscoder/commandline#238
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants