e0cffab768
* Introduce indexed list implementation * Fix CI tests for pool * Take bitset out of pool * Replace joker bitset interactions with wrappers * Add bitset tests * Add test to gitignore --------- Co-authored-by: rfehr-idexx <ric-fehr@idexx.com>
188 lines
4.0 KiB
C
188 lines
4.0 KiB
C
/** @file list.h
|
|
*
|
|
* @brief A doubly-linked list
|
|
*
|
|
* List Implementation
|
|
* ===================
|
|
*
|
|
* - This @ref List operates as a linked list @ref ListNodes. It operates as a regular doubly-linked list
|
|
* but doesn't allocate memory and rather gets @ref ListNodes from a pool.
|
|
*/
|
|
#ifndef LIST_H
|
|
#define LIST_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define MAX_LIST_NODES 128
|
|
|
|
typedef struct ListNode ListNode;
|
|
|
|
/**
|
|
* @brief A single entry in a @ref List
|
|
*/
|
|
struct ListNode
|
|
{
|
|
/**
|
|
* @brief The previous @ref ListNode in the associated @ref List, NULL if at the `head` of the list
|
|
*/
|
|
ListNode* prev;
|
|
|
|
/**
|
|
* @brief The next @ref ListNode in the associated @ref List, NULL if at the `tail` of the list
|
|
*/
|
|
ListNode* next;
|
|
|
|
/**
|
|
* @brief Pointer to generic data stored in this node
|
|
*/
|
|
void* data;
|
|
};
|
|
|
|
/**
|
|
* @brief A doubly-linked list
|
|
*/
|
|
typedef struct List
|
|
{
|
|
/**
|
|
* @brief The first entry in the list
|
|
*/
|
|
ListNode* head;
|
|
|
|
/**
|
|
* @brief The last entry in the list
|
|
*/
|
|
ListNode* tail;
|
|
|
|
/**
|
|
* @brief Number of elements in list
|
|
*/
|
|
int len;
|
|
} List;
|
|
|
|
/**
|
|
* @brief An iterator into a list
|
|
*/
|
|
typedef struct
|
|
{
|
|
/**
|
|
* @brief A pointer to the @ref List this is iterating through
|
|
*/
|
|
List* list;
|
|
|
|
/**
|
|
* @brief The next node in the list
|
|
*/
|
|
ListNode* next_node;
|
|
|
|
/**
|
|
* @brief The current node in the list iterator
|
|
*
|
|
* The node of the most recently returned data from @ref list_itr_next() .
|
|
*/
|
|
ListNode* current_node;
|
|
} ListItr;
|
|
|
|
/**
|
|
* Create a list.
|
|
*
|
|
* While this function does not allocate memory for the list itself, the list does allocate memory for each element.
|
|
* So every created list must be freed with @ref list_clear to ensure the list's nodes are deleted properly.
|
|
*
|
|
* @return A @ref List with head and tail reset.
|
|
*/
|
|
List list_create(void);
|
|
|
|
/**
|
|
* Clear a list.
|
|
*
|
|
* Go through the list and free each node and set the `head` and `tail` to `NULL`.
|
|
* Note, it doesn't "free" the data at the node.
|
|
*
|
|
* @param list pointer to a @ref List to clear
|
|
*/
|
|
void list_clear(List* list);
|
|
|
|
/**
|
|
* Check if a list is empty
|
|
*
|
|
* @param list pointer to a @ref List
|
|
*
|
|
* @return `true` if the `list` is empty, `false` otherwise.
|
|
*/
|
|
bool list_is_empty(const List* list);
|
|
|
|
/**
|
|
* Prepend an entry to the `head` of a @ref list
|
|
*
|
|
* @param list pointer to a @ref List
|
|
* @param data pointer to data to put into the @ref List
|
|
*/
|
|
void list_push_front(List* list, void* data);
|
|
|
|
/**
|
|
* Append an entry to the `tail` of a @ref list
|
|
*
|
|
* @param list pointer to a @ref List
|
|
* @param data pointer to data to put into the @ref List
|
|
*/
|
|
void list_push_back(List* list, void* data);
|
|
|
|
/**
|
|
* Get a List's node at it's nth index
|
|
*
|
|
* @param list pointer to a @ref List
|
|
* @param n index of the desired @ref ListNode in the list
|
|
*
|
|
* @return a pointer to the data at the nth @ref ListNode, or NULL if out-of-bounds
|
|
*/
|
|
void* list_get_at_idx(List *list, int n);
|
|
|
|
/**
|
|
* Remove a List's node at it's nth index
|
|
*
|
|
* @param list pointer to a @ref List
|
|
* @param n index of the desired @ref ListNode in the list
|
|
*
|
|
* @return `true` if successfully removed, `false` if out-of-bounds
|
|
*/
|
|
bool list_remove_at_idx(List *list, int n);
|
|
|
|
/**
|
|
* Get the number of elements in a @ref List
|
|
*
|
|
* @param list pointer to a @ref List
|
|
*
|
|
* @return The number of elements in the list
|
|
*/
|
|
int list_get_len(const List* list);
|
|
|
|
/**
|
|
* Declare a @ref ListItr
|
|
*
|
|
* @param list pointer to a @ref List
|
|
*
|
|
* @return A new @ref ListItr
|
|
*/
|
|
ListItr list_itr_create(List* list);
|
|
|
|
/**
|
|
* Get the next data entry in a @ref ListItr
|
|
*
|
|
* @param itr pointer to the @ref ListItr
|
|
*
|
|
* @return A pointer to the data pointer at the next @ref ListNode if valid, otherwise return NULL.
|
|
*/
|
|
void* list_itr_next(ListItr* itr);
|
|
|
|
/**
|
|
* Remove the current @ref ListNode from the iterator.
|
|
*
|
|
* The "current node" corresponds to the list node associated with the
|
|
* most recently returned valu from @ref list_itr_next()
|
|
*
|
|
* @param itr pointer to the @ref ListItr
|
|
*/
|
|
void list_itr_remove_current_node(ListItr* itr);
|
|
|
|
#endif
|