Merge pull request #848 from nghttp2/asio-client-ping

asio: client: Send PING after 30 seconds idle
This commit is contained in:
Tatsuhiro Tsujikawa 2017-03-22 21:20:23 +09:00 committed by GitHub
commit 4f9f181f07
2 changed files with 33 additions and 0 deletions

View File

@ -45,6 +45,7 @@ session_impl::session_impl(
io_service_(io_service),
resolver_(io_service),
deadline_(io_service),
ping_(io_service),
connect_timeout_(connect_timeout),
read_timeout_(boost::posix_time::seconds(60)),
session_(nullptr),
@ -83,6 +84,7 @@ void session_impl::start_resolve(const std::string &host,
});
deadline_.async_wait(std::bind(&session_impl::handle_deadline, self));
start_ping();
}
void session_impl::handle_deadline() {
@ -102,6 +104,27 @@ void session_impl::handle_deadline() {
std::bind(&session_impl::handle_deadline, this->shared_from_this()));
}
void handle_ping2(const boost::system::error_code &ec, int) {}
void session_impl::start_ping() {
ping_.expires_from_now(boost::posix_time::seconds(30));
ping_.async_wait(std::bind(&session_impl::handle_ping, shared_from_this(),
std::placeholders::_1));
}
void session_impl::handle_ping(const boost::system::error_code &ec) {
if (stopped_ || ec == boost::asio::error::operation_aborted ||
!streams_.empty()) {
return;
}
nghttp2_submit_ping(session_, NGHTTP2_FLAG_NONE, nullptr);
signal_write();
start_ping();
}
void session_impl::connected(tcp::resolver::iterator endpoint_it) {
if (!setup_session()) {
return;
@ -433,6 +456,9 @@ std::unique_ptr<stream> session_impl::pop_stream(int32_t stream_id) {
}
auto strm = std::move((*it).second);
streams_.erase(it);
if (streams_.empty()) {
start_ping();
}
return strm;
}
@ -441,6 +467,7 @@ stream *session_impl::create_push_stream(int32_t stream_id) {
strm->stream_id(stream_id);
auto p = streams_.emplace(stream_id, std::move(strm));
assert(p.second);
ping_.cancel();
return (*p.first).second.get();
}
@ -544,6 +571,7 @@ const request *session_impl::submit(boost::system::error_code &ec,
auto p = streams_.emplace(stream_id, std::move(strm));
assert(p.second);
ping_.cancel();
return &(*p.first).second->request();
}
@ -715,6 +743,7 @@ void session_impl::stop() {
shutdown_socket();
deadline_.cancel();
ping_.cancel();
stopped_ = true;
}

View File

@ -109,6 +109,8 @@ private:
bool setup_session();
void call_error_cb(const boost::system::error_code &ec);
void handle_deadline();
void start_ping();
void handle_ping(const boost::system::error_code &ec);
boost::asio::io_service &io_service_;
tcp::resolver resolver_;
@ -122,6 +124,8 @@ private:
boost::posix_time::time_duration connect_timeout_;
boost::posix_time::time_duration read_timeout_;
boost::asio::deadline_timer ping_;
nghttp2_session *session_;
const uint8_t *data_pending_;