]> saetta.ns0.it Git - libzakutilsjsonxml/commitdiff
Added functions Json::node_new_array|object.
authorAndrea Zagli <azagli@libero.it>
Sun, 9 Aug 2020 09:19:40 +0000 (11:19 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 9 Aug 2020 09:19:40 +0000 (11:19 +0200)
src/json.c
src/json.h

index aab1b3c7126743da97e09b51defcaa1676fab841..c681b78dc91b073c7b46e627a32af85b627fc003 100644 (file)
 
 #include "json.h"
 
+JsonNode
+*zak_utils_json_node_new_array ()
+{
+       JsonArray *jar;
+       JsonNode *jnode;
+
+       jar = json_array_new ();
+       jnode = json_node_new (JSON_NODE_ARRAY);
+       json_node_init_array (jnode, jar);
+
+       return jnode;
+}
+
+JsonNode
+*zak_utils_json_node_new_object ()
+{
+       JsonObject *obj;
+       JsonNode *jnode;
+
+       obj = json_object_new ();
+       jnode = json_node_new (JSON_NODE_OBJECT);
+       json_node_init_object (jnode, obj);
+
+       return jnode;
+}
+
 gint
 zak_utils_json_get_integer (JsonReader *reader, const gchar *name)
 {
index bb33f3be3cb867d850728d969e37e52f2dfbd1c2..2c5cefa0ca1ec676fd4f382c1d28272632148e77 100644 (file)
@@ -31,6 +31,9 @@
 G_BEGIN_DECLS
 
 
+JsonNode *zak_utils_json_node_new_array (void);
+JsonNode *zak_utils_json_node_new_object (void);
+
 gint zak_utils_json_get_integer (JsonReader *reader, const gchar *name);
 gdouble zak_utils_json_get_double (JsonReader *reader, const gchar *name);
 const gchar *zak_utils_json_get_string (JsonReader *reader, const gchar *name);