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 "asio_client_request_impl.h"
|
|
|
|
|
|
|
|
#include "asio_client_stream.h"
|
2015-03-05 13:48:37 +01:00
|
|
|
#include "asio_client_session_impl.h"
|
2015-03-01 02:02:49 +01:00
|
|
|
#include "template.h"
|
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
namespace asio_http2 {
|
|
|
|
namespace client {
|
|
|
|
|
2016-02-10 14:35:21 +01:00
|
|
|
request_impl::request_impl() : strm_(nullptr), header_buffer_size_(0) {}
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-07 15:04:31 +01:00
|
|
|
void request_impl::write_trailer(header_map h) {
|
|
|
|
auto sess = strm_->session();
|
|
|
|
sess->write_trailer(*strm_, std::move(h));
|
|
|
|
}
|
|
|
|
|
2015-03-05 13:48:37 +01:00
|
|
|
void request_impl::cancel(uint32_t error_code) {
|
|
|
|
auto sess = strm_->session();
|
|
|
|
sess->cancel(*strm_, error_code);
|
|
|
|
}
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
void request_impl::on_response(response_cb cb) { response_cb_ = std::move(cb); }
|
|
|
|
|
|
|
|
void request_impl::call_on_response(response &res) {
|
|
|
|
if (response_cb_) {
|
|
|
|
response_cb_(res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void request_impl::on_push(request_cb cb) { push_request_cb_ = std::move(cb); }
|
|
|
|
|
|
|
|
void request_impl::call_on_push(request &push_req) {
|
|
|
|
if (push_request_cb_) {
|
|
|
|
push_request_cb_(push_req);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void request_impl::on_close(close_cb cb) { close_cb_ = std::move(cb); }
|
|
|
|
|
|
|
|
void request_impl::call_on_close(uint32_t error_code) {
|
|
|
|
if (close_cb_) {
|
|
|
|
close_cb_(error_code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-05 17:47:55 +01:00
|
|
|
void request_impl::on_read(generator_cb cb) { generator_cb_ = std::move(cb); }
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-05 17:47:55 +01:00
|
|
|
generator_cb::result_type request_impl::call_on_read(uint8_t *buf,
|
|
|
|
std::size_t len,
|
|
|
|
uint32_t *data_flags) {
|
|
|
|
if (generator_cb_) {
|
|
|
|
return generator_cb_(buf, len, data_flags);
|
2015-03-01 02:02:49 +01:00
|
|
|
}
|
2015-03-04 14:45:29 +01:00
|
|
|
|
|
|
|
*data_flags |= NGHTTP2_DATA_FLAG_EOF;
|
|
|
|
|
|
|
|
return 0;
|
2015-03-01 02:02:49 +01:00
|
|
|
}
|
|
|
|
|
2015-03-05 13:48:37 +01:00
|
|
|
void request_impl::resume() {
|
|
|
|
auto sess = strm_->session();
|
|
|
|
sess->resume(*strm_);
|
|
|
|
}
|
2015-03-04 16:09:26 +01:00
|
|
|
|
2015-03-03 15:37:08 +01:00
|
|
|
void request_impl::header(header_map h) { header_ = std::move(h); }
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-03 15:37:08 +01:00
|
|
|
header_map &request_impl::header() { return header_; }
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-03 15:37:08 +01:00
|
|
|
const header_map &request_impl::header() const { return header_; }
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
void request_impl::stream(class stream *strm) { strm_ = strm; }
|
|
|
|
|
2015-03-03 16:59:22 +01:00
|
|
|
void request_impl::uri(uri_ref uri) { uri_ = std::move(uri); }
|
|
|
|
|
|
|
|
const uri_ref &request_impl::uri() const { return uri_; }
|
|
|
|
|
2015-03-04 13:31:27 +01:00
|
|
|
uri_ref &request_impl::uri() { return uri_; }
|
|
|
|
|
2015-03-01 02:02:49 +01:00
|
|
|
void request_impl::method(std::string s) { method_ = std::move(s); }
|
|
|
|
|
|
|
|
const std::string &request_impl::method() const { return method_; }
|
|
|
|
|
2016-02-10 14:35:21 +01:00
|
|
|
size_t request_impl::header_buffer_size() const { return header_buffer_size_; }
|
|
|
|
|
|
|
|
void request_impl::update_header_buffer_size(size_t len) {
|
|
|
|
header_buffer_size_ += len;
|
|
|
|
}
|
|
|
|
|
2015-03-01 02:02:49 +01:00
|
|
|
} // namespace client
|
|
|
|
} // namespace asio_http2
|
|
|
|
} // namespace nghttp2
|