libcstl
|
A linked list allowing traversal in both directions. More...
Data Structures | |
struct | cstl_dlist_node |
Node to anchor an element within a list. More... | |
struct | cstl_dlist |
List object. More... | |
Macros | |
#define | CSTL_DLIST_INITIALIZER(NAME, TYPE, MEMB) |
Constant initialization of a list object. | |
#define | DECLARE_CSTL_DLIST(NAME, TYPE, MEMB) |
(Statically) declare and initialize a list | |
Enumerations | |
enum | cstl_dlist_foreach_dir_t { CSTL_DLIST_FOREACH_DIR_FWD , CSTL_DLIST_FOREACH_DIR_REV } |
The direction in which to traverse the list during cstl_dlist_foreach() More... | |
Functions | |
static void | cstl_dlist_init (struct cstl_dlist *const l, const size_t off) |
Initialize a list object. | |
static size_t | cstl_dlist_size (const struct cstl_dlist *const l) |
Get the number of objects in the list. | |
void | cstl_dlist_insert (struct cstl_dlist *l, void *before, void *obj) |
Insert a new object into the list. | |
void | cstl_dlist_erase (struct cstl_dlist *l, void *obj) |
Remove an object from the list. | |
void * | cstl_dlist_front (struct cstl_dlist *l) |
Get a pointer to the first object in the list. | |
void * | cstl_dlist_back (struct cstl_dlist *l) |
Get a pointer to the last object in the list. | |
void | cstl_dlist_push_front (struct cstl_dlist *l, void *obj) |
Insert a new object at the front of the list. | |
void | cstl_dlist_push_back (struct cstl_dlist *l, void *obj) |
Insert a new object at the back of the list. | |
void * | cstl_dlist_pop_front (struct cstl_dlist *l) |
Remove the first item in the list and return it. | |
void * | cstl_dlist_pop_back (struct cstl_dlist *l) |
Remove the last item in the list and return it. | |
void | cstl_dlist_reverse (struct cstl_dlist *l) |
Reverse the order of items in the list. | |
void | cstl_dlist_sort (struct cstl_dlist *l, cstl_compare_func_t *cmp, void *priv) |
Sort the items in a list. | |
void | cstl_dlist_concat (struct cstl_dlist *list, struct cstl_dlist *more) |
Append one list to the end of another. | |
int | cstl_dlist_foreach (struct cstl_dlist *l, cstl_visit_func_t *visit, void *priv, cstl_dlist_foreach_dir_t dir) |
Call a user-supplied function for each object in a list. | |
void * | cstl_dlist_find (const struct cstl_dlist *l, const void *obj, cstl_compare_func_t *cmp, void *priv, cstl_dlist_foreach_dir_t dir) |
Perform a linear search for an object. | |
void | cstl_dlist_clear (struct cstl_dlist *l, cstl_xtor_func_t *clr) |
Remove objects from and reinitialize a list. | |
void | cstl_dlist_swap (struct cstl_dlist *a, struct cstl_dlist *b) |
Swap the list objects at the two given locations. | |
A linked list allowing traversal in both directions.
#define CSTL_DLIST_INITIALIZER | ( | NAME, | |
TYPE, | |||
MEMB | |||
) |
Constant initialization of a list object.
NAME | The name of the variable being initialized |
TYPE | The type of object that the list will hold |
MEMB | The name of the cstl_dlist_node member within TYPE . |
TYPE
and MEMB
#define DECLARE_CSTL_DLIST | ( | NAME, | |
TYPE, | |||
MEMB | |||
) |
(Statically) declare and initialize a list
NAME | The name of the variable being declared |
TYPE | The type of object that the list will hold |
MEMB | The name of the cstl_dlist_node member within TYPE . |
TYPE
and MEMB
The direction in which to traverse the list during cstl_dlist_foreach()
Enumerator | |
---|---|
CSTL_DLIST_FOREACH_DIR_FWD | Traverse the list from front to back. |
CSTL_DLIST_FOREACH_DIR_REV | Traverse the list from back to front. |
void * cstl_dlist_back | ( | struct cstl_dlist * | l | ) |
void cstl_dlist_clear | ( | struct cstl_dlist * | l, |
cstl_xtor_func_t * | clr | ||
) |
Remove objects from and reinitialize a list.
[in] | l | The list to be cleared |
[in] | clr | The function to be called for each object in the list |
All objects are removed from the list and the clr
function is called for each object that was in the list. The order in which the objects are removed and clr
is called is not specified, but the callee may take ownership of an object at the time that clr
is called for that object and not before.
Upon return from this function, the list contains no objects, and it is as it was immediately after being initialized. No further operations on the list are necessary to make it ready to go out of scope or be destroyed.
void cstl_dlist_concat | ( | struct cstl_dlist * | list, |
struct cstl_dlist * | more | ||
) |
void cstl_dlist_erase | ( | struct cstl_dlist * | l, |
void * | obj | ||
) |
void * cstl_dlist_find | ( | const struct cstl_dlist * | l, |
const void * | obj, | ||
cstl_compare_func_t * | cmp, | ||
void * | priv, | ||
cstl_dlist_foreach_dir_t | dir | ||
) |
Perform a linear search for an object.
[in] | l | The list to be searched |
[in] | obj | A pointer to an object to search for in the list |
[in] | cmp | A function to compare objects in the list |
[in] | priv | A pointer to be passed to each invocation of the compare function |
[in] | dir | The direction in which to traverse/search the list |
The function will traverse the list in the specified direction, comparing the user-supplied object with objects in the list. When the comparison function returns 0, the associated object is returned.
NULL | The sought object was not found |
int cstl_dlist_foreach | ( | struct cstl_dlist * | l, |
cstl_visit_func_t * | visit, | ||
void * | priv, | ||
cstl_dlist_foreach_dir_t | dir | ||
) |
Call a user-supplied function for each object in a list.
[in] | l | The list containing the objects to visit |
[in] | visit | A pointer to the function to call for each object |
[in] | priv | A pointer to be passed to each invocation of the function |
[in] | dir | The direction in which to traverse the list |
The user-supplied function must return 0 in order to continue visiting objects in the list. The visiting of objects will stop at the first occurrence of a non-zero return from the visit function.
void * cstl_dlist_front | ( | struct cstl_dlist * | l | ) |
|
inlinestatic |
Initialize a list object.
[in,out] | l | A pointer to the object to be initialized |
[in] | off | The offset of the cstl_dlist_node object within the object(s) that will be stored in the list |
void cstl_dlist_insert | ( | struct cstl_dlist * | l, |
void * | before, | ||
void * | obj | ||
) |
Insert a new object into the list.
[in] | l | A pointer to the list into which to insert the object |
[in] | before | A pointer to an object already in the list |
[in] | obj | A pointer to an object to insert into the list |
The new object will be inserted after the object pointed to by before
void * cstl_dlist_pop_back | ( | struct cstl_dlist * | l | ) |
void * cstl_dlist_pop_front | ( | struct cstl_dlist * | l | ) |
void cstl_dlist_push_back | ( | struct cstl_dlist * | l, |
void * | obj | ||
) |
void cstl_dlist_push_front | ( | struct cstl_dlist * | l, |
void * | obj | ||
) |
void cstl_dlist_reverse | ( | struct cstl_dlist * | l | ) |
|
inlinestatic |
void cstl_dlist_sort | ( | struct cstl_dlist * | l, |
cstl_compare_func_t * | cmp, | ||
void * | priv | ||
) |
Sort the items in a list.
[in] | l | A pointer to the list |
[in] | cmp | A pointer to a function to compare objects |
[in] | priv | A pointer to be passed to each invocation of the comparison function |
The items are sorted from least to greatest, according to the provided comparison function.
void cstl_dlist_swap | ( | struct cstl_dlist * | a, |
struct cstl_dlist * | b | ||
) |
Swap the list objects at the two given locations.
[in,out] | a | A pointer to a list |
[in,out] | b | A pointer to a(nother) list |
The lists at the given locations will be swapped such that upon return, a
will contain the list previously pointed to by b
and vice versa.