123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- /*
- * Copyright (c) 2016 Intel Corporation
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file
- *
- * @brief Single-linked list implementation
- *
- * Single-linked list implementation using inline macros/functions.
- * This API is not thread safe, and thus if a list is used across threads,
- * calls to functions must be protected with synchronization primitives.
- */
- #ifndef ZEPHYR_INCLUDE_SYS_SLIST_H_
- #define ZEPHYR_INCLUDE_SYS_SLIST_H_
- #include <stddef.h>
- #include <stdbool.h>
- #include "list_gen.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct _snode {
- struct _snode *next;
- };
- typedef struct _snode sys_snode_t;
- struct _slist {
- sys_snode_t *head;
- sys_snode_t *tail;
- };
- typedef struct _slist sys_slist_t;
- /**
- * @defgroup single-linked-list_apis Single-linked list
- * @ingroup datastructure_apis
- * @{
- */
- /**
- * @brief Provide the primitive to iterate on a list
- * Note: the loop is unsafe and thus __sn should not be removed
- *
- * User _MUST_ add the loop statement curly braces enclosing its own code:
- *
- * SYS_SLIST_FOR_EACH_NODE(l, n) {
- * <user code>
- * }
- *
- * This and other SYS_SLIST_*() macros are not thread safe.
- *
- * @param __sl A pointer on a sys_slist_t to iterate on
- * @param __sn A sys_snode_t pointer to peek each node of the list
- */
- #define SYS_SLIST_FOR_EACH_NODE(__sl, __sn) \
- Z_GENLIST_FOR_EACH_NODE(slist, __sl, __sn)
- /**
- * @brief Provide the primitive to iterate on a list, from a node in the list
- * Note: the loop is unsafe and thus __sn should not be removed
- *
- * User _MUST_ add the loop statement curly braces enclosing its own code:
- *
- * SYS_SLIST_ITERATE_FROM_NODE(l, n) {
- * <user code>
- * }
- *
- * Like SYS_SLIST_FOR_EACH_NODE(), but __dn already contains a node in the list
- * where to start searching for the next entry from. If NULL, it starts from
- * the head.
- *
- * This and other SYS_SLIST_*() macros are not thread safe.
- *
- * @param __sl A pointer on a sys_slist_t to iterate on
- * @param __sn A sys_snode_t pointer to peek each node of the list
- * it contains the starting node, or NULL to start from the head
- */
- #define SYS_SLIST_ITERATE_FROM_NODE(__sl, __sn) \
- Z_GENLIST_ITERATE_FROM_NODE(slist, __sl, __sn)
- /**
- * @brief Provide the primitive to safely iterate on a list
- * Note: __sn can be removed, it will not break the loop.
- *
- * User _MUST_ add the loop statement curly braces enclosing its own code:
- *
- * SYS_SLIST_FOR_EACH_NODE_SAFE(l, n, s) {
- * <user code>
- * }
- *
- * This and other SYS_SLIST_*() macros are not thread safe.
- *
- * @param __sl A pointer on a sys_slist_t to iterate on
- * @param __sn A sys_snode_t pointer to peek each node of the list
- * @param __sns A sys_snode_t pointer for the loop to run safely
- */
- #define SYS_SLIST_FOR_EACH_NODE_SAFE(__sl, __sn, __sns) \
- Z_GENLIST_FOR_EACH_NODE_SAFE(slist, __sl, __sn, __sns)
- /*
- * @brief Provide the primitive to resolve the container of a list node
- * Note: it is safe to use with NULL pointer nodes
- *
- * @param __ln A pointer on a sys_node_t to get its container
- * @param __cn Container struct type pointer
- * @param __n The field name of sys_node_t within the container struct
- */
- #define SYS_SLIST_CONTAINER(__ln, __cn, __n) \
- Z_GENLIST_CONTAINER(__ln, __cn, __n)
- /*
- * @brief Provide the primitive to peek container of the list head
- *
- * @param __sl A pointer on a sys_slist_t to peek
- * @param __cn Container struct type pointer
- * @param __n The field name of sys_node_t within the container struct
- */
- #define SYS_SLIST_PEEK_HEAD_CONTAINER(__sl, __cn, __n) \
- Z_GENLIST_PEEK_HEAD_CONTAINER(slist, __sl, __cn, __n)
- /*
- * @brief Provide the primitive to peek container of the list tail
- *
- * @param __sl A pointer on a sys_slist_t to peek
- * @param __cn Container struct type pointer
- * @param __n The field name of sys_node_t within the container struct
- */
- #define SYS_SLIST_PEEK_TAIL_CONTAINER(__sl, __cn, __n) \
- Z_GENLIST_PEEK_TAIL_CONTAINER(slist, __sl, __cn, __n)
- /*
- * @brief Provide the primitive to peek the next container
- *
- * @param __cn Container struct type pointer
- * @param __n The field name of sys_node_t within the container struct
- */
- #define SYS_SLIST_PEEK_NEXT_CONTAINER(__cn, __n) \
- Z_GENLIST_PEEK_NEXT_CONTAINER(slist, __cn, __n)
- /**
- * @brief Provide the primitive to iterate on a list under a container
- * Note: the loop is unsafe and thus __cn should not be detached
- *
- * User _MUST_ add the loop statement curly braces enclosing its own code:
- *
- * SYS_SLIST_FOR_EACH_CONTAINER(l, c, n) {
- * <user code>
- * }
- *
- * @param __sl A pointer on a sys_slist_t to iterate on
- * @param __cn A pointer to peek each entry of the list
- * @param __n The field name of sys_node_t within the container struct
- */
- #define SYS_SLIST_FOR_EACH_CONTAINER(__sl, __cn, __n) \
- Z_GENLIST_FOR_EACH_CONTAINER(slist, __sl, __cn, __n)
- /**
- * @brief Provide the primitive to safely iterate on a list under a container
- * Note: __cn can be detached, it will not break the loop.
- *
- * User _MUST_ add the loop statement curly braces enclosing its own code:
- *
- * SYS_SLIST_FOR_EACH_NODE_SAFE(l, c, cn, n) {
- * <user code>
- * }
- *
- * @param __sl A pointer on a sys_slist_t to iterate on
- * @param __cn A pointer to peek each entry of the list
- * @param __cns A pointer for the loop to run safely
- * @param __n The field name of sys_node_t within the container struct
- */
- #define SYS_SLIST_FOR_EACH_CONTAINER_SAFE(__sl, __cn, __cns, __n) \
- Z_GENLIST_FOR_EACH_CONTAINER_SAFE(slist, __sl, __cn, __cns, __n)
- /*
- * Required function definitions for the list_gen.h interface
- *
- * These are the only functions that do not treat the list/node pointers
- * as completely opaque types.
- */
- /**
- * @brief Initialize a list
- *
- * @param list A pointer on the list to initialize
- */
- static inline void sys_slist_init(sys_slist_t *list)
- {
- list->head = NULL;
- list->tail = NULL;
- }
- #define SYS_SLIST_STATIC_INIT(ptr_to_list) {NULL, NULL}
- static inline sys_snode_t *z_snode_next_peek(sys_snode_t *node)
- {
- return node->next;
- }
- static inline void z_snode_next_set(sys_snode_t *parent, sys_snode_t *child)
- {
- parent->next = child;
- }
- static inline void z_slist_head_set(sys_slist_t *list, sys_snode_t *node)
- {
- list->head = node;
- }
- static inline void z_slist_tail_set(sys_slist_t *list, sys_snode_t *node)
- {
- list->tail = node;
- }
- /**
- * @brief Peek the first node from the list
- *
- * @param list A point on the list to peek the first node from
- *
- * @return A pointer on the first node of the list (or NULL if none)
- */
- static inline sys_snode_t *sys_slist_peek_head(sys_slist_t *list)
- {
- return list->head;
- }
- /**
- * @brief Peek the last node from the list
- *
- * @param list A point on the list to peek the last node from
- *
- * @return A pointer on the last node of the list (or NULL if none)
- */
- static inline sys_snode_t *sys_slist_peek_tail(sys_slist_t *list)
- {
- return list->tail;
- }
- /*
- * Derived, generated APIs
- */
- /**
- * @brief Test if the given list is empty
- *
- * @param list A pointer on the list to test
- *
- * @return a boolean, true if it's empty, false otherwise
- */
- static inline bool sys_slist_is_empty(sys_slist_t *list);
- Z_GENLIST_IS_EMPTY(slist)
- /**
- * @brief Peek the next node from current node, node is not NULL
- *
- * Faster then sys_slist_peek_next() if node is known not to be NULL.
- *
- * @param node A pointer on the node where to peek the next node
- *
- * @return a pointer on the next node (or NULL if none)
- */
- static inline sys_snode_t *sys_slist_peek_next_no_check(sys_snode_t *node);
- Z_GENLIST_PEEK_NEXT_NO_CHECK(slist, snode)
- /**
- * @brief Peek the next node from current node
- *
- * @param node A pointer on the node where to peek the next node
- *
- * @return a pointer on the next node (or NULL if none)
- */
- static inline sys_snode_t *sys_slist_peek_next(sys_snode_t *node);
- Z_GENLIST_PEEK_NEXT(slist, snode)
- /**
- * @brief Prepend a node to the given list
- *
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- * @param node A pointer on the node to prepend
- */
- static inline void sys_slist_prepend(sys_slist_t *list,
- sys_snode_t *node);
- Z_GENLIST_PREPEND(slist, snode)
- /**
- * @brief Append a node to the given list
- *
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- * @param node A pointer on the node to append
- */
- static inline void sys_slist_append(sys_slist_t *list,
- sys_snode_t *node);
- Z_GENLIST_APPEND(slist, snode)
- /**
- * @brief Append a list to the given list
- *
- * Append a singly-linked, NULL-terminated list consisting of nodes containing
- * the pointer to the next node as the first element of a node, to @a list.
- * This and other sys_slist_*() functions are not thread safe.
- *
- * FIXME: Why are the element parameters void *?
- *
- * @param list A pointer on the list to affect
- * @param head A pointer to the first element of the list to append
- * @param tail A pointer to the last element of the list to append
- */
- static inline void sys_slist_append_list(sys_slist_t *list,
- void *head, void *tail);
- Z_GENLIST_APPEND_LIST(slist, snode)
- /**
- * @brief merge two slists, appending the second one to the first
- *
- * When the operation is completed, the appending list is empty.
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- * @param list_to_append A pointer to the list to append.
- */
- static inline void sys_slist_merge_slist(sys_slist_t *list,
- sys_slist_t *list_to_append);
- Z_GENLIST_MERGE_LIST(slist, snode)
- /**
- * @brief Insert a node to the given list
- *
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- * @param prev A pointer on the previous node
- * @param node A pointer on the node to insert
- */
- static inline void sys_slist_insert(sys_slist_t *list,
- sys_snode_t *prev,
- sys_snode_t *node);
- Z_GENLIST_INSERT(slist, snode)
- /**
- * @brief Fetch and remove the first node of the given list
- *
- * List must be known to be non-empty.
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- *
- * @return A pointer to the first node of the list
- */
- static inline sys_snode_t *sys_slist_get_not_empty(sys_slist_t *list);
- Z_GENLIST_GET_NOT_EMPTY(slist, snode)
- /**
- * @brief Fetch and remove the first node of the given list
- *
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- *
- * @return A pointer to the first node of the list (or NULL if empty)
- */
- static inline sys_snode_t *sys_slist_get(sys_slist_t *list);
- Z_GENLIST_GET(slist, snode)
- /**
- * @brief Remove a node
- *
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- * @param prev_node A pointer on the previous node
- * (can be NULL, which means the node is the list's head)
- * @param node A pointer on the node to remove
- */
- static inline void sys_slist_remove(sys_slist_t *list,
- sys_snode_t *prev_node,
- sys_snode_t *node);
- Z_GENLIST_REMOVE(slist, snode)
- /**
- * @brief Find and remove a node from a list
- *
- * This and other sys_slist_*() functions are not thread safe.
- *
- * @param list A pointer on the list to affect
- * @param node A pointer on the node to remove from the list
- *
- * @return true if node was removed
- */
- static inline bool sys_slist_find_and_remove(sys_slist_t *list,
- sys_snode_t *node);
- /** @} */
- Z_GENLIST_FIND_AND_REMOVE(slist, snode)
- #ifdef __cplusplus
- }
- #endif
- #endif /* ZEPHYR_INCLUDE_SYS_SLIST_H_ */
|