Add plugin handle into request, pass it to free callback
[src/app-framework-binder.git] / include / local-def.h
1 /*
2    alsajson-gw -- provide a REST/HTTP interface to ALSA-Mixer
3
4    Copyright (C) 2015, Fulup Ar Foll
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21 #ifndef LOCAL_DEF_H
22 #define LOCAL_DEF_H
23
24 #ifndef _GNU_SOURCE
25   #define _GNU_SOURCE
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include <fcntl.h>
33 #include <errno.h>
34 #include <termios.h>
35 #include <sys/ioctl.h>
36 #include <sys/signal.h>
37 #include <sys/types.h>
38 #include <time.h>
39 #include <json.h>
40 #include <microhttpd.h>
41 #include <magic.h>
42 #include <setjmp.h>
43 #include <signal.h>
44 #include <uuid/uuid.h>
45
46
47
48
49 #define AJQ_VERSION "0.1"
50
51 /* other definitions --------------------------------------------------- */
52
53 // Note: because of a bug in libmagic MAGIC_DB NULL should not be used for default
54 #define MAGIC_DB "/usr/share/misc/magic.mgc"
55 #define OPA_INDEX "index.html"
56 #define MAX_ALIAS 10           // max number of aliases
57 #define COOKIE_NAME   "AJB_session"
58
59
60 #define DEFLT_CNTX_TIMEOUT  3600   // default Client Connection Timeout
61 #define DEFLT_API_TIMEOUT   0      // default Plugin API Timeout [0=NoLimit for Debug Only]
62 #define DEFLT_API_TIMEOUT   0      // default Plugin API Timeout
63 #define DEFLT_CACHE_TIMEOUT 100000 // default Static File Chache [Client Side Cache 100000~=1day]
64 #define DEFLT_AUTH_TOKEN    NULL   // expect for debug should == NULL
65 #define DEFLT_HTTP_TIMEOUT  15     // Max MibMicroHttp timeout
66
67 typedef int BOOL;
68 #ifndef FALSE
69   #define FALSE 0
70 #endif
71 #ifndef TRUE
72   #define TRUE 1
73 #endif
74
75 #define PUBLIC
76 #define STATIC    static
77 #define FAILED    -1
78
79 #define AUDIO_BUFFER "/tmp/buf"
80
81 extern int verbose;  // this is the only global variable
82
83 // Plugin Type
84 typedef enum  {AFB_PLUGIN_JSON=123456789, AFB_PLUGIN_JSCRIPT=987654321,  AFB_PLUGIN_RAW=987123546} AFB_pluginE;
85
86 // prebuild json error are constructed in config.c
87 typedef enum  { AFB_FALSE, AFB_TRUE, AFB_FATAL, AFB_FAIL, AFB_WARNING, AFB_EMPTY, AFB_SUCCESS, AFB_DONE, AFB_UNAUTH} AFB_error;
88
89 extern char *ERROR_LABEL[];
90 #define ERROR_LABEL_DEF {"false", "true","fatal", "fail", "warning", "empty", "success"}
91
92 #define BANNER "<html><head><title>Application Framework Binder</title></head><body>Application Framework </body></html>"
93 #define JSON_CONTENT  "application/json"
94 #define FORM_CONTENT "multipart/form-data"
95 #define MAX_POST_SIZE  4096   // maximum size for POST data
96 #define CTX_NBCLIENTS   10   // allow a default of 10 authenticated clients
97
98
99 typedef json_object* (*AFB_apiCB)();
100 typedef void (*AFB_freeCtxCB)(void*, void*, char*);
101
102 // Error code are requested through function to manage json usage count
103 typedef struct {
104   int   level;
105   char* label;
106   json_object *json;
107 } AFB_errorT;
108
109 typedef enum  {AFB_POST_NONE=0, AFB_POST_JSON, AFB_POST_FORM} AFB_PostType;
110
111 // Post Upload File Handle
112 typedef struct {
113    int   fd; 
114    char *path; 
115    int  errcode;
116    json_object* jresp;
117 } AFB_PostCtx;
118
119 typedef  struct {
120     int  len;   // post element size
121     char *data; // post data in raw format
122     AFB_PostType type; // Json type
123 } AFB_PostRequest;
124   
125 // Post handler
126 typedef struct {
127   void*  ctx;               // Application context
128   int    len;               // current len for post
129   int    uid;               // post uid for debug
130   AFB_PostType type;        // JSON or FORM
131   AFB_apiCB  completeCB;    // callback when post is completed
132   char   *private;          // use internally to keep track or partial buffer
133   struct MHD_PostProcessor *pp; // iterator handle
134 } AFB_PostHandle;
135
136 typedef struct {
137     enum MHD_ValueKind kind; // kind type of the value
138     const char *key;         // key 0-terminated key for the value
139     const char *filename;    // filename of the uploaded file, NULL if not known
140     const char *mimetype;    // content_type mime-type of the data, NULL if not known
141     const char *encoding;    // transfer_encoding encoding of the data, NULL if not known
142     const char *data;        // data pointer to size bytes of data at the specified offset
143     uint64_t   offset;       // offset of data in the overall value
144     size_t     len;          // number of bytes in data available
145 } AFB_PostItem;
146
147 typedef struct {
148   char  path[512];
149   int   fd;
150 } AFB_staticfile;
151
152 typedef struct {
153   char  *url;
154   char  *path;
155   size_t len;
156 } AFB_aliasdir;
157
158 // Command line structure hold cli --command + help text
159 typedef struct {
160   int  val;        // command number within application
161   int  has_arg;    // command number within application
162   char *name;      // command as used in --xxxx cli
163   char *help;      // help text
164 } AFB_options;
165
166 // main config structure
167 typedef struct {
168   char *logname;           // logfile path for info & error log
169   char *console;           // console device name (can be a file or a tty)
170   int  localhostOnly;
171   int   httpdPort;
172   char *smack;             // smack label
173   char *plugins;           // list of requested plugins
174   char *rootdir;           // base dir for httpd file download
175   char *rootbase;          // Angular HTML5 base URL
176   char *rootapi;           // Base URL for REST APIs
177   char *pidfile;           // where to store pid when running background
178   char *sessiondir;        // where to store mixer session files
179   char *configfile;        // where to store configuration on gateway exit
180   char *setuid;            // downgrade uid to username
181   char *token;             // initial authentication token [default NULL no session]
182   int  cacheTimeout;
183   int  apiTimeout;
184   int  cntxTimeout;        // Client Session Context timeout
185   int  pluginCount;        // loaded plugins count
186   AFB_aliasdir *aliasdir;  // alias mapping for icons,apps,...
187 } AFB_config;
188
189 typedef struct {
190   int  len;        // command number within application
191   json_object *jtype;
192 } AFB_privateApi;
193
194
195 typedef struct {
196      char    *msg;
197      size_t  len;
198 } AFB_redirect_msg;
199
200 // Enum for Session/Token/Authentication middleware
201 typedef enum  {AFB_SESSION_NONE, AFB_SESSION_CREATE, AFB_SESSION_CLOSE, AFB_SESSION_RENEW, AFB_SESSION_CHECK} AFB_sessionE;
202
203 // API definition
204 typedef struct {
205   char *name;
206   AFB_sessionE session;
207   AFB_apiCB callback;
208   char *info;
209   AFB_privateApi *private;
210 } AFB_restapi;
211
212 // Plugin definition
213 typedef struct {
214   AFB_pluginE type;  
215   char *info;
216   char *prefix;
217   size_t prefixlen;
218   json_object *jtype;
219   AFB_restapi *apis;
220   void *handle;
221   int  ctxCount;
222   AFB_freeCtxCB freeCtxCB;  // callback to free application context [null for standard free]
223 } AFB_plugin;
224
225
226 // User Client Session Context
227 typedef struct {
228   char uuid[37];        // long term authentication of remote client
229   char token[37];       // short term authentication of remote client
230   time_t timeStamp;     // last time token was refresh
231   int   restfull;       // client does not use cookie
232   void **contexts;      // application specific context [one per plugin]]
233   AFB_plugin **plugins; // we need plugins reference to cleanup session outside of call context
234 } AFB_clientCtx;
235
236 // MHD_lookup_connection_value(connection, MHD_GET_ARGUMENT_KIND, "value");
237 typedef struct {
238   const char *uuid;
239   const char *url;
240   char *prefix;              // plugin convivial name
241   char *api;
242   AFB_PostRequest *post;
243   json_object *jresp;
244   void *context;             // Hold Client Context when using session
245   int  restfull;             // request is resfull [uuid token provided]
246   int  errcode;              // http error code
247   sigjmp_buf checkPluginCall; // context save for timeout set/longjmp
248   AFB_config *config;         // plugin may need access to config
249   struct MHD_Connection *connection;
250   AFB_plugin *plugin;        // provide callback and easy access to plugin
251   AFB_plugin **plugins;
252 } AFB_request;
253
254
255 typedef struct {
256   AFB_config  *config;   // pointer to current config
257   // List of commands to execute
258   int  killPrevious;
259   int  background;        // run in backround mode
260   int  foreground;        // run in forground mode
261   int  configsave;        // Save config on disk on start
262   char *cacheTimeout;     // http require timeout to be a string
263   void *httpd;            // anonymous structure for httpd handler
264   int  fakemod;           // respond to GET/POST request without interacting with sndboard
265   int  forceexit;         // when autoconfig from script force exit before starting server
266   AFB_plugin **plugins;   // pointer to REST/API plugins 
267   magic_t  magic;         // Mime type file magic lib
268   sigjmp_buf restartCkpt; // context save for restart set/longjmp
269 } AFB_session;
270
271
272
273 #include "proto-def.h"
274
275 #endif /* LOCAL_DEF_H */