PipeWire 0.3.15
global.h
Go to the documentation of this file.
1/* PipeWire
2 *
3 * Copyright © 2018 Wim Taymans
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25#ifndef PIPEWIRE_GLOBAL_H
26#define PIPEWIRE_GLOBAL_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
54struct pw_global;
55
56#include <pipewire/impl.h>
57
58typedef int (*pw_global_bind_func_t) (void *object,
59 struct pw_impl_client *client,
60 uint32_t permissions,
61 uint32_t version,
62 uint32_t id );
63
66#define PW_VERSION_GLOBAL_EVENTS 0
67 uint32_t version;
68
70 void (*destroy) (void *data);
72 void (*free) (void *data);
74 void (*permissions_changed) (void *data,
75 struct pw_impl_client *client,
76 uint32_t old_permissions,
77 uint32_t new_permissions);
78};
79
81struct pw_global *
82pw_global_new(struct pw_context *context,
83 const char *type,
84 uint32_t version,
85 struct pw_properties *properties,
87 void *object );
88
90int pw_global_register(struct pw_global *global);
91
93void pw_global_add_listener(struct pw_global *global,
94 struct spa_hook *listener,
95 const struct pw_global_events *events,
96 void *data);
97
99uint32_t pw_global_get_permissions(struct pw_global *global, struct pw_impl_client *client);
100
102struct pw_context *pw_global_get_context(struct pw_global *global);
103
105const char *pw_global_get_type(struct pw_global *global);
106
108bool pw_global_is_type(struct pw_global *global, const char *type);
109
111uint32_t pw_global_get_version(struct pw_global *global);
112
114const struct pw_properties *pw_global_get_properties(struct pw_global *global);
115
117int pw_global_update_keys(struct pw_global *global,
118 const struct spa_dict *dict, const char *keys[]);
119
122void *pw_global_get_object(struct pw_global *global);
123
125uint32_t pw_global_get_id(struct pw_global *global);
126
128int pw_global_add_resource(struct pw_global *global, struct pw_resource *resource);
129
134int pw_global_for_each_resource(struct pw_global *global,
135 int (*callback) (void *data, struct pw_resource *resource),
136 void *data);
137
139int pw_global_bind(struct pw_global *global,
140 struct pw_impl_client *client,
141 uint32_t permissions,
142 uint32_t version,
143 uint32_t id);
144
145int pw_global_update_permissions(struct pw_global *global, struct pw_impl_client *client,
146 uint32_t old_permissions, uint32_t new_permissions);
147
149void pw_global_destroy(struct pw_global *global);
150
151#ifdef __cplusplus
152}
153#endif
154
155#endif /* PIPEWIRE_GLOBAL_H */
the PipeWire context
A global object visible to remote clients.
SPA_EXPORT 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.
Definition: global.c:67
SPA_EXPORT int pw_global_bind(struct pw_global *global, struct pw_impl_client *client, uint32_t permissions, uint32_t version, uint32_t id)
Bind to a global.
Definition: global.c:284
SPA_EXPORT void pw_global_destroy(struct pw_global *global)
Destroy a global.
Definition: global.c:377
SPA_EXPORT int pw_global_register(struct pw_global *global)
register a global to the context registry
Definition: global.c:128
PipeWire client object class.
Client owned objects.
struct pw_context * pw_global_get_context(struct pw_global *global)
Get the context object of this global.
Definition: global.c:185
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.
Definition: global.c:45
int(* pw_global_bind_func_t)(void *object, struct pw_impl_client *client, uint32_t permissions, uint32_t version, uint32_t id)
Definition: global.h:58
uint32_t pw_global_get_version(struct pw_global *global)
Get the global version.
Definition: global.c:203
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.
Definition: global.c:262
uint32_t pw_global_get_id(struct pw_global *global)
Get the unique id of the global.
Definition: global.c:231
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,...
Definition: global.c:248
int pw_global_update_permissions(struct pw_global *global, struct pw_impl_client *client, uint32_t old_permissions, uint32_t new_permissions)
Definition: global.c:321
const char * pw_global_get_type(struct pw_global *global)
Get the global type.
Definition: global.c:191
const struct pw_properties * pw_global_get_properties(struct pw_global *global)
Get the global properties.
Definition: global.c:209
int pw_global_update_keys(struct pw_global *global, const struct spa_dict *dict, const char *keys[])
Update the global properties, must be done when unregistered.
Definition: global.c:215
int pw_global_add_resource(struct pw_global *global, struct pw_resource *resource)
Add a resource to a global.
Definition: global.c:237
void * pw_global_get_object(struct pw_global *global)
Get the object associated with the global.
Definition: global.c:225
bool pw_global_is_type(struct pw_global *global, const char *type)
Check a global type.
Definition: global.c:197
Definition: filter.c:71
Global events, use pw_global_add_listener.
Definition: global.h:65
void(* free)(void *data)
The global is freed.
Definition: global.h:72
void(* destroy)(void *data)
The global is destroyed.
Definition: global.h:70
uint32_t version
Definition: global.h:67
void(* permissions_changed)(void *data, struct pw_impl_client *client, uint32_t old_permissions, uint32_t new_permissions)
The permissions changed for a client.
Definition: global.h:74
A collection of key/value pairs.
Definition: properties.h:45
struct spa_dict dict
dictionary of key/values
Definition: properties.h:46