diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-04-08 15:14:59 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-04-08 15:14:59 +0200 |
commit | 56f9ef4581d567248b6f83a3b15f39a0aca42895 (patch) | |
tree | 607fddaf6c62515126768b86d3e7e7df1112153a /plugins/samples/HelloWorld.c | |
parent | 6ea1d50ab6571551e1d0379940349911956c97ee (diff) |
refactoring req interface
Change-Id: I6fc9246099c34f62c82e060cf014a63b0e8f63d8
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'plugins/samples/HelloWorld.c')
-rw-r--r-- | plugins/samples/HelloWorld.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 7d99f6df..946f4b01 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -23,27 +23,11 @@ #include "afb-plugin.h" #include "afb-req-itf.h" -static int fillargs(json_object *args, struct afb_arg arg) -{ - json_object *obj; - - obj = json_object_new_object(); - json_object_object_add (obj, "value", json_object_new_string(arg.value)); - if (arg.path != NULL) - json_object_object_add (obj, "path", json_object_new_string(arg.path)); - json_object_object_add (obj, "size", json_object_new_int64((int64_t)arg.size)); - json_object_object_add (args, arg.name && *arg.name ? arg.name : "<empty-string>", obj); - return 1; /* continue to iterate */ -} - // Sample Generic Ping Debug API static void ping(struct afb_req request, json_object *jresp, const char *tag) { static int pingcount = 0; - json_object *query; - - query = json_object_new_object(); - afb_req_iterate(request, (void*)fillargs, query); + json_object *query = afb_req_json(request); afb_req_success_f(request, jresp, "Ping Binder Daemon tag=%s count=%d query=%s", tag, ++pingcount, json_object_to_json_string(query)); } |