PipeWire 0.3.38
impl-metadata.h
Go to the documentation of this file.
1/* PipeWire
2 *
3 * Copyright © 2021 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_IMPL_METADATA_H
26#define PIPEWIRE_IMPL_METADATA_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
41struct pw_impl_metadata;
42
43#include <pipewire/context.h>
45#include <pipewire/global.h>
46#include <pipewire/properties.h>
47#include <pipewire/resource.h>
48
49#include "pipewire/extensions/metadata.h"
50
53#define PW_VERSION_IMPL_METADATA_EVENTS 0
54 uint32_t version;
55
57 void (*destroy) (void *data);
59 void (*free) (void *data);
60
62 int (*property) (void *data,
63 uint32_t subject,
64 const char *key,
65 const char *type,
66 const char *value);
67};
68
69struct pw_impl_metadata *pw_context_create_metadata(struct pw_context *context,
70 const char *name, struct pw_properties *properties,
71 size_t user_data_size);
72
74const struct pw_properties *pw_impl_metadata_get_properties(struct pw_impl_metadata *metadata);
75
76int pw_impl_metadata_register(struct pw_impl_metadata *metadata,
77 struct pw_properties *properties);
78
79void pw_impl_metadata_destroy(struct pw_impl_metadata *metadata);
80
81void *pw_impl_metadata_get_user_data(struct pw_impl_metadata *metadata);
82
83int pw_impl_metadata_set_implementation(struct pw_impl_metadata *metadata,
84 struct pw_metadata *impl);
85
86struct pw_metadata *pw_impl_metadata_get_implementation(struct pw_impl_metadata *metadata);
87
89struct pw_global *pw_impl_metadata_get_global(struct pw_impl_metadata *metadata);
90
92void pw_impl_metadata_add_listener(struct pw_impl_metadata *metadata,
93 struct spa_hook *listener,
94 const struct pw_impl_metadata_events *events,
95 void *data);
96
98int pw_impl_metadata_set_property(struct pw_impl_metadata *metadata,
99 uint32_t subject, const char *key, const char *type,
100 const char *value);
101
102int pw_impl_metadata_set_propertyf(struct pw_impl_metadata *metadata,
103 uint32_t subject, const char *key, const char *type,
104 const char *fmt, ...) SPA_PRINTF_FUNC(5,6);
105
110#ifdef __cplusplus
111}
112#endif
113
114#endif /* PIPEWIRE_IMPL_METADATA_H */
void * pw_impl_metadata_get_user_data(struct pw_impl_metadata *metadata)
Definition: impl-metadata.c:556
int pw_impl_metadata_set_propertyf(struct pw_impl_metadata *metadata, uint32_t subject, const char *key, const char *type, const char *fmt,...) 1(5
int pw_impl_metadata_register(struct pw_impl_metadata *metadata, struct pw_properties *properties)
Definition: impl-metadata.c:517
int pw_impl_metadata_set_implementation(struct pw_impl_metadata *metadata, struct pw_metadata *impl)
Definition: impl-metadata.c:329
void pw_impl_metadata_add_listener(struct pw_impl_metadata *metadata, struct spa_hook *listener, const struct pw_impl_metadata_events *events, void *data)
Add an event listener.
Definition: impl-metadata.c:568
struct pw_metadata * pw_impl_metadata_get_implementation(struct pw_impl_metadata *metadata)
Definition: impl-metadata.c:349
struct pw_global * pw_impl_metadata_get_global(struct pw_impl_metadata *metadata)
Get the global of this metadata.
Definition: impl-metadata.c:562
const struct pw_properties * pw_impl_metadata_get_properties(struct pw_impl_metadata *metadata)
Get the metadata properties.
int pw_impl_metadata_set_property(struct pw_impl_metadata *metadata, uint32_t subject, const char *key, const char *type, const char *value)
Set a property.
Definition: impl-metadata.c:577
struct pw_impl_metadata * pw_context_create_metadata(struct pw_context *context, const char *name, struct pw_properties *properties, size_t user_data_size)
Definition: impl-metadata.c:285
void pw_impl_metadata_destroy(struct pw_impl_metadata *metadata)
Definition: impl-metadata.c:355
#define SPA_PRINTF_FUNC(fmt, arg1)
Definition: defs.h:211
const char * name
Definition: media-session.c:2394
user data to add to an object
Definition: filter.c:75
Definition: control.c:33
Definition: impl-metadata.c:44
Metadata events, listen to them with pw_impl_metadata_add_listener.
Definition: impl-metadata.h:52
void(* destroy)(void *data)
the metadata is destroyed
Definition: impl-metadata.h:57
int(* property)(void *data, uint32_t subject, const char *key, const char *type, const char *value)
a property changed
Definition: impl-metadata.h:62
void(* free)(void *data)
the metadata is freed
Definition: impl-metadata.h:59
uint32_t version
Definition: impl-metadata.h:54
Definition: properties.h:49
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:313