17  #define SPA_API_HOOK SPA_API_IMPL 
   19  #define SPA_API_HOOK static inline 
  124#define SPA_CALLBACK_VERSION_MIN(c,v) ((c) && ((v) == 0 || (c)->version > (v)-1)) 
  127#define SPA_CALLBACK_CHECK(c,m,v) (SPA_CALLBACK_VERSION_MIN(c,v) && (c)->m) 
  133#define SPA_CALLBACKS_INIT(_funcs,_data) ((struct spa_callbacks){ (_funcs), (_data), }) 
  156#define SPA_INTERFACE_INIT(_type,_version,_funcs,_data) \ 
  157        ((struct spa_interface){ (_type), (_version), SPA_CALLBACKS_INIT(_funcs,_data), }) 
  164#define spa_callbacks_call(callbacks,type,method,vers,...)                      \ 
  166        const type *_f = (const type *) (callbacks)->funcs;                     \ 
  167        bool _res = SPA_CALLBACK_CHECK(_f,method,vers);                         \ 
  168        if (SPA_LIKELY(_res))                                                   \ 
 
  169                (_f->method)((callbacks)->data, ## __VA_ARGS__);                \ 
  173#define spa_callbacks_call_fast(callbacks,type,method,vers,...)                 \ 
  175        const type *_f = (const type *) (callbacks)->funcs;                     \ 
  176        (_f->method)((callbacks)->data, ## __VA_ARGS__);                        \ 
 
  184#define spa_callback_version_min(callbacks,type,vers)                           \ 
  186        const type *_f = (const type *) (callbacks)->funcs;                     \ 
  187        SPA_CALLBACK_VERSION_MIN(_f,vers);                                      \ 
 
  194#define spa_callback_check(callbacks,type,method,vers)                          \ 
  196        const type *_f = (const type *) (callbacks)->funcs;                     \ 
  197        SPA_CALLBACK_CHECK(_f,method,vers);                                     \ 
 
  206#define spa_callbacks_call_res(callbacks,type,res,method,vers,...)              \ 
  208        const type *_f = (const type *) (callbacks)->funcs;                     \ 
  209        if (SPA_LIKELY(SPA_CALLBACK_CHECK(_f,method,vers)))                     \ 
  210                res = (_f->method)((callbacks)->data, ## __VA_ARGS__);          \ 
  213#define spa_callbacks_call_fast_res(callbacks,type,res,method,vers,...)         \ 
  215        const type *_f = (const type *) (callbacks)->funcs;                     \ 
  216        res = (_f->method)((callbacks)->data, ## __VA_ARGS__);                  \ 
  222#define spa_interface_callback_version_min(iface,method_type,vers)              \ 
  223   spa_callback_version_min(&(iface)->cb, method_type, vers) 
 
  229#define spa_interface_callback_check(iface,method_type,method,vers)             \ 
  230   spa_callback_check(&(iface)->cb, method_type, method, vers) 
  237#define spa_interface_call(iface,method_type,method,vers,...)                   \ 
  238        spa_callbacks_call(&(iface)->cb,method_type,method,vers,##__VA_ARGS__) 
  240#define spa_interface_call_fast(iface,method_type,method,vers,...)              \ 
  241        spa_callbacks_call_fast(&(iface)->cb,method_type,method,vers,##__VA_ARGS__) 
 
  250#define spa_interface_call_res(iface,method_type,res,method,vers,...)                   \ 
  251        spa_callbacks_call_res(&(iface)->cb,method_type,res,method,vers,##__VA_ARGS__) 
 
  253#define spa_interface_call_fast_res(iface,method_type,res,method,vers,...)              \ 
  254        spa_callbacks_call_fast_res(&(iface)->cb,method_type,res,method,vers,##__VA_ARGS__) 
  257#define spa_api_func_v(o,method,version,...)                            \ 
  259        if (SPA_LIKELY(SPA_CALLBACK_CHECK(o,method,version)))           \ 
  260                ((o)->method)(o, ##__VA_ARGS__);                        \ 
  262#define spa_api_func_r(rtype,def,o,method,version,...)                  \ 
 
  265        if (SPA_LIKELY(SPA_CALLBACK_CHECK(o,method,version)))           \ 
 
  266                _res = ((o)->method)(o, ##__VA_ARGS__);                 \ 
  269#define spa_api_func_fast(o,method,...)                                 \ 
  271        ((o)->method)(o, ##__VA_ARGS__);                                \ 
 
  274#define spa_api_method_v(type,o,method,version,...)                     \ 
  276        struct spa_interface *_i = o;                   \ 
  277        spa_interface_call(_i, struct type ##_methods,                  \ 
  278                        method, version, ##__VA_ARGS__);                \ 
 
  280#define spa_api_method_r(rtype,def,type,o,method,version,...)           \ 
  283        struct spa_interface *_i = o;                   \ 
 
  284        spa_interface_call_res(_i, struct type ##_methods,              \ 
  285                        _res, method, version, ##__VA_ARGS__);          \ 
  288#define spa_api_method_null_v(type,co,o,method,version,...)             \ 
  290        struct type *_co = co;                                          \ 
 
  291        if (SPA_LIKELY(_co != NULL)) {                                  \ 
  292                struct spa_interface *_i = o;                           \ 
  293                spa_interface_call(_i, struct type ##_methods,          \ 
  294                        method, version, ##__VA_ARGS__);                \ 
  297#define spa_api_method_null_r(rtype,def,type,co,o,method,version,...)   \ 
 
  300        struct type *_co = co;                                          \ 
  301        if (SPA_LIKELY(_co != NULL)) {                                  \ 
  302                struct spa_interface *_i = o;                           \ 
  303                spa_interface_call_res(_i, struct type ##_methods,      \ 
  304                                _res, method, version, ##__VA_ARGS__);  \ 
 
  308#define spa_api_method_fast_v(type,o,method,version,...)                \ 
  310        struct spa_interface *_i = o;                                   \ 
  311        spa_interface_call_fast(_i, struct type ##_methods,             \ 
  312                        method, version, ##__VA_ARGS__);                \ 
  314#define spa_api_method_fast_r(rtype,def,type,o,method,version,...)      \ 
  317        struct spa_interface *_i = o;                                   \ 
  318        spa_interface_call_fast_res(_i, struct type ##_methods,         \ 
 
  319                        _res, method, version, ##__VA_ARGS__);          \ 
 
  439                                        const void *funcs, 
void *data)
 
 
  449                                         const void *funcs, 
void *data)
 
 
  477                const void *funcs, 
void *data)
 
 
  494#define spa_hook_list_call_simple(l,type,method,vers,...)                       \ 
  496        struct spa_hook_list *_l = l;                                           \ 
 
  497        struct spa_hook *_h, *_t;                                               \ 
  498        spa_list_for_each_safe(_h, _t, &_l->list, link)                         \ 
  499                spa_callbacks_call(&_h->cb,type,method,vers, ## __VA_ARGS__);   \ 
 
  505#define spa_hook_list_do_call(l,start,type,method,vers,once,...)                \ 
  507        struct spa_hook_list *_list = l;                                        \ 
  508        struct spa_list *_s = start ? (struct spa_list *)start : &_list->list;  \ 
  509        struct spa_hook _cursor = { 0 }, *_ci;                                  \ 
  511        spa_list_cursor_start(_cursor, _s, link);                               \ 
 
  512        spa_list_for_each_cursor(_ci, _cursor, &_list->list, link) {            \ 
  513                if (spa_callbacks_call(&_ci->cb,type,method,vers, ## __VA_ARGS__)) {            \ 
  519        spa_list_cursor_end(_cursor, link);                                     \ 
  527#define spa_hook_list_call(l,t,m,v,...)                 spa_hook_list_do_call(l,NULL,t,m,v,false,##__VA_ARGS__) 
 
  533#define spa_hook_list_call_once(l,t,m,v,...)            spa_hook_list_do_call(l,NULL,t,m,v,true,##__VA_ARGS__) 
  535#define spa_hook_list_call_start(l,s,t,m,v,...)         spa_hook_list_do_call(l,s,t,m,v,false,##__VA_ARGS__) 
  536#define spa_hook_list_call_once_start(l,s,t,m,v,...)    spa_hook_list_do_call(l,s,t,m,v,true,##__VA_ARGS__) 
SPA_API_HOOK bool spa_hook_list_is_empty(struct spa_hook_list *list)
Definition hook.h:442
SPA_API_HOOK void spa_hook_list_clean(struct spa_hook_list *list)
Remove all hooks from the list.
Definition hook.h:477
SPA_API_HOOK void spa_hook_list_isolate(struct spa_hook_list *list, struct spa_hook_list *save, struct spa_hook *hook, const void *funcs, void *data)
Definition hook.h:485
SPA_API_HOOK void spa_hook_remove(struct spa_hook *hook)
Remove a hook.
Definition hook.h:468
SPA_API_HOOK void spa_hook_list_join(struct spa_hook_list *list, struct spa_hook_list *save)
Definition hook.h:499
SPA_API_HOOK void spa_hook_list_prepend(struct spa_hook_list *list, struct spa_hook *hook, const void *funcs, void *data)
Prepend a hook.
Definition hook.h:458
SPA_API_HOOK void spa_hook_list_append(struct spa_hook_list *list, struct spa_hook *hook, const void *funcs, void *data)
Append a hook.
Definition hook.h:448
SPA_API_HOOK void spa_hook_list_init(struct spa_hook_list *list)
Initialize a hook list to the empty list.
Definition hook.h:437
#define SPA_CALLBACKS_INIT(_funcs, _data)
Initialize the set of functions funcs as a spa_callbacks, together with _data.
Definition hook.h:144
SPA_API_LIST int spa_list_is_initialized(struct spa_list *list)
Definition list.h:52
#define spa_list_consume(pos, head, member)
Definition list.h:104
SPA_API_LIST void spa_list_insert_list(struct spa_list *list, struct spa_list *other)
Definition list.h:67
SPA_API_LIST void spa_list_init(struct spa_list *list)
Definition list.h:47
SPA_API_LIST void spa_list_remove(struct spa_list *elem)
Definition list.h:77
#define spa_list_prepend(list, item)
Definition list.h:92
#define spa_list_is_empty(l)
Definition list.h:57
#define spa_list_append(list, item)
Definition list.h:89
#define spa_zero(x)
Definition defs.h:508
#define SPA_API_HOOK
Definition hook.h:27
Callbacks, contains the structure with functions and the data passed to the functions.
Definition hook.h:126
const void * funcs
Definition hook.h:127
void * data
Definition hook.h:128
A list of hooks.
Definition hook.h:416
struct spa_list list
Definition hook.h:417
A hook, contains the structure with functions and the data passed to the functions.
Definition hook.h:427
void(* removed)(struct spa_hook *hook)
callback and data for the hook list, private to the hook_list implementor
Definition hook.h:432
struct spa_callbacks cb
Definition hook.h:429
struct spa_list link
Definition hook.h:428
void * priv
Definition hook.h:433
uint32_t version
Definition hook.h:150
const char * type
Definition hook.h:149
struct spa_callbacks cb
Definition hook.h:151