shrpx_http2_downstream_connection.h 2.52 KB
Newer Older
1
/*
2
 * nghttp2 - HTTP/2 C Library
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * Copyright (c) 2012 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.
 */
25 26
#ifndef SHRPX_HTTP2_DOWNSTREAM_CONNECTION_H
#define SHRPX_HTTP2_DOWNSTREAM_CONNECTION_H
27 28 29 30 31

#include "shrpx.h"

#include <openssl/ssl.h>

Tatsuhiro Tsujikawa's avatar
Tatsuhiro Tsujikawa committed
32
#include <nghttp2/nghttp2.h>
33 34 35 36 37

#include "shrpx_downstream_connection.h"

namespace shrpx {

38
struct StreamData;
39
class Http2Session;
40

41
class Http2DownstreamConnection : public DownstreamConnection {
42
public:
43 44
  Http2DownstreamConnection(ClientHandler *client_handler);
  virtual ~Http2DownstreamConnection();
45
  virtual int attach_downstream(Downstream *downstream);
46
  virtual void detach_downstream(Downstream *downstream);
47 48 49 50 51

  virtual int push_request_headers();
  virtual int push_upload_data_chunk(const uint8_t *data, size_t datalen);
  virtual int end_upload_data();

52
  virtual void pause_read(IOCtrlReason reason) {}
53
  virtual int resume_read(IOCtrlReason reason);
54 55 56
  virtual void force_resume_read() {}

  virtual bool get_output_buffer_full();
57

58 59
  virtual int on_read();
  virtual int on_write();
60

61
  virtual void on_upstream_change(Upstream *upstream) {}
62
  virtual int on_priority_change(int32_t pri);
63

64 65 66 67
  int send();

  int init_request_body_buf();
  evbuffer* get_request_body_buf() const;
68 69 70

  void attach_stream_data(StreamData *sd);
  StreamData* detach_stream_data();
71

72
  int submit_rst_stream(Downstream *downstream);
73
private:
74
  Http2Session *http2session_;
75
  evbuffer *request_body_buf_;
76
  StreamData *sd_;
77 78 79 80
};

} // namespace shrpx

81
#endif // SHRPX_HTTP2_DOWNSTREAM_CONNECTION_H