nghttp2_outbound_item.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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 NGHTTP2_OUTBOUND_ITEM_H
  26. #define NGHTTP2_OUTBOUND_ITEM_H
  27. #ifdef HAVE_CONFIG_H
  28. # include <config.h>
  29. #endif /* HAVE_CONFIG_H */
  30. #include <nghttp2/nghttp2.h>
  31. #include "nghttp2_frame.h"
  32. #include "nghttp2_mem.h"
  33. /* struct used for HEADERS and PUSH_PROMISE frame */
  34. typedef struct {
  35. nghttp2_data_provider data_prd;
  36. void *stream_user_data;
  37. /* error code when request HEADERS is canceled by RST_STREAM while
  38. it is in queue. */
  39. uint32_t error_code;
  40. /* nonzero if request HEADERS is canceled. The error code is stored
  41. in |error_code|. */
  42. uint8_t canceled;
  43. } nghttp2_headers_aux_data;
  44. /* struct used for DATA frame */
  45. typedef struct {
  46. /**
  47. * The data to be sent for this DATA frame.
  48. */
  49. nghttp2_data_provider data_prd;
  50. /**
  51. * The flags of DATA frame. We use separate flags here and
  52. * nghttp2_data frame. The latter contains flags actually sent to
  53. * peer. This |flags| may contain NGHTTP2_FLAG_END_STREAM and only
  54. * when |eof| becomes nonzero, flags in nghttp2_data has
  55. * NGHTTP2_FLAG_END_STREAM set.
  56. */
  57. uint8_t flags;
  58. /**
  59. * The flag to indicate whether EOF was reached or not. Initially
  60. * |eof| is 0. It becomes 1 after all data were read.
  61. */
  62. uint8_t eof;
  63. /**
  64. * The flag to indicate that NGHTTP2_DATA_FLAG_NO_COPY is used.
  65. */
  66. uint8_t no_copy;
  67. } nghttp2_data_aux_data;
  68. typedef enum {
  69. NGHTTP2_GOAWAY_AUX_NONE = 0x0,
  70. /* indicates that session should be terminated after the
  71. transmission of this frame. */
  72. NGHTTP2_GOAWAY_AUX_TERM_ON_SEND = 0x1,
  73. /* indicates that this GOAWAY is just a notification for graceful
  74. shutdown. No nghttp2_session.goaway_flags should be updated on
  75. the reaction to this frame. */
  76. NGHTTP2_GOAWAY_AUX_SHUTDOWN_NOTICE = 0x2
  77. } nghttp2_goaway_aux_flag;
  78. /* struct used for GOAWAY frame */
  79. typedef struct {
  80. /* bitwise-OR of one or more of nghttp2_goaway_aux_flag. */
  81. uint8_t flags;
  82. } nghttp2_goaway_aux_data;
  83. /* struct used for extension frame */
  84. typedef struct {
  85. /* nonzero if this extension frame is serialized by library
  86. function, instead of user-defined callbacks. */
  87. uint8_t builtin;
  88. } nghttp2_ext_aux_data;
  89. /* Additional data which cannot be stored in nghttp2_frame struct */
  90. typedef union {
  91. nghttp2_data_aux_data data;
  92. nghttp2_headers_aux_data headers;
  93. nghttp2_goaway_aux_data goaway;
  94. nghttp2_ext_aux_data ext;
  95. } nghttp2_aux_data;
  96. struct nghttp2_outbound_item;
  97. typedef struct nghttp2_outbound_item nghttp2_outbound_item;
  98. struct nghttp2_outbound_item {
  99. nghttp2_frame frame;
  100. /* Storage for extension frame payload. frame->ext.payload points
  101. to this structure to avoid frequent memory allocation. */
  102. nghttp2_ext_frame_payload ext_frame_payload;
  103. nghttp2_aux_data aux_data;
  104. /* The priority used in priority comparison. Smaller is served
  105. earlier. For PING, SETTINGS and non-DATA frames (excluding
  106. response HEADERS frame) have dedicated cycle value defined above.
  107. For DATA frame, cycle is computed by taking into account of
  108. effective weight and frame payload length previously sent, so
  109. that the amount of transmission is distributed across streams
  110. proportional to effective weight (inside a tree). */
  111. uint64_t cycle;
  112. nghttp2_outbound_item *qnext;
  113. /* nonzero if this object is queued, except for DATA or HEADERS
  114. which are attached to stream as item. */
  115. uint8_t queued;
  116. };
  117. /*
  118. * Initializes |item|. No memory allocation is done in this function.
  119. * Don't call nghttp2_outbound_item_free() until frame member is
  120. * initialized.
  121. */
  122. void nghttp2_outbound_item_init(nghttp2_outbound_item *item);
  123. /*
  124. * Deallocates resource for |item|. If |item| is NULL, this function
  125. * does nothing.
  126. */
  127. void nghttp2_outbound_item_free(nghttp2_outbound_item *item, nghttp2_mem *mem);
  128. /*
  129. * queue for nghttp2_outbound_item.
  130. */
  131. typedef struct {
  132. nghttp2_outbound_item *head, *tail;
  133. /* number of items in this queue. */
  134. size_t n;
  135. } nghttp2_outbound_queue;
  136. void nghttp2_outbound_queue_init(nghttp2_outbound_queue *q);
  137. /* Pushes |item| into |q| */
  138. void nghttp2_outbound_queue_push(nghttp2_outbound_queue *q,
  139. nghttp2_outbound_item *item);
  140. /* Pops |item| at the top from |q|. If |q| is empty, nothing
  141. happens. */
  142. void nghttp2_outbound_queue_pop(nghttp2_outbound_queue *q);
  143. /* Returns the top item. */
  144. #define nghttp2_outbound_queue_top(Q) ((Q)->head)
  145. /* Returns the size of the queue */
  146. #define nghttp2_outbound_queue_size(Q) ((Q)->n)
  147. #endif /* NGHTTP2_OUTBOUND_ITEM_H */