vote up 3 vote down star
2

I've done some looking and there are a whole lot of libraries for command line option parsing, but it is difficult to differentiate between them. Does anyone have any experience with any of them? Is one harder/better/faster/easier/whatever than any of the others? Or should I just grow my own?

flag

60% accept rate
Cast my vote for "roll your own." a) You learn from it, b) it's fun, and c) you won't have to worry about portability or depending on someone else's code, and d) you know you'll have all the features you want, and none of the ones you don't. However, I think I will be in the minority. – Chris Lutz Mar 12 at 4:34
1  
@Chris Lutz: unless you roll your own so it adheres very closely to the standard, then you are in danger of producing programs that are irritating to use. Using a standard option parser reduces the learning for everyone else (who uses your program), and usually simplifies maintenance too. – Jonathan Leffler Mar 12 at 5:39

7 Answers

vote up 1 vote down

also there are popt.

link|flag
vote up 3 vote down

Already asked at SO here, and before that here.

link|flag
vote up 5 vote down

boost::program_options is pretty good and has a nice C++ interface that can check that option parameters have a certain type (like 'int') and store them directly into variables.

It also supports to load the "options" from a config file, so you get a config file parser for free. This way you can very easily allow to override all the configuration settings from the command line or add all the command line options to the config file, which makes it very flexible.

link|flag
vote up 1 vote down

I use the system implementation of getopt_long() for most things, however you might need to be more portable which prohibits the use of such POSIX creature comforts.

Here is the standard regarding the POSIX view of command line options if you are in a position where getopt() / getopt_long() are just not available and need to roll your own. You might also want a look at what POSIX has to say about help / option summary displays (I can't find a link to that part of the standard off hand).

Personally, I don't like using programs that do not take --long-options, because remembering the short options is a pain and no two programs use the same.

link|flag
vote up 10 vote down

If you want something completely cross-platform, I've found the Boost::Program_Options library to be very good. There's something of a learning curve to setting it up, but once you master that, it simplifies things greatly.

link|flag
vote up 3 vote down

For many purposes, the GNU getopt() and getopt_long() functions are good choices.

The GNU getopt() is for single-letter option arguments and hews fairly close to the POSIX standard behaviour, and can be persuaded to behave more orthodoxly by setting POSIXLY_CORRECT in the environment. The difference is that GNU getopt() recognizes option arguments after the first non-option argument, and permutes the arguments so that all the option arguments are processed before any of the non-option arguments. This sometimes matters - though the contexts tend to be a little esoteric. There are a few other extra tricks available

The GNU getopt_long() is the best mechanism for dealing with long-options such as --help. It can handle optional arguments, matching single-letter options and all sorts of things.

There are numerous other packages available that handle options in various ways.

(Perl has a plethora of Getopt modules, reflecting how much effort has been put in over the years.)

You may get some extra information from Which Command Line Commands Style Do You Prefer

link|flag
There is only one bad thing about GNU getopt() and it is the license. – unknown (google) Mar 12 at 13:11
Yes - it is at least LGPL these days. It used to be full GPL. You can get non-GNU versions of getopt(). AT&T published the source on UseNet way back, for example. – Jonathan Leffler Mar 12 at 13:36
vote up 0 vote down

if you are using linux/unix then getopt is the option parser for you it. works on almost all flavors of unix and is easy to use

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.