2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
2012-01-24 14:02:24 +01: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.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
#ifndef NGHTTP2_STREAM_H
|
|
|
|
#define NGHTTP2_STREAM_H
|
2012-01-24 14:02:24 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include <nghttp2/nghttp2.h>
|
|
|
|
#include "nghttp2_outbound_item.h"
|
|
|
|
#include "nghttp2_map.h"
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-01-25 15:46:07 +01:00
|
|
|
/*
|
|
|
|
* If local peer is stream initiator:
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_STREAM_OPENING : upon sending SYN_STREAM
|
|
|
|
* NGHTTP2_STREAM_OPENED : upon receiving SYN_REPLY
|
|
|
|
* NGHTTP2_STREAM_CLOSING : upon queuing RST_STREAM
|
2012-01-25 15:46:07 +01:00
|
|
|
*
|
|
|
|
* If remote peer is stream initiator:
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_STREAM_OPENING : upon receiving SYN_STREAM
|
|
|
|
* NGHTTP2_STREAM_OPENED : upon sending SYN_REPLY
|
|
|
|
* NGHTTP2_STREAM_CLOSING : upon queuing RST_STREAM
|
2012-01-25 15:46:07 +01:00
|
|
|
*/
|
2012-01-24 15:18:50 +01:00
|
|
|
typedef enum {
|
2012-01-28 16:08:51 +01:00
|
|
|
/* Initial state */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_STREAM_INITIAL,
|
2012-01-25 13:31:28 +01:00
|
|
|
/* For stream initiator: SYN_STREAM has been sent, but SYN_REPLY is
|
|
|
|
not received yet. For receiver: SYN_STREAM has been received,
|
|
|
|
but it does not send SYN_REPLY yet. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_STREAM_OPENING,
|
2012-01-25 13:31:28 +01:00
|
|
|
/* For stream initiator: SYN_REPLY is received. For receiver:
|
|
|
|
SYN_REPLY is sent. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_STREAM_OPENED,
|
2012-01-25 13:31:28 +01:00
|
|
|
/* RST_STREAM is received, but somehow we need to keep stream in
|
|
|
|
memory. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_STREAM_CLOSING
|
|
|
|
} nghttp2_stream_state;
|
2012-01-24 15:18:50 +01:00
|
|
|
|
2012-01-28 16:08:51 +01:00
|
|
|
typedef enum {
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_SHUT_NONE = 0,
|
2012-01-28 16:08:51 +01:00
|
|
|
/* Indicates further receptions will be disallowed. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_SHUT_RD = 0x01,
|
2012-01-28 16:08:51 +01:00
|
|
|
/* Indicates further transmissions will be disallowed. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_SHUT_WR = 0x02,
|
2012-01-28 16:08:51 +01:00
|
|
|
/* Indicates both further receptions and transmissions will be
|
|
|
|
disallowed. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_SHUT_RDWR = NGHTTP2_SHUT_RD | NGHTTP2_SHUT_WR
|
|
|
|
} nghttp2_shut_flag;
|
2012-01-28 16:08:51 +01:00
|
|
|
|
2012-02-25 16:12:32 +01:00
|
|
|
typedef enum {
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_DEFERRED_NONE = 0,
|
2012-02-25 16:12:32 +01:00
|
|
|
/* Indicates the DATA is deferred due to flow control. */
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_DEFERRED_FLOW_CONTROL = 0x01
|
|
|
|
} nghttp2_deferred_flag;
|
2012-02-25 16:12:32 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
typedef struct {
|
2012-09-11 17:13:02 +02:00
|
|
|
/* Intrusive Map */
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_map_entry map_entry;
|
2012-09-11 17:13:02 +02:00
|
|
|
/* stream ID */
|
2012-01-24 14:02:24 +01:00
|
|
|
int32_t stream_id;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_state state;
|
2012-01-25 15:46:07 +01:00
|
|
|
/* Use same value in SYN_STREAM frame */
|
2012-01-24 15:18:50 +01:00
|
|
|
uint8_t flags;
|
2013-07-15 14:45:59 +02:00
|
|
|
/* Use same value in SYN_STREAM frame */
|
|
|
|
int32_t pri;
|
2013-07-12 17:19:03 +02:00
|
|
|
/* Bitwise OR of zero or more nghttp2_shut_flag values */
|
2012-01-28 16:08:51 +01:00
|
|
|
uint8_t shut_flags;
|
2012-02-02 13:51:52 +01:00
|
|
|
/* The array of server-pushed stream IDs which associate them to
|
|
|
|
this stream. */
|
|
|
|
int32_t *pushed_streams;
|
|
|
|
/* The number of stored pushed stream ID in |pushed_streams| */
|
|
|
|
size_t pushed_streams_length;
|
|
|
|
/* The maximum number of stream ID the |pushed_streams| can
|
|
|
|
store. */
|
|
|
|
size_t pushed_streams_capacity;
|
2012-02-03 17:37:21 +01:00
|
|
|
/* The arbitrary data provided by user for this stream. */
|
|
|
|
void *stream_user_data;
|
2012-02-19 15:42:25 +01:00
|
|
|
/* Deferred DATA frame */
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *deferred_data;
|
2012-02-25 16:12:32 +01:00
|
|
|
/* The flags for defered DATA. Bitwise OR of zero or more
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_deferred_flag values */
|
2012-02-25 16:12:32 +01:00
|
|
|
uint8_t deferred_flags;
|
2013-07-15 14:45:59 +02:00
|
|
|
/* Flag to indicate whether the remote side has flow control
|
|
|
|
enabled. If it is enabled, we have to enforces flow control to
|
|
|
|
send data to the other side. This could be disabled when
|
|
|
|
receiving SETTINGS with flow control options off or receiving
|
|
|
|
WINDOW_UPDATE with END_FLOW_CONTROL bit set. */
|
|
|
|
uint8_t remote_flow_control;
|
|
|
|
/* Flag to indicate whether the local side has flow control
|
|
|
|
enabled. If it is enabled, the received data are subject to the
|
|
|
|
flow control. This could be disabled by sending SETTINGS with
|
|
|
|
flow control options off or sending WINDOW_UPDATE with
|
|
|
|
END_FLOW_CONTROL bit set. */
|
|
|
|
uint8_t local_flow_control;
|
2012-03-09 16:10:11 +01:00
|
|
|
/* Current sender window size. This value is computed against the
|
|
|
|
current initial window size of remote endpoint. */
|
2012-02-25 16:12:32 +01:00
|
|
|
int32_t window_size;
|
|
|
|
/* Keep track of the number of bytes received without
|
|
|
|
WINDOW_UPDATE. */
|
|
|
|
int32_t recv_window_size;
|
2013-07-12 17:19:03 +02:00
|
|
|
} nghttp2_stream;
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id,
|
2013-07-15 14:45:59 +02:00
|
|
|
uint8_t flags, int32_t pri,
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_state initial_state,
|
2013-07-15 14:45:59 +02:00
|
|
|
uint8_t remote_flow_control,
|
|
|
|
uint8_t local_flow_control,
|
2012-02-25 16:12:32 +01:00
|
|
|
int32_t initial_window_size,
|
2012-02-03 17:37:21 +01:00
|
|
|
void *stream_user_data);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_stream_free(nghttp2_stream *stream);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-01-28 16:08:51 +01:00
|
|
|
/*
|
|
|
|
* Disallow either further receptions or transmissions, or both.
|
2013-07-12 17:19:03 +02:00
|
|
|
* |flag| is bitwise OR of one or more of nghttp2_shut_flag.
|
2012-01-28 16:08:51 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_stream_shutdown(nghttp2_stream *stream, nghttp2_shut_flag flag);
|
2012-01-28 16:08:51 +01:00
|
|
|
|
2012-02-02 13:51:52 +01:00
|
|
|
/*
|
|
|
|
* Add server-pushed |stream_id| to this stream. This happens when
|
|
|
|
* server-pushed stream is associated to this stream. This function
|
|
|
|
* returns 0 if it succeeds, or negative error code.
|
2012-02-02 15:23:35 +01:00
|
|
|
*
|
|
|
|
* RETURN VALUE
|
|
|
|
* ------------
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_NOMEM
|
2012-02-02 15:23:35 +01:00
|
|
|
* Out of memory.
|
2012-02-02 13:51:52 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_stream_add_pushed_stream(nghttp2_stream *stream, int32_t stream_id);
|
2012-02-02 13:51:52 +01:00
|
|
|
|
2012-02-19 15:42:25 +01:00
|
|
|
/*
|
|
|
|
* Defer DATA frame |data|. We won't call this function in the
|
2012-02-25 16:12:32 +01:00
|
|
|
* situation where stream->deferred_data != NULL. If |flags| is
|
2013-07-12 17:19:03 +02:00
|
|
|
* bitwise OR of zero or more nghttp2_deferred_flag values.
|
2012-02-19 15:42:25 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_stream_defer_data(nghttp2_stream *stream,
|
|
|
|
nghttp2_outbound_item *data,
|
2012-02-25 16:12:32 +01:00
|
|
|
uint8_t flags);
|
2012-02-19 15:42:25 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Detaches deferred data from this stream. This function does not
|
|
|
|
* free deferred data.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_stream_detach_deferred_data(nghttp2_stream *stream);
|
2012-02-19 15:42:25 +01:00
|
|
|
|
2012-03-09 16:10:11 +01:00
|
|
|
/*
|
|
|
|
* Updates the initial window size with the new value
|
|
|
|
* |new_initial_window_size|. The |old_initial_window_size| is used to
|
|
|
|
* calculate the current window size.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_stream_update_initial_window_size(nghttp2_stream *stream,
|
2012-03-09 16:10:11 +01:00
|
|
|
int32_t new_initial_window_size,
|
|
|
|
int32_t old_initial_window_size);
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#endif /* NGHTTP2_STREAM */
|