2 * Copyright (C) 2015 "IoT.bzh"
3 * Author "Fulup Ar Foll"
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "local-def.h"
22 STATIC json_object* pingSample (AFB_request *request) {
24 json_object *response;
28 // request all query key/value
29 len = getQueryAll (request, query, sizeof(query));
30 if (len == 0) strcpy (query,"NoSearchQueryList");
32 // check if we have some post data
33 if (request->post == NULL) request->post->data="NoData";
35 // return response to caller
36 response = jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon %d query={%s} PostData: \'%s\' ", pingcount++, query, request->post);
38 if (verbose) fprintf(stderr, "%d: \n", pingcount);
42 STATIC json_object* pingFail (AFB_request *request) {
46 STATIC json_object* pingBug (AFB_request *request) {
49 fprintf (stderr, "Use --timeout=10 to trap error\n");
54 // should never return
59 // For samples https://linuxprograms.wordpress.com/2010/05/20/json-c-libjson-tutorial/
60 STATIC json_object* pingJson (AFB_request *request) {
61 json_object *jresp, *embed;
63 jresp = json_object_new_object();
64 json_object_object_add(jresp, "myString", json_object_new_string ("Some String"));
65 json_object_object_add(jresp, "myInt", json_object_new_int (1234));
67 embed = json_object_new_object();
68 json_object_object_add(embed, "subObjString", json_object_new_string ("Some String"));
69 json_object_object_add(embed, "subObjInt", json_object_new_int (5678));
71 json_object_object_add(jresp,"eobj", embed);
76 // NOTE: this sample does not use session to keep test a basic as possible
77 // in real application most APIs should be protected with AFB_SESSION_CHECK
78 STATIC AFB_restapi pluginApis[]= {
79 {"ping" , AFB_SESSION_NONE, (AFB_apiCB)pingSample , "Ping Application Framework"},
80 {"pingnull" , AFB_SESSION_NONE, (AFB_apiCB)pingFail , "Return NULL"},
81 {"pingbug" , AFB_SESSION_NONE, (AFB_apiCB)pingBug , "Do a Memory Violation"},
82 {"pingJson" , AFB_SESSION_NONE, (AFB_apiCB)pingJson , "Return a JSON object"},
87 PUBLIC AFB_plugin *pluginRegister () {
88 AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
89 plugin->type = AFB_PLUGIN_JSON;
90 plugin->info = "Application Framework Binder Service";
91 plugin->prefix= "hello";
92 plugin->apis = pluginApis;