wslay_stack.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_stack.h"
  26. #include <string.h>
  27. #include <assert.h>
  28. struct wslay_stack* wslay_stack_new()
  29. {
  30. struct wslay_stack *stack = (struct wslay_stack*)malloc
  31. (sizeof(struct wslay_stack));
  32. if(!stack) {
  33. return NULL;
  34. }
  35. stack->top = NULL;
  36. return stack;
  37. }
  38. void wslay_stack_free(struct wslay_stack *stack)
  39. {
  40. if(!stack) {
  41. return;
  42. }
  43. struct wslay_stack_cell *p = stack->top;
  44. while(p) {
  45. struct wslay_stack_cell *next = p->next;
  46. free(p);
  47. p = next;
  48. }
  49. free(stack);
  50. }
  51. int wslay_stack_push(struct wslay_stack *stack, void *data)
  52. {
  53. struct wslay_stack_cell *new_cell = (struct wslay_stack_cell*)malloc
  54. (sizeof(struct wslay_stack_cell));
  55. if(!new_cell) {
  56. return WSLAY_ERR_NOMEM;
  57. }
  58. new_cell->data = data;
  59. new_cell->next = stack->top;
  60. stack->top = new_cell;
  61. return 0;
  62. }
  63. void wslay_stack_pop(struct wslay_stack *stack)
  64. {
  65. struct wslay_stack_cell *top = stack->top;
  66. assert(top);
  67. stack->top = top->next;
  68. free(top);
  69. }
  70. void* wslay_stack_top(struct wslay_stack *stack)
  71. {
  72. assert(stack->top);
  73. return stack->top->data;
  74. }
  75. int wslay_stack_empty(struct wslay_stack *stack)
  76. {
  77. return stack->top == NULL;
  78. }