25 #ifndef PIPEWIRE_MAP_H 26 #define PIPEWIRE_MAP_H 35 #include <spa/utils/defs.h> 55 #define PW_MAP_INIT(extend) (struct pw_map) { PW_ARRAY_INIT(extend), 0 } 57 #define pw_map_get_size(m) pw_array_get_len(&(m)->items, union pw_map_item) 58 #define pw_map_get_item(m,id) pw_array_get_unchecked(&(m)->items,id,union pw_map_item) 59 #define pw_map_item_is_free(item) ((item)->next & 0x1) 60 #define pw_map_id_is_free(m,id) (pw_map_item_is_free(pw_map_get_item(m,id))) 61 #define pw_map_check_id(m,id) ((id) < pw_map_get_size(m)) 62 #define pw_map_has_item(m,id) (pw_map_check_id(m,id) && !pw_map_id_is_free(m, id)) 63 #define pw_map_lookup_unchecked(m,id) pw_map_get_item(m,id)->data 66 #define PW_MAP_ID_TO_PTR(id) (SPA_UINT32_TO_PTR((id)<<1)) 68 #define PW_MAP_PTR_TO_ID(p) (SPA_PTR_TO_UINT32(p)>>1) 89 pw_array_clear(&map->
items);
92 static inline void pw_map_reset(
struct pw_map *map)
94 pw_array_reset(&map->
items);
117 return SPA_ID_INVALID;
140 else if (
id == size) {
189 int (*func) (
void *item_data,
void *
data),
void *
data)
196 if ((res = func(item->
data,
data)) != 0)
static void pw_map_clear(struct pw_map *map)
Clear a map.
Definition: map.h:87
static int pw_array_ensure_size(struct pw_array *arr, size_t size)
Make sure size bytes can be added to the array.
Definition: array.h:99
#define pw_map_get_size(m)
Definition: map.h:57
static void * pw_array_add(struct pw_array *arr, size_t size)
Add ref size bytes to arr.
Definition: array.h:121
uint32_t free_list
the free items
Definition: map.h:52
#define pw_map_get_item(m, id)
Definition: map.h:58
#define pw_array_for_each(pos, array)
Definition: array.h:67
static int pw_map_for_each(struct pw_map *map, int(*func)(void *item_data, void *data), void *data)
Iterate all map items.
Definition: map.h:188
void * data
pointer to array data
Definition: array.h:44
uint32_t next
next free index
Definition: map.h:45
#define pw_map_item_is_free(item)
Definition: map.h:59
static void pw_map_init(struct pw_map *map, size_t size, size_t extend)
Initialize a map.
Definition: map.h:76
#define pw_map_check_id(m, id)
Definition: map.h:61
static void pw_array_init(struct pw_array *arr, size_t extend)
Initialize the array with given extend.
Definition: array.h:79
static void * pw_map_lookup(struct pw_map *map, uint32_t id)
Find an item in the map.
Definition: map.h:169
static int pw_map_insert_at(struct pw_map *map, uint32_t id, void *data)
Insert data in the map at an index.
Definition: map.h:133
An array object.
Definition: array.h:43
An entry in the map.
Definition: map.h:44
static void pw_map_remove(struct pw_map *map, uint32_t id)
Remove an item at index.
Definition: map.h:157
size_t extend
number of bytes to extend with
Definition: array.h:47
static uint32_t pw_map_insert_new(struct pw_map *map, void *data)
Insert data in the map.
Definition: map.h:105
void * data
data of this item, must be an even address
Definition: map.h:46
size_t size
length of array in bytes
Definition: array.h:45
struct pw_array items
an array with the map items
Definition: map.h:51
A map.
Definition: map.h:50