work in progress (tbf)
[src/app-framework-binder.git] / plugins / samples / ClientCtx.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 #define _GNU_SOURCE
20 #include <stdio.h>
21 #include <json.h>
22
23 #include "afb-plugin.h"
24 #include "afb-req-itf.h"
25
26 typedef struct {
27   /* 
28    * In case your plugin is implemented on multiple files or used share routines
29    * with other plugins, it might not be possible to use global static variable.
30    * In this case you can attach a static handle to your plugin. This handle
31    * is passed within each API call under request->handle
32    * 
33    */  
34   void *anythingYouWant;
35
36   
37 } MyPluginHandleT;
38
39 typedef struct {
40   /* 
41    * client context is attached a session but private to a each plugin.
42    * Context is passed to each API under request->context
43    * 
44    * Note:
45    *  -client context is free when a session is closed. Developer should not
46    *   forget that even if context is private to each plugin, session is unique
47    *   to a client. When session close, every plugin are notified to free there
48    *   private context.
49    *  -by default standard "free" function from libc is used to free context.
50    *   Developer may define it own under plugin->freeCB. This call received
51    *   FreeCtxCb(void *ClientCtx, void*PluginHandle, char*SessionUUID) if
52    *   FreeCtxCb=(void*)-1 then context wont be free by session manager.
53    *  -when an API use AFB_SESSION_RESET this close the session and each plugin
54    *   will be notified to free ressources.
55    */
56     
57   int  count;
58   char *abcd;
59   
60 } MyClientContextT;
61
62
63 // Plugin handle should not be in stack (malloc or static)
64 static MyPluginHandleT global_handle;
65     
66 // This function is call at session open time. Any client trying to 
67 // call it with an already open session will be denied.
68 // Ex: http://localhost:1234/api/context/create?token=123456789
69 static void myCreate (struct afb_req request)
70 {
71     MyClientContextT *ctx = malloc (sizeof (MyClientContextT));
72     MyPluginHandleT  *handle = (MyPluginHandleT*) &global_handle;
73
74     // store something in our plugin private client context
75     ctx->count = 0;
76     ctx->abcd  = "SomeThingUseful";        
77
78     *request.context = ctx;
79     afb_req_success_f(request, NULL, "SUCCESS: create client context for plugin [%s]", handle->anythingYouWant);
80 }
81
82 // This function can only be called with a valid token. Token should be renew before
83 // session timeout a standard renew api is avaliable at /api/token/renew this API
84 // can be called automatically with <token-renew> HTML5 widget.
85 // ex: http://localhost:1234/api/context/action?token=xxxxxx-xxxxxx-xxxxx-xxxxx-xxxxxx
86 static void myAction (struct afb_req request)
87 {
88     MyPluginHandleT  *handle = (MyPluginHandleT*) &global_handle;
89     MyClientContextT *ctx = (MyClientContextT*) *request.context;
90     
91     // store something in our plugin private client context
92     ctx->count++;
93     afb_req_success_f(request, NULL, "SUCCESS: plugin [%s] Check=[%d]\n", handle->anythingYouWant, ctx->count);
94 }
95
96 // After execution of this function, client session will be close and if they
97 // created a context [request->context != NULL] every plugins will be notified
98 // that they should free context resources.
99 // ex: http://localhost:1234/api/context/close?token=xxxxxx-xxxxxx-xxxxx-xxxxx-xxxxxx
100 static void myClose (struct afb_req request)
101 {
102     MyPluginHandleT  *handle = (MyPluginHandleT*) &global_handle;
103     MyClientContextT *ctx = (MyClientContextT*) *request.context;
104     
105     // store something in our plugin private client context
106     ctx->count++;
107     afb_req_success_f(request, NULL, "SUCCESS: plugin [%s] Close=[%d]\n", handle->anythingYouWant, ctx->count);
108 }
109
110 static void freeCtxCB (MyClientContextT *ctx) {
111     MyPluginHandleT  *handle = (MyPluginHandleT*) &global_handle;
112     fprintf (stderr, "FreeCtxCB Plugin=[%s]  count=[%d]", (char*)handle->anythingYouWant, ctx->count);
113     free (ctx);
114     
115     // Note: handle should be free it is a static resource attached to plugin and not to session
116 }
117
118 // NOTE: this sample does not use session to keep test a basic as possible
119 //       in real application most APIs should be protected with AFB_SESSION_CHECK
120 static const struct AFB_restapi pluginApis[]= {
121   {"create", AFB_SESSION_CREATE, myCreate  , "Create a new session"},
122   {"action", AFB_SESSION_CHECK , myAction  , "Use Session Context"},
123   {"close" , AFB_SESSION_CLOSE , myClose   , "Free Context"},
124   {NULL}
125 };
126
127 static const struct AFB_plugin plugin_desc = {
128         .type = AFB_PLUGIN_JSON,
129         .info = "Sample of Client Context Usage",
130         .prefix = "context",
131         .apis = pluginApis,
132         .freeCtxCB = (void*)freeCtxCB
133 };
134
135 const struct AFB_plugin *pluginRegister ()
136 {
137         return &plugin_desc;
138 }
139