9d34e436d0025875054f1fdb8c722b7119e2c3e8
[src/app-framework-binder.git] / src / dbus-api.c
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  *
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.
9  *
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.
14  *
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/>.
17  */
18
19
20 #include "local-def.h"
21
22 STATIC json_object* pingAfbs (AFB_plugin *plugin, AFB_session *session, AFB_request *request) {
23     static pingcount=0;
24     json_object *response;
25     response = jsonNewMessage(AFB_SUCCESS, "Ping Application Framework %d", pingcount++);
26     if (verbose) fprintf(stderr, "%d: \n", pingcount);
27     return (response);
28 };
29
30
31 STATIC  AFB_restapi pluginApis[]= {
32   {"ping"     , (AFB_apiCB)pingAfbs   ,"Ping Application Framework"},
33   {"ctx-store", (AFB_apiCB)pingSample ,"Verbose Mode"},
34   {"ctx-load" , (AFB_apiCB)pingSample ,"Verbose Mode"},
35   {0,0,0}
36 };
37
38 PUBLIC AFB_plugin *dbusRegister (AFB_session *session) {
39     AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
40     plugin->type  = AFB_PLUGIN;
41     plugin->info  = "Application Framework Binder Service";
42     plugin->prefix= "dbus";        
43     plugin->apis  = pluginApis;
44     
45     return (plugin);
46 };