VLC 4.0.0-dev
Loading...
Searching...
No Matches
Collaboration diagram for Linked lists:

Files

file  vlc_list.h
 This provides convenience helpers for linked lists.
 

Data Structures

struct  vlc_list
 Doubly-linked list node. More...
 
struct  vlc_list_it
 List iterator. More...
 

Macros

#define VLC_LIST_INITIALIZER(h)   { h, h }
 Static initializer for a list head.
 
#define vlc_list_foreach(pos, head, member)
 List iteration macro.
 
#define vlc_list_foreach_const(pos, head, member)
 
#define vlc_list_reverse_foreach(pos, head, member)
 List iteration macro.
 
#define vlc_list_entry(ptr, type, member)   container_of(ptr, type, member)
 Converts a list node pointer to an element pointer.
 
#define vlc_list_first_entry_or_null(head, type, member)    ((type *)vlc_list_first_or_null(head, offsetof (type, member)))
 Gets the first element.
 
#define vlc_list_last_entry_or_null(head, type, member)    ((type *)vlc_list_last_or_null(head, offsetof (type, member)))
 Gets the last element.
 
#define vlc_list_prev_entry_or_null(head, entry, type, member)
 
#define vlc_list_next_entry_or_null(head, entry, type, member)
 

Functions

static void vlc_list_init (struct vlc_list *restrict head)
 Initializes an empty list head.
 
static void vlc_list_add_between (struct vlc_list *restrict node, struct vlc_list *prev, struct vlc_list *next)
 Inserts an element in a list.
 
static void vlc_list_add_after (struct vlc_list *restrict node, struct vlc_list *prev)
 Inserts an element after another.
 
static void vlc_list_add_before (struct vlc_list *restrict node, struct vlc_list *next)
 Inserts an element before another.
 
static void vlc_list_append (struct vlc_list *restrict node, struct vlc_list *head)
 Appends an element into a list.
 
static void vlc_list_prepend (struct vlc_list *restrict node, struct vlc_list *head)
 Prepends an element into a list.
 
static void vlc_list_remove (struct vlc_list *restrict node)
 Removes an element from a list.
 
static void vlc_list_replace (const struct vlc_list *original, struct vlc_list *restrict substitute)
 Replaces an element with another one.
 
static bool vlc_list_is_empty (const struct vlc_list *head)
 Checks if a list is empty.
 
static bool vlc_list_is_first (const struct vlc_list *node, const struct vlc_list *head)
 Checks if an element is first in a list.
 
static bool vlc_list_is_last (const struct vlc_list *node, const struct vlc_list *head)
 Checks if an element is last in a list.
 
static struct vlc_list_it vlc_list_it_start (struct vlc_list *head)
 
static struct vlc_list_it vlc_list_it_start_const (const struct vlc_list *head)
 
static struct vlc_list_it vlc_list_it_reverse_start (struct vlc_list *head)
 
static struct vlc_list_it vlc_list_it_reverse_start_const (const struct vlc_list *head)
 
static bool vlc_list_it_continue (const struct vlc_list_it *restrict it)
 
static void vlc_list_it_next (struct vlc_list_it *restrict it)
 
static void vlc_list_it_prev (struct vlc_list_it *restrict it)
 
static void * vlc_list_first_or_null (const struct vlc_list *head, size_t offset)
 
static void * vlc_list_last_or_null (const struct vlc_list *head, size_t offset)
 
static void * vlc_list_prev_or_null (const struct vlc_list *head, const struct vlc_list *node, size_t offset)
 
static void * vlc_list_next_or_null (const struct vlc_list *head, const struct vlc_list *node, size_t offset)
 

Detailed Description

Macro Definition Documentation

◆ vlc_list_entry

#define vlc_list_entry (   ptr,
  type,
  member 
)    container_of(ptr, type, member)

Converts a list node pointer to an element pointer.

Parameters
ptrlist node pointer
typelist data element type name
memberlist node member within the data element compound type

◆ vlc_list_first_entry_or_null

#define vlc_list_first_entry_or_null (   head,
  type,
  member 
)     ((type *)vlc_list_first_or_null(head, offsetof (type, member)))

Gets the first element.

Parameters
head[in] Head of list whose last element to get.
Returns
the first entry in a list or NULL if empty.

◆ vlc_list_foreach

