C++:Boost program_options:多个参数列表
C++: Boost program_options: Multiple lists of arguments
我目前正在使用 boost::program_options
。我的程序应该将任意数量的任意长度的 'lists' 作为参数(除其他外......)。例如,用户应该可以调用
./myprogram -list item1 item2 item3 -list item1 item2 -list item1 item2
显然,我不想得到一个 list/vector 一个接一个的所有项目,但是(在这种情况下)三个 lists/vectors (或者,例如,一个包含元素的向量的向量)每个列表有两个或三个项目(每个项目应该是一个字符串,但我想这无关紧要)。
正如我之前所说,列表的数量(以及每个列表的项目数量!)应该是任意的。
我怎样才能用 boost::program_options
做到这一点?
无需大量额外代码即可完成此操作。秘诀是将解析步骤与存储步骤分开,正如 this answer.
中所做的那样
当用户提供选项时,解析器将 return 一个包含 key/value 结构的容器。如果一个选项被多次提交,那么容器将为每个选项提交一个单独的条目。扫描特定选项并根据需要组织其值非常简单。
这是一个在单独的行上打印出每个输入多令牌选项的示例:
#include <iostream>
#include <string>
#include <vector>
#include <boost/program_options.hpp>
namespace po = boost::program_options;
int main(int argc, char *argv[]) {
// Define a multi-token option.
po::options_description desc("Allowed options");
desc.add_options()
("list", po::value<std::vector<std::string>>()->multitoken(), "multiple values");
// Just parse the options without storing them in a map.
po::parsed_options parsed_options = po::command_line_parser(argc, argv)
.options(desc)
.run();
// Build list of multi-valued option instances. We iterate through
// each command-line option, whether it is repeated or not. We
// accumulate the values for our multi-valued option in a
// container.
std::vector<std::vector<std::string>> lists;
for (const po::option& o : parsed_options.options) {
if (o.string_key == "list")
lists.push_back(o.value);
}
// If we had other normal options, we would store them in a map
// here. In this demo program it isn't really necessary because
// we are only interested in our special multi-valued option.
po::variables_map vm;
po::store(parsed_options, vm);
// Print out the multi-valued option, each separate instance on its
// own line.
for (size_t i = 0; i < lists.size(); ++i) {
for (size_t j = 0; j < lists[i].size(); ++j)
std::cout << lists[i][j] << ' ';
std::cout << '\n';
}
return 0;
}
这是一个示例调用 (live at coliru):
$ ./po --list 1 2 3 --list foo bar --list how now brown cow
1 2 3
foo bar
how now brown cow
我目前正在使用 boost::program_options
。我的程序应该将任意数量的任意长度的 'lists' 作为参数(除其他外......)。例如,用户应该可以调用
./myprogram -list item1 item2 item3 -list item1 item2 -list item1 item2
显然,我不想得到一个 list/vector 一个接一个的所有项目,但是(在这种情况下)三个 lists/vectors (或者,例如,一个包含元素的向量的向量)每个列表有两个或三个项目(每个项目应该是一个字符串,但我想这无关紧要)。
正如我之前所说,列表的数量(以及每个列表的项目数量!)应该是任意的。
我怎样才能用 boost::program_options
做到这一点?
无需大量额外代码即可完成此操作。秘诀是将解析步骤与存储步骤分开,正如 this answer.
中所做的那样当用户提供选项时,解析器将 return 一个包含 key/value 结构的容器。如果一个选项被多次提交,那么容器将为每个选项提交一个单独的条目。扫描特定选项并根据需要组织其值非常简单。
这是一个在单独的行上打印出每个输入多令牌选项的示例:
#include <iostream>
#include <string>
#include <vector>
#include <boost/program_options.hpp>
namespace po = boost::program_options;
int main(int argc, char *argv[]) {
// Define a multi-token option.
po::options_description desc("Allowed options");
desc.add_options()
("list", po::value<std::vector<std::string>>()->multitoken(), "multiple values");
// Just parse the options without storing them in a map.
po::parsed_options parsed_options = po::command_line_parser(argc, argv)
.options(desc)
.run();
// Build list of multi-valued option instances. We iterate through
// each command-line option, whether it is repeated or not. We
// accumulate the values for our multi-valued option in a
// container.
std::vector<std::vector<std::string>> lists;
for (const po::option& o : parsed_options.options) {
if (o.string_key == "list")
lists.push_back(o.value);
}
// If we had other normal options, we would store them in a map
// here. In this demo program it isn't really necessary because
// we are only interested in our special multi-valued option.
po::variables_map vm;
po::store(parsed_options, vm);
// Print out the multi-valued option, each separate instance on its
// own line.
for (size_t i = 0; i < lists.size(); ++i) {
for (size_t j = 0; j < lists[i].size(); ++j)
std::cout << lists[i][j] << ' ';
std::cout << '\n';
}
return 0;
}
这是一个示例调用 (live at coliru):
$ ./po --list 1 2 3 --list foo bar --list how now brown cow
1 2 3
foo bar
how now brown cow