]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
util: json: Add helper to return string or number properties as string
authorPeter Krempa <pkrempa@redhat.com>
Wed, 31 Jan 2018 10:54:31 +0000 (11:54 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 31 Jan 2018 11:21:39 +0000 (12:21 +0100)
The helper is useful in cases when the JSON we have to parse may contain
one of the two due to historical reasons and the number value itself
would be stored as a string.

src/util/virjson.c
src/util/virjson.h

index 17b11f2b3dd3408647a5836cc5af9f2f8fdc6777..14b68b8c93a263eca247f804fba21ebbbc8b019a 100644 (file)
@@ -1208,6 +1208,33 @@ virJSONValueObjectGetString(virJSONValuePtr object,
 }
 
 
+/**
+ * virJSONValueObjectGetStringOrNumber:
+ * @object: JSON value object
+ * @key: name of the property in @object to get
+ *
+ * Gets a property named @key from the JSON object @object. The value may be
+ * a number or a string and is returned as a string. In cases when the property
+ * is not present or is not a string or number NULL is returned.
+ */
+const char *
+virJSONValueObjectGetStringOrNumber(virJSONValuePtr object,
+                                    const char *key)
+{
+    virJSONValuePtr val = virJSONValueObjectGet(object, key);
+
+    if (!val)
+        return NULL;
+
+    if (val->type == VIR_JSON_TYPE_STRING)
+        return val->data.string;
+    else if (val->type == VIR_JSON_TYPE_NUMBER)
+        return val->data.number;
+
+    return NULL;
+}
+
+
 int
 virJSONValueObjectGetNumberInt(virJSONValuePtr object,
                                const char *key,
index e89a776ab58d2266e4bb30384da2bddcddd6107f..b76a3c3472f9e0069987d70c9973aec318fd364e 100644 (file)
@@ -149,6 +149,7 @@ virJSONValuePtr virJSONValueObjectStealArray(virJSONValuePtr object,
                                              const char *key);
 
 const char *virJSONValueObjectGetString(virJSONValuePtr object, const char *key);
+const char *virJSONValueObjectGetStringOrNumber(virJSONValuePtr object, const char *key);
 int virJSONValueObjectGetNumberInt(virJSONValuePtr object, const char *key, int *value);
 int virJSONValueObjectGetNumberUint(virJSONValuePtr object, const char *key, unsigned int *value);
 int virJSONValueObjectGetNumberLong(virJSONValuePtr object, const char *key, long long *value);