tizen 2.4 release
[external/nghttp2.git] / src / shrpx_http2_upstream.h
1 /*
2  * nghttp2 - HTTP/2 C Library
3  *
4  * Copyright (c) 2012 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 #ifndef SHRPX_HTTP2_UPSTREAM_H
26 #define SHRPX_HTTP2_UPSTREAM_H
27
28 #include "shrpx.h"
29
30 #include <memory>
31
32 #include <ev.h>
33
34 #include <nghttp2/nghttp2.h>
35
36 #include "shrpx_upstream.h"
37 #include "shrpx_downstream_queue.h"
38 #include "memchunk.h"
39
40 using namespace nghttp2;
41
42 namespace shrpx {
43
44 class ClientHandler;
45 class HttpsUpstream;
46
47 class Http2Upstream : public Upstream {
48 public:
49   Http2Upstream(ClientHandler *handler);
50   virtual ~Http2Upstream();
51   virtual int on_read();
52   virtual int on_write();
53   virtual int on_timeout(Downstream *downstream);
54   virtual int on_downstream_abort_request(Downstream *downstream,
55                                           unsigned int status_code);
56   virtual ClientHandler *get_client_handler() const;
57
58   virtual int downstream_read(DownstreamConnection *dconn);
59   virtual int downstream_write(DownstreamConnection *dconn);
60   virtual int downstream_eof(DownstreamConnection *dconn);
61   virtual int downstream_error(DownstreamConnection *dconn, int events);
62
63   void add_pending_downstream(std::unique_ptr<Downstream> downstream);
64   void remove_downstream(Downstream *downstream);
65   Downstream *find_downstream(int32_t stream_id);
66
67   nghttp2_session *get_http2_session();
68
69   int rst_stream(Downstream *downstream, uint32_t error_code);
70   int terminate_session(uint32_t error_code);
71   int error_reply(Downstream *downstream, unsigned int status_code);
72
73   virtual void pause_read(IOCtrlReason reason);
74   virtual int resume_read(IOCtrlReason reason, Downstream *downstream,
75                           size_t consumed);
76
77   virtual int on_downstream_header_complete(Downstream *downstream);
78   virtual int on_downstream_body(Downstream *downstream, const uint8_t *data,
79                                  size_t len, bool flush);
80   virtual int on_downstream_body_complete(Downstream *downstream);
81
82   virtual void on_handler_delete();
83   virtual int on_downstream_reset(bool no_retry);
84
85   virtual MemchunkPool *get_mcpool();
86
87   bool get_flow_control() const;
88   // Perform HTTP/2 upgrade from |upstream|. On success, this object
89   // takes ownership of the |upstream|. This function returns 0 if it
90   // succeeds, or -1.
91   int upgrade_upstream(HttpsUpstream *upstream);
92   void start_settings_timer();
93   void stop_settings_timer();
94   int consume(int32_t stream_id, size_t len);
95   void log_response_headers(Downstream *downstream,
96                             const std::vector<nghttp2_nv> &nva) const;
97   void start_downstream(Downstream *downstream);
98   void initiate_downstream(std::unique_ptr<Downstream> downstream);
99
100   void submit_goaway();
101   void check_shutdown();
102
103   int prepare_push_promise(Downstream *downstream);
104   int submit_push_promise(const std::string &path, Downstream *downstream);
105
106 private:
107   // must be put before downstream_queue_
108   std::unique_ptr<HttpsUpstream> pre_upstream_;
109   MemchunkPool mcpool_;
110   DownstreamQueue downstream_queue_;
111   ev_timer settings_timer_;
112   ev_timer shutdown_timer_;
113   ev_prepare prep_;
114   ClientHandler *handler_;
115   nghttp2_session *session_;
116   const uint8_t *data_pending_;
117   size_t data_pendinglen_;
118   bool flow_control_;
119   bool shutdown_handled_;
120 };
121
122 } // namespace shrpx
123
124 #endif // SHRPX_HTTP2_UPSTREAM_H