zend_llist.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend Engine |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1998-2018 Zend Technologies Ltd. (http://www.zend.com) |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 2.00 of the Zend license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.zend.com/license/2_00.txt. |
  11. | If you did not receive a copy of the Zend license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@zend.com so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Andi Gutmans <andi@php.net> |
  16. | Zeev Suraski <zeev@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #include "zend.h"
  20. #include "zend_llist.h"
  21. #include "zend_sort.h"
  22. ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char persistent)
  23. {
  24. l->head = NULL;
  25. l->tail = NULL;
  26. l->count = 0;
  27. l->size = size;
  28. l->dtor = dtor;
  29. l->persistent = persistent;
  30. }
  31. ZEND_API void zend_llist_add_element(zend_llist *l, void *element)
  32. {
  33. zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent);
  34. tmp->prev = l->tail;
  35. tmp->next = NULL;
  36. if (l->tail) {
  37. l->tail->next = tmp;
  38. } else {
  39. l->head = tmp;
  40. }
  41. l->tail = tmp;
  42. memcpy(tmp->data, element, l->size);
  43. ++l->count;
  44. }
  45. ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element)
  46. {
  47. zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent);
  48. tmp->next = l->head;
  49. tmp->prev = NULL;
  50. if (l->head) {
  51. l->head->prev = tmp;
  52. } else {
  53. l->tail = tmp;
  54. }
  55. l->head = tmp;
  56. memcpy(tmp->data, element, l->size);
  57. ++l->count;
  58. }
  59. #define DEL_LLIST_ELEMENT(current, l) \
  60. if ((current)->prev) {\
  61. (current)->prev->next = (current)->next;\
  62. } else {\
  63. (l)->head = (current)->next;\
  64. }\
  65. if ((current)->next) {\
  66. (current)->next->prev = (current)->prev;\
  67. } else {\
  68. (l)->tail = (current)->prev;\
  69. }\
  70. if ((l)->dtor) {\
  71. (l)->dtor((current)->data);\
  72. }\
  73. pefree((current), (l)->persistent);\
  74. --l->count;
  75. ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, void *element2))
  76. {
  77. zend_llist_element *current=l->head;
  78. while (current) {
  79. if (compare(current->data, element)) {
  80. DEL_LLIST_ELEMENT(current, l);
  81. break;
  82. }
  83. current = current->next;
  84. }
  85. }
  86. ZEND_API void zend_llist_destroy(zend_llist *l)
  87. {
  88. zend_llist_element *current=l->head, *next;
  89. while (current) {
  90. next = current->next;
  91. if (l->dtor) {
  92. l->dtor(current->data);
  93. }
  94. pefree(current, l->persistent);
  95. current = next;
  96. }
  97. l->count = 0;
  98. }
  99. ZEND_API void zend_llist_clean(zend_llist *l)
  100. {
  101. zend_llist_destroy(l);
  102. l->head = l->tail = NULL;
  103. }
  104. ZEND_API void zend_llist_remove_tail(zend_llist *l)
  105. {
  106. zend_llist_element *old_tail = l->tail;
  107. if (!old_tail) {
  108. return;
  109. }
  110. if (old_tail->prev) {
  111. old_tail->prev->next = NULL;
  112. } else {
  113. l->head = NULL;
  114. }
  115. l->tail = old_tail->prev;
  116. --l->count;
  117. if (l->dtor) {
  118. l->dtor(old_tail->data);
  119. }
  120. pefree(old_tail, l->persistent);
  121. }
  122. ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src)
  123. {
  124. zend_llist_element *ptr;
  125. zend_llist_init(dst, src->size, src->dtor, src->persistent);
  126. ptr = src->head;
  127. while (ptr) {
  128. zend_llist_add_element(dst, ptr->data);
  129. ptr = ptr->next;
  130. }
  131. }
  132. ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data))
  133. {
  134. zend_llist_element *element, *next;
  135. element=l->head;
  136. while (element) {
  137. next = element->next;
  138. if (func(element->data)) {
  139. DEL_LLIST_ELEMENT(element, l);
  140. }
  141. element = next;
  142. }
  143. }
  144. ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func)
  145. {
  146. zend_llist_element *element;
  147. for (element=l->head; element; element=element->next) {
  148. func(element->data);
  149. }
  150. }
  151. static void zend_llist_swap(zend_llist_element **p, zend_llist_element **q)
  152. {
  153. zend_llist_element *t;
  154. t = *p;
  155. *p = *q;
  156. *q = t;
  157. }
  158. ZEND_API void zend_llist_sort(zend_llist *l, llist_compare_func_t comp_func)
  159. {
  160. size_t i;
  161. zend_llist_element **elements;
  162. zend_llist_element *element, **ptr;
  163. if (l->count == 0) {
  164. return;
  165. }
  166. elements = (zend_llist_element **) emalloc(l->count * sizeof(zend_llist_element *));
  167. ptr = &elements[0];
  168. for (element=l->head; element; element=element->next) {
  169. *ptr++ = element;
  170. }
  171. zend_sort(elements, l->count, sizeof(zend_llist_element *),
  172. (compare_func_t) comp_func, (swap_func_t) zend_llist_swap);
  173. l->head = elements[0];
  174. elements[0]->prev = NULL;
  175. for (i = 1; i < l->count; i++) {
  176. elements[i]->prev = elements[i-1];
  177. elements[i-1]->next = elements[i];
  178. }
  179. elements[i-1]->next = NULL;
  180. l->tail = elements[i-1];
  181. efree(elements);
  182. }
  183. ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void *arg)
  184. {
  185. zend_llist_element *element;
  186. for (element=l->head; element; element=element->next) {
  187. func(element->data, arg);
  188. }
  189. }
  190. ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func, int num_args, ...)
  191. {
  192. zend_llist_element *element;
  193. va_list args;
  194. va_start(args, num_args);
  195. for (element=l->head; element; element=element->next) {
  196. func(element->data, num_args, args);
  197. }
  198. va_end(args);
  199. }
  200. ZEND_API size_t zend_llist_count(zend_llist *l)
  201. {
  202. return l->count;
  203. }
  204. ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos)
  205. {
  206. zend_llist_position *current = pos ? pos : &l->traverse_ptr;
  207. *current = l->head;
  208. if (*current) {
  209. return (*current)->data;
  210. } else {
  211. return NULL;
  212. }
  213. }
  214. ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos)
  215. {
  216. zend_llist_position *current = pos ? pos : &l->traverse_ptr;
  217. *current = l->tail;
  218. if (*current) {
  219. return (*current)->data;
  220. } else {
  221. return NULL;
  222. }
  223. }
  224. ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos)
  225. {
  226. zend_llist_position *current = pos ? pos : &l->traverse_ptr;
  227. if (*current) {
  228. *current = (*current)->next;
  229. if (*current) {
  230. return (*current)->data;
  231. }
  232. }
  233. return NULL;
  234. }
  235. ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos)
  236. {
  237. zend_llist_position *current = pos ? pos : &l->traverse_ptr;
  238. if (*current) {
  239. *current = (*current)->prev;
  240. if (*current) {
  241. return (*current)->data;
  242. }
  243. }
  244. return NULL;
  245. }
  246. /*
  247. * Local variables:
  248. * tab-width: 4
  249. * c-basic-offset: 4
  250. * indent-tabs-mode: t
  251. * End:
  252. * vim600: sw=4 ts=4 fdm=marker
  253. * vim<600: sw=4 ts=4
  254. */