我正在开发现有程序的更新。 我正在用boost :: program_options替换Posix的getopt_long()。 但是我的工作并没有像我应该的那样工作:我希望阅读如下的论点:
-server=www.example.com
-c config.txt
我尝试了很多来自boost :: program_options :: command_line_style的可能性,但我找不到能够使行为等于getopt_long的组合。
我发现了参数:
-server=www.example.com
我需要旗帜:
command_line_style::allow_long_disguise | command_line_style::long_allow_adjacent
但是我的创建标志有问题:
-c config.txt
我发现了旗帜:
command_line_style::allow_short | command_line_style::allow_dash_for_short | command_line_style::short_allow_next
给我几乎我想要的东西。几乎是因为:
ProgramOptionsParserTest.cpp:107: Failure
Value of: params.config
Actual: " config.txt"
Expected: expectedParams.config
Which is: "config.txt"
所以在使用boost :: algorithm :: trim()之后,它将是我想要的。
所以我的问题是:是否可以处理像这样的论点 -c config.txt 使用boost :: program_options但没有boost :: algorithm :: trim()?
修改 我注意到上面的标志不适用于未注册的参数。我已经注册了选项:
programOptionsDescription.add_options()
("help,h", "display help message")
("config,c", value<std::string>(), "use configfile")
("server,s", value<std::string>(), "server")
("ipport,p", value<uint16_t>(), "server port");
但是当我使用未注册的选项时(是的,我有basic_command_line_parser :: allow_unregistered()):
-calibration=something
我明白了:
the argument ('alibration=something') for option '-config' is invalid
我的问题是:如何使用boost :: program_options处理使用getopt_long的参数?
答案 0 :(得分:1)
如果使用boost::program_options,则需要使用符号'='来正确解析参数。如果它丢失,它将抛出异常。顺便说一句,boost::property_tree也是解析配置文件的一个非常好的选择。 代码:
#include <iostream>
#include <boost/propery_tree.hpp>
#include <boost/propery_tree/ini_parse.hpp>
int main()
{
string filename("test.conf");
boost::property_tree::ptree parser;
boost::property_tree::ini_parser::read_ini(filename, parser);
const string param_1 = parser.get<string>("DEFAULT.-server");
const string param_2 = parser.get<string>("DEFAULT.-c");
cout << param_1 << ' ' << param_2 << endl;
return 0;
}
“DEFAULT”是配置文件的部分名称。你可以尝试一下。