2022-12-21 11:59:58 -05:00
|
|
|
/* WirePlumber
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2022 Collabora Ltd.
|
|
|
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "core.h"
|
|
|
|
|
#include "conf.h"
|
|
|
|
|
#include "log.h"
|
|
|
|
|
#include "object-interest.h"
|
2023-11-14 12:02:31 +02:00
|
|
|
#include "json-utils.h"
|
2023-06-13 19:20:33 +03:00
|
|
|
|
|
|
|
|
#include <pipewire/pipewire.h>
|
2022-12-21 11:59:58 -05:00
|
|
|
|
log: implement a log topics system, like pipewire
The intention is to make checks for enabled log topics faster.
Every topic has its own structure that is statically defined in the file
where the logs are printed from. The structure is initialized transparently
when it is first used and it contains all the log level flags for the levels
that this topic should print messages. It is then checked on the wp_log()
macro before printing the message.
Topics from SPA/PipeWire are also handled natively, so messages are printed
directly without checking if the topic is enabled, since the PipeWire and SPA
macros do the checking themselves.
Messages coming from GLib are checked inside the handler.
An internal WpLogFields object is used to manage the state of each log
message, populating all the fields appropriately from the place they
are coming from (wp_log, spa_log, glib log), formatting the message and
then printing it. For printing to the journald, we still use the glib
message handler, converting all the needed fields to GLogField on demand.
That message handler does not do any checks for the topic or the level, so
we can just call it to send the message.
2023-05-16 11:51:29 +03:00
|
|
|
WP_DEFINE_LOCAL_LOG_TOPIC ("wp-conf")
|
|
|
|
|
|
|
|
|
|
#define OVERRIDE_SECTION_PREFIX "override."
|
|
|
|
|
|
2022-12-21 11:59:58 -05:00
|
|
|
/*! \defgroup wpconf WpConf */
|
|
|
|
|
/*!
|
|
|
|
|
* \struct WpConf
|
|
|
|
|
*
|
|
|
|
|
* WpConf allows accessing the different sections of the wireplumber
|
|
|
|
|
* configuration.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
struct _WpConf
|
|
|
|
|
{
|
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
|
|
/* Props */
|
|
|
|
|
GWeakRef core;
|
|
|
|
|
|
|
|
|
|
GHashTable *sections;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_CORE,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (WpConf, wp_conf, G_TYPE_OBJECT)
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_conf_init (WpConf * self)
|
|
|
|
|
{
|
|
|
|
|
g_weak_ref_init (&self->core, NULL);
|
|
|
|
|
|
|
|
|
|
self->sections = g_hash_table_new_full (g_str_hash, g_str_equal, g_free,
|
|
|
|
|
(GDestroyNotify) wp_spa_json_unref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_conf_set_property (GObject * object, guint property_id,
|
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
|
{
|
|
|
|
|
WpConf *self = WP_CONF (object);
|
|
|
|
|
|
|
|
|
|
switch (property_id) {
|
|
|
|
|
case PROP_CORE:
|
|
|
|
|
g_weak_ref_set (&self->core, g_value_get_object (value));
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_conf_get_property (GObject * object, guint property_id,
|
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
|
{
|
|
|
|
|
WpConf *self = WP_CONF (object);
|
|
|
|
|
|
|
|
|
|
switch (property_id) {
|
|
|
|
|
case PROP_CORE:
|
|
|
|
|
g_value_take_object (value, g_weak_ref_get (&self->core));
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_conf_finalize (GObject * object)
|
|
|
|
|
{
|
|
|
|
|
WpConf *self = WP_CONF (object);
|
|
|
|
|
|
|
|
|
|
g_clear_pointer (&self->sections, g_hash_table_unref);
|
|
|
|
|
g_weak_ref_clear (&self->core);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (wp_conf_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_conf_class_init (WpConfClass * klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass * object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
|
|
object_class->finalize = wp_conf_finalize;
|
|
|
|
|
object_class->set_property = wp_conf_set_property;
|
|
|
|
|
object_class->get_property = wp_conf_get_property;
|
|
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_CORE,
|
|
|
|
|
g_param_spec_object ("core", "core", "The WpCore", WP_TYPE_CORE,
|
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Returns the WpConf instance that is associated with the
|
|
|
|
|
* given core.
|
|
|
|
|
*
|
|
|
|
|
* This method will also create the instance and register it with the core
|
|
|
|
|
* if it had not been created before.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param core the core
|
|
|
|
|
* \returns (transfer full): the WpConf instance
|
|
|
|
|
*/
|
|
|
|
|
WpConf *
|
|
|
|
|
wp_conf_get_instance (WpCore *core)
|
|
|
|
|
{
|
2023-06-13 19:20:33 +03:00
|
|
|
WpConf *conf = wp_core_find_object (core,
|
2022-12-21 11:59:58 -05:00
|
|
|
(GEqualFunc) WP_IS_CONF, NULL);
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!conf)) {
|
|
|
|
|
conf = g_object_new (WP_TYPE_CONF,
|
|
|
|
|
"core", core,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2023-06-13 19:20:33 +03:00
|
|
|
wp_core_register_object (core, g_object_ref (conf));
|
2022-12-21 11:59:58 -05:00
|
|
|
|
|
|
|
|
wp_info_object (conf, "created wpconf object");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return conf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
merge_section_cb (void *data, const char *location, const char *section,
|
|
|
|
|
const char *str, size_t len)
|
|
|
|
|
{
|
|
|
|
|
WpSpaJson **res_section = (WpSpaJson **)data;
|
|
|
|
|
g_autoptr (WpSpaJson) json = NULL;
|
2023-01-09 06:03:31 -05:00
|
|
|
gboolean override;
|
2022-12-21 11:59:58 -05:00
|
|
|
|
|
|
|
|
g_return_val_if_fail (res_section, -EINVAL);
|
|
|
|
|
|
2023-01-09 06:03:31 -05:00
|
|
|
override = g_str_has_prefix (section, OVERRIDE_SECTION_PREFIX);
|
|
|
|
|
if (override)
|
|
|
|
|
section += strlen (OVERRIDE_SECTION_PREFIX);
|
|
|
|
|
|
|
|
|
|
wp_debug ("loading section %s (override=%d) from %s", section, override,
|
|
|
|
|
location);
|
2022-12-21 11:59:58 -05:00
|
|
|
|
|
|
|
|
/* Only allow sections to be objects or arrays */
|
2023-11-14 12:36:10 +02:00
|
|
|
json = wp_spa_json_new_wrap_stringn (str, len);
|
2023-01-09 06:03:31 -05:00
|
|
|
if (!wp_spa_json_is_container (json)) {
|
2022-12-21 11:59:58 -05:00
|
|
|
wp_warning (
|
|
|
|
|
"skipping section %s from %s as it is not JSON object or array",
|
|
|
|
|
section, location);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-09 06:03:31 -05:00
|
|
|
/* Merge section if it was defined previously and the 'override.' prefix is
|
|
|
|
|
* not used */
|
|
|
|
|
if (!override && *res_section) {
|
2023-11-14 12:02:31 +02:00
|
|
|
g_autoptr (WpSpaJson) merged =
|
|
|
|
|
wp_json_utils_merge_containers (*res_section, json);
|
2023-01-09 06:03:31 -05:00
|
|
|
if (!merged) {
|
2022-12-21 11:59:58 -05:00
|
|
|
wp_warning (
|
2023-01-09 06:03:31 -05:00
|
|
|
"skipping merge of %s from %s as JSON values are not compatible",
|
2022-12-21 11:59:58 -05:00
|
|
|
section, location);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_clear_pointer (res_section, wp_spa_json_unref);
|
|
|
|
|
*res_section = g_steal_pointer (&merged);
|
2023-01-09 06:03:31 -05:00
|
|
|
wp_debug ("section %s from %s loaded", location, section);
|
2022-12-21 11:59:58 -05:00
|
|
|
}
|
|
|
|
|
|
2023-01-09 06:03:31 -05:00
|
|
|
/* Otherwise always replace */
|
|
|
|
|
else {
|
2022-12-21 11:59:58 -05:00
|
|
|
g_clear_pointer (res_section, wp_spa_json_unref);
|
2023-01-09 06:03:31 -05:00
|
|
|
*res_section = g_steal_pointer (&json);
|
|
|
|
|
wp_debug ("section %s from %s loaded", location, section);
|
2022-12-21 11:59:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ensure_section_loaded (WpConf *self, const gchar *section)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpCore) core = NULL;
|
|
|
|
|
struct pw_context *pw_ctx = NULL;
|
|
|
|
|
g_autoptr (WpSpaJson) json_section = NULL;
|
2023-01-09 06:03:31 -05:00
|
|
|
g_autofree gchar *override_section = NULL;
|
2022-12-21 11:59:58 -05:00
|
|
|
|
|
|
|
|
if (g_hash_table_contains (self->sections, section))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
core = g_weak_ref_get (&self->core);
|
|
|
|
|
g_return_if_fail (core);
|
|
|
|
|
pw_ctx = wp_core_get_pw_context (core);
|
|
|
|
|
g_return_if_fail (pw_ctx);
|
|
|
|
|
|
|
|
|
|
pw_context_conf_section_for_each (pw_ctx, section, merge_section_cb,
|
|
|
|
|
&json_section);
|
2023-01-09 06:03:31 -05:00
|
|
|
override_section = g_strdup_printf (OVERRIDE_SECTION_PREFIX "%s", section);
|
|
|
|
|
pw_context_conf_section_for_each (pw_ctx, override_section, merge_section_cb,
|
|
|
|
|
&json_section);
|
2022-12-21 11:59:58 -05:00
|
|
|
|
|
|
|
|
if (json_section)
|
|
|
|
|
g_hash_table_insert (self->sections, g_strdup (section),
|
|
|
|
|
g_steal_pointer (&json_section));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* This method will get the JSON value of a specific section from the
|
|
|
|
|
* configuration. If the same section is defined in multiple locations, the
|
|
|
|
|
* sections with the same name will be either merged in case of arrays and
|
|
|
|
|
* objects, or overridden in case of boolean, int, double and strings. The
|
|
|
|
|
* passed fallback value will be returned if the section does not exist.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param self the configuration
|
|
|
|
|
* \param section the section name
|
|
|
|
|
* \param fallback (transfer full)(nullable): the fallback value
|
|
|
|
|
* \returns (transfer full): the JSON value of the section
|
|
|
|
|
*/
|
|
|
|
|
WpSpaJson *
|
|
|
|
|
wp_conf_get_section (WpConf *self, const gchar *section, WpSpaJson *fallback)
|
|
|
|
|
{
|
|
|
|
|
WpSpaJson *s;
|
|
|
|
|
g_autoptr (WpSpaJson) fb = fallback;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (WP_IS_CONF (self), NULL);
|
|
|
|
|
|
|
|
|
|
ensure_section_loaded (self, section);
|
|
|
|
|
|
|
|
|
|
s = g_hash_table_lookup (self->sections, section);
|
|
|
|
|
if (!s)
|
|
|
|
|
return fb ? g_steal_pointer (&fb) : NULL;
|
|
|
|
|
|
|
|
|
|
return wp_spa_json_ref (s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* This is a convenient function to access a JSON value from an object
|
|
|
|
|
* section in the configuration. If the section is an array, or the key does
|
|
|
|
|
* not exist in the object section, it will return the passed fallback value.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param self the configuration
|
|
|
|
|
* \param section the section name
|
|
|
|
|
* \param key the key name
|
|
|
|
|
* \param fallback (transfer full)(nullable): the fallback value
|
|
|
|
|
* \returns (transfer full): the JSON value of the section's key if it exists,
|
|
|
|
|
* or the passed fallback value otherwise
|
|
|
|
|
*/
|
|
|
|
|
WpSpaJson *
|
|
|
|
|
wp_conf_get_value (WpConf *self, const gchar *section, const gchar *key,
|
|
|
|
|
WpSpaJson *fallback)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpSpaJson) s = NULL;
|
|
|
|
|
g_autoptr (WpSpaJson) fb = fallback;
|
|
|
|
|
WpSpaJson *v;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (WP_IS_CONF (self), NULL);
|
|
|
|
|
g_return_val_if_fail (section, NULL);
|
|
|
|
|
g_return_val_if_fail (key, NULL);
|
|
|
|
|
|
|
|
|
|
s = wp_conf_get_section (self, section, NULL);
|
|
|
|
|
if (!s)
|
|
|
|
|
goto return_fallback;
|
|
|
|
|
|
|
|
|
|
if (!wp_spa_json_is_object (s)) {
|
|
|
|
|
wp_warning_object (self,
|
|
|
|
|
"Cannot get JSON key %s from %s as section is not an JSON object",
|
|
|
|
|
key, section);
|
|
|
|
|
goto return_fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (wp_spa_json_object_get (s, key, "J", &v, NULL))
|
|
|
|
|
return v;
|
|
|
|
|
|
|
|
|
|
return_fallback:
|
|
|
|
|
return fb ? g_steal_pointer (&fb) : NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* This is a convenient function to access a boolean value from an object
|
|
|
|
|
* section in the configuration. If the section is an array, or the key does
|
|
|
|
|
* not exist in the object section, it will return the passed fallback value.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param self the configuration
|
|
|
|
|
* \param section the section name
|
|
|
|
|
* \param key the key name
|
|
|
|
|
* \param fallback the fallback value
|
|
|
|
|
* \returns the boolean value of the section's key if it exists and could be
|
|
|
|
|
* parsed, or the passed fallback value otherwise
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
|
|
|
|
wp_conf_get_value_boolean (WpConf *self, const gchar *section,
|
|
|
|
|
const gchar *key, gboolean fallback)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpSpaJson) s = NULL;
|
|
|
|
|
gboolean v;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (WP_IS_CONF (self), FALSE);
|
|
|
|
|
g_return_val_if_fail (section, FALSE);
|
|
|
|
|
g_return_val_if_fail (key, FALSE);
|
|
|
|
|
|
|
|
|
|
s = wp_conf_get_section (self, section, NULL);
|
|
|
|
|
if (!s)
|
|
|
|
|
return fallback;
|
|
|
|
|
|
|
|
|
|
if (!wp_spa_json_is_object (s)) {
|
|
|
|
|
wp_warning_object (self,
|
|
|
|
|
"Cannot get boolean key %s from %s as section is not an JSON object",
|
|
|
|
|
key, section);
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return wp_spa_json_object_get (s, key, "b", &v, NULL) ? v : fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* This is a convenient function to access a int value from an object
|
|
|
|
|
* section in the configuration. If the section is an array, or the key does
|
|
|
|
|
* not exist in the object section, it will return the passed fallback value.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param self the configuration
|
|
|
|
|
* \param section the section name
|
|
|
|
|
* \param key the key name
|
|
|
|
|
* \param fallback the fallback value
|
|
|
|
|
* \returns the int value of the section's key if it exists and could be
|
|
|
|
|
* parsed, or the passed fallback value otherwise
|
|
|
|
|
*/
|
|
|
|
|
gint
|
|
|
|
|
wp_conf_get_value_int (WpConf *self, const gchar *section,
|
|
|
|
|
const gchar *key, gint fallback)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpSpaJson) s = NULL;
|
|
|
|
|
gint v;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (WP_IS_CONF (self), 0);
|
|
|
|
|
g_return_val_if_fail (section, 0);
|
|
|
|
|
g_return_val_if_fail (key, 0);
|
|
|
|
|
|
|
|
|
|
s = wp_conf_get_section (self, section, NULL);
|
|
|
|
|
if (!s)
|
|
|
|
|
return fallback;
|
|
|
|
|
|
|
|
|
|
if (!wp_spa_json_is_object (s)) {
|
|
|
|
|
wp_warning_object (self,
|
|
|
|
|
"Cannot get int key %s from %s as section is not an JSON object",
|
|
|
|
|
key, section);
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return wp_spa_json_object_get (s, key, "i", &v, NULL) ? v : fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* This is a convenient function to access a float value from an object
|
|
|
|
|
* section in the configuration. If the section is an array, or the key does
|
|
|
|
|
* not exist in the object section, it will return the passed fallback value.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param self the configuration
|
|
|
|
|
* \param section the section name
|
|
|
|
|
* \param key the key name
|
|
|
|
|
* \param fallback the fallback value
|
|
|
|
|
* \returns the float value of the section's key if it exists and could be
|
|
|
|
|
* parsed, or the passed fallback value otherwise
|
|
|
|
|
*/
|
|
|
|
|
float
|
|
|
|
|
wp_conf_get_value_float (WpConf *self, const gchar *section,
|
|
|
|
|
const gchar *key, float fallback)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpSpaJson) s = NULL;
|
|
|
|
|
float v;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (WP_IS_CONF (self), 0);
|
|
|
|
|
g_return_val_if_fail (section, 0);
|
|
|
|
|
g_return_val_if_fail (key, 0);
|
|
|
|
|
|
|
|
|
|
s = wp_conf_get_section (self, section, NULL);
|
|
|
|
|
if (!s)
|
|
|
|
|
return fallback;
|
|
|
|
|
|
|
|
|
|
if (!wp_spa_json_is_object (s)) {
|
|
|
|
|
wp_warning_object (self,
|
|
|
|
|
"Cannot get float key %s from %s as section is not an JSON object",
|
|
|
|
|
key, section);
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return wp_spa_json_object_get (s, key, "f", &v, NULL) ? v : fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* This is a convenient function to access a string value from an object
|
|
|
|
|
* section in the configuration. If the section is an array, or the key does
|
|
|
|
|
* not exist in the object section, it will return the passed fallback value.
|
|
|
|
|
*
|
|
|
|
|
* \ingroup wpconf
|
|
|
|
|
* \param self the configuration
|
|
|
|
|
* \param section the section name
|
|
|
|
|
* \param key the key name
|
|
|
|
|
* \param fallback (nullable): the fallback value
|
|
|
|
|
* \returns (transfer full): the string value of the section's key if it exists
|
|
|
|
|
* and could be parsed, or the passed fallback value otherwise
|
|
|
|
|
*/
|
|
|
|
|
gchar *
|
|
|
|
|
wp_conf_get_value_string (WpConf *self, const gchar *section,
|
|
|
|
|
const gchar *key, const gchar *fallback)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpSpaJson) s = NULL;
|
|
|
|
|
gchar *v;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (WP_IS_CONF (self), NULL);
|
|
|
|
|
g_return_val_if_fail (section, NULL);
|
|
|
|
|
g_return_val_if_fail (key, NULL);
|
|
|
|
|
|
|
|
|
|
s = wp_conf_get_section (self, section, NULL);
|
|
|
|
|
if (!s)
|
|
|
|
|
goto return_fallback;
|
|
|
|
|
|
|
|
|
|
if (!wp_spa_json_is_object (s)) {
|
|
|
|
|
wp_warning_object (self,
|
|
|
|
|
"Cannot get string key %s from %s as section is not an JSON object",
|
|
|
|
|
key, section);
|
|
|
|
|
goto return_fallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (wp_spa_json_object_get (s, key, "s", &v, NULL))
|
|
|
|
|
return v;
|
|
|
|
|
|
|
|
|
|
return_fallback:
|
|
|
|
|
return fallback ? g_strdup (fallback) : NULL;
|
|
|
|
|
}
|