Imported Upstream version 1.0.0
[platform/upstream/nghttp2.git] / src / asio_client_session_tcp_impl.cc
1 /*
2  * nghttp2 - HTTP/2 C Library
3  *
4  * Copyright (c) 2015 Tatsuhiro Tsujikawa
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be
15  * included in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25 #include "asio_client_session_tcp_impl.h"
26
27 namespace nghttp2 {
28 namespace asio_http2 {
29 namespace client {
30
31 session_tcp_impl::session_tcp_impl(boost::asio::io_service &io_service,
32                                    const std::string &host,
33                                    const std::string &service)
34     : session_impl(io_service), socket_(io_service) {
35   start_resolve(host, service);
36 }
37
38 session_tcp_impl::~session_tcp_impl() {}
39
40 void session_tcp_impl::start_connect(tcp::resolver::iterator endpoint_it) {
41   boost::asio::async_connect(socket_, endpoint_it,
42                              [this](const boost::system::error_code &ec,
43                                     tcp::resolver::iterator endpoint_it) {
44     if (ec) {
45       not_connected(ec);
46       return;
47     }
48
49     connected(endpoint_it);
50   });
51 }
52
53 tcp::socket &session_tcp_impl::socket() { return socket_; }
54
55 void session_tcp_impl::read_socket(
56     std::function<void(const boost::system::error_code &ec, std::size_t n)> h) {
57   socket_.async_read_some(boost::asio::buffer(rb_), h);
58 }
59
60 void session_tcp_impl::write_socket(
61     std::function<void(const boost::system::error_code &ec, std::size_t n)> h) {
62   boost::asio::async_write(socket_, boost::asio::buffer(wb_, wblen_), h);
63 }
64
65 void session_tcp_impl::shutdown_socket() { socket_.close(); }
66
67 } // namespace client
68 } // namespace asio_http2
69 } // namespace nghttp2