wslay_queue.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Wslay - The WebSocket Library
  3. *
  4. * Copyright (c) 2011, 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 "wslay_queue.h"
  26. #include <string.h>
  27. #include <assert.h>
  28. struct wslay_queue* wslay_queue_new()
  29. {
  30. struct wslay_queue *queue = (struct wslay_queue*)malloc
  31. (sizeof(struct wslay_queue));
  32. if(!queue) {
  33. return NULL;
  34. }
  35. queue->top = queue->tail = NULL;
  36. return queue;
  37. }
  38. void wslay_queue_free(struct wslay_queue *queue)
  39. {
  40. if(!queue) {
  41. return;
  42. }
  43. struct wslay_queue_cell *p = queue->top;
  44. while(p) {
  45. struct wslay_queue_cell *next = p->next;
  46. free(p);
  47. p = next;
  48. }
  49. free(queue);
  50. }
  51. int wslay_queue_push(struct wslay_queue *queue, void *data)
  52. {
  53. struct wslay_queue_cell *new_cell = (struct wslay_queue_cell*)malloc
  54. (sizeof(struct wslay_queue_cell));
  55. if(!new_cell) {
  56. return WSLAY_ERR_NOMEM;
  57. }
  58. new_cell->data = data;
  59. new_cell->next = NULL;
  60. if(queue->tail) {
  61. queue->tail->next = new_cell;
  62. queue->tail = new_cell;
  63. } else {
  64. queue->top = queue->tail = new_cell;
  65. }
  66. return 0;
  67. }
  68. int wslay_queue_push_front(struct wslay_queue *queue, void *data)
  69. {
  70. struct wslay_queue_cell *new_cell = (struct wslay_queue_cell*)malloc
  71. (sizeof(struct wslay_queue_cell));
  72. if(!new_cell) {
  73. return WSLAY_ERR_NOMEM;
  74. }
  75. new_cell->data = data;
  76. new_cell->next = queue->top;
  77. queue->top = new_cell;
  78. if(!queue->tail) {
  79. queue->tail = queue->top;
  80. }
  81. return 0;
  82. }
  83. void wslay_queue_pop(struct wslay_queue *queue)
  84. {
  85. struct wslay_queue_cell *top = queue->top;
  86. assert(top);
  87. queue->top = top->next;
  88. if(top == queue->tail) {
  89. queue->tail = NULL;
  90. }
  91. free(top);
  92. }
  93. void* wslay_queue_top(struct wslay_queue *queue)
  94. {
  95. assert(queue->top);
  96. return queue->top->data;
  97. }
  98. void* wslay_queue_tail(struct wslay_queue *queue)
  99. {
  100. assert(queue->tail);
  101. return queue->tail->data;
  102. }
  103. int wslay_queue_empty(struct wslay_queue *queue)
  104. {
  105. return queue->top == NULL;
  106. }