summaryrefslogtreecommitdiffstats
path: root/src/afb-msg-json.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-06-10 14:29:14 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-06-10 14:29:14 +0200
commitb69290c369ba67ee804bc5a0a440210c0e5d37a3 (patch)
tree13e8ea4b4d37fd8239b2fc395cb3df6af214da2d /src/afb-msg-json.c
parent17b196f1326d6b6c249d44b8744d73d7bba12d7a (diff)
common code reuse
Change-Id: I5f400a92165bb380ec5f703dd8ca567e90aebca2 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-msg-json.c')
-rw-r--r--src/afb-msg-json.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/afb-msg-json.c b/src/afb-msg-json.c
index 8f543ff1..59af9d96 100644
--- a/src/afb-msg-json.c
+++ b/src/afb-msg-json.c
@@ -19,6 +19,8 @@
#include <json-c/json.h>
+#include <afb/afb-req-itf.h>
+
#include "afb-msg-json.h"
#include "afb-context.h"
@@ -89,3 +91,20 @@ struct json_object *afb_msg_json_event(const char *event, struct json_object *ob
return msg;
}
+struct afb_arg afb_msg_json_get_arg(struct json_object *object, const char *name)
+{
+ struct afb_arg arg;
+ struct json_object *value;
+
+ if (json_object_object_get_ex(object, name, &value)) {
+ arg.name = name;
+ arg.value = json_object_get_string(value);
+ } else {
+ arg.name = NULL;
+ arg.value = NULL;
+ }
+ arg.path = NULL;
+ return arg;
+}
+
+