gpt4 book ai didi

c++ - 使用 Boost 库程序选项的必需和可选参数

转载 作者:IT老高 更新时间:2023-10-28 12:07:03 28 4
gpt4 key购买 nike

我正在使用 Boost 程序选项库来解析命令行参数。

我有以下要求:

  1. 一旦提供“帮助”,所有其他选项都是可选的;
  2. 一旦没有提供“帮助”,所有其他选项都是必需的。

我该如何处理?这是我处理这个的代码,我发现它非常多余,我认为一定有一个容易做的,对吧?

#include <boost/program_options.hpp>
#include <iostream>
#include <sstream>
namespace po = boost::program_options;

bool process_command_line(int argc, char** argv,
std::string& host,
std::string& port,
std::string& configDir)
{
int iport;

try
{
po::options_description desc("Program Usage", 1024, 512);
desc.add_options()
("help", "produce help message")
("host,h", po::value<std::string>(&host), "set the host server")
("port,p", po::value<int>(&iport), "set the server port")
("config,c", po::value<std::string>(&configDir), "set the config path")
;

po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);

if (vm.count("help"))
{
std::cout << desc << "\n";
return false;
}

// There must be an easy way to handle the relationship between the
// option "help" and "host"-"port"-"config"
if (vm.count("host"))
{
std::cout << "host: " << vm["host"].as<std::string>() << "\n";
}
else
{
std::cout << "\"host\" is required!" << "\n";
return false;
}

if (vm.count("port"))
{
std::cout << "port: " << vm["port"].as<int>() << "\n";
}
else
{
std::cout << "\"port\" is required!" << "\n";
return false;
}

if (vm.count("config"))
{
std::cout << "config: " << vm["config"].as<std::string>() << "\n";
}
else
{
std::cout << "\"config\" is required!" << "\n";
return false;
}
}
catch(std::exception& e)
{
std::cerr << "Error: " << e.what() << "\n";
return false;
}
catch(...)
{
std::cerr << "Unknown error!" << "\n";
return false;
}

std::stringstream ss;
ss << iport;
port = ss.str();

return true;
}

int main(int argc, char** argv)
{
std::string host;
std::string port;
std::string configDir;

bool result = process_command_line(argc, argv, host, port, configDir);
if (!result)
return 1;

// Do the main routine here
}

最佳答案

我自己也遇到过这个问题。解决方案的关键是函数 po::store填充variables_mappo::notify引发遇到的任何错误,所以 vm可以在发送任何通知之前使用。

所以,根据 Tim ,根据需要将每个选项设置为必需,但运行 po::notify(vm)在您处理了帮助选项之后。这样它将退出而不会抛出任何异常。现在,将选项设置为必需,缺少选项将导致 required_option 要抛出的异常并使用它的get_option_name方法可以将错误代码减少到相对简单的 catch堵塞。

作为附加说明,您的选项变量是通过 po::value< -type- >( &var_name ) 直接设置的。机制,因此您不必通过 vm["opt_name"].as< -type- >() 访问它们.

代码示例Peters answer 中提供

关于c++ - 使用 Boost 库程序选项的必需和可选参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5395503/

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