2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-06-04 16:48:31 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#ifndef SHRPX_UPSTREAM_H
|
|
|
|
#define SHRPX_UPSTREAM_H
|
|
|
|
|
|
|
|
#include "shrpx.h"
|
2012-11-18 13:23:13 +01:00
|
|
|
#include "shrpx_io_control.h"
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
class ClientHandler;
|
|
|
|
class Downstream;
|
2014-12-27 18:59:06 +01:00
|
|
|
class DownstreamConnection;
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
class Upstream {
|
|
|
|
public:
|
|
|
|
virtual ~Upstream() {}
|
|
|
|
virtual int on_read() = 0;
|
2012-06-04 20:11:43 +02:00
|
|
|
virtual int on_write() = 0;
|
2014-08-09 11:47:45 +02:00
|
|
|
virtual int on_timeout(Downstream *downstream) { return 0; };
|
2014-06-27 15:34:54 +02:00
|
|
|
virtual int on_downstream_abort_request(Downstream *downstream,
|
|
|
|
unsigned int status_code) = 0;
|
2014-12-27 18:59:06 +01:00
|
|
|
virtual int downstream_read(DownstreamConnection *dconn) = 0;
|
|
|
|
virtual int downstream_write(DownstreamConnection *dconn) = 0;
|
|
|
|
virtual int downstream_eof(DownstreamConnection *dconn) = 0;
|
|
|
|
virtual int downstream_error(DownstreamConnection *dconn, int events) = 0;
|
2014-11-27 15:39:04 +01:00
|
|
|
virtual ClientHandler *get_client_handler() const = 0;
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
virtual int on_downstream_header_complete(Downstream *downstream) = 0;
|
2014-11-27 15:39:04 +01:00
|
|
|
virtual int on_downstream_body(Downstream *downstream, const uint8_t *data,
|
|
|
|
size_t len, bool flush) = 0;
|
2012-06-04 16:48:31 +02:00
|
|
|
virtual int on_downstream_body_complete(Downstream *downstream) = 0;
|
2012-11-18 13:23:13 +01:00
|
|
|
|
2014-11-18 17:59:09 +01:00
|
|
|
virtual void on_handler_delete() = 0;
|
nghttpx: Check HTTP/2 downstream connection after certain idle time
Previously when requests are issued to HTTP/2 downstream connection,
but it turns out that connection is down, handlers of those requests
are deleted. In some situations, we only know connection is down when
we write something to network, so we'd like to handle this kind of
situation in more robust manner. In this change, certain seconds
passed after last network activity, we first issue PING frame to
downstream connection before issuing new HTTP request. If writing
PING frame is failed, it means connection was lost. In this case,
instead of deleting handler, pending requests are migrated to new
HTTP2/ downstream connection, so that it can continue without
affecting upstream connection.
2014-12-08 17:30:15 +01:00
|
|
|
// Called when downstream connection is reset. Currently this is
|
2015-01-21 15:30:48 +01:00
|
|
|
// only used by Http2Session. If |no_retry| is true, another
|
|
|
|
// connection attempt using new DownstreamConnection is not allowed.
|
|
|
|
virtual int on_downstream_reset(bool no_retry) = 0;
|
2014-11-18 17:59:09 +01:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
virtual void pause_read(IOCtrlReason reason) = 0;
|
2014-08-21 14:22:16 +02:00
|
|
|
virtual int resume_read(IOCtrlReason reason, Downstream *downstream,
|
|
|
|
size_t consumed) = 0;
|
2012-06-04 16:48:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // SHRPX_UPSTREAM_H
|