84 lines
2.7 KiB
C
84 lines
2.7 KiB
C
/*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright 2019 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_JSON_AUX_H__
|
|
#define __NM_JSON_AUX_H__
|
|
|
|
/*****************************************************************************/
|
|
|
|
static inline GString *
|
|
nm_json_aux_gstr_append_delimiter (GString *gstr)
|
|
{
|
|
g_string_append (gstr, ", ");
|
|
return gstr;
|
|
}
|
|
|
|
void nm_json_aux_gstr_append_string_len (GString *gstr,
|
|
const char *str,
|
|
gsize n);
|
|
|
|
void nm_json_aux_gstr_append_string (GString *gstr,
|
|
const char *str);
|
|
|
|
static inline void
|
|
nm_json_aux_gstr_append_bool (GString *gstr,
|
|
gboolean v)
|
|
{
|
|
g_string_append (gstr, v ? "true" : "false");
|
|
}
|
|
|
|
static inline void
|
|
nm_json_aux_gstr_append_int64 (GString *gstr,
|
|
gint64 v)
|
|
{
|
|
g_string_append_printf (gstr, "%"G_GINT64_FORMAT, v);
|
|
}
|
|
|
|
void nm_json_aux_gstr_append_obj_name (GString *gstr,
|
|
const char *key,
|
|
char start_container);
|
|
|
|
/*****************************************************************************/
|
|
|
|
#ifdef NM_VALUE_TYPE_DEFINE_FUNCTIONS
|
|
#include "nm-value-type.h"
|
|
static inline void
|
|
nm_value_type_to_json (NMValueType value_type,
|
|
GString *gstr,
|
|
gconstpointer p_field)
|
|
{
|
|
nm_assert (p_field);
|
|
nm_assert (gstr);
|
|
|
|
switch (value_type) {
|
|
case NM_VALUE_TYPE_BOOL: nm_json_aux_gstr_append_bool (gstr, *((const bool *) p_field)); return;
|
|
case NM_VALUE_TYPE_INT32: nm_json_aux_gstr_append_int64 (gstr, *((const gint32 *) p_field)); return;
|
|
case NM_VALUE_TYPE_INT: nm_json_aux_gstr_append_int64 (gstr, *((const int *) p_field)); return;
|
|
case NM_VALUE_TYPE_STRING: nm_json_aux_gstr_append_string (gstr, *((const char *const *) p_field)); return;
|
|
case NM_VALUE_TYPE_UNSPEC:
|
|
break;
|
|
}
|
|
nm_assert_not_reached ();
|
|
}
|
|
#endif
|
|
|
|
/*****************************************************************************/
|
|
|
|
#endif /* __NM_JSON_AUX_H__ */
|