mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
Initial import
This commit is contained in:
commit
faa5984fce
39 changed files with 9955 additions and 0 deletions
271
src/proplist.c
Normal file
271
src/proplist.c
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
/* PipeWire
|
||||
* Copyright (C) 2018 Wim Taymans <wim.taymans@gmail.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <pipewire/log.h>
|
||||
#include <pipewire/properties.h>
|
||||
|
||||
#include <pulse/proplist.h>
|
||||
|
||||
#include "internal.h"
|
||||
#include "strbuf.h"
|
||||
|
||||
pa_proplist* pa_proplist_new_dict(struct spa_dict *dict)
|
||||
{
|
||||
pa_proplist *p;
|
||||
|
||||
p = calloc(1, sizeof(struct pa_proplist));
|
||||
if (p == NULL)
|
||||
return NULL;
|
||||
|
||||
if (dict)
|
||||
p->props = pw_properties_new_dict(dict);
|
||||
else
|
||||
p->props = pw_properties_new(NULL, NULL);
|
||||
|
||||
return p;
|
||||
}
|
||||
pa_proplist* pa_proplist_new_props(struct pw_properties *props)
|
||||
{
|
||||
return pa_proplist_new_dict(&props->dict);
|
||||
}
|
||||
|
||||
pa_proplist* pa_proplist_new(void)
|
||||
{
|
||||
return pa_proplist_new_dict(NULL);
|
||||
}
|
||||
|
||||
void pa_proplist_free(pa_proplist* p)
|
||||
{
|
||||
pw_properties_free(p->props);
|
||||
free(p);
|
||||
}
|
||||
|
||||
int pa_proplist_key_valid(const char *key)
|
||||
{
|
||||
const char *p;
|
||||
for (p = key; *p; p++)
|
||||
if ((unsigned char) *p >= 128)
|
||||
return 0;
|
||||
|
||||
if (strlen(key) < 1)
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int pa_proplist_sets(pa_proplist *p, const char *key, const char *value)
|
||||
{
|
||||
pw_properties_set(p->props, key, value);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pa_proplist_setp(pa_proplist *p, const char *pair)
|
||||
{
|
||||
pw_log_warn("Not Implemented");
|
||||
return -1;
|
||||
}
|
||||
|
||||
int pa_proplist_setf(pa_proplist *p, const char *key, const char *format, ...)
|
||||
{
|
||||
pw_log_warn("Not Implemented");
|
||||
return -1;
|
||||
}
|
||||
|
||||
int pa_proplist_set(pa_proplist *p, const char *key, const void *data, size_t nbytes)
|
||||
{
|
||||
pw_log_warn("Not Implemented");
|
||||
return -1;
|
||||
}
|
||||
|
||||
const char *pa_proplist_gets(pa_proplist *p, const char *key)
|
||||
{
|
||||
return pw_properties_get(p->props, key);
|
||||
}
|
||||
|
||||
int pa_proplist_get(pa_proplist *p, const char *key, const void **data, size_t *nbytes)
|
||||
{
|
||||
const char *val;
|
||||
|
||||
spa_assert(p);
|
||||
spa_assert(key);
|
||||
|
||||
val = pw_properties_get(p->props, key);
|
||||
|
||||
*data = val;
|
||||
*nbytes = val ? strlen(val) : 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void pa_proplist_update(pa_proplist *p, pa_update_mode_t mode, const pa_proplist *other)
|
||||
{
|
||||
spa_assert(p);
|
||||
pw_log_warn("Not Implemented");
|
||||
}
|
||||
|
||||
int pa_proplist_unset(pa_proplist *p, const char *key)
|
||||
{
|
||||
spa_assert(p);
|
||||
spa_assert(key);
|
||||
|
||||
if (!pa_proplist_key_valid(key))
|
||||
return -1;
|
||||
|
||||
return pw_properties_set(p->props, key, NULL);
|
||||
}
|
||||
|
||||
int pa_proplist_unset_many(pa_proplist *p, const char * const keys[])
|
||||
{
|
||||
const char * const * k;
|
||||
int n = 0;
|
||||
|
||||
spa_assert(p);
|
||||
spa_assert(keys);
|
||||
|
||||
for (k = keys; *k; k++)
|
||||
if (!pa_proplist_key_valid(*k))
|
||||
return -1;
|
||||
|
||||
for (k = keys; *k; k++)
|
||||
if (pa_proplist_unset(p, *k) >= 0)
|
||||
n++;
|
||||
return n;
|
||||
}
|
||||
|
||||
const char *pa_proplist_iterate(pa_proplist *p, void **state)
|
||||
{
|
||||
spa_assert(p);
|
||||
spa_assert(state);
|
||||
return pw_properties_iterate(p->props, state);
|
||||
}
|
||||
|
||||
char *pa_proplist_to_string(pa_proplist *p)
|
||||
{
|
||||
spa_assert(p);
|
||||
pw_log_warn("Not Implemented");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
char *pa_proplist_to_string_sep(pa_proplist *p, const char *sep)
|
||||
{
|
||||
const char *key;
|
||||
void *state = NULL;
|
||||
pa_strbuf *buf;
|
||||
|
||||
spa_assert(p);
|
||||
spa_assert(sep);
|
||||
|
||||
buf = pa_strbuf_new();
|
||||
|
||||
while ((key = pa_proplist_iterate(p, &state))) {
|
||||
const char *v;
|
||||
const char *t;
|
||||
|
||||
if (!pa_strbuf_isempty(buf))
|
||||
pa_strbuf_puts(buf, sep);
|
||||
|
||||
if ((v = pa_proplist_gets(p, key)) == NULL)
|
||||
continue;
|
||||
|
||||
pa_strbuf_printf(buf, "%s = \"", key);
|
||||
|
||||
for (t = v;;) {
|
||||
size_t h;
|
||||
|
||||
h = strcspn(t, "\"");
|
||||
|
||||
if (h > 0)
|
||||
pa_strbuf_putsn(buf, t, h);
|
||||
|
||||
t += h;
|
||||
|
||||
if (*t == 0)
|
||||
break;
|
||||
|
||||
pa_assert(*t == '"');
|
||||
pa_strbuf_puts(buf, "\\\"");
|
||||
|
||||
t++;
|
||||
}
|
||||
pa_strbuf_puts(buf, "\"");
|
||||
}
|
||||
return pa_strbuf_to_string_free(buf);
|
||||
}
|
||||
|
||||
pa_proplist *pa_proplist_from_string(const char *str)
|
||||
{
|
||||
spa_assert(str);
|
||||
pw_log_warn("Not Implemented");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int pa_proplist_contains(pa_proplist *p, const char *key)
|
||||
{
|
||||
spa_assert(p);
|
||||
spa_assert(key);
|
||||
|
||||
if (!pa_proplist_key_valid(key))
|
||||
return -1;
|
||||
|
||||
if (pw_properties_get(p->props, key) == NULL)
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
void pa_proplist_clear(pa_proplist *p)
|
||||
{
|
||||
spa_assert(p);
|
||||
pw_log_warn("Not Implemented");
|
||||
}
|
||||
|
||||
pa_proplist* pa_proplist_copy(const pa_proplist *p)
|
||||
{
|
||||
pa_proplist *c;
|
||||
|
||||
spa_assert(p);
|
||||
|
||||
c = calloc(1, sizeof(struct pa_proplist));
|
||||
if (c == NULL)
|
||||
return NULL;
|
||||
|
||||
c->props = pw_properties_copy(p->props);
|
||||
return c;
|
||||
}
|
||||
|
||||
unsigned pa_proplist_size(pa_proplist *p)
|
||||
{
|
||||
spa_assert(p);
|
||||
return p->props->dict.n_items;
|
||||
}
|
||||
|
||||
int pa_proplist_isempty(pa_proplist *p)
|
||||
{
|
||||
spa_assert(p);
|
||||
return p->props->dict.n_items == 0 ? 1 : 0;
|
||||
}
|
||||
|
||||
int pa_proplist_equal(pa_proplist *a, pa_proplist *b)
|
||||
{
|
||||
spa_assert(a);
|
||||
spa_assert(b);
|
||||
pw_log_warn("Not Implemented");
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue