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.
|
|
|
|
*/
|
|
|
|
#ifndef ASIO_CLIENT_REQUEST_IMPL_H
|
|
|
|
#define ASIO_CLIENT_REQUEST_IMPL_H
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
namespace asio_http2 {
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
class response;
|
|
|
|
class stream;
|
|
|
|
|
|
|
|
class request_impl {
|
|
|
|
public:
|
|
|
|
request_impl();
|
|
|
|
|
|
|
|
request_impl(const request_impl &) = delete;
|
|
|
|
request_impl &operator=(const request_impl &) = delete;
|
|
|
|
|
2015-03-07 15:04:31 +01:00
|
|
|
void write_trailer(header_map h);
|
|
|
|
|
2015-03-04 15:53:54 +01:00
|
|
|
void cancel(uint32_t error_code);
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
void on_response(response_cb cb);
|
|
|
|
void call_on_response(response &res);
|
|
|
|
|
|
|
|
void on_push(request_cb cb);
|
|
|
|
void call_on_push(request &push_req);
|
|
|
|
|
|
|
|
void on_close(close_cb cb);
|
|
|
|
void call_on_close(uint32_t error_code);
|
|
|
|
|
2015-03-05 17:47:55 +01:00
|
|
|
void on_read(generator_cb cb);
|
|
|
|
generator_cb::result_type call_on_read(uint8_t *buf, std::size_t len,
|
|
|
|
uint32_t *data_flags);
|
2015-03-01 02:02:49 +01:00
|
|
|
|
2015-03-04 16:09:26 +01:00
|
|
|
void resume();
|
|
|
|
|
2015-03-03 15:37:08 +01:00
|
|
|
void header(header_map h);
|
|
|
|
header_map &header();
|
|
|
|
const header_map &header() const;
|
2015-03-01 02:02:49 +01:00
|
|
|
|
|
|
|
void stream(class stream *strm);
|
|
|
|
|
2015-03-03 16:59:22 +01:00
|
|
|
void uri(uri_ref uri);
|
|
|
|
const uri_ref &uri() const;
|
2015-03-04 13:31:27 +01:00
|
|
|
uri_ref &uri();
|
2015-03-03 16:59:22 +01:00
|
|
|
|
2015-03-01 02:02:49 +01:00
|
|
|
void method(std::string s);
|
|
|
|
const std::string &method() const;
|
|
|
|
|
2016-02-10 14:35:21 +01:00
|
|
|
size_t header_buffer_size() const;
|
|
|
|
void update_header_buffer_size(size_t len);
|
|
|
|
|
2015-03-01 02:02:49 +01:00
|
|
|
private:
|
2015-03-03 15:37:08 +01:00
|
|
|
header_map header_;
|
2015-03-01 02:02:49 +01:00
|
|
|
response_cb response_cb_;
|
|
|
|
request_cb push_request_cb_;
|
|
|
|
close_cb close_cb_;
|
2015-03-05 17:47:55 +01:00
|
|
|
generator_cb generator_cb_;
|
2015-03-01 02:02:49 +01:00
|
|
|
class stream *strm_;
|
2015-03-03 16:59:22 +01:00
|
|
|
uri_ref uri_;
|
2015-03-01 02:02:49 +01:00
|
|
|
std::string method_;
|
2016-02-10 14:35:21 +01:00
|
|
|
size_t header_buffer_size_;
|
2015-03-01 02:02:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace client
|
|
|
|
} // namespace asio_http2
|
|
|
|
} // namespace nghttp2
|
|
|
|
|
|
|
|
#endif // ASIO_CLIENT_REQUEST_IMPL_H
|