- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我目前正在编写的应用程序中得到了这个代码片段:
#include "ClientSession.hpp"
void ClientSession::start(void)
{
auto Self(shared_from_this());
//boost::asio::read(this->_Socket, boost::asio::buffer(this->_ReadBuffer));
//this->_Socket.get_io_service().post(boost::bind(&ClientSession::on_read, shared_from_this(), boost::system::error_code::error_code(), 0));
boost::asio::async_read(this->_Socket, boost::asio::buffer(this->_ReadBuffer), boost::bind(&ClientSession::on_read, Self, _1, _2));
}
void ClientSession::on_read(const boost::system::error_code& Err_, size_t Bytes_)
{
try
{
if(Err_)
{
if(!(Err_ == boost::asio::error::eof || Err_ == boost::asio::error::connection_aborted))
{
throw std::runtime_error(Err_.message());
}
return;
}
}
catch(std::exception& Ex_)
{
this->_OutputHandler.write_error(Ex_.what());
}
}
调用ClientSession::start的代码是:
void Application::start_accept()
{
using namespace boost::asio;
ip::tcp::endpoint Endpoint( ip::address::from_string(this->_Config.get_client_login_server().first), this->_Config.get_client_login_server().second );
this->_ClientAcceptor.open(Endpoint.protocol());
this->_ClientAcceptor.bind(Endpoint);
this->_ClientAcceptor.listen();
std::shared_ptr<ClientSession> Session = ClientSession::create_new(this->_AsioService, this->_OutputHandler);
this->_ClientAcceptor.async_accept(Session->get_socket(), boost::bind(&Application::handle_accept, shared_from_this(), Session, _1));
}
如果我使用注释掉的行之一运行应用程序,它工作得很好(在 boost::asio::read 版本中,来自客户端的传输消息被写入读取缓冲区,而在发布版本中,处理程序函数被调用没有任何问题),但是如果尝试将我的应用程序与 async_read 部分一起使用,我的整个应用程序总是崩溃,而不调用完整的句柄或!甚至读取一个字节!,至少它看起来像 asio 的输出给我:
@asio|1373633560.834957|0*1|socket@000000BD603D46C0.async_accept @asio|1373633573.324144|>1|ex=system:0 @asio|1373633573.324144|1*2|socket@000000BD603DBAB8.async_receive
我将它调试到一个名为“select_reactor.ipp”的文件中,应用程序在其中尝试获取一个 boost::asio::detail::mutex::scoped_lock,看起来它就在那里失败了,完整的代码方法是:
void select_reactor::start_op(int op_type, socket_type descriptor,
select_reactor::per_descriptor_data&, reactor_op* op,
bool is_continuation, bool)
{
boost::asio::detail::mutex::scoped_lock lock(mutex_);
if (shutdown_)
{
post_immediate_completion(op, is_continuation);
return;
}
bool first = op_queue_[op_type].enqueue_operation(descriptor, op);
io_service_.work_started();
if (first)
interrupter_.interrupt();
}
我不知道也许我做错了什么,但我不知道是什么,我希望有人能给我一个提示,我可以做些什么来解决这个错误。
根据我目前收到的评论,我将添加更完整的代码片段:我的 io_service 在我的应用程序类中:
class Application
: public std::enable_shared_from_this<Application>
{
typedef boost::asio::io_service Service;
typedef boost::asio::ip::tcp::acceptor Acceptor;
public:
Application(void)
: _ClientAcceptor(_AsioService), _ApplicationRunning(true)
{
}
~Application(void);
/*
* This is the main method which starts the actual program routine
* called in main()
*/
int run(void);
private:
/*
* Invokes the first accept and then invokes via async. handle_accept, which invokes itself repeatedly
*/
void start_accept(void);
/*
* handle_accept calls NewClient_->start to invoke the communication with this client
*/
void handle_accept(std::shared_ptr<ClientSession> NewClient_, const boost::system::error_code& Err_);
void loop_for_user_input(void);
bool handle_user_input(const std::string& Msg_);
/*
* This method invokes the threads that call io_service::run()
*/
static void start_service(Service& AsioService_) { try { AsioService_.run(); } catch(const std::exception& Ex_) { std::cout << Ex_.what() << std::endl; } }
private:
Configuration _Config;
Service _AsioService;
Acceptor _ClientAcceptor;
OutputHandler _OutputHandler;
bool _ApplicationRunning;
};
和运行方法:
int Application::run(void)
{
try
{
this->_Config.load();
this->_OutputHandler.open(this->_Config.get_logs());
this->start_accept();
for(int i = 0; i < 4; i++)
{
std::thread t(start_service, std::ref(this->_AsioService));
t.detach();
}
this->loop_for_user_input();
}
catch(const std::runtime_error& Ex_)
{
this->_OutputHandler.write_error(Ex_.what());
}
return 0;
}
最佳答案
我发现了错误,这只是我的 _WIN32_WINNT 预处理器指令中的错字,将其设置为 _WIN32_WINNT 0x0601(对于 Windows 7)解决了问题。
关于c++ - 使用 boost.asio 的免费 async_* 函数时出现奇怪的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17615548/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!