X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fdbus-api.c;fp=src%2Fdbus-api.c;h=1f81bb2f7d360e38f4e686e8dd1c35b635b80f3d;hb=b55efc33fb8df8b0518570b2584b6da9abb3221b;hp=9d34e436d0025875054f1fdb8c722b7119e2c3e8;hpb=6458b6eb67426974e9a3b8eed1f5620f0de0efc5;p=src%2Fapp-framework-binder.git diff --git a/src/dbus-api.c b/src/dbus-api.c index 9d34e436..1f81bb2f 100644 --- a/src/dbus-api.c +++ b/src/dbus-api.c @@ -19,22 +19,38 @@ #include "local-def.h" -STATIC json_object* pingAfbs (AFB_plugin *plugin, AFB_session *session, AFB_request *request) { - static pingcount=0; +STATIC json_object* pingSample (AFB_session *session, AFB_request *request, void* handle) { + static pingcount = 0; json_object *response; - response = jsonNewMessage(AFB_SUCCESS, "Ping Application Framework %d", pingcount++); + char query [512]; + + // request all query key/value + getQueryAll (request, query, sizeof(query)); + + // check if we have some post data + if (request->post == NULL) request->post="NoData"; + + // return response to caller + response = jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon %d query={%s} PostData: \'%s\' ", pingcount++, query, request->post); + if (verbose) fprintf(stderr, "%d: \n", pingcount); return (response); -}; +} + + +STATIC struct { + void * somedata; +} handle; STATIC AFB_restapi pluginApis[]= { - {"ping" , (AFB_apiCB)pingAfbs ,"Ping Application Framework"}, - {"ctx-store", (AFB_apiCB)pingSample ,"Verbose Mode"}, - {"ctx-load" , (AFB_apiCB)pingSample ,"Verbose Mode"}, + {"ping" , (AFB_apiCB)pingSample , "Ping Application Framework", NULL}, + {"ctx-store", (AFB_apiCB)pingSample , "Verbose Mode", NULL}, + {"ctx-load" , (AFB_apiCB)pingSample , "Verbose Mode", NULL}, {0,0,0} }; + PUBLIC AFB_plugin *dbusRegister (AFB_session *session) { AFB_plugin *plugin = malloc (sizeof (AFB_plugin)); plugin->type = AFB_PLUGIN;