2

以下比较因错误而失败,该错误为 errorCode.category().name() 输出“asio.misc”,为 errorCode.message() 输出“文件结尾”

如果它声称属于 asio.misc 类别,那么为什么 (errorCode.category() == boost::asio::error::misc_category ) 的 if 条件评估为 false?

谷歌搜索(包括这里的答案)说 boost::system::error_code 可以在多个类别中具有相同的值,所以我假设为了获得正确的消息和含义,我们必须比较 boost::system::error_category以及 boost::system::error_code::value。

如果这不起作用,我们如何正确比较类别?

有问题的代码:

//--------------------------------------------------------------------------------------------------
std::string ClientSocketASIO::ErrorCodeToString(const boost::system::error_code & errorCode)
{
    std::ostringstream debugMsg;
    debugMsg << " Error Category: " << errorCode.category().name() << ". "
             << " Error Message: "  << errorCode.message() << ". ";

    if( errorCode.category() == boost::asio::error::misc_category )
    {
        switch (errorCode.value())
        {
        case boost::asio::error::eof:
            debugMsg << ". Server has disconnected.";
            break;
        case boost::asio::error::connection_refused:
            debugMsg << ". Connection Refused";
            break;
        default:
            debugMsg << ". Unknown Error.";
            break;
        }
    }
    else
    {
        debugMsg << ". Unknown Error category.";
    }

    return debugMsg.str();
}

编辑:

根据https://theboostcpplibraries.com/boost.systemBoost::file_system:检查错误代码

人们通常错误地编写代码只比较错误值而不是类别。单独的错误值不是唯一的,并且可能出现在多个类别中。用户还可以自由创建自己的错误代码和类别。因此,必须对两者进行比较。我认为这不会影响大量应用程序,因为无论如何他们只使用一个特性或库来提升他们的项目和/或大多数错误代码都映射到 Windows 错误代码,尽最大努力不碰撞。

我不得不在另一台计算机上访问 boost 邮件列表,因为我的工作几乎阻止了所有内容。

http://boost.2283326.n4.nabble.com/Compare-boost-system-error-category-td4692861.html#a4692869

据那边的一个家伙说,比较失败的原因是因为boost库是静态链接的,而boost::system::error_category::operator ==比较地址,所以LHS是一个lib中的地址,RHS是另一个地址。当他们被期望的时候,他们不会是平等的。

使用 operator == 的地址对我来说似乎是一个非常愚蠢的举动。如果发现任何新知识,我将继续在 boost 邮件列表上大肆宣传它并在这里为其他人编辑。

现在,我正在动态链接并使用表单

//--------------------------------------------------------------------------------------------------
std::string ClientSocketASIO::ErrorCodeToString(const boost::system::error_code & errorCode)
{
    std::ostringstream debugMsg;
    debugMsg << " Error Category: " << errorCode.category().name() << ". "
             << " Error Message: "  << errorCode.message() << ". ";

    // IMPORTANT - These comparisons only work if you dynamically link boost libraries
    //             Because boost chose to implement boost::system::error_category::operator == by comparing addresses
    //             The addresses are different in one library and the other when statically linking.
    //
    // We use make_error_code macro to make the correct category as well as error code value.
    // Error code value is not unique and can be duplicated in more than one category.
    if (errorCode == make_error_code(boost::asio::error::connection_refused))
    {
        debugMsg << ". Connection Refused";
    }
    else if (errorCode == make_error_code(boost::asio::error::eof))
    {
        debugMsg << ". Server has disconnected.";
    }
    else
    {
        debugMsg << ". boost::system::error_code has not been mapped to a meaningful message.";
    }

    return debugMsg.str();
}

但是,当我静态链接以提升时,这也不起作用。如果有人对我们如何正确比较 boost::system::error_code 并获得预期结果有任何更多建议,请让我们深入了解。

4

1 回答 1

1

C++ 11 标准暗示每个错误类别实例应具有全局唯一地址,并且相等比较应使用该地址进行比较。不幸的是,这在可移植代码中并不可靠,只有 Dinkumware STL 在过程中的任何地方实现真正的地址唯一性,并且它增加了一个完整的内存屏障来实现这一点,即它很昂贵。

Boost 的实现质量与 libstdc++ 或 libc++ 相同,您可以在某些情况下获得多个实例化,并且这些实例化可以具有不同的地址。

在我自己的代码中,我首先执行比较运算符,如果失败,我执行类别名称()的 strcmp()。到目前为止,这还没有咬到我。我个人认为错误类别的这一方面是标准中的一个缺陷,因为如果您希望它符合规定,它会强制非仅标头实现,即使这不包括 RTLD_LOCAL 这意味着您需要回退到命名的共享内存或一些黑客。

于 2017-03-25T00:02:25.083 回答