PipeWire
0.3.33
|
A global object visible to remote clients. More...
Data Structures | |
struct | pw_global_events |
Global events, use pw_global_add_listener. More... | |
Typedefs | |
typedef int(* | pw_global_bind_func_t) (void *object, struct pw_impl_client *client, uint32_t permissions, uint32_t version, uint32_t id) |
Functions | |
struct pw_global * | pw_global_new (struct pw_context *context, const char *type, uint32_t version, struct pw_properties *properties, pw_global_bind_func_t func, void *object) |
Create a new global object. More... | |
int | pw_global_register (struct pw_global *global) |
Register a global object to the context registry. More... | |
void | pw_global_add_listener (struct pw_global *global, struct spa_hook *listener, const struct pw_global_events *events, void *data) |
Add an event listener on the global. More... | |
uint32_t | pw_global_get_permissions (struct pw_global *global, struct pw_impl_client *client) |
Get the permissions of the global for a given client. More... | |
struct pw_context * | pw_global_get_context (struct pw_global *global) |
Get the context object of this global. More... | |
const char * | pw_global_get_type (struct pw_global *global) |
Get the global type. More... | |
bool | pw_global_is_type (struct pw_global *global, const char *type) |
Check a global type. More... | |
uint32_t | pw_global_get_version (struct pw_global *global) |
Get the global version. More... | |
const struct pw_properties * | pw_global_get_properties (struct pw_global *global) |
Get the global properties. More... | |
int | pw_global_update_keys (struct pw_global *global, const struct spa_dict *dict, const char *const keys[]) |
Update the global properties, must be done when unregistered. More... | |
void * | pw_global_get_object (struct pw_global *global) |
Get the object associated with the global. More... | |
uint32_t | pw_global_get_id (struct pw_global *global) |
Get the unique id of the global. More... | |
int | pw_global_add_resource (struct pw_global *global, struct pw_resource *resource) |
Add a resource to a global. More... | |
int | pw_global_for_each_resource (struct pw_global *global, int(*callback)(void *data, struct pw_resource *resource), void *data) |
Iterate all resources added to the global The callback should return 0 to fetch the next item, any other value stops the iteration and returns the value. More... | |
int | pw_global_bind (struct pw_global *global, struct pw_impl_client *client, uint32_t permissions, uint32_t version, uint32_t id) |
Let a client bind to a global. More... | |
int | pw_global_update_permissions (struct pw_global *global, struct pw_impl_client *client, uint32_t old_permissions, uint32_t new_permissions) |
void | pw_global_destroy (struct pw_global *global) |
Destroy a global. More... | |
A global object visible to remote clients.
A global object is visible to remote clients and represents a resource that can be used or inspected.
Global objects represent resources that are available on the PipeWire context and are accessible to remote clients. Globals come and go when devices or other resources become available for clients.
Remote clients receives a list of globals when it binds to the registry object. See Registry.
A client can bind to a global to send methods or receive events from the global.
See Proxy
typedef int(* pw_global_bind_func_t) (void *object, struct pw_impl_client *client, uint32_t permissions, uint32_t version, uint32_t id) |
void pw_global_add_listener | ( | struct pw_global * | global, |
struct spa_hook * | listener, | ||
const struct pw_global_events * | events, | ||
void * | data | ||
) |
Add an event listener on the global.
References spa_hook_list_append().
int pw_global_add_resource | ( | struct pw_global * | global, |
struct pw_resource * | resource | ||
) |
Add a resource to a global.
References NAME, pw_log_debug, pw_resource_set_bound_id(), and spa_list_append.
int pw_global_bind | ( | struct pw_global * | global, |
struct pw_impl_client * | client, | ||
uint32_t | permissions, | ||
uint32_t | version, | ||
uint32_t | id | ||
) |
Let a client bind to a global.
Let a client bind to a global.
global | the global to bind to |
client | the client that binds |
permissions | the PipeWire Permission |
version | the version |
id | the id of the resource |
Let client bind to global with the given version and id. After binding, the client and the global object will be able to exchange messages on the proxy/resource with id.
References NAME, pw_log_error, and spa_strerror.
void pw_global_destroy | ( | struct pw_global * | global | ) |
Destroy a global.
global | a global to destroy |
References NAME, pw_log_debug, pw_resource_destroy(), and spa_list_consume.
Referenced by pw_context_destroy(), pw_impl_core_destroy(), pw_impl_factory_destroy(), pw_impl_metadata_destroy(), and pw_impl_module_destroy().
int pw_global_for_each_resource | ( | struct pw_global * | global, |
int(*)(void *data, struct pw_resource *resource) | callback, | ||
void * | data | ||
) |
Iterate all resources added to the global The callback should return 0 to fetch the next item, any other value stops the iteration and returns the value.
When all callbacks return 0, this function returns 0 when all items are iterated.
References spa_list_for_each_safe.
struct pw_context* pw_global_get_context | ( | struct pw_global * | global | ) |
Get the context object of this global.
uint32_t pw_global_get_id | ( | struct pw_global * | global | ) |
Get the unique id of the global.
Referenced by pipewire__module_init().
void* pw_global_get_object | ( | struct pw_global * | global | ) |
Get the object associated with the global.
This depends on the type of the global
uint32_t pw_global_get_permissions | ( | struct pw_global * | global, |
struct pw_impl_client * | client | ||
) |
Get the permissions of the global for a given client.
References PW_PERM_ALL.
Referenced by pw_global_register(), and pw_impl_client_check_permissions().
const struct pw_properties* pw_global_get_properties | ( | struct pw_global * | global | ) |
Get the global properties.
const char* pw_global_get_type | ( | struct pw_global * | global | ) |
Get the global type.
uint32_t pw_global_get_version | ( | struct pw_global * | global | ) |
Get the global version.
bool pw_global_is_type | ( | struct pw_global * | global, |
const char * | type | ||
) |
Check a global type.
References spa_streq().
struct pw_global* pw_global_new | ( | struct pw_context * | context, |
const char * | type, | ||
uint32_t | version, | ||
struct pw_properties * | properties, | ||
pw_global_bind_func_t | func, | ||
void * | object | ||
) |
Create a new global object.
Create a new global object.
context | a context object |
type | the type of the global |
version | the version of the type |
properties | extra properties |
func | a function to bind to this global |
object | the associated object |
context | the context |
type | the interface type of the global |
version | the interface version of the global |
properties | extra properties |
func | function to bind |
object | global object |
References pw_properties_new(), and impl::this.
Referenced by pipewire__module_init(), pw_impl_client_register(), pw_impl_core_register(), pw_impl_device_register(), pw_impl_factory_register(), pw_impl_link_register(), pw_impl_metadata_register(), pw_impl_node_register(), and pw_impl_port_register().
int pw_global_register | ( | struct pw_global * | global | ) |
Register a global object to the context registry.
Register a global object to the context registry.
global | a global to add |
References NAME, pw_global_get_permissions(), pw_log_debug, PW_PERM_IS_R, spa_list_append, and spa_list_for_each.
int pw_global_update_keys | ( | struct pw_global * | global, |
const struct spa_dict * | dict, | ||
const char *const | keys[] | ||
) |
Update the global properties, must be done when unregistered.
References pw_properties::dict, and pw_properties_update_keys().
int pw_global_update_permissions | ( | struct pw_global * | global, |
struct pw_impl_client * | client, | ||
uint32_t | old_permissions, | ||
uint32_t | new_permissions | ||
) |
References client::id, NAME, PW_ID_CORE, pw_log_debug, PW_PERM_IS_R, pw_resource_destroy(), spa_list_for_each, and spa_list_for_each_safe.
Referenced by pw_impl_client_update_permissions().