sflist.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  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_SFLIST_H_
  16. #define ZEPHYR_INCLUDE_SYS_SFLIST_H_
  17. #include <stddef.h>
  18. #include <stdbool.h>
  19. #include <sys/__assert.h>
  20. #include "list_gen.h"
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #ifdef __LP64__
  25. typedef uint64_t unative_t;
  26. #else
  27. typedef uint32_t unative_t;
  28. #endif
  29. struct _sfnode {
  30. unative_t next_and_flags;
  31. };
  32. typedef struct _sfnode sys_sfnode_t;
  33. struct _sflist {
  34. sys_sfnode_t *head;
  35. sys_sfnode_t *tail;
  36. };
  37. typedef struct _sflist sys_sflist_t;
  38. /**
  39. * @defgroup flagged-single-linked-list_apis Flagged Single-linked list
  40. * @ingroup datastructure_apis
  41. * @{
  42. */
  43. /**
  44. * @brief Provide the primitive to iterate on a list
  45. * Note: the loop is unsafe and thus __sn should not be removed
  46. *
  47. * User _MUST_ add the loop statement curly braces enclosing its own code:
  48. *
  49. * SYS_SFLIST_FOR_EACH_NODE(l, n) {
  50. * <user code>
  51. * }
  52. *
  53. * This and other SYS_SFLIST_*() macros are not thread safe.
  54. *
  55. * @param __sl A pointer on a sys_sflist_t to iterate on
  56. * @param __sn A sys_sfnode_t pointer to peek each node of the list
  57. */
  58. #define SYS_SFLIST_FOR_EACH_NODE(__sl, __sn) \
  59. Z_GENLIST_FOR_EACH_NODE(sflist, __sl, __sn)
  60. /**
  61. * @brief Provide the primitive to iterate on a list, from a node in the list
  62. * Note: the loop is unsafe and thus __sn should not be removed
  63. *
  64. * User _MUST_ add the loop statement curly braces enclosing its own code:
  65. *
  66. * SYS_SFLIST_ITERATE_FROM_NODE(l, n) {
  67. * <user code>
  68. * }
  69. *
  70. * Like SYS_SFLIST_FOR_EACH_NODE(), but __dn already contains a node in the list
  71. * where to start searching for the next entry from. If NULL, it starts from
  72. * the head.
  73. *
  74. * This and other SYS_SFLIST_*() macros are not thread safe.
  75. *
  76. * @param __sl A pointer on a sys_sflist_t to iterate on
  77. * @param __sn A sys_sfnode_t pointer to peek each node of the list
  78. * it contains the starting node, or NULL to start from the head
  79. */
  80. #define SYS_SFLIST_ITERATE_FROM_NODE(__sl, __sn) \
  81. Z_GENLIST_ITERATE_FROM_NODE(sflist, __sl, __sn)
  82. /**
  83. * @brief Provide the primitive to safely iterate on a list
  84. * Note: __sn can be removed, it will not break the loop.
  85. *
  86. * User _MUST_ add the loop statement curly braces enclosing its own code:
  87. *
  88. * SYS_SFLIST_FOR_EACH_NODE_SAFE(l, n, s) {
  89. * <user code>
  90. * }
  91. *
  92. * This and other SYS_SFLIST_*() macros are not thread safe.
  93. *
  94. * @param __sl A pointer on a sys_sflist_t to iterate on
  95. * @param __sn A sys_sfnode_t pointer to peek each node of the list
  96. * @param __sns A sys_sfnode_t pointer for the loop to run safely
  97. */
  98. #define SYS_SFLIST_FOR_EACH_NODE_SAFE(__sl, __sn, __sns) \
  99. Z_GENLIST_FOR_EACH_NODE_SAFE(sflist, __sl, __sn, __sns)
  100. /*
  101. * @brief Provide the primitive to resolve the container of a list node
  102. * Note: it is safe to use with NULL pointer nodes
  103. *
  104. * @param __ln A pointer on a sys_sfnode_t to get its container
  105. * @param __cn Container struct type pointer
  106. * @param __n The field name of sys_sfnode_t within the container struct
  107. */
  108. #define SYS_SFLIST_CONTAINER(__ln, __cn, __n) \
  109. Z_GENLIST_CONTAINER(__ln, __cn, __n)
  110. /*
  111. * @brief Provide the primitive to peek container of the list head
  112. *
  113. * @param __sl A pointer on a sys_sflist_t to peek
  114. * @param __cn Container struct type pointer
  115. * @param __n The field name of sys_sfnode_t within the container struct
  116. */
  117. #define SYS_SFLIST_PEEK_HEAD_CONTAINER(__sl, __cn, __n) \
  118. Z_GENLIST_PEEK_HEAD_CONTAINER(sflist, __sl, __cn, __n)
  119. /*
  120. * @brief Provide the primitive to peek container of the list tail
  121. *
  122. * @param __sl A pointer on a sys_sflist_t to peek
  123. * @param __cn Container struct type pointer
  124. * @param __n The field name of sys_sfnode_t within the container struct
  125. */
  126. #define SYS_SFLIST_PEEK_TAIL_CONTAINER(__sl, __cn, __n) \
  127. Z_GENLIST_PEEK_TAIL_CONTAINER(sflist, __sl, __cn, __n)
  128. /*
  129. * @brief Provide the primitive to peek the next container
  130. *
  131. * @param __cn Container struct type pointer
  132. * @param __n The field name of sys_sfnode_t within the container struct
  133. */
  134. #define SYS_SFLIST_PEEK_NEXT_CONTAINER(__cn, __n) \
  135. Z_GENLIST_PEEK_NEXT_CONTAINER(sflist, __cn, __n)
  136. /**
  137. * @brief Provide the primitive to iterate on a list under a container
  138. * Note: the loop is unsafe and thus __cn should not be detached
  139. *
  140. * User _MUST_ add the loop statement curly braces enclosing its own code:
  141. *
  142. * SYS_SFLIST_FOR_EACH_CONTAINER(l, c, n) {
  143. * <user code>
  144. * }
  145. *
  146. * @param __sl A pointer on a sys_sflist_t to iterate on
  147. * @param __cn A pointer to peek each entry of the list
  148. * @param __n The field name of sys_sfnode_t within the container struct
  149. */
  150. #define SYS_SFLIST_FOR_EACH_CONTAINER(__sl, __cn, __n) \
  151. Z_GENLIST_FOR_EACH_CONTAINER(sflist, __sl, __cn, __n)
  152. /**
  153. * @brief Provide the primitive to safely iterate on a list under a container
  154. * Note: __cn can be detached, it will not break the loop.
  155. *
  156. * User _MUST_ add the loop statement curly braces enclosing its own code:
  157. *
  158. * SYS_SFLIST_FOR_EACH_NODE_SAFE(l, c, cn, n) {
  159. * <user code>
  160. * }
  161. *
  162. * @param __sl A pointer on a sys_sflist_t to iterate on
  163. * @param __cn A pointer to peek each entry of the list
  164. * @param __cns A pointer for the loop to run safely
  165. * @param __n The field name of sys_sfnode_t within the container struct
  166. */
  167. #define SYS_SFLIST_FOR_EACH_CONTAINER_SAFE(__sl, __cn, __cns, __n) \
  168. Z_GENLIST_FOR_EACH_CONTAINER_SAFE(sflist, __sl, __cn, __cns, __n)
  169. /*
  170. * Required function definitions for the list_gen.h interface
  171. *
  172. * These are the only functions that do not treat the list/node pointers
  173. * as completely opaque types.
  174. */
  175. /**
  176. * @brief Initialize a list
  177. *
  178. * @param list A pointer on the list to initialize
  179. */
  180. static inline void sys_sflist_init(sys_sflist_t *list)
  181. {
  182. list->head = NULL;
  183. list->tail = NULL;
  184. }
  185. #define SYS_SFLIST_STATIC_INIT(ptr_to_list) {NULL, NULL}
  186. #define SYS_SFLIST_FLAGS_MASK 0x3UL
  187. static inline sys_sfnode_t *z_sfnode_next_peek(sys_sfnode_t *node)
  188. {
  189. return (sys_sfnode_t *)(node->next_and_flags & ~SYS_SFLIST_FLAGS_MASK);
  190. }
  191. static inline uint8_t sys_sfnode_flags_get(sys_sfnode_t *node);
  192. static inline void z_sfnode_next_set(sys_sfnode_t *parent,
  193. sys_sfnode_t *child)
  194. {
  195. uint8_t cur_flags = sys_sfnode_flags_get(parent);
  196. parent->next_and_flags = cur_flags | (unative_t)child;
  197. }
  198. static inline void z_sflist_head_set(sys_sflist_t *list, sys_sfnode_t *node)
  199. {
  200. list->head = node;
  201. }
  202. static inline void z_sflist_tail_set(sys_sflist_t *list, sys_sfnode_t *node)
  203. {
  204. list->tail = node;
  205. }
  206. /**
  207. * @brief Peek the first node from the list
  208. *
  209. * @param list A point on the list to peek the first node from
  210. *
  211. * @return A pointer on the first node of the list (or NULL if none)
  212. */
  213. static inline sys_sfnode_t *sys_sflist_peek_head(sys_sflist_t *list)
  214. {
  215. return list->head;
  216. }
  217. /**
  218. * @brief Peek the last node from the list
  219. *
  220. * @param list A point on the list to peek the last node from
  221. *
  222. * @return A pointer on the last node of the list (or NULL if none)
  223. */
  224. static inline sys_sfnode_t *sys_sflist_peek_tail(sys_sflist_t *list)
  225. {
  226. return list->tail;
  227. }
  228. /*
  229. * APIs specific to sflist type
  230. */
  231. /**
  232. * @brief Fetch flags value for a particular sfnode
  233. *
  234. * @param node A pointer to the node to fetch flags from
  235. * @return The value of flags, which will be between 0 and 3
  236. */
  237. static inline uint8_t sys_sfnode_flags_get(sys_sfnode_t *node)
  238. {
  239. return node->next_and_flags & SYS_SFLIST_FLAGS_MASK;
  240. }
  241. /**
  242. * @brief Initialize an sflist node
  243. *
  244. * Set an initial flags value for this slist node, which can be a value between
  245. * 0 and 3. These flags will persist even if the node is moved around
  246. * within a list, removed, or transplanted to a different slist.
  247. *
  248. * This is ever so slightly faster than sys_sfnode_flags_set() and should
  249. * only be used on a node that hasn't been added to any list.
  250. *
  251. * @param node A pointer to the node to set the flags on
  252. * @param flags A value between 0 and 3 to set the flags value
  253. */
  254. static inline void sys_sfnode_init(sys_sfnode_t *node, uint8_t flags)
  255. {
  256. __ASSERT((flags & ~SYS_SFLIST_FLAGS_MASK) == 0UL, "flags too large");
  257. node->next_and_flags = flags;
  258. }
  259. /**
  260. * @brief Set flags value for an sflist node
  261. *
  262. * Set a flags value for this slist node, which can be a value between
  263. * 0 and 3. These flags will persist even if the node is moved around
  264. * within a list, removed, or transplanted to a different slist.
  265. *
  266. * @param node A pointer to the node to set the flags on
  267. * @param flags A value between 0 and 3 to set the flags value
  268. */
  269. static inline void sys_sfnode_flags_set(sys_sfnode_t *node, uint8_t flags)
  270. {
  271. __ASSERT((flags & ~SYS_SFLIST_FLAGS_MASK) == 0UL, "flags too large");
  272. node->next_and_flags = (unative_t)(z_sfnode_next_peek(node)) | flags;
  273. }
  274. /*
  275. * Derived, generated APIs
  276. */
  277. /**
  278. * @brief Test if the given list is empty
  279. *
  280. * @param list A pointer on the list to test
  281. *
  282. * @return a boolean, true if it's empty, false otherwise
  283. */
  284. static inline bool sys_sflist_is_empty(sys_sflist_t *list);
  285. Z_GENLIST_IS_EMPTY(sflist)
  286. /**
  287. * @brief Peek the next node from current node, node is not NULL
  288. *
  289. * Faster then sys_sflist_peek_next() if node is known not to be NULL.
  290. *
  291. * @param node A pointer on the node where to peek the next node
  292. *
  293. * @return a pointer on the next node (or NULL if none)
  294. */
  295. static inline sys_sfnode_t *sys_sflist_peek_next_no_check(sys_sfnode_t *node);
  296. Z_GENLIST_PEEK_NEXT_NO_CHECK(sflist, sfnode)
  297. /**
  298. * @brief Peek the next node from current node
  299. *
  300. * @param node A pointer on the node where to peek the next node
  301. *
  302. * @return a pointer on the next node (or NULL if none)
  303. */
  304. static inline sys_sfnode_t *sys_sflist_peek_next(sys_sfnode_t *node);
  305. Z_GENLIST_PEEK_NEXT(sflist, sfnode)
  306. /**
  307. * @brief Prepend a node to the given list
  308. *
  309. * This and other sys_sflist_*() functions are not thread safe.
  310. *
  311. * @param list A pointer on the list to affect
  312. * @param node A pointer on the node to prepend
  313. */
  314. static inline void sys_sflist_prepend(sys_sflist_t *list,
  315. sys_sfnode_t *node);
  316. Z_GENLIST_PREPEND(sflist, sfnode)
  317. /**
  318. * @brief Append a node to the given list
  319. *
  320. * This and other sys_sflist_*() functions are not thread safe.
  321. *
  322. * @param list A pointer on the list to affect
  323. * @param node A pointer on the node to append
  324. */
  325. static inline void sys_sflist_append(sys_sflist_t *list,
  326. sys_sfnode_t *node);
  327. Z_GENLIST_APPEND(sflist, sfnode)
  328. /**
  329. * @brief Append a list to the given list
  330. *
  331. * Append a singly-linked, NULL-terminated list consisting of nodes containing
  332. * the pointer to the next node as the first element of a node, to @a list.
  333. * This and other sys_sflist_*() functions are not thread safe.
  334. *
  335. * FIXME: Why are the element parameters void *?
  336. *
  337. * @param list A pointer on the list to affect
  338. * @param head A pointer to the first element of the list to append
  339. * @param tail A pointer to the last element of the list to append
  340. */
  341. static inline void sys_sflist_append_list(sys_sflist_t *list,
  342. void *head, void *tail);
  343. Z_GENLIST_APPEND_LIST(sflist, sfnode)
  344. /**
  345. * @brief merge two sflists, appending the second one to the first
  346. *
  347. * When the operation is completed, the appending list is empty.
  348. * This and other sys_sflist_*() functions are not thread safe.
  349. *
  350. * @param list A pointer on the list to affect
  351. * @param list_to_append A pointer to the list to append.
  352. */
  353. static inline void sys_sflist_merge_sflist(sys_sflist_t *list,
  354. sys_sflist_t *list_to_append);
  355. Z_GENLIST_MERGE_LIST(sflist, sfnode)
  356. /**
  357. * @brief Insert a node to the given list
  358. *
  359. * This and other sys_sflist_*() functions are not thread safe.
  360. *
  361. * @param list A pointer on the list to affect
  362. * @param prev A pointer on the previous node
  363. * @param node A pointer on the node to insert
  364. */
  365. static inline void sys_sflist_insert(sys_sflist_t *list,
  366. sys_sfnode_t *prev,
  367. sys_sfnode_t *node);
  368. Z_GENLIST_INSERT(sflist, sfnode)
  369. /**
  370. * @brief Fetch and remove the first node of the given list
  371. *
  372. * List must be known to be non-empty.
  373. * This and other sys_sflist_*() functions are not thread safe.
  374. *
  375. * @param list A pointer on the list to affect
  376. *
  377. * @return A pointer to the first node of the list
  378. */
  379. static inline sys_sfnode_t *sys_sflist_get_not_empty(sys_sflist_t *list);
  380. Z_GENLIST_GET_NOT_EMPTY(sflist, sfnode)
  381. /**
  382. * @brief Fetch and remove the first node of the given list
  383. *
  384. * This and other sys_sflist_*() functions are not thread safe.
  385. *
  386. * @param list A pointer on the list to affect
  387. *
  388. * @return A pointer to the first node of the list (or NULL if empty)
  389. */
  390. static inline sys_sfnode_t *sys_sflist_get(sys_sflist_t *list);
  391. Z_GENLIST_GET(sflist, sfnode)
  392. /**
  393. * @brief Remove a node
  394. *
  395. * This and other sys_sflist_*() functions are not thread safe.
  396. *
  397. * @param list A pointer on the list to affect
  398. * @param prev_node A pointer on the previous node
  399. * (can be NULL, which means the node is the list's head)
  400. * @param node A pointer on the node to remove
  401. */
  402. static inline void sys_sflist_remove(sys_sflist_t *list,
  403. sys_sfnode_t *prev_node,
  404. sys_sfnode_t *node);
  405. Z_GENLIST_REMOVE(sflist, sfnode)
  406. /**
  407. * @brief Find and remove a node from a list
  408. *
  409. * This and other sys_sflist_*() functions are not thread safe.
  410. *
  411. * @param list A pointer on the list to affect
  412. * @param node A pointer on the node to remove from the list
  413. *
  414. * @return true if node was removed
  415. */
  416. static inline bool sys_sflist_find_and_remove(sys_sflist_t *list,
  417. sys_sfnode_t *node);
  418. Z_GENLIST_FIND_AND_REMOVE(sflist, sfnode)
  419. /** @} */
  420. #ifdef __cplusplus
  421. }
  422. #endif
  423. #endif /* ZEPHYR_INCLUDE_SYS_SFLIST_H_ */