• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_server_request_impl.h"
26 
27 namespace nghttp2 {
28 namespace asio_http2 {
29 namespace server {
30 
request_impl()31 request_impl::request_impl() : strm_(nullptr), header_buffer_size_(0) {}
32 
header() const33 const header_map &request_impl::header() const { return header_; }
34 
method() const35 const std::string &request_impl::method() const { return method_; }
36 
uri() const37 const uri_ref &request_impl::uri() const { return uri_; }
38 
uri()39 uri_ref &request_impl::uri() { return uri_; }
40 
header(header_map h)41 void request_impl::header(header_map h) { header_ = std::move(h); }
42 
header()43 header_map &request_impl::header() { return header_; }
44 
method(std::string arg)45 void request_impl::method(std::string arg) { method_ = std::move(arg); }
46 
on_data(data_cb cb)47 void request_impl::on_data(data_cb cb) { on_data_cb_ = std::move(cb); }
48 
stream(class stream * s)49 void request_impl::stream(class stream *s) { strm_ = s; }
50 
call_on_data(const uint8_t * data,std::size_t len)51 void request_impl::call_on_data(const uint8_t *data, std::size_t len) {
52   if (on_data_cb_) {
53     on_data_cb_(data, len);
54   }
55 }
56 
remote_endpoint() const57 const boost::asio::ip::tcp::endpoint &request_impl::remote_endpoint() const {
58   return remote_ep_;
59 }
60 
remote_endpoint(boost::asio::ip::tcp::endpoint ep)61 void request_impl::remote_endpoint(boost::asio::ip::tcp::endpoint ep) {
62   remote_ep_ = std::move(ep);
63 }
64 
header_buffer_size() const65 size_t request_impl::header_buffer_size() const { return header_buffer_size_; }
66 
update_header_buffer_size(size_t len)67 void request_impl::update_header_buffer_size(size_t len) {
68   header_buffer_size_ += len;
69 }
70 
71 } // namespace server
72 } // namespace asio_http2
73 } // namespace nghttp2
74