wslay_stack.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. struct wslay_stack_cell *p;
  41. if(!stack) {
  42. return;
  43. }
  44. p = stack->top;
  45. while(p) {
  46. struct wslay_stack_cell *next = p->next;
  47. free(p);
  48. p = next;
  49. }
  50. free(stack);
  51. }
  52. int wslay_stack_push(struct wslay_stack *stack, void *data)
  53. {
  54. struct wslay_stack_cell *new_cell = (struct wslay_stack_cell*)malloc
  55. (sizeof(struct wslay_stack_cell));
  56. if(!new_cell) {
  57. return WSLAY_ERR_NOMEM;
  58. }
  59. new_cell->data = data;
  60. new_cell->next = stack->top;
  61. stack->top = new_cell;
  62. return 0;
  63. }
  64. void wslay_stack_pop(struct wslay_stack *stack)
  65. {
  66. struct wslay_stack_cell *top = stack->top;
  67. assert(top);
  68. stack->top = top->next;
  69. free(top);
  70. }
  71. void* wslay_stack_top(struct wslay_stack *stack)
  72. {
  73. assert(stack->top);
  74. return stack->top->data;
  75. }
  76. int wslay_stack_empty(struct wslay_stack *stack)
  77. {
  78. return stack->top == NULL;
  79. }