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.
3
votes
1answer
55 views
Why do I always get default values when passing positional arguments?
I'm trying to familiarize myself with boost::program_options, and I'm running into a problem with positional arguments.
Here's my main function, where I set options passed through the command line. ...
0
votes
0answers
30 views
Why can't I use the << operator with the value extracted from this variables_map?
I'm familiarizing myself with boost::program_options (and C++ in general). I wrote the function below, but I can't quite understand the error I'm getting. Here's the code (note that po is an alias ...
1
vote
1answer
83 views
Why is this use of the [] operator causing a compiler error? [closed]
I wrote this quick function to get familiar with boost::program_options. Please note that po is a namespace alias, defined thus: namespace po = boost::program_options.
int ...
0
votes
1answer
29 views
No arguments default behavior with Boost.Program_options?
I am using Boost::Program_options to parse my command line and adapted some code from the tutorial as following:
try {
po::options_description desc("Allowed options");
desc.add_options()
...
0
votes
1answer
25 views
Boost Program Options is silently ignoring unknown value tokens. why?
I'm using Boost Program Options to parse CLI.
The problem I'm facing is that if there is any token in CLI without '-' or '--' in front of it, the library silently ignores it instead of throwing ...
5
votes
1answer
123 views
How to display commandline operand description in --help output
I am using Boost.program_options to parse commandlines for my implementation of POSIX utilities. As a simple example, take cmp.
Now I would like to have an extra argument --help which shows a ...
5
votes
1answer
92 views
Handling '-' with boost.program_options
Before you say OVERKILL, I don't care.
How can I make Boost.program_options handle the required cat option -?
I have
// visible
po::options_description options("Options");
...
1
vote
1answer
91 views
Boost.Program_Options: When <bool> is specified as a command-line option, what are valid command-line parameters?
Given the following simple use of Boost.Program_Options:
boost::program_options::options_description options("Options");
options.add_options()
("bool_flag,b", ...
1
vote
0answers
65 views
Sets of mutually exclusive options in boost program options
My program (prog.exe) supports the following four flags: -P, -p , -b and -s. However:
-b and -p must be specified together, constitute a set, and have numeric values e.g. -b 42
-s cannot be ...
4
votes
1answer
141 views
boost::program_options: parameters with a fixed and a variable token?
Is it possible to use parameters of this kind with boost::program_options?
program -p1 123 -p2 234 -p3 345 -p12 678
i.e., is it possible to specify the parameter name with a first token (e.g. ...
3
votes
1answer
54 views
boost::program_options: how to ignore unknown parameters?
In the boost::program_options library, I cannot understand how to allow the user to pass a parameter which has not been added through add_options().
I would like it to be just ignored, instead of ...
2
votes
1answer
71 views
How to implement subcommands using Boost.Program_options?
I'd like to implement subcommands to my program. I also need the ability to have different argument options for different subcommands. What's the best way to do this using Boost.Program_options?
...
0
votes
0answers
74 views
How can the boost program options library be used to parse a config file with repeated sections?
How can a file like this be parsed, especially in the Devices section?
Also, does boost handle the input stream, or does that have be handled by additional code?
[Configuration]
IPAddress=192.168.1.1
...
1
vote
2answers
127 views
How to solve “boost::bad_any_cast: failed conversion using boost::any_cast” when using boost program options?
//Using boost program options to read command line and config file data
#include <boost/program_options.hpp>
using namespace std;
using namespace boost;
namespace po = ...
5
votes
1answer
84 views
Does boost::program_options support requiring one of a series of alternatives?
I'm using the boost::program_options to specify the arguments to my C++ application. Is there a way to specify that one argument is required from a set of alternatives?
<application> [--one ...
2
votes
1answer
53 views
Boost Program_options config file comments
I have a program that reads a large number of variables from a configuration file using boost::program_options. The configuration file is working and reading the values, however since there are many ...
0
votes
2answers
113 views
Read one parameter from config file where there are more parameters, with boost program_options
I have a cfg file as the following:
parameter1="hello"
parameter2=22
parameter3=12
Using boost_program to read all the parameters works fine with this code:
po::options_description ...
7
votes
1answer
336 views
Boost parse_config_file, empty key value
I am using Boost program_options to parse a config file in the standard way as
shown in the multiple_sources.cpp example file of program_options.
ifstream ini_file("config.ini");
...
0
votes
1answer
48 views
boost::program_options crashes on help when implicit_value used somewhere else
I have the following code snippet to accept runtime program options. Everything works well as long as I don't have --help on the command line. On invoking --help I receive
malloc: * error for object ...
2
votes
2answers
72 views
boost::program_options for single-byte variables
*emphasized text*How can I use Boost program options to accept single-byte variables from the command line?
Command line parameters of --id1=1 --id2=1 results in values of id1=49 (or '1', 0x31) and ...
0
votes
2answers
59 views
Compiling program with CMake and Boost - compiles and links, but bad output and segfaults when run
I'm having an issue when compiling a program with CMake 2.8.9 and Boost 1.49, on Ubuntu 12.10 (libboost installed via repos). Currently, the program is just some shared libs and an executable (which ...
1
vote
2answers
124 views
Is it possible to use Boost Program Options without RTTI?
I would like to disable RTTI in a project of mine. However, this project uses Boost Program Options which itself depends on Boost Any which does not support -fno-rtti.
I was wondering if there was ...
4
votes
2answers
196 views
Linking to boost::program_options does not work properly
The following library files exist:
cls /usr/local/Cellar/boost/1.51.0/lib $ ls libboost_program*
libboost_program_options-mt.a libboost_program_options-mt.dylib
I include the following header ...
8
votes
0answers
311 views
boost::program_options: undocumented “*” feature discovered, now need custom validator that writes to a map
I recently discovered an undocumented feature of boost::program_options, namely that it accepts "*" as a special wildcard that allows declaration of a group of options with the same prefix, like this:
...
4
votes
1answer
169 views
boost::program_options gives malloc error
I have the following toy program that gives errors with the MacPorts gcc on OSX 10.6
#include <boost/program_options.hpp>
namespace po = boost::program_options;
#include <iostream>
using ...
1
vote
3answers
117 views
Change value semantics in boost::program_options after add_options(). I.e. default value
I have stumbled upon problem defined in the title. I have an application that creates an instance of options_description then uses add_options() on it.
Pretty much like in the example:
...
2
votes
1answer
234 views
boost program options: does custom validator require overloading operator>>?
In the example (regex.cpp), the author of the library created a custom struct (magic_number) and a validate function for this struct to show how custom struct can be integrated into program options. ...
1
vote
1answer
72 views
Another boost error
On this code I get the enourmous error
static void ParseTheCommandLine(int argc, char *argv[])
{
int count;
int seqNumber;
namespace po = boost::program_options;
std::string appName = ...
0
votes
1answer
89 views
Get a string from the command line when using boost program_options
I am using the boost program_options library to process command line and configuration file data, but it is not clear to me how to get the required string from the processed data.
How do I get the ...
4
votes
1answer
163 views
Want to allow options to be specified multiple times when using boost program options. Right now I get multiple occurrences
I am using boost program_options 1.50.0
I want to ALLOW the following for my program foobar
foobar --debug 2 --debug 3
From the boost program_options code, there is an example regex.cpp that shows ...
0
votes
1answer
212 views
parse custom objects through config file/command line using boost program options
So I have just started adding option support to my code. I can either do it myself or use boost's program options. The only thing that holds me back from using boost's is yet another dependency that ...
4
votes
1answer
141 views
what can and can't I do with boost.program_options?
I currently use some old C library for getting program options and would like to replace that with some proper C++ (mainly to become independent of that library, which is a real burden). I was looking ...
1
vote
1answer
510 views
boost::program_options and multiple sections in ini-file
I'm trying to get boost::program_options to read a ini file with multiple sections:
[slave]
address=localhost
port=1111
[slave]
address=192.168.0.1
port=2222
Is there any solution?
Thanks in ...
4
votes
2answers
351 views
boost::program_options : iterating over and printing all options
I have recently started to use boost::program_options and found it to be highly convenient. That said, there is one thing missing that I was unable to code myself in a good way:
I would like to ...
0
votes
1answer
201 views
Boost boost_program_options-gcc41-mt-1_39.a undefined symbol errors while doing static linking
While trying to link boost program option library statically in my code I am getting below error while linker try to link it.
gmake[1]: Leaving directory `tools'
g++ -rdynamic -g -o test test.o ...
5
votes
2answers
128 views
Grouping boost::program_options together into mandatory groups
I am using boost::program_options to handle command line parameters to a program. In the program below I would like group algo, exchanges and admin_port together such that they should all be provided ...
8
votes
1answer
375 views
boost::program_options hangs on the arm “sometimes”
Currently I am using boost::program_options to parse a configuration file on the BeagleBoard (ARM-based processor). My program is multi-threaded and linked against the boost 1.45 multithreaded ...
3
votes
1answer
322 views
How do I specify a default value for vector<string> in boost::program_options
I do want to give a default value for the positional parameter as in the comment in the code, but the compiler complains. The code as it is compiles fine. I use boost 1.46.1 and g++
int main(int ...
2
votes
1answer
227 views
boost::program_options working with -p but not --param
I am using boost::program_options to parse argv. I expect both -c and--config
boost::program_options::options_description description("Utility");
description.add_options()
("help,h", "display ...
1
vote
1answer
145 views
Boost program_options with composing() and implicit_value() are not “composed”
I am having a problem with boost program_options (v1_49) in the case of an option defined as composing() and also implicit(). My intent is to implement a -D option similar to the way perl does, so ...
2
votes
2answers
219 views
How does one extract the sequence of parsed options using Boost Program Options?
I'm building a graph generator using Boost Graph and Program Options. There are, for example, two types of components C and W, each with 1 source, 1 sink and some additional parameters to specify ...
5
votes
1answer
187 views
boost::program_options: How to specify a command without “--” or “-”
I'm using boost::program_options to implement a command-line utility with this syntax:
myutil command [--in file_name] [---out file_name]
where 'command' is mandatory, and is one of the following:
...
1
vote
2answers
182 views
Boost Program Options optional argument precedence
The application has two options: a and file. file is a positional option. Both a and file have an argument of type string, which can be omitted. (I have set an implicit empty string for both).
The ...
1
vote
1answer
2k views
Parsing a configuration file with boost::program_options
Good day,
i wrote a class to parse a configuration file via boost::program_options. Here is what I have (shortened):
namespace nsProOp = boost::program_options;
nsProOp::variables_map m_variableMap;
...
2
votes
0answers
125 views
boost program options choices
Is there a simple way to check if the argument of an option is inside a set of predefined choices? "Simple" here means without defining an ad-hoc class.
Suppose I have the option --myoption which ...
1
vote
1answer
776 views
Boost program options - get all entries in section
According to documentation I can parse config files in style :
[main section]
string = hello world.
[foo]
message = Hi !
But I need to parse list of plugins :
[plugins]
somePlugin.
...
0
votes
3answers
208 views
using boost::program_options as static members of a class
Basically it is the following code, which cannot pass compiler (g++)
#include <boost/program_options.hpp>
#include <iostream>
using std::cout;
using std::endl;
namespace po = ...
4
votes
2answers
603 views
Boost Program Options Add Options Syntax
I am writing a program that uses Boost's Program Options library and I noticed the following syntax that has haunted me since I saw it:
desc.add_options()
("help","produce help message")
...
1
vote
1answer
191 views
How to handle multiple syntax command line arguments using boost.program_options
Consider a utility which can be used in different modes, like:
utility.exe --mode x (one list of arguments expected)
utility.exe --mode y (different list of arguments expected)
How can i write code ...
0
votes
1answer
58 views
Is there an equivalent of Boost.Program_options in lua? [closed]
I'd like to be able to take program options from the command line and from a file.
If there is no close equivalent, what is the common way to make config files?
I like the boost.po but I don't like ...
