PipeWire  1.6.4
context.h
Go to the documentation of this file.
1 /* PipeWire */
2 /* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
3 /* SPDX-License-Identifier: MIT */
4 
5 #ifndef PIPEWIRE_CONTEXT_H
6 #define PIPEWIRE_CONTEXT_H
7 
8 #include <spa/utils/defs.h>
9 #include <spa/utils/hook.h>
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
42 struct pw_context;
43 
44 struct pw_global;
45 struct pw_impl_client;
46 struct pw_impl_node;
47 
48 #include <pipewire/core.h>
49 #include <pipewire/loop.h>
50 #include <pipewire/properties.h>
51 
54 #define PW_VERSION_CONTEXT_EVENTS 1
55  uint32_t version;
56 
58  void (*destroy) (void *data);
60  void (*free) (void *data);
62  void (*check_access) (void *data, struct pw_impl_client *client);
64  void (*global_added) (void *data, struct pw_global *global);
66  void (*global_removed) (void *data, struct pw_global *global);
67 
69  void (*driver_added) (void *data, struct pw_impl_node *node);
71  void (*driver_removed) (void *data, struct pw_impl_node *node);
72 };
73 
82 struct pw_context * pw_context_new(struct pw_loop *main_loop,
83  struct pw_properties *props,
84  size_t user_data_size);
85 
87 void pw_context_destroy(struct pw_context *context);
88 
90 void *pw_context_get_user_data(struct pw_context *context);
91 
93 void pw_context_add_listener(struct pw_context *context,
94  struct spa_hook *listener,
95  const struct pw_context_events *events,
96  void *data);
97 
99 const struct pw_properties *pw_context_get_properties(struct pw_context *context);
100 
102 int pw_context_update_properties(struct pw_context *context, const struct spa_dict *dict);
103 
106 const char *pw_context_get_conf_section(struct pw_context *context, const char *section);
108 int pw_context_parse_conf_section(struct pw_context *context,
109  struct pw_properties *conf, const char *section);
110 
112 int pw_context_conf_update_props(struct pw_context *context, const char *section,
113  struct pw_properties *props);
115 int pw_context_conf_section_for_each(struct pw_context *context, const char *section,
116  int (*callback) (void *data, const char *location, const char *section,
117  const char *str, size_t len),
118  void *data);
120 int pw_context_conf_section_match_rules(struct pw_context *context, const char *section,
121  const struct spa_dict *props,
122  int (*callback) (void *data, const char *location, const char *action,
123  const char *str, size_t len),
124  void *data);
125 
127 const struct spa_support *pw_context_get_support(struct pw_context *context, uint32_t *n_support);
128 
130 struct pw_loop *pw_context_get_main_loop(struct pw_context *context);
131 
135 struct pw_data_loop *pw_context_get_data_loop(struct pw_context *context);
136 
139 struct pw_loop *pw_context_acquire_loop(struct pw_context *context, const struct spa_dict *props);
142 void pw_context_release_loop(struct pw_context *context, struct pw_loop *loop);
143 
145 struct pw_work_queue *pw_context_get_work_queue(struct pw_context *context);
146 
148 struct pw_timer_queue *pw_context_get_timer_queue(struct pw_context *context);
149 
151 struct pw_mempool *pw_context_get_mempool(struct pw_context *context);
152 
157 int pw_context_for_each_global(struct pw_context *context,
158  int (*callback) (void *data, struct pw_global *global),
159  void *data);
160 
165 struct pw_global *pw_context_find_global(struct pw_context *context,
166  uint32_t id );
167 
169 int pw_context_add_spa_lib(struct pw_context *context, const char *factory_regex, const char *lib);
170 
172 const char * pw_context_find_spa_lib(struct pw_context *context, const char *factory_name);
173 
175 struct spa_handle *pw_context_load_spa_handle(struct pw_context *context,
176  const char *factory_name,
177  const struct spa_dict *info);
178 
179 
181 struct pw_export_type {
182  struct spa_list link;
183  const char *type;
184  struct pw_proxy * (*func) (struct pw_core *core,
185  const char *type, const struct spa_dict *props, void *object,
186  size_t user_data_size);
187 };
188 
191 int pw_context_register_export_type(struct pw_context *context, struct pw_export_type *type);
193 const struct pw_export_type *pw_context_find_export_type(struct pw_context *context, const char *type);
194 
203 int pw_context_set_object(struct pw_context *context, const char *type, void *value);
210 void *pw_context_get_object(struct pw_context *context, const char *type);
211 
215 #ifdef __cplusplus
216 }
217 #endif
218 
219 #endif /* PIPEWIRE_CONTEXT_H */
pipewire/core.h
spa/utils/defs.h
struct pw_data_loop * pw_context_get_data_loop(struct pw_context *context)
Get the context data loop.
Definition: context.c:791
struct pw_mempool * pw_context_get_mempool(struct pw_context *context)
Get the memory pool from the context: Since 0.3.74.
Definition: context.c:851
int pw_context_set_object(struct pw_context *context, const char *type, void *value)
add an object to the context
Definition: context.c:1953
void * pw_context_get_object(struct pw_context *context, const char *type)
get an object from the context
Definition: context.c:1987
int pw_context_register_export_type(struct pw_context *context, struct pw_export_type *type)
register a type that can be exported on a context_proxy.
Definition: context.c:1915
void pw_context_destroy(struct pw_context *context)
destroy a context object, all resources except the main_loop will be destroyed
Definition: context.c:608
struct pw_timer_queue * pw_context_get_timer_queue(struct pw_context *context)
Get the timer queue from the context: Since 1.6.0.
Definition: context.c:843
void pw_context_add_listener(struct pw_context *context, struct spa_hook *listener, const struct pw_context_events *events, void *data)
Add a new event listener to a context.
Definition: context.c:704
int pw_context_update_properties(struct pw_context *context, const struct spa_dict *dict)
Update the context properties.
Definition: context.c:876
const struct spa_support * pw_context_get_support(struct pw_context *context, uint32_t *n_support)
Get the context support objects.
Definition: context.c:728
struct pw_global * pw_context_find_global(struct pw_context *context, uint32_t id)
Find a context global by id.
Definition: context.c:925
int pw_context_conf_section_for_each(struct pw_context *context, const char *section, int(*callback)(void *data, const char *location, const char *section, const char *str, size_t len), void *data)
emit callback for all config sections.
Definition: conf.c:1393
struct pw_context * pw_context_new(struct pw_loop *main_loop, struct pw_properties *props, size_t user_data_size)
Make a new context object for a given main_loop.
Definition: context.c:395
const char * pw_context_get_conf_section(struct pw_context *context, const char *section)
Get a config section for this context.
Definition: context.c:863
int pw_context_conf_section_match_rules(struct pw_context *context, const char *section, const struct spa_dict *props, int(*callback)(void *data, const char *location, const char *action, const char *str, size_t len), void *data)
emit callback for all matched properties.
Definition: conf.c:1428
int pw_context_conf_update_props(struct pw_context *context, const char *section, struct pw_properties *props)
update properties from a section into props.
Definition: conf.c:1385
const struct pw_export_type * pw_context_find_export_type(struct pw_context *context, const char *type)
find information about registered export type
Definition: context.c:1927
void pw_context_release_loop(struct pw_context *context, struct pw_loop *loop)
Release a data-loop.
Definition: context.c:821
struct spa_handle * pw_context_load_spa_handle(struct pw_context *context, const char *factory_name, const struct spa_dict *info)
Load a SPA handle from a context.
Definition: context.c:1885
void * pw_context_get_user_data(struct pw_context *context)
Get the context user data.
Definition: context.c:698
const struct pw_properties * pw_context_get_properties(struct pw_context *context)
Get the context properties.
Definition: context.c:857
int pw_context_for_each_global(struct pw_context *context, int(*callback)(void *data, struct pw_global *global), void *data)
Iterate the globals of the context.
Definition: context.c:908
const char * pw_context_find_spa_lib(struct pw_context *context, const char *factory_name)
find the library name for a spa factory
Definition: context.c:1873
int pw_context_add_spa_lib(struct pw_context *context, const char *factory_regex, const char *lib)
add a spa library for the given factory_name regex
Definition: context.c:1848
struct pw_loop * pw_context_acquire_loop(struct pw_context *context, const struct spa_dict *props)
Get a data-loop.
Definition: context.c:798
struct pw_loop * pw_context_get_main_loop(struct pw_context *context)
Get the context main loop.
Definition: context.c:734
int pw_context_parse_conf_section(struct pw_context *context, struct pw_properties *conf, const char *section)
Parse a standard config section for this context.
Definition: conf.c:1403
struct pw_work_queue * pw_context_get_work_queue(struct pw_context *context)
Get the work queue from the context: Since 0.3.26.
Definition: context.c:837
spa/utils/hook.h
pipewire/properties.h
pipewire/loop.h
context events emitted by the context object added with pw_context_add_listener
Definition: context.h:61
void(* global_added)(void *data, struct pw_global *global)
a new global object was added
Definition: context.h:73
void(* destroy)(void *data)
The context is being destroyed.
Definition: context.h:67
void(* driver_removed)(void *data, struct pw_impl_node *node)
a driver was removed, since 0.3.75 version:1
Definition: context.h:80
void(* global_removed)(void *data, struct pw_global *global)
a global object was removed
Definition: context.h:75
void(* free)(void *data)
The context is being freed.
Definition: context.h:69
uint32_t version
Definition: context.h:64
void(* check_access)(void *data, struct pw_impl_client *client)
a new client object is added
Definition: context.h:71
void(* driver_added)(void *data, struct pw_impl_node *node)
a driver was added, since 0.3.75 version:1
Definition: context.h:78
data for registering export functions
Definition: context.h:190
const char * type
Definition: context.h:192
struct spa_list link
Definition: context.h:191
Definition: context.h:47
Definition: context.h:52
Definition: loop.h:33
struct spa_loop * loop
wrapped loop
Definition: loop.h:35
A memory pool is a collection of pw_memblocks.
Definition: mem.h:66
Definition: properties.h:39
struct spa_dict dict
dictionary of key/values
Definition: properties.h:40
Definition: dict.h:51
Definition: plugin.h:43
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:427
Definition: list.h:39
Extra supporting infrastructure passed to the init() function of a factory.
Definition: plugin.h:98