gpt4 book ai didi

c++ - 使用 boost::program_options 和 push_back 阅读到 std::vector?

转载 作者:太空宇宙 更新时间:2023-11-04 12:21:11 25 4
gpt4 key购买 nike

我有一个包含端点条目列表的配置文件。每个条目都标有 [endpt/n] 标题(表示第 n 个端点),并由 MAC 和 IP 地址组成。我想使用 boost::program_options 将地址读取为字符串,并将结果 push_back 到两个 vector 上。我已经查看了 program_options 文档,但无法找到我要查找的内容...这是端点条目的示例:

[endpt/2]
mac=ff-22-b6-33-91-3E
ip=133.22.32.222

这是我目前用来将每个端点的 MAC 和 IP 选项添加到 boost::options_description 的代码:

std::vector<std::string> mac(NUM_ENDPTS);
std::vector<std::string> ip(NUM_ENDPTS);

for(int e = 0; e < NUM_ENDPTS; e++)
{
//convert endpoint 'e' to a string representing endpoint heading
std::stringstream tmp; tmp.clear(); tmp.str(""); tmp << e;
std::string strEndpt = tmp.str();
std::string heading = "endpt/"+strEndpt;

cfig_file_options.add_options()
((heading+".mac").c_str(), po::value<std::string>(&mac[e]), ("ENDPT MAC")
((heading+".ip").c_str(), po::value<std::string>( &ip[e]), ("ENDPT IP")
;
}

po::variables_map vm;
po::store(po::parse_config_file(config_stream, cfig_file_options), vm);
po::notify(vm);

此代码工作正常,但出于一些原因,我想为 MAC 和 IP 地址声明空 vector ,并在 boost 读取它们时将选项推回它们。我是 Boost 的新手,所以任何关于更好的阅读列表方法的建议或任何其他帮助都将不胜感激。谢谢!

最佳答案

完全按照您的意愿去做很简单。首先,使用 po::value< vector< std::string > >而不是 po::value< std::string >因为程序选项提供了对 vector 的特殊支持。然后,将您的两个 vector 直接引用为

typedef std::vector< std::string > vec_string;

cfig_file_options.add_options()
((heading+".mac").c_str(), po::value< vec_string >(&mac), "ENDPT MAC")
((heading+".ip").c_str(), po::value< vec_string >( &ip), "ENDPT IP")
;

这里的关键是所有的mac地址和ip地址都使用公共(public) vector 进行存储。我应该指出,这不一定会将 ini 文件中的结束点编号与 vector 中的正确索引相关联,除非文件中保持严格的顺序。

关于c++ - 使用 boost::program_options 和 push_back 阅读到 std::vector?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5007169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com