我正在使用boost-asio,我想正确处理错误消息。
在这个例子中,我做了一个拼写错误(1278而不是127):
boost::system::error_code ec;
auto address=boost::asio::ip::address::from_string("1278.0.0.1",ec);
if(ec)
{
const char*text=ec.message().c_str();
//Do Something with text but what is its encoding ?
}
我收到一条错误消息,它似乎是在Windows 1252中编码的(我使用的是Windows 7)。 所以似乎编码是操作系统编码。
但是,我无法找到任何说明这一事实的文件。
在使用OS字符集编码的boost asio中是否有错误消息?
答案 0 :(得分:3)
在深入研究我的系统后,我发现包含的hpp文件包含一个ipp文件,后者又调用操作系统功能。如果出现错误,则在此阶段仅知道错误代码。
调用message()函数时会形成真正的错误消息。
Windows上的实现调用FormatMessageA或FormatMessageW,具体取决于是否定义了BOOST_NO_ANSI_APIS:
std::string system_error_category::message( int ev ) const
{
# ifndef BOOST_NO_ANSI_APIS
LPVOID lpMsgBuf = 0;
DWORD retval = ::FormatMessageA(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
ev,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
(LPSTR) &lpMsgBuf,
0,
NULL
);
detail::local_free_on_destruction lfod(lpMsgBuf);
if (retval == 0)
return std::string("Unknown error");
std::string str( static_cast<LPCSTR>(lpMsgBuf) );
# else // WinCE workaround
LPVOID lpMsgBuf = 0;
DWORD retval = ::FormatMessageW(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
ev,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
(LPWSTR) &lpMsgBuf,
0,
NULL
);
detail::local_free_on_destruction lfod(lpMsgBuf);
if (retval == 0)
return std::string("Unknown error");
int num_chars = (wcslen( static_cast<LPCWSTR>(lpMsgBuf) ) + 1) * 2;
LPSTR narrow_buffer = (LPSTR)_alloca( num_chars );
if (::WideCharToMultiByte(CP_ACP, 0, static_cast<LPCWSTR>(lpMsgBuf), -1, narrow_buffer, num_chars, NULL, NULL) == 0)
return std::string("Unknown error");
std::string str( narrow_buffer );
# endif
while ( str.size()
&& (str[str.size()-1] == '\n' || str[str.size()-1] == '\r') )
str.erase( str.size()-1 );
if ( str.size() && str[str.size()-1] == '.' )
{ str.erase( str.size()-1 ); }
return str;
}
如果消息调用FormatMessageW,则字符串将缩小回系统默认的Windows ANSI代码页(CP_ACP)
在Windows上的所有情况下,结果都是默认的ANSI代码页。