26 #ifndef PIPEWIRE_EXT_SESSION_MANAGER_IMPL_INTERFACES_H 
   27 #define PIPEWIRE_EXT_SESSION_MANAGER_IMPL_INTERFACES_H 
   44 #define PW_TYPE_INTERFACE_ClientEndpoint        PW_TYPE_INFO_INTERFACE_BASE "ClientEndpoint" 
   46 #define PW_VERSION_CLIENT_ENDPOINT              0 
   49 #define PW_CLIENT_ENDPOINT_EVENT_SET_SESSION_ID         0 
   50 #define PW_CLIENT_ENDPOINT_EVENT_SET_PARAM              1 
   51 #define PW_CLIENT_ENDPOINT_EVENT_STREAM_SET_PARAM       2 
   52 #define PW_CLIENT_ENDPOINT_EVENT_CREATE_LINK            3 
   53 #define PW_CLIENT_ENDPOINT_EVENT_NUM                    4 
   56 #define PW_VERSION_CLIENT_ENDPOINT_EVENTS               0 
   98                           uint32_t id, uint32_t flags,
 
  122                                  uint32_t id, uint32_t flags,
 
  128 #define PW_CLIENT_ENDPOINT_METHOD_ADD_LISTENER  0 
  129 #define PW_CLIENT_ENDPOINT_METHOD_UPDATE        1 
  130 #define PW_CLIENT_ENDPOINT_METHOD_STREAM_UPDATE 2 
  131 #define PW_CLIENT_ENDPOINT_METHOD_NUM           3 
  134 #define PW_VERSION_CLIENT_ENDPOINT_METHODS      0 
  143         int (*
update) (
void *object,
 
  144 #define PW_CLIENT_ENDPOINT_UPDATE_PARAMS        (1 << 0) 
  145 #define PW_CLIENT_ENDPOINT_UPDATE_INFO          (1 << 1) 
  146                         uint32_t change_mask,
 
  154 #define PW_CLIENT_ENDPOINT_STREAM_UPDATE_PARAMS         (1 << 0) 
  155 #define PW_CLIENT_ENDPOINT_STREAM_UPDATE_INFO           (1 << 1) 
  156 #define PW_CLIENT_ENDPOINT_STREAM_UPDATE_DESTROYED      (1 << 2) 
  163 #define pw_client_endpoint_method(o,method,version,...)         \ 
  165         int _res = -ENOTSUP;                                            \ 
  166         spa_interface_call_res((struct spa_interface*)o,                \ 
  167                         struct pw_client_endpoint_methods, _res,        \ 
  168                         method, version, ##__VA_ARGS__);                \ 
  172 #define pw_client_endpoint_add_listener(o,...)  pw_client_endpoint_method(o,add_listener,0,__VA_ARGS__) 
  173 #define pw_client_endpoint_update(o,...)        pw_client_endpoint_method(o,update,0,__VA_ARGS__) 
  174 #define pw_client_endpoint_stream_update(o,...) pw_client_endpoint_method(o,stream_update,0,__VA_ARGS__) 
  176 #define PW_TYPE_INTERFACE_ClientSession         PW_TYPE_INFO_INTERFACE_BASE "ClientSession" 
  178 #define PW_VERSION_CLIENT_SESSION 0 
  181 #define PW_CLIENT_SESSION_EVENT_SET_PARAM               0 
  182 #define PW_CLIENT_SESSION_EVENT_LINK_SET_PARAM          1 
  183 #define PW_CLIENT_SESSION_EVENT_LINK_REQUEST_STATE      2 
  184 #define PW_CLIENT_SESSION_EVENT_NUM                     3 
  187 #define PW_VERSION_CLIENT_SESSION_EVENTS                0 
  212                           uint32_t id, uint32_t flags,
 
  236                                uint32_t id, uint32_t flags,
 
  242 #define PW_CLIENT_SESSION_METHOD_ADD_LISTENER   0 
  243 #define PW_CLIENT_SESSION_METHOD_UPDATE         1 
  244 #define PW_CLIENT_SESSION_METHOD_LINK_UPDATE    2 
  245 #define PW_CLIENT_SESSION_METHOD_NUM            3 
  248 #define PW_VERSION_CLIENT_SESSION_METHODS               0 
  257         int (*
update) (
void *object,
 
  258 #define PW_CLIENT_SESSION_UPDATE_PARAMS         (1 << 0) 
  259 #define PW_CLIENT_SESSION_UPDATE_INFO           (1 << 1) 
  260                         uint32_t change_mask,
 
  268 #define PW_CLIENT_SESSION_LINK_UPDATE_PARAMS            (1 << 0) 
  269 #define PW_CLIENT_SESSION_LINK_UPDATE_INFO              (1 << 1) 
  270 #define PW_CLIENT_SESSION_LINK_UPDATE_DESTROYED         (1 << 2) 
  277 #define pw_client_session_method(o,method,version,...)                  \ 
  279         int _res = -ENOTSUP;                                            \ 
  280         spa_interface_call_res((struct spa_interface*)o,                \ 
  281                         struct pw_client_session_methods, _res,         \ 
  282                         method, version, ##__VA_ARGS__);                \ 
  286 #define pw_client_session_add_listener(o,...)   pw_client_session_method(o,add_listener,0,__VA_ARGS__) 
  287 #define pw_client_session_update(o,...)         pw_client_session_method(o,update,0,__VA_ARGS__) 
  288 #define pw_client_session_link_update(o,...)    pw_client_session_method(o,link_update,0,__VA_ARGS__) 
int(* update)(void *object, #define PW_CLIENT_ENDPOINT_UPDATE_PARAMS #define PW_CLIENT_ENDPOINT_UPDATE_INFO uint32_t change_mask, uint32_t n_params, const struct spa_pod **params, const struct pw_endpoint_info *info)
Update endpoint information.
Definition: impl-interfaces.h:161
 
int(* update)(void *object, #define PW_CLIENT_SESSION_UPDATE_PARAMS #define PW_CLIENT_SESSION_UPDATE_INFO uint32_t change_mask, uint32_t n_params, const struct spa_pod **params, const struct pw_session_info *info)
Update session information.
Definition: impl-interfaces.h:299
 
int(* link_update)(void *object, uint32_t link_id, #define PW_CLIENT_SESSION_LINK_UPDATE_PARAMS #define PW_CLIENT_SESSION_LINK_UPDATE_INFO #define PW_CLIENT_SESSION_LINK_UPDATE_DESTROYED uint32_t change_mask, uint32_t n_params, const struct spa_pod **params, const struct pw_endpoint_link_info *info)
Update link information.
Definition: impl-interfaces.h:310
 
int(* stream_update)(void *object, uint32_t stream_id, #define PW_CLIENT_ENDPOINT_STREAM_UPDATE_PARAMS #define PW_CLIENT_ENDPOINT_STREAM_UPDATE_INFO #define PW_CLIENT_ENDPOINT_STREAM_UPDATE_DESTROYED uint32_t change_mask, uint32_t n_params, const struct spa_pod **params, const struct pw_endpoint_stream_info *info)
Update stream information.
Definition: impl-interfaces.h:172
 
pipewire/extensions/session-manager/introspect.h
 
Definition: impl-interfaces.h:67
 
int(* create_link)(void *data, const struct spa_dict *props)
Definition: impl-interfaces.h:138
 
int(* set_session_id)(void *data, uint32_t session_id)
Sets the session id of the endpoint.
Definition: impl-interfaces.h:87
 
int(* stream_set_param)(void *data, uint32_t stream_id, uint32_t id, uint32_t flags, const struct spa_pod *param)
Set a parameter on stream_id of endpoint.
Definition: impl-interfaces.h:134
 
int(* set_param)(void *data, uint32_t id, uint32_t flags, const struct spa_pod *param)
Set the configurable parameter in endpoint.
Definition: impl-interfaces.h:110
 
uint32_t version
version of this structure
Definition: impl-interfaces.h:70
 
Definition: impl-interfaces.h:150
 
int(* add_listener)(void *object, struct spa_hook *listener, const struct pw_client_endpoint_events *events, void *data)
Definition: impl-interfaces.h:155
 
uint32_t version
version of this structure
Definition: impl-interfaces.h:153
 
Definition: impl-interfaces.h:222
 
uint32_t version
version of this structure
Definition: impl-interfaces.h:225
 
int(* set_param)(void *data, uint32_t id, uint32_t flags, const struct spa_pod *param)
Set the configurable parameter in session.
Definition: impl-interfaces.h:248
 
int(* link_request_state)(void *data, uint32_t link_id, uint32_t state)
Definition: impl-interfaces.h:276
 
int(* link_set_param)(void *data, uint32_t link_id, uint32_t id, uint32_t flags, const struct spa_pod *param)
Set a parameter on link_id of session.
Definition: impl-interfaces.h:272
 
Definition: impl-interfaces.h:288
 
uint32_t version
version of this structure
Definition: impl-interfaces.h:291
 
int(* add_listener)(void *object, struct spa_hook *listener, const struct pw_client_session_events *events, void *data)
Definition: impl-interfaces.h:293
 
Definition: introspect.h:70
 
uint64_t change_mask
bitfield of changed fields since last call
Definition: introspect.h:91
 
uint32_t n_params
number of items in params
Definition: introspect.h:96
 
Definition: introspect.h:121
 
Definition: introspect.h:99
 
Definition: introspect.h:53
 
uint64_t change_mask
bitfield of changed fields since last call
Definition: introspect.h:64
 
uint32_t n_params
number of items in params
Definition: introspect.h:67
 
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351