slist.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. /*
  2. * Copyright (c) 2016 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. *
  9. * @brief Single-linked list implementation
  10. *
  11. * Single-linked list implementation using inline macros/functions.
  12. * This API is not thread safe, and thus if a list is used across threads,
  13. * calls to functions must be protected with synchronization primitives.
  14. */
  15. #ifndef ZEPHYR_INCLUDE_SYS_SLIST_H_
  16. #define ZEPHYR_INCLUDE_SYS_SLIST_H_
  17. #include <stddef.h>
  18. #include <stdbool.h>
  19. #include "list_gen.h"
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. struct _snode {
  24. struct _snode *next;
  25. };
  26. typedef struct _snode sys_snode_t;
  27. struct _slist {
  28. sys_snode_t *head;
  29. sys_snode_t *tail;
  30. };
  31. typedef struct _slist sys_slist_t;
  32. /**
  33. * @defgroup single-linked-list_apis Single-linked list
  34. * @ingroup datastructure_apis
  35. * @{
  36. */
  37. /**
  38. * @brief Provide the primitive to iterate on a list
  39. * Note: the loop is unsafe and thus __sn should not be removed
  40. *
  41. * User _MUST_ add the loop statement curly braces enclosing its own code:
  42. *
  43. * SYS_SLIST_FOR_EACH_NODE(l, n) {
  44. * <user code>
  45. * }
  46. *
  47. * This and other SYS_SLIST_*() macros are not thread safe.
  48. *
  49. * @param __sl A pointer on a sys_slist_t to iterate on
  50. * @param __sn A sys_snode_t pointer to peek each node of the list
  51. */
  52. #define SYS_SLIST_FOR_EACH_NODE(__sl, __sn) \
  53. Z_GENLIST_FOR_EACH_NODE(slist, __sl, __sn)
  54. /**
  55. * @brief Provide the primitive to iterate on a list, from a node in the list
  56. * Note: the loop is unsafe and thus __sn should not be removed
  57. *
  58. * User _MUST_ add the loop statement curly braces enclosing its own code:
  59. *
  60. * SYS_SLIST_ITERATE_FROM_NODE(l, n) {
  61. * <user code>
  62. * }
  63. *
  64. * Like SYS_SLIST_FOR_EACH_NODE(), but __dn already contains a node in the list
  65. * where to start searching for the next entry from. If NULL, it starts from
  66. * the head.
  67. *
  68. * This and other SYS_SLIST_*() macros are not thread safe.
  69. *
  70. * @param __sl A pointer on a sys_slist_t to iterate on
  71. * @param __sn A sys_snode_t pointer to peek each node of the list
  72. * it contains the starting node, or NULL to start from the head
  73. */
  74. #define SYS_SLIST_ITERATE_FROM_NODE(__sl, __sn) \
  75. Z_GENLIST_ITERATE_FROM_NODE(slist, __sl, __sn)
  76. /**
  77. * @brief Provide the primitive to safely iterate on a list
  78. * Note: __sn can be removed, it will not break the loop.
  79. *
  80. * User _MUST_ add the loop statement curly braces enclosing its own code:
  81. *
  82. * SYS_SLIST_FOR_EACH_NODE_SAFE(l, n, s) {
  83. * <user code>
  84. * }
  85. *
  86. * This and other SYS_SLIST_*() macros are not thread safe.
  87. *
  88. * @param __sl A pointer on a sys_slist_t to iterate on
  89. * @param __sn A sys_snode_t pointer to peek each node of the list
  90. * @param __sns A sys_snode_t pointer for the loop to run safely
  91. */
  92. #define SYS_SLIST_FOR_EACH_NODE_SAFE(__sl, __sn, __sns) \
  93. Z_GENLIST_FOR_EACH_NODE_SAFE(slist, __sl, __sn, __sns)
  94. /*
  95. * @brief Provide the primitive to resolve the container of a list node
  96. * Note: it is safe to use with NULL pointer nodes
  97. *
  98. * @param __ln A pointer on a sys_node_t to get its container
  99. * @param __cn Container struct type pointer
  100. * @param __n The field name of sys_node_t within the container struct
  101. */
  102. #define SYS_SLIST_CONTAINER(__ln, __cn, __n) \
  103. Z_GENLIST_CONTAINER(__ln, __cn, __n)
  104. /*
  105. * @brief Provide the primitive to peek container of the list head
  106. *
  107. * @param __sl A pointer on a sys_slist_t to peek
  108. * @param __cn Container struct type pointer
  109. * @param __n The field name of sys_node_t within the container struct
  110. */
  111. #define SYS_SLIST_PEEK_HEAD_CONTAINER(__sl, __cn, __n) \
  112. Z_GENLIST_PEEK_HEAD_CONTAINER(slist, __sl, __cn, __n)
  113. /*
  114. * @brief Provide the primitive to peek container of the list tail
  115. *
  116. * @param __sl A pointer on a sys_slist_t to peek
  117. * @param __cn Container struct type pointer
  118. * @param __n The field name of sys_node_t within the container struct
  119. */
  120. #define SYS_SLIST_PEEK_TAIL_CONTAINER(__sl, __cn, __n) \
  121. Z_GENLIST_PEEK_TAIL_CONTAINER(slist, __sl, __cn, __n)
  122. /*
  123. * @brief Provide the primitive to peek the next container
  124. *
  125. * @param __cn Container struct type pointer
  126. * @param __n The field name of sys_node_t within the container struct
  127. */
  128. #define SYS_SLIST_PEEK_NEXT_CONTAINER(__cn, __n) \
  129. Z_GENLIST_PEEK_NEXT_CONTAINER(slist, __cn, __n)
  130. /**
  131. * @brief Provide the primitive to iterate on a list under a container
  132. * Note: the loop is unsafe and thus __cn should not be detached
  133. *
  134. * User _MUST_ add the loop statement curly braces enclosing its own code:
  135. *
  136. * SYS_SLIST_FOR_EACH_CONTAINER(l, c, n) {
  137. * <user code>
  138. * }
  139. *
  140. * @param __sl A pointer on a sys_slist_t to iterate on
  141. * @param __cn A pointer to peek each entry of the list
  142. * @param __n The field name of sys_node_t within the container struct
  143. */
  144. #define SYS_SLIST_FOR_EACH_CONTAINER(__sl, __cn, __n) \
  145. Z_GENLIST_FOR_EACH_CONTAINER(slist, __sl, __cn, __n)
  146. /**
  147. * @brief Provide the primitive to safely iterate on a list under a container
  148. * Note: __cn can be detached, it will not break the loop.
  149. *
  150. * User _MUST_ add the loop statement curly braces enclosing its own code:
  151. *
  152. * SYS_SLIST_FOR_EACH_NODE_SAFE(l, c, cn, n) {
  153. * <user code>
  154. * }
  155. *
  156. * @param __sl A pointer on a sys_slist_t to iterate on
  157. * @param __cn A pointer to peek each entry of the list
  158. * @param __cns A pointer for the loop to run safely
  159. * @param __n The field name of sys_node_t within the container struct
  160. */
  161. #define SYS_SLIST_FOR_EACH_CONTAINER_SAFE(__sl, __cn, __cns, __n) \
  162. Z_GENLIST_FOR_EACH_CONTAINER_SAFE(slist, __sl, __cn, __cns, __n)
  163. /*
  164. * Required function definitions for the list_gen.h interface
  165. *
  166. * These are the only functions that do not treat the list/node pointers
  167. * as completely opaque types.
  168. */
  169. /**
  170. * @brief Initialize a list
  171. *
  172. * @param list A pointer on the list to initialize
  173. */
  174. static inline void sys_slist_init(sys_slist_t *list)
  175. {
  176. list->head = NULL;
  177. list->tail = NULL;
  178. }
  179. #define SYS_SLIST_STATIC_INIT(ptr_to_list) {NULL, NULL}
  180. static inline sys_snode_t *z_snode_next_peek(sys_snode_t *node)
  181. {
  182. return node->next;
  183. }
  184. static inline void z_snode_next_set(sys_snode_t *parent, sys_snode_t *child)
  185. {
  186. parent->next = child;
  187. }
  188. static inline void z_slist_head_set(sys_slist_t *list, sys_snode_t *node)
  189. {
  190. list->head = node;
  191. }
  192. static inline void z_slist_tail_set(sys_slist_t *list, sys_snode_t *node)
  193. {
  194. list->tail = node;
  195. }
  196. /**
  197. * @brief Peek the first node from the list
  198. *
  199. * @param list A point on the list to peek the first node from
  200. *
  201. * @return A pointer on the first node of the list (or NULL if none)
  202. */
  203. static inline sys_snode_t *sys_slist_peek_head(sys_slist_t *list)
  204. {
  205. return list->head;
  206. }
  207. /**
  208. * @brief Peek the last node from the list
  209. *
  210. * @param list A point on the list to peek the last node from
  211. *
  212. * @return A pointer on the last node of the list (or NULL if none)
  213. */
  214. static inline sys_snode_t *sys_slist_peek_tail(sys_slist_t *list)
  215. {
  216. return list->tail;
  217. }
  218. /*
  219. * Derived, generated APIs
  220. */
  221. /**
  222. * @brief Test if the given list is empty
  223. *
  224. * @param list A pointer on the list to test
  225. *
  226. * @return a boolean, true if it's empty, false otherwise
  227. */
  228. static inline bool sys_slist_is_empty(sys_slist_t *list);
  229. Z_GENLIST_IS_EMPTY(slist)
  230. /**
  231. * @brief Peek the next node from current node, node is not NULL
  232. *
  233. * Faster then sys_slist_peek_next() if node is known not to be NULL.
  234. *
  235. * @param node A pointer on the node where to peek the next node
  236. *
  237. * @return a pointer on the next node (or NULL if none)
  238. */
  239. static inline sys_snode_t *sys_slist_peek_next_no_check(sys_snode_t *node);
  240. Z_GENLIST_PEEK_NEXT_NO_CHECK(slist, snode)
  241. /**
  242. * @brief Peek the next node from current node
  243. *
  244. * @param node A pointer on the node where to peek the next node
  245. *
  246. * @return a pointer on the next node (or NULL if none)
  247. */
  248. static inline sys_snode_t *sys_slist_peek_next(sys_snode_t *node);
  249. Z_GENLIST_PEEK_NEXT(slist, snode)
  250. /**
  251. * @brief Prepend a node to the given list
  252. *
  253. * This and other sys_slist_*() functions are not thread safe.
  254. *
  255. * @param list A pointer on the list to affect
  256. * @param node A pointer on the node to prepend
  257. */
  258. static inline void sys_slist_prepend(sys_slist_t *list,
  259. sys_snode_t *node);
  260. Z_GENLIST_PREPEND(slist, snode)
  261. /**
  262. * @brief Append a node to the given list
  263. *
  264. * This and other sys_slist_*() functions are not thread safe.
  265. *
  266. * @param list A pointer on the list to affect
  267. * @param node A pointer on the node to append
  268. */
  269. static inline void sys_slist_append(sys_slist_t *list,
  270. sys_snode_t *node);
  271. Z_GENLIST_APPEND(slist, snode)
  272. /**
  273. * @brief Append a list to the given list
  274. *
  275. * Append a singly-linked, NULL-terminated list consisting of nodes containing
  276. * the pointer to the next node as the first element of a node, to @a list.
  277. * This and other sys_slist_*() functions are not thread safe.
  278. *
  279. * FIXME: Why are the element parameters void *?
  280. *
  281. * @param list A pointer on the list to affect
  282. * @param head A pointer to the first element of the list to append
  283. * @param tail A pointer to the last element of the list to append
  284. */
  285. static inline void sys_slist_append_list(sys_slist_t *list,
  286. void *head, void *tail);
  287. Z_GENLIST_APPEND_LIST(slist, snode)
  288. /**
  289. * @brief merge two slists, appending the second one to the first
  290. *
  291. * When the operation is completed, the appending list is empty.
  292. * This and other sys_slist_*() functions are not thread safe.
  293. *
  294. * @param list A pointer on the list to affect
  295. * @param list_to_append A pointer to the list to append.
  296. */
  297. static inline void sys_slist_merge_slist(sys_slist_t *list,
  298. sys_slist_t *list_to_append);
  299. Z_GENLIST_MERGE_LIST(slist, snode)
  300. /**
  301. * @brief Insert a node to the given list
  302. *
  303. * This and other sys_slist_*() functions are not thread safe.
  304. *
  305. * @param list A pointer on the list to affect
  306. * @param prev A pointer on the previous node
  307. * @param node A pointer on the node to insert
  308. */
  309. static inline void sys_slist_insert(sys_slist_t *list,
  310. sys_snode_t *prev,
  311. sys_snode_t *node);
  312. Z_GENLIST_INSERT(slist, snode)
  313. /**
  314. * @brief Fetch and remove the first node of the given list
  315. *
  316. * List must be known to be non-empty.
  317. * This and other sys_slist_*() functions are not thread safe.
  318. *
  319. * @param list A pointer on the list to affect
  320. *
  321. * @return A pointer to the first node of the list
  322. */
  323. static inline sys_snode_t *sys_slist_get_not_empty(sys_slist_t *list);
  324. Z_GENLIST_GET_NOT_EMPTY(slist, snode)
  325. /**
  326. * @brief Fetch and remove the first node of the given list
  327. *
  328. * This and other sys_slist_*() functions are not thread safe.
  329. *
  330. * @param list A pointer on the list to affect
  331. *
  332. * @return A pointer to the first node of the list (or NULL if empty)
  333. */
  334. static inline sys_snode_t *sys_slist_get(sys_slist_t *list);
  335. Z_GENLIST_GET(slist, snode)
  336. /**
  337. * @brief Remove a node
  338. *
  339. * This and other sys_slist_*() functions are not thread safe.
  340. *
  341. * @param list A pointer on the list to affect
  342. * @param prev_node A pointer on the previous node
  343. * (can be NULL, which means the node is the list's head)
  344. * @param node A pointer on the node to remove
  345. */
  346. static inline void sys_slist_remove(sys_slist_t *list,
  347. sys_snode_t *prev_node,
  348. sys_snode_t *node);
  349. Z_GENLIST_REMOVE(slist, snode)
  350. /**
  351. * @brief Find and remove a node from a list
  352. *
  353. * This and other sys_slist_*() functions are not thread safe.
  354. *
  355. * @param list A pointer on the list to affect
  356. * @param node A pointer on the node to remove from the list
  357. *
  358. * @return true if node was removed
  359. */
  360. static inline bool sys_slist_find_and_remove(sys_slist_t *list,
  361. sys_snode_t *node);
  362. /** @} */
  363. Z_GENLIST_FIND_AND_REMOVE(slist, snode)
  364. #ifdef __cplusplus
  365. }
  366. #endif
  367. #endif /* ZEPHYR_INCLUDE_SYS_SLIST_H_ */