#include <config.h>
#endif
+#include <libzakutils/libzakutils.h>
+
#include "json.h"
JsonNode
g_strfreev (members);
}
}
+
+static GHashTable
+*_zak_utils_json_to_hashtable (JsonNode *jnode, gboolean gvalue)
+{
+ GHashTable *ret;
+
+ JsonObject *obj;
+ GList *membs;
+
+ const gchar *value;
+ GValue *gval;
+
+ if (jnode != NULL
+ && JSON_NODE_HOLDS_OBJECT (jnode))
+ {
+ ret = g_hash_table_new (g_str_hash, g_str_equal);
+
+ obj = json_node_get_object (jnode);
+ membs = json_object_get_members (obj);
+
+ while (membs)
+ {
+ if (gvalue)
+ {
+ gval = zak_utils_gvalue_new_string (json_object_get_string_member (obj, (gchar *)membs->data));
+ g_hash_table_insert (ret,
+ g_strdup ((gchar *)membs->data),
+ gval);
+ }
+ else
+ {
+ value = json_object_get_string_member (obj, (gchar *)membs->data);
+ g_hash_table_insert (ret,
+ g_strdup ((gchar *)membs->data),
+ g_strdup (value));
+ }
+
+ membs = g_list_next (membs);
+ }
+
+ g_list_free (membs);
+ }
+ else
+ {
+ ret = NULL;
+ }
+
+ return ret;
+}
+
+GHashTable
+*zak_utils_json_to_hashtable (JsonNode *jnode)
+{
+ return _zak_utils_json_to_hashtable (jnode, FALSE);
+}
+
+GHashTable
+*zak_utils_json_to_hashtable_gvalue (JsonNode *jnode)
+{
+ return _zak_utils_json_to_hashtable (jnode, TRUE);
+}
void zak_utils_json_to_xml (JsonReader *reader, xmlNode *xnode);
+GHashTable *zak_utils_json_to_hashtable (JsonNode *jnode);
+GHashTable *zak_utils_json_to_hashtable_gvalue (JsonNode *jnode);
+
G_END_DECLS