#define vlc_list_foreach (   pos,
  head,
  member 
)
Value:
for (struct vlc_list_it vlc_list_it__##pos = vlc_list_it_start(head); \
vlc_list_it_continue(&(vlc_list_it__##pos)) \
&& ((pos) = container_of((vlc_list_it__##pos).current, \
typeof (*(pos)), member), true); \
vlc_list_it_next(&(vlc_list_it__##pos)))
static struct vlc_list_it vlc_list_it_start(struct vlc_list *head)
Definition vlc_list.h:213
List iterator.
Definition vlc_list.h:206
#define container_of(ptr, type, member)
Definition vlc_common.h:1067

List iteration macro.

This macro iterates over all elements (excluding the head) of a list, in order from the first to the last.

For each iteration, it sets the cursor variable to the current element.

Parameters
posCursor pointer variable identifier.
head[in] Head pointer of the list to iterate.
memberIdentifier of the member of the data type serving as list node.
Note
It it safe to delete the current item while iterating. It is however not safe to delete another item.

◆ vlc_list_foreach_const

#define vlc_list_foreach_const (   pos,
  head,
  member 
)
Value:
for (struct vlc_list_it vlc_list_it__##pos = vlc_list_it_start_const(head); \
vlc_list_it_continue(&(vlc_list_it__##pos)) \
&& ((pos) = container_of((vlc_list_it__##pos).current, \
const typeof (*(pos)), member), true); \
vlc_list_it_next(&(vlc_list_it__##pos)))
static struct vlc_list_it vlc_list_it_start_const(const struct vlc_list *head)
Definition vlc_list.h:222

◆ VLC_LIST_INITIALIZER

#define VLC_LIST_INITIALIZER (   h)    { h, h }

Static initializer for a list head.

◆ vlc_list_last_entry_or_null

#define vlc_list_last_entry_or_null (   head,
  type,
  member 
)     ((type *)vlc_list_last_or_null(head, offsetof (type, member)))

Gets the last element.

Parameters
head[in] Head of list whose last element to get.
Returns
the last entry in a list or NULL if empty.

◆ vlc_list_next_entry_or_null

#define vlc_list_next_entry_or_null (   head,
  entry,
  type,
  member 
)
Value:
((type *)vlc_list_next_or_null(head, &(entry)->member, \
offsetof (type, member)))
static void * vlc_list_next_or_null(const struct vlc_list *head, const struct vlc_list *node, size_t offset)
Definition vlc_list.h:353
Definition fourcc_gen.c:52

◆ vlc_list_prev_entry_or_null

#define vlc_list_prev_entry_or_null (   head,
  entry,
  type,
  member 
)
Value:
((type *)vlc_list_prev_or_null(head, &(entry)->member, \
offsetof (type, member)))
static void * vlc_list_prev_or_null(const struct vlc_list *head, const struct vlc_list *node, size_t offset)
Definition vlc_list.h:344

◆ vlc_list_reverse_foreach

#define vlc_list_reverse_foreach (   pos,
  head,
  member 
)
Value:
for (struct vlc_list_it vlc_list_it_##pos = vlc_list_it_reverse_start(head); \
vlc_list_it_continue(&(vlc_list_it_##pos)) \
&& ((pos) = container_of((vlc_list_it_##pos).current, \
typeof (*(pos)), member), true); \
vlc_list_it_prev(&(vlc_list_it_##pos)))
static struct vlc_list_it vlc_list_it_reverse_start(struct vlc_list *head)
Definition vlc_list.h:231

List iteration macro.

This macro iterates over all elements (excluding the head) of a list, in reversed order from the first to the last.

For each iteration, it sets the cursor variable to the current element.

Parameters
posCursor pointer variable identifier.
head[in] Head pointer of the list to iterate.
memberIdentifier of the member of the data type serving as list node.
Note
It it safe to delete the current item while iterating. It is however not safe to delete another item.

Function Documentation

◆ vlc_list_add_after()

static void vlc_list_add_after ( struct vlc_list *restrict  node,
struct vlc_list prev 
)
inlinestatic

Inserts an element after another.

Parameters
node[out] Node pointer of the element to insert
prevNode pointer of the previous element.

References vlc_list::next, vlc_list::prev, and vlc_list_add_between().

Referenced by input_item_ReplaceInfos(), and vlc_list_prepend().

◆ vlc_list_add_before()

static void vlc_list_add_before ( struct vlc_list *restrict  node,
struct vlc_list next 
)
inlinestatic

Inserts an element before another.

Parameters
node[out] Node pointer of the element to insert.
nextNode pointer of the next element.

References vlc_list::next, vlc_list::prev, and vlc_list_add_between().

Referenced by vlc_list_append().

◆ vlc_list_add_between()

static void vlc_list_add_between ( struct vlc_list *restrict  node,
struct vlc_list prev,
struct vlc_list next 
)
inlinestatic

Inserts an element in a list.

Parameters
node[out] Node pointer of the element to insert.
prevNode pointer of the previous element.
nextNode pointer of the next element.

References vlc_list::next, and vlc_list::prev.

Referenced by vlc_list_add_after(), vlc_list_add_before(), and vlc_list_replace().

◆ vlc_list_append()

◆ vlc_list_first_or_null()

static void * vlc_list_first_or_null ( const struct vlc_list head,
size_t  offset 
)
inlinestatic

◆ vlc_list_init()

◆ vlc_list_is_empty()

◆ vlc_list_is_first()

static bool vlc_list_is_first ( const struct vlc_list node,
const struct vlc_list head 
)
inlinestatic

Checks if an element is first in a list.

Parameters
node[in] List node of the element.
head[in] Head of the list to be checked.
Return values
falseThe element is not first (or is in another list).
trueThe element is first.

References vlc_list::prev.

Referenced by vlc_list_prev_or_null().

◆ vlc_list_is_last()

static bool vlc_list_is_last ( const struct vlc_list node,
const struct vlc_list head 
)
inlinestatic

Checks if an element is last in a list.

Parameters
node[in] List node of the element.
head[in] Head of the list to be checked.
Return values
falseThe element is not last (or is in another list).
trueThe element is last.

References vlc_list::next.

Referenced by filter_chain_VideoBufferNew(), and vlc_list_next_or_null().

◆ vlc_list_it_continue()

static bool vlc_list_it_continue ( const struct vlc_list_it *restrict  it)
inlinestatic

◆ vlc_list_it_next()

static void vlc_list_it_next ( struct vlc_list_it *restrict  it)
inlinestatic

References vlc_list::next.

Referenced by filter_chain_VideoFilter().

◆ vlc_list_it_prev()

static void vlc_list_it_prev ( struct vlc_list_it *restrict  it)
inlinestatic

References vlc_list::next, and vlc_list::prev.

◆ vlc_list_it_reverse_start()

static struct vlc_list_it vlc_list_it_reverse_start ( struct vlc_list head)
inlinestatic

◆ vlc_list_it_reverse_start_const()

static struct vlc_list_it vlc_list_it_reverse_start_const ( const struct vlc_list head)
inlinestatic

◆ vlc_list_it_start()

static struct vlc_list_it vlc_list_it_start ( struct vlc_list head)
inlinestatic

◆ vlc_list_it_start_const()

static struct vlc_list_it vlc_list_it_start_const ( const struct vlc_list head)
inlinestatic

◆ vlc_list_last_or_null()

static void * vlc_list_last_or_null ( const struct vlc_list head,
size_t  offset 
)
inlinestatic

◆ vlc_list_next_or_null()

static void * vlc_list_next_or_null ( const struct vlc_list head,
const struct vlc_list node,
size_t  offset 
)
inlinestatic

◆ vlc_list_prepend()

static void vlc_list_prepend ( struct vlc_list *restrict  node,
struct vlc_list head 
)
inlinestatic

Prepends an element into a list.

Parameters
node[out] Node pointer of the element to prepend to the list.
headHead pointer of the list to prepend the element to.

References vlc_list_add_after().

Referenced by vlc::list< NodeType >::push_front().

◆ vlc_list_prev_or_null()

static void * vlc_list_prev_or_null ( const struct vlc_list head,
const struct vlc_list node,
size_t  offset 
)
inlinestatic

◆ vlc_list_remove()

◆ vlc_list_replace()

static void vlc_list_replace ( const struct vlc_list original,
struct vlc_list *restrict  substitute 
)
inlinestatic

Replaces an element with another one.

Parameters
original[in] Node pointer of the element to remove from the list.
substitute[out] Node pointer of the replacement.

References vlc_list::next, vlc_list::prev, and vlc_list_add_between().

Referenced by spu_PrerenderText(), and SpuRenderSubpictures().