Merge origin/master
[src/app-framework-binder.git] / README.md
1 ### Application Framework Binder
2 This is an undergoing work, publication is only intended for developers to review and provide feedback.
3
4 ### Licence
5 As today the code is under GLPV3, while no decision as been taken yet, it will certainly move under a different licence like GPV2, Apache or MIT.
6
7 Final goal is keep the engine public while allowing people to load non open-source plugins. The code already leverage other opensource 
8 libraries especially libmicrohttpd & libjson. Finally what ever Licence is chosen it should be compatible with dependencies and automotive
9 industry requirementsas the primary target for this code is AGL. 
10
11 ### Building
12  Building Application Framework Binder requires the following libraries:
13
14  * libmagic ("libmagic-dev" under Debian/Ubuntu, "file-devel" under OpenSUSE);
15  * libmicrohttpd ("libmicrohttpd-dev/devel");
16  * json-c ("libjson-c-dev/devel");
17  * uuid ("uuid-dev/libuuid-devel");
18  * dbus ("libdbus-1-dev/dbus-1-devel");
19
20  optionally, for plugins :
21
22  * alsa ("libasound2-dev/alsa-devel");
23  * rtl-sdr >= 0.5.0 (fetch and build from "git://git.osmocom.org/rtl-sdr");
24
25  and the following tools:
26
27  * pkg-config;
28  * cmake >= 2.8.8.
29
30 To install all dependencies under OpenSUSE (except rtl-sdr), please type:
31
32 $ zypper in file-devel libmicrohttpd-devel libjson-c-devel libuuid-devel pkg-config cmake
33
34  To build from the root directory, please type:
35
36 $ mkdir build; cd build<br />
37 $ cmake ..<br />
38 $ make; make install<br />
39
40 ### Start
41 $ afb-daemon --help 
42
43 ### Example
44 $ afb-daemon --verbose --rootdir=/home/fulup/.AFB --alias=icons:/usr/share/icons
45
46 ### Directory & Path
47 Default behaviour is to locate ROOTDIR in $HOME/.AFB
48
49 ### REST API
50
51 Developer should mainly provides a structure with APIs name, corresponding methods and optionally some context and a handle.
52 A handle is a void* structure that it is passed to the api callback. The API receive the query and well as post data, incase
53 a post method was used. Every method should return a JSON object or NULL in case of error.
54
55 API plugin can be protected from timeout and other errors. By default this behaviour is deactivated, use --apitimeout to activate it.
56         
57         STATIC  AFB_restapi myApis[]= {
58           {"ping"     , (AFB_apiCB)ping    , "Ping Function", NULL},
59           {"action1"  , (AFB_apiCB)action1 , "Action-1", OptionalHandle},
60           {"action2"  , (AFB_apiCB)action2 , "Action-2", OptionalHandle},
61           {0,0,0}
62         };
63
64         PUBLIC AFB_plugin *pluginRegister (AFB_session *session) {
65             AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
66             plugin->type  = AFB_PLUGIN;
67             plugin->info  = "Plugin Sample";
68             plugin->prefix= "myplugin";        
69             plugin->apis  = myApis;
70             return (plugin);
71         }
72
73 ### HTML5 and Angular Redirect
74
75 Binder support HTML5 redirect mode even with an application baseurl. Default value for application base URL is /opa
76 See Application Framework HTML5 Client template at https://github.com/iotbzh/afb-client-sample
77
78 If the Binder receive something like http://myopa/sample when sample is not the homepage of the Angular OPA. The the serveur
79 will redirect to http://myopa/#!sample this redirect will return the Index.html OPA file and will notify angular not to display
80 the homepage by to goto samplepage.
81
82 Warning: in order Angular application to work both with a BASEURL="/" and BASEURL="/MyApp/" every page references have to be relative.
83 Recommended model is to develop with a BASEURL="/opa" as any application working with a BASEURL will work without, when the opposite it not true.
84
85 Note: If a resource is not accessible from ROOTDIR then --alias should be use ex: --alias=/icons:/usr/share/icons. Only alias designed to access
86 external support static files. They should not be used for API and OPA.
87
88
89 ### On going work
90
91  -- Dynamic load of plugins. While everything is designed to support dynamically loadable plugins, this part is not done yet.
92  -- Javascript plugins. As today only C plugins are supported, but JS plugins are on the ToDo list.
93