使用boost程序选项时如何解决“boost :: bad_any_cast:使用boost :: any_cast转换失败”?

时间:2013-03-20 21:34:23

标签: c++ boost types casting 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 = boost::program_options;

int main (int argc, char *argv[])
{
    po::options_description config("Configuration");
    config.add_options()
                ("IPAddress,i","IP Address")
                ("Port,p","Port")
                 ;

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

    cout << "Values\n";

    string address = (vm["IPAddress"].as<std::string >()).c_str();
    string port = (vm["Port"].as<std::string>()).c_str();

    cout << (vm["IPAddress"].as< string >()).c_str();
    cout << " " << (vm["Port"].as<string>()).c_str();

    return 0;

}

输入的值是否以某种方式无法打印?

这是gdb输出,似乎是演员问题:

  

在抛出一个实例后终止调用   “增强:: exception_detail :: clone_impl

     
    

”                   what():boost :: bad_any_cast:使用boost :: any_cast

转换失败   
        Program received signal SIGABRT, Aborted.
        0x0000003afd835935 in raise () from /lib64/libc.so.6
string address = (vm["IPAddress"].as<std::string >()).c_str();

是发生错误的地方;我尝试过std :: string和string,结果相同。

testboostpo -i 192.168.1.10 -p 5000

是命令行。

我尝试声明类型,如下:

config.add_options()
        ("IPAddress,i", po::value<std::string>(), "IP Address")
            ("Port,p", po::value<std::string>(), "Port");

但错误仍然存​​在。

这可能是一个真正的错误吗?

5 个答案:

答案 0 :(得分:15)

您会看到boost::bad_any_cast引发的po::variables_map异常,因为po::options_description_easy_init::operator()的两个const char*参数重载未指定po::value_semantic类型,因此转换它到std::string将不起作用。如果要将值转换为std::string,并且应用程序需要该值,请使用required()值语义。

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

int main (int argc, char *argv[])
{
    po::options_description config("Configuration");
    config.add_options()
                ("IPAddress,i", po::value<std::string>()->required(), "IP Address")
                ("Port,p", po::value<std::string>()->required(), "Port")
                ;

    try {
        po::variables_map vm;
        po::store(po::parse_command_line(argc, argv, config),vm);
        po::notify(vm);
        std::cout << "Values" << std::endl;

        const std::string address = vm["IPAddress"].as<std::string>();
        const std::string port = vm["Port"].as<std::string>();

        std::cout << "address: " << address << std::endl;
        std::cout << "port: " << port << std::endl;
    } catch ( const std::exception& e ) {
        std::cerr << e.what() << std::endl;
        return 1;
    }

    return 0;
}

注意添加的catch块,因为解析可以(并且会,如您所注意到的)抛出异常。这是一个示例会话:

samm$ ./a.out
the option '--IPAddress' is required but missing
samm$ ./a.out --IPAddress 127.0.0.1
the option '--Port' is required but missing
samm$ ./a.out --IPAddress 127.0.0.1 --Port 5000
Values
address: 127.0.0.1
port: 5000
samm$ 

这是一个显示相同行为的online demo,由COmpile LInk RUn(coliru)提供。

答案 1 :(得分:4)

添加选项时,需要将ip-address和port声明为字符串:

config.add_options()
    ("IPAddress,i", po::value<std::string>(), "IP Address")
    ("Port,p", po::value<std::string>(), "Port")
    ;

答案 2 :(得分:2)

如果您没有正确处理可选参数,也会发生同样的消息。

Sam的解决方案指出需要的参数,并且OP的代码建议需要 - 只需标记它们是必需的。对于可选输入,the Boost PO tutorial为我们提供了一个模板,用于在转换选项之前检查该选项是否存在:

if(vm.count("address")) 
{
    const std::string address = vm["IPAddress"].as<std::string>();
    std::cout << "address: " << address << std::endl;
}
if(vm.count("port")) 
    const std::string port = vm["Port"].as<std::string>();
    std::cout << "port: " << port << std::endl;
}

我的问题 - 我复制/粘贴并忘记将if测试与用法对齐!

答案 3 :(得分:0)

不一定和这个家伙有同样的问题,但这里有些东西让我抓狂:

如果将类型放在匿名命名空间中,则会有两个具有相同名称但实例不同的类,并且转换将失败。例如:

a.hpp:

#include "a.hpp"
cli_options.add_options()("test", po::value<MyClass>(), "test desc");

b.cpp:

#include "a.hpp" // THIS WILL MAKE A DIFFERENT "MyClass"
vm["test"].as<MyClass>();  // Fails at runtime.

c.cpp:

MyClass

失败是因为b.cpp中的c.cpp$arrayElemAt中的group by不是同一个类。因为匿名命名空间。

删除匿名命名空间可以解决问题。

答案 4 :(得分:0)

我收到了类似的错误消息,但这是因为我使用的是简写 i,而不是 IPAddress

// this throws the cast exception
const std::string address = vm["i"].as<std::string>();
// this does not
const std::string address = vm["IPAddress"].as<std::string>();

Boost 采用第一个声明的。因此,如果您的选项声明为 IPAddress,i,则需要使用 vm["IPAddres"],而 i,IPAddress 则需要使用 vm["i"]