PipeWire 1.0.5
Loading...
Searching...
No Matches
proxy.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_PROXY_H
6#define PIPEWIRE_PROXY_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <spa/utils/hook.h>
13
88struct pw_proxy;
89
90#include <pipewire/protocol.h>
91
93struct pw_proxy_events {
94#define PW_VERSION_PROXY_EVENTS 1
95 uint32_t version;
96
98 void (*destroy) (void *data);
99
101 void (*bound) (void *data, uint32_t global_id);
102
105 void (*removed) (void *data);
106
108 void (*done) (void *data, int seq);
109
111 void (*error) (void *data, int seq, int res, const char *message);
112
113 void (*bound_props) (void *data, uint32_t global_id, const struct spa_dict *props);
115
116/* Make a new proxy object. The id can be used to bind to a remote object and
117 * can be retrieved with \ref pw_proxy_get_id . */
118struct pw_proxy *
119pw_proxy_new(struct pw_proxy *factory,
120 const char *type, /* interface type */
121 uint32_t version, /* interface version */
122 size_t user_data_size /* size of user data */);
123
125void pw_proxy_add_listener(struct pw_proxy *proxy,
126 struct spa_hook *listener,
127 const struct pw_proxy_events *events,
128 void *data);
129
132void pw_proxy_add_object_listener(struct pw_proxy *proxy,
133 struct spa_hook *listener,
134 const void *funcs,
135 void *data );
136
138void pw_proxy_destroy(struct pw_proxy *proxy);
139
140void pw_proxy_ref(struct pw_proxy *proxy);
141void pw_proxy_unref(struct pw_proxy *proxy);
142
144void *pw_proxy_get_user_data(struct pw_proxy *proxy);
145
147uint32_t pw_proxy_get_id(struct pw_proxy *proxy);
148
150const char *pw_proxy_get_type(struct pw_proxy *proxy, uint32_t *version);
151
153struct pw_protocol *pw_proxy_get_protocol(struct pw_proxy *proxy);
154
157int pw_proxy_sync(struct pw_proxy *proxy, int seq);
158
161int pw_proxy_set_bound_id(struct pw_proxy *proxy, uint32_t global_id);
164uint32_t pw_proxy_get_bound_id(struct pw_proxy *proxy);
165
167int pw_proxy_error(struct pw_proxy *proxy, int res, const char *error);
168int pw_proxy_errorf(struct pw_proxy *proxy, int res, const char *error, ...) SPA_PRINTF_FUNC(3, 4);
169
172
174const struct pw_protocol_marshal *pw_proxy_get_marshal(struct pw_proxy *proxy);
175
177int pw_proxy_install_marshal(struct pw_proxy *proxy, bool implementor);
178
179#define pw_proxy_notify(p,type,event,version,...) \
180 spa_hook_list_call(pw_proxy_get_object_listeners(p), \
181 type, event, version, ## __VA_ARGS__)
182
183#define pw_proxy_call(p,type,method,version,...) \
184 spa_interface_call((struct spa_interface*)p, \
185 type, method, version, ##__VA_ARGS__)
186
187#define pw_proxy_call_res(p,type,method,version,...) \
188({ \
189 int _res = -ENOTSUP; \
190 spa_interface_call_res((struct spa_interface*)p, \
191 type, _res, method, version, ##__VA_ARGS__); \
192 _res; \
194
199#ifdef __cplusplus
200}
201#endif
202
203#endif /* PIPEWIRE_PROXY_H */
int pw_proxy_set_bound_id(struct pw_proxy *proxy, uint32_t global_id)
Set the global id this proxy is bound to.
Definition proxy.c:141
void pw_proxy_add_listener(struct pw_proxy *proxy, struct spa_hook *listener, const struct pw_proxy_events *events, void *data)
Add an event listener to proxy.
Definition proxy.c:172
const struct pw_protocol_marshal * pw_proxy_get_marshal(struct pw_proxy *proxy)
Get the marshal functions for the proxy.
Definition proxy.c:346
void * pw_proxy_get_user_data(struct pw_proxy *proxy)
Get the user_data.
Definition proxy.c:129
const char * pw_proxy_get_type(struct pw_proxy *proxy, uint32_t *version)
Get the type and version of the proxy.
Definition proxy.c:156
void pw_proxy_add_object_listener(struct pw_proxy *proxy, struct spa_hook *listener, const void *funcs, void *data)
Add a listener for the events received from the remote object.
Definition proxy.c:181
struct pw_proxy * pw_proxy_new(struct pw_proxy *factory, const char *type, uint32_t version, size_t user_data_size)
Create a proxy object with a given id and type.
Definition proxy.c:73
int pw_proxy_errorf(struct pw_proxy *proxy, int res, const char *error,...)
Definition proxy.c:313
void pw_proxy_unref(struct pw_proxy *proxy)
Definition proxy.c:264
int pw_proxy_error(struct pw_proxy *proxy, int res, const char *error)
Generate an error for a proxy.
Definition proxy.c:328
struct spa_hook_list * pw_proxy_get_object_listeners(struct pw_proxy *proxy)
Get the listener of proxy.
Definition proxy.c:340
uint32_t pw_proxy_get_bound_id(struct pw_proxy *proxy)
Get the global id bound to this proxy of SPA_ID_INVALID when not bound to a global.
Definition proxy.c:150
struct pw_protocol * pw_proxy_get_protocol(struct pw_proxy *proxy)
Get the protocol used for the proxy.
Definition proxy.c:164
int pw_proxy_sync(struct pw_proxy *proxy, int seq)
Generate an sync method for a proxy.
Definition proxy.c:300
uint32_t pw_proxy_get_id(struct pw_proxy *proxy)
Get the local id of the proxy.
Definition proxy.c:135
void pw_proxy_ref(struct pw_proxy *proxy)
Definition proxy.c:293
int pw_proxy_install_marshal(struct pw_proxy *proxy, bool implementor)
Install a marshal function on a proxy.
Definition proxy.c:104
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition proxy.c:206
#define SPA_PRINTF_FUNC(fmt, arg1)
Definition defs.h:277
spa/utils/hook.h
pipewire/protocol.h
Definition protocol.h:77
Proxy events, use pw_proxy_add_listener.
Definition proxy.h:98
void(* done)(void *data, int seq)
a reply to a sync method completed
Definition proxy.h:114
void(* bound_props)(void *data, uint32_t global_id, const struct spa_dict *props)
Definition proxy.h:119
uint32_t version
Definition proxy.h:101
void(* removed)(void *data)
a proxy is removed from the server.
Definition proxy.h:111
void(* bound)(void *data, uint32_t global_id)
a proxy is bound to a global id
Definition proxy.h:107
void(* destroy)(void *data)
The proxy is destroyed.
Definition proxy.h:104
void(* error)(void *data, int seq, int res, const char *message)
an error occurred on the proxy
Definition proxy.h:117
Definition dict.h:39
A list of hooks.
Definition hook.h:339
A hook, contains the structure with functions and the data passed to the functions.
Definition hook.h:350