如何将Windows系统错误代码映射到boost :: error_condition?

时间:2011-08-02 09:11:39

标签: error-handling cross-platform boost-asio

在下面的代码中,我想用一般的boost系统错误代码替换Windows WinSock错误WSAEINTR = 10004,但是如何使用通用枚举来映射我在调试器中找到的代码?

timeout_.expires_from_now(posix_time::seconds(15));
timeout_.async_wait( boost::bind(&cancel_socket_fn,this,_1) );
asio::streambuf rd_buf;
unsigned length = read_until( socket_, rd_buf,delimiter_string, error );
timeout_.cancel();

if(error) 
{
    // how do I make this portable?
    if(error.value()==WSAEINTR) throw request_timeout_exception()
    else throw my_asio_exception(error,"Unable to read header");
}

...

cancel_socket_fn(system::error_code e) { socket_.cancel(); }

1 个答案:

答案 0 :(得分:0)

if(error == boost :: asio :: error :: interrupted)...

我认为这是一个设计错误,因为如果从调用io_service :: run()(或类似函数)的线程调用此代码,则在read_until()完成之前不会调用cancel_socket_fn()。或者如果它们位于不同的线程中,那么这里是同步问题,因为计时器方法不是线程安全的。