2015-03-01 02:02:49 +01:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2 C Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "nghttp2_config.h"
|
|
|
|
|
2015-03-03 17:34:00 +01:00
|
|
|
#include <nghttp2/asio_http2_client.h>
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
#include "asio_client_session_tcp_impl.h"
|
|
|
|
#include "asio_client_session_tls_impl.h"
|
|
|
|
#include "asio_common.h"
|
|
|
|
#include "template.h"
|
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
namespace asio_http2 {
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
using boost::asio::ip::tcp;
|
|
|
|
|
2015-03-03 16:08:47 +01:00
|
|
|
session::session(boost::asio::io_service &io_service, const std::string &host,
|
|
|
|
const std::string &service)
|
|
|
|
: impl_(make_unique<session_tcp_impl>(io_service, host, service)) {}
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
session::session(boost::asio::io_service &io_service,
|
2015-03-03 16:08:47 +01:00
|
|
|
boost::asio::ssl::context &tls_ctx, const std::string &host,
|
|
|
|
const std::string &service)
|
|
|
|
: impl_(make_unique<session_tls_impl>(io_service, tls_ctx, host, service)) {
|
|
|
|
}
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
session::~session() {}
|
|
|
|
|
2015-03-04 16:03:42 +01:00
|
|
|
void session::on_connect(connect_cb cb) const {
|
|
|
|
impl_->on_connect(std::move(cb));
|
|
|
|
}
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-04 16:03:42 +01:00
|
|
|
void session::on_error(error_cb cb) const { impl_->on_error(std::move(cb)); }
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-04 16:03:42 +01:00
|
|
|
void session::shutdown() const { impl_->shutdown(); }
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-04 16:03:42 +01:00
|
|
|
boost::asio::io_service &session::io_service() const {
|
|
|
|
return impl_->io_service();
|
|
|
|
}
|
2015-03-03 16:08:47 +01:00
|
|
|
|
2015-03-03 16:20:09 +01:00
|
|
|
const request *session::submit(boost::system::error_code &ec,
|
|
|
|
const std::string &method,
|
2015-03-04 16:03:42 +01:00
|
|
|
const std::string &uri, header_map h) const {
|
2015-03-05 17:47:55 +01:00
|
|
|
return impl_->submit(ec, method, uri, generator_cb(), std::move(h));
|
2015-03-01 02:02:49 +01:00
|
|
|
}
|
|
|
|
|
2015-03-03 16:20:09 +01:00
|
|
|
const request *session::submit(boost::system::error_code &ec,
|
|
|
|
const std::string &method,
|
|
|
|
const std::string &uri, std::string data,
|
2015-03-04 16:03:42 +01:00
|
|
|
header_map h) const {
|
2015-03-05 17:47:55 +01:00
|
|
|
return impl_->submit(ec, method, uri, string_generator(std::move(data)),
|
2015-03-01 02:02:49 +01:00
|
|
|
std::move(h));
|
|
|
|
}
|
|
|
|
|
2015-03-03 16:20:09 +01:00
|
|
|
const request *session::submit(boost::system::error_code &ec,
|
|
|
|
const std::string &method,
|
2015-03-05 17:47:55 +01:00
|
|
|
const std::string &uri, generator_cb cb,
|
2015-03-04 16:03:42 +01:00
|
|
|
header_map h) const {
|
2015-03-01 02:02:49 +01:00
|
|
|
return impl_->submit(ec, method, uri, std::move(cb), std::move(h));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace client
|
|
|
|
} // namespace asio_http2
|
|
|
|
} // nghttp2
|