GithubHelp home page GithubHelp logo

Comments (4)

brecko avatar brecko commented on July 21, 2024 1

Thanks. I did a little bit of a hybrid of what you specified. I will still contend that some more gracefull way of handling this would be nice for when there are required parameters such as a check to see if a parameter exists or not such as p.Options.Exists(['v','version', 'foobar'...]).

from fluent-command-line-parser.

siywilliams avatar siywilliams commented on July 21, 2024

Hi @brecko

I currently use

fclp.Setup<bool>('v', "version").Callback(b => PrintVersion());

or

bool showVersion;

fclp.Setup<bool>('v', "version").Callback(b => showVersion = b).SetDefault(false);

if(showVersion){
   PrintVersion()
}

from fluent-command-line-parser.

brecko avatar brecko commented on July 21, 2024

Thanks. I will give it a try. I did everything other than setdefault(false). Not sure it matters, but all my parameters are required so when I perform the parse, it shows I have errors. This is when only -v or --version was used.

UPDATE:
I have the following:
var p = new FluentCommandLineParser {IsCaseSensitive = false};
p.Setup(arg => arg.CalculatorFile)
.As(ApplicationArguments.CalculatorSwitchShort, ApplicationArguments.CalculatorSwitchLong)
.WithDescription("Some description")
.Required();
...
about 5-6 more that are required. help | h | ? is not required

...
var result = p.Parse(args);
if (result.HelpCalled)
return;
if (result.HasErrors)
{
Console.WriteLine(result.ErrorText);
Console.WriteLine("For command line argument help: [-? | -h | --help]\n\n");
Console.WriteLine("Exiting analysis.");
return;
}

So I cannot use either of your suggestions for .
Something that just came to mind is I might need to do yours, test it for version and if so, display it and exit else use what I have now for the rest. But it would be nice, if I didn't have to...
Thanks!!

from fluent-command-line-parser.

siywilliams avatar siywilliams commented on July 21, 2024

SetDefaultensures that a value is set for that option even if one isn't provided, it just makes it more explicit.

Yeah the result contains errors because your other options have been setup as Required().** Not much that can be done about that unfortunately, however I would check help, then version, then for any errors such as:

var p = new FluentCommandLineParser { IsCaseSensitive = false };
p.Setup(arg => arg.ShowVersion)
 .As('v', "version")
 .SetDefault(false);

var result = p.Parse(args);
if (result.HelpCalled) {
   // show help
}
else if(p.Object.ShowVersion) {
   // show version
}
else if (result.HasErrors) {
   // show errors
}

from fluent-command-line-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.