Tagged Questions

Boost.Program_options is a C++ library that allows program developers to obtain (name, value) pairs from the user via conventional methods such as command line and config file.

learn more… | top users | synonyms

13
votes
3answers
401 views

Using '--' as end-of-options marker with boost::program_options

The traditional way of indicating the end of options for command line programs is with the option --. How can I get boost::program_options to recognize this as an option and accept the rest of the ...
9
votes
2answers
1k views

boost::program_options bug or feature?

Very simple example: #include <string> #include <boost/program_options.hpp> namespace po = boost::program_options; int main(int argc, char* argv[]) { po::options_description ...
7
votes
3answers
122 views

How do I detect typo with Boost.program_options?

I use boost.program_options library. Consider this simplified case. po::options_description desc("Usage"); desc.add_options() ("uninstall,u", "uninstall program") ("custom,c", ...
7
votes
1answer
384 views

boost::program_options - Is is possible to enforce mandatory flag?

I'm using boost::program_options in my program. I want to make a certain flag mandatory. Is is possible to do this with program_options in a way that it'll enforce this itself? i.e., throw an error ...
7
votes
2answers
410 views

Using boost::program_options

In my program I have a list of pairs - name and size. I want to build this list from the command line interface using boost::program_options. It should look something like this: myProg ...
7
votes
3answers
2k views

When using boost::program_options, how does one set the name of the argument?

When using boost::program_options, how do I set the name of an argument for boost::program_options::value<>()? #include <iostream> #include <boost/program_options.hpp> int main() { ...
6
votes
2answers
358 views

How to get better error messages in Boost program options

In the code below, I used program options to read parameters from command-line or file. In addition, options can be set programatically at runtime through ConfigProxy::setConfig ...
6
votes
2answers
309 views

Building boost::options from a string/boost::any map

I have a map which represents a configuration. It's a map of std::string and boost::any. This map is initialized at the start and I'd like the user to be able to override these options on the ...
6
votes
3answers
1k views

Required and Optional Arguments Using Boost Library Program Options

I'm using Boost Program Options Library to parse the command line arguments. I have the following requirements: Once "help" is provided, all the other options are optional; Once "help" is not ...
6
votes
1answer
669 views

Short options only in boost::program_options

How would one go about specifying short options without their long counterparts in boost? (",w", po::value<int>(), "Perfrom write with N frames") generates this -w [ -- ] arg : Perfrom ...
5
votes
1answer
219 views

Better handling of missing/wrong key in boost::program_options

Is there a way to know which key was involved when a call like the following fails ? boost::program_options::variables_map vm; ... int foo_bar = vm["some_key"].as<int>(); If the key is ...
5
votes
1answer
1k views

Handle complex options with Boost's program_options

I have a program that generates graphs using different multi-level models. Each multi-level model consists of a generation of a smaller seed graph (say, 50 nodes) which can be created from several ...
5
votes
1answer
754 views

Parameters with and without arguments in boost::program_options

I wrote a small app that uses boost::program_options for command-line parsing. I'd like to have some options that set a value if the argument is present, and alternately prints the current value if ...
5
votes
1answer
691 views

Limit the precision on std::cout of default values in boost::options_description

When I construct a boost::options_description instance like options.add_options() ("double_val", value(&config.my_double)->default_value(0.2), "it's a double"); and later want to have the ...
4
votes
1answer
97 views

boost program_options: help vs. meaningful options

Is there an easy way to separate the help-option from the 'real' program options? In fact, is it possible to define a hierarchy of options, a la BNF: options := help_options | program_options ...
4
votes
1answer
73 views

How to have an option enabling other options in Boost Program Options without using variables?

I use program options to parse the command line options of my application. I have several options like -Ox, -Oy, -Oz, ... and I want to have a super option -Oall that enables Ox and Oy and another ...
4
votes
1answer
97 views

How to support commandline syntax “-DEVICE:iphone” in Boost::Program_Options?

The default syntax for Boost::Program_Options is "--DEVICE iphone". How can I support syntax "-DEVICE:iphone" or "-DEVICE=iphone"?
4
votes
3answers
328 views

c++: program settings - boost.PropertyTree or boost.program_options?

I was looking for a solution to store program settings or options or configuration in C++. These could be settings that are exposed in a GUI and need to be saved between runs of my code. In my ...
4
votes
2answers
406 views

Parsing LPTSTR* command line args with boost::program_options

I am having a problem with command line parsing with boost:program_options. The quickest way to explain it is to show the code so: const std::vector<tstring> args; if (ac > 0 && ...
4
votes
1answer
850 views

is there a way to print config file for boost program options

I'm using boost::program_options to get parameters from a config file. i understand that i can create a file by hand and program options will parse it. but i'm looking for a way for the program to ...
4
votes
2answers
938 views

boost::program_options - parsing multiple command line arguments where some are strings including spaces and characters

I want to parse multiple command line arguments using boost::program_options. However, some arguments are strings enclosed in double quotes. This is what I have - void processCommands(int argc, char ...
4
votes
2answers
257 views

boost program_options accept all values after last flag

Is there a way to collect all of the values after a specified argument with boost::program_options? There are two caveats that I need to take care of though, I need to accept unrecognized arguments, ...
4
votes
1answer
340 views

Boost.Program_options fixed number of tokens

Boost.Program_options provides a facility to pass multiple tokens via command line arguments as follows: std::vector<int> nums; po::options_description desc("Allowed options"); ...
4
votes
3answers
1k views

How to accept empty value in boost::program_options

I'm using boost::program_options library to process command line params. I need to accept a file name via -r option, in case if it is empty (-r given without params) I need to use stdin. ...
4
votes
2answers
295 views

how do I get the non-flag and non-option tokens after boost::program_options parses my command line args

In python, I can construct my optparse instance such that it will automatically filter out the options and non-option/flags into two different buckets: (options, args) = parser.parse_args() With ...
4
votes
2answers
506 views

How do you manually insert options into boost.Program_options?

I have an application that uses Boost.Program_options to store and manage its configuration options. We are currently moving away from configuration files and using database loaded configuration ...
3
votes
1answer
220 views

Boost Program Options Syntax

I'm using boost::program_options to read the users' input from the command line argument. It works very nicely and allows me to output helpful usage messages and validate input properly. However, by ...
3
votes
2answers
677 views

boost::program_options config file option with multiple tokens

I can not seem to be able to read from config file multitoken options like I can from command line. What is the syntax for the config file? This is how the option description is added: //parser.cpp ...
3
votes
2answers
103 views

Using boost::program_options with own template class possible?

I'm currently start using boost::program_options for parsing command line options as well as configuration files. Is it possible to use own template classes as option arguments? That means, something ...
3
votes
1answer
537 views

Boost Custom Validator for Enum

I am trying to validate command line input to an Enum that I've defined, but get compiler errors. I have used Handle complex options with Boost's program_options as an example to work from. namespace ...
3
votes
1answer
660 views

boolean options from boost program options

I am using boost program options to get boolean values from command line argument. I would like my argument to be specified as "Y", Yes", "N", "No". Actually my code did it using a temporary string ...
3
votes
2answers
950 views

boost::program_options - how to handle sections in INI file

In a config like below; is there a way to handle individual sections. I am looking for a way to validate individual "server" sections below, in a reliable manner. [basic] number_of_servers=3 ...
3
votes
2answers
327 views

Accepting negative doubles with boost::program_options

I need to be able to have boost::program_options parse an array of doubles that are passed on a command line. For positive doubles, this is no problem, of course (use multitoken with ...
3
votes
1answer
2k views

Problem linking when compliling the boost::program_options example

I am trying to compile the multiple_sources.cpp to compile on my computer. I am running Xubuntu Lucid Lynx fully updated. It will compile without issue with g++ -c multiple_sources.cpp but when I try ...
3
votes
1answer
1k views

boost program_options multiple values problem

So I'm working off one of the examples for Boost program_options library, and I wanted to try setting a default value for one of the multiple-values/ vector-values, but it doesn't seem to work. As I ...
3
votes
1answer
351 views

Can boost::program_options Use A Delimiter Other Than “-”?

I am using boost::program_options like this: namespace po = boost::program_options; po::options_description desc("Options"); desc.add_options() ("help,?", "Show Options") ("capture-file,I", ...
3
votes
1answer
326 views

Reload option values in boost::program_options from new source

I'm just starting to dig into boost::program_options for the first time. I like it quite a bit. However, what I'm trying to accomplish with it doesn't seem to be something its designers have ...
3
votes
2answers
909 views

What is the Preferred Cross-platform 'main' Definition Using boost::program_options?

I'm trying to develop a cross-platform application using C++ with boost. I typically program in a *nix environment, where I've always defined 'main' as follows: int main( const int argc, const ...
2
votes
2answers
51 views

Boost program options allowed set of input values

Is there a way to set an allowed set of input variables for parameters? For example parameter "arg" can have only string values like "cat" and "dog".
2
votes
1answer
72 views

boost::program_options how to reload a value

I would like to reload some values from a configuration file. I know that po::store will not change values if they exist in the variables_map. Is there an alternative that does replace values even if ...
2
votes
2answers
204 views

boost-program-options: notifier for options with no value

One can use notifier for parsed options only if they have value_semantic. What is the best way for no-value options to be automatically handled by the given notifier? The simple approach is to make ...
2
votes
0answers
137 views

Allow only `--option=arg` argument style with boost::program_options

Using boost::program_options, I'd like to allow only --option=arg style for arguments and forbid the space separated --option arg which is sometimes ambiguous when arguments are optional. Looks kind ...
2
votes
2answers
354 views

boost::program_options vector of values with zero_token

I'm trying to get the following syntax parsed with boost::program_options: a) $ a.out verbosity: 0 b) $ a.out -v verbosity: 1 c) $ a.out -v -v verbosity: 2 d) $ a.out -vv verbosity: 2 e) ...
2
votes
2answers
270 views

Integrating 'google test' and 'boost program options'

I have a program that uses google test, and boost program options library for parsing options. The problem is that google test also has it's own option parsers, so I need to filter out before giving ...
2
votes
1answer
206 views

Why does bcp calculate such a large dependency list for Boost program_options?

I'm writing a small program using boost/program_options to handle options from command line. Now I want to distribute my code to systems where in general Boost is not installed. So I used the bcp ...
2
votes
1answer
294 views

boost::program_options: how to get the application name?

Using Boost Program Options, how do you get the string equivalent of argv[0]?
2
votes
2answers
347 views

boost::program_options - does it do an exact string matching for command line options?

There seems to be a problem the way boost::program_options's options_description matching is done. int main(int argc, char* argv[]) { boost::program_options::options_description desc("CmdLine ...
2
votes
1answer
327 views

Parsing positional arguments

Consider the following trivial program adopted from the boost program options examples #include <boost/program_options.hpp> #include <boost/version.hpp> #include <iostream> int ...
2
votes
1answer
143 views

Using Boost.Program_options in modular program

The code I use consists of set of modules, compiled to individual libraries. Libraries in turn, are linked in different combinations to build different binaries. So for, it's pretty ordinal. ...
2
votes
2answers
535 views

Can Boost Program_options separate comma separated argument values

If my command line is: > prog --mylist=a,b,c Can Boost's program_options be setup to see three distinct argument values for the mylist argument? I have configured program_options as: namespace ...

1 2