pipewire/spa/include/spa/utils/dict.h

73 lines
1.9 KiB
C
Raw Normal View History

/* Simple Plugin API
* Copyright (C) 2016 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.
*/
#ifndef __SPA_DICT_H__
#define __SPA_DICT_H__
#ifdef __cplusplus
extern "C" {
#endif
2017-05-26 09:09:31 +02:00
#define SPA_TYPE__Dict SPA_TYPE_POINTER_BASE "Dict"
#define SPA_TYPE_DICT_BASE SPA_TYPE__Dict ":"
2017-03-23 21:15:52 +01:00
#include <string.h>
#include <spa/utils/defs.h>
struct spa_dict_item {
2017-05-26 08:05:01 +02:00
const char *key;
const char *value;
};
struct spa_dict {
const struct spa_dict_item *items;
uint32_t n_items;
};
#define SPA_DICT_INIT(items,n_items) (struct spa_dict) { items, n_items }
2017-03-24 16:14:17 +01:00
2017-05-26 08:05:01 +02:00
#define spa_dict_for_each(item, dict) \
for ((item) = (dict)->items; \
(item) < &(dict)->items[(dict)->n_items]; \
(item)++)
static inline const struct spa_dict_item *spa_dict_lookup_item(const struct spa_dict *dict,
const char *key)
{
const struct spa_dict_item *item;
2017-05-26 08:05:01 +02:00
spa_dict_for_each(item, dict) {
if (!strcmp(item->key, key))
return item;
}
return NULL;
}
2017-05-26 08:05:01 +02:00
static inline const char *spa_dict_lookup(const struct spa_dict *dict, const char *key)
{
const struct spa_dict_item *item = spa_dict_lookup_item(dict, key);
2017-05-26 08:05:01 +02:00
return item ? item->value : NULL;
}
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __SPA_DICT_H__ */