nghttp2_outbound_item.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. #include "nghttp2_outbound_item.h"
  26. #include <assert.h>
  27. #include <string.h>
  28. nghttp2_data_provider_wrap *
  29. nghttp2_data_provider_wrap_v1(nghttp2_data_provider_wrap *dpw,
  30. const nghttp2_data_provider *data_prd) {
  31. if (!data_prd) {
  32. return NULL;
  33. }
  34. dpw->version = NGHTTP2_DATA_PROVIDER_V1;
  35. dpw->data_prd.v1 = *data_prd;
  36. return dpw;
  37. }
  38. nghttp2_data_provider_wrap *
  39. nghttp2_data_provider_wrap_v2(nghttp2_data_provider_wrap *dpw,
  40. const nghttp2_data_provider2 *data_prd) {
  41. if (!data_prd) {
  42. return NULL;
  43. }
  44. dpw->version = NGHTTP2_DATA_PROVIDER_V2;
  45. dpw->data_prd.v2 = *data_prd;
  46. return dpw;
  47. }
  48. void nghttp2_outbound_item_init(nghttp2_outbound_item *item) {
  49. item->cycle = 0;
  50. item->qnext = NULL;
  51. item->queued = 0;
  52. memset(&item->aux_data, 0, sizeof(nghttp2_aux_data));
  53. }
  54. void nghttp2_outbound_item_free(nghttp2_outbound_item *item, nghttp2_mem *mem) {
  55. nghttp2_frame *frame;
  56. if (item == NULL) {
  57. return;
  58. }
  59. frame = &item->frame;
  60. switch (frame->hd.type) {
  61. case NGHTTP2_DATA:
  62. nghttp2_frame_data_free(&frame->data);
  63. break;
  64. case NGHTTP2_HEADERS:
  65. nghttp2_frame_headers_free(&frame->headers, mem);
  66. break;
  67. case NGHTTP2_PRIORITY:
  68. nghttp2_frame_priority_free(&frame->priority);
  69. break;
  70. case NGHTTP2_RST_STREAM:
  71. nghttp2_frame_rst_stream_free(&frame->rst_stream);
  72. break;
  73. case NGHTTP2_SETTINGS:
  74. nghttp2_frame_settings_free(&frame->settings, mem);
  75. break;
  76. case NGHTTP2_PUSH_PROMISE:
  77. nghttp2_frame_push_promise_free(&frame->push_promise, mem);
  78. break;
  79. case NGHTTP2_PING:
  80. nghttp2_frame_ping_free(&frame->ping);
  81. break;
  82. case NGHTTP2_GOAWAY:
  83. nghttp2_frame_goaway_free(&frame->goaway, mem);
  84. break;
  85. case NGHTTP2_WINDOW_UPDATE:
  86. nghttp2_frame_window_update_free(&frame->window_update);
  87. break;
  88. default: {
  89. nghttp2_ext_aux_data *aux_data;
  90. aux_data = &item->aux_data.ext;
  91. if (aux_data->builtin == 0) {
  92. nghttp2_frame_extension_free(&frame->ext);
  93. break;
  94. }
  95. switch (frame->hd.type) {
  96. case NGHTTP2_ALTSVC:
  97. nghttp2_frame_altsvc_free(&frame->ext, mem);
  98. break;
  99. case NGHTTP2_ORIGIN:
  100. nghttp2_frame_origin_free(&frame->ext, mem);
  101. break;
  102. case NGHTTP2_PRIORITY_UPDATE:
  103. nghttp2_frame_priority_update_free(&frame->ext, mem);
  104. break;
  105. default:
  106. assert(0);
  107. break;
  108. }
  109. }
  110. }
  111. }
  112. void nghttp2_outbound_queue_init(nghttp2_outbound_queue *q) {
  113. q->head = q->tail = NULL;
  114. q->n = 0;
  115. }
  116. void nghttp2_outbound_queue_push(nghttp2_outbound_queue *q,
  117. nghttp2_outbound_item *item) {
  118. if (q->tail) {
  119. q->tail = q->tail->qnext = item;
  120. } else {
  121. q->head = q->tail = item;
  122. }
  123. ++q->n;
  124. }
  125. void nghttp2_outbound_queue_pop(nghttp2_outbound_queue *q) {
  126. nghttp2_outbound_item *item;
  127. if (!q->head) {
  128. return;
  129. }
  130. item = q->head;
  131. q->head = q->head->qnext;
  132. item->qnext = NULL;
  133. if (!q->head) {
  134. q->tail = NULL;
  135. }
  136. --q->n;
  137. }