9873b6266cf68035224b7c38adb18ccba52ee604
[src/app-framework-binder.git] / doc / afb-plugin-writing.html
1 <html>
2 <head>
3   <link rel="stylesheet" type="text/css" href="doc.css">
4   <meta charset="UTF-8">
5 </head>
6 <body>
7 <a name="HOWTO.WRITE.a.PLUGIN.for.AFB-DAEMON"></a>
8 <h1>HOWTO WRITE a PLUGIN for AFB-DAEMON</h1>
9
10 <pre><code>version: 1
11 Date:    27 mai 2016
12 Author:  José Bollo
13 </code></pre>
14
15 <p><ul>
16  <li><a href="#HOWTO.WRITE.a.PLUGIN.for.AFB-DAEMON">HOWTO WRITE a PLUGIN for AFB-DAEMON</a>
17  <ul>
18   <li><a href="#Summary">Summary</a>
19   <ul>
20    <li><a href="#Nature.of.a.plugin">Nature of a plugin</a></li>
21    <li><a href="#Kinds.of.plugins">Kinds of plugins</a>
22    <ul>
23     <li><a href="#Application.plugins">Application plugins</a></li>
24     <li><a href="#Service.plugins">Service plugins</a></li>
25    </ul>
26    </li>
27    <li><a href="#Live.cycle.of.a.plugin.within.afb-daemon">Live cycle of a plugin within afb-daemon</a></li>
28    <li><a href="#Content.of.a.plugin">Content of a plugin</a>
29    <ul>
30     <li><a href="#The.name.of.the.plugin">The name of the plugin</a></li>
31     <li><a href="#Names.of.verbs">Names of verbs</a></li>
32     <li><a href="#The.initialisation.function">The initialisation function</a></li>
33     <li><a href="#Functions.implementing.verbs">Functions implementing verbs</a>
34 </li>
35    </ul>
36    </li>
37   </ul>
38   </li>
39   <li><a href="#The.Tic-Tac-Toe.example">The Tic-Tac-Toe example</a></li>
40   <li><a href="#Dependencies.when.compiling">Dependencies when compiling</a></li>
41   <li><a href="#Header.files.to.include">Header files to include</a></li>
42   <li><a href="#Choosing.names">Choosing names</a>
43   <ul>
44    <li><a href="#Names.for.API..plugin.">Names for API (plugin)</a></li>
45    <li><a href="#Names.for.verbs">Names for verbs</a></li>
46    <li><a href="#Names.for.arguments">Names for arguments</a></li>
47    <li><a href="#Forging.names.widely.available">Forging names widely available</a></li>
48   </ul>
49   </li>
50   <li><a href="#Writing.a.synchronous.verb.implementation">Writing a synchronous verb implementation</a>
51   <ul>
52    <li><a href="#The.incoming.request">The incoming request</a></li>
53    <li><a href="#Associating.a.context.to.the.session">Associating a context to the session</a></li>
54    <li><a href="#Sending.the.reply.to.a.request">Sending the reply to a request</a></li>
55   </ul>
56   </li>
57   <li><a href="#Getting.argument.of.invocation">Getting argument of invocation</a>
58   <ul>
59    <li><a href="#Basic.functions.for.querying.arguments">Basic functions for querying arguments</a></li>
60    <li><a href="#Arguments.for.received.files">Arguments for received files</a></li>
61    <li><a href="#Arguments.as.a.JSON.object">Arguments as a JSON object</a></li>
62   </ul>
63   </li>
64   <li><a href="#Initialisation.of.the.plugin.and.declaration.of.verbs">Initialisation of the plugin and declaration of verbs</a></li>
65   <li><a href="#Sending.messages.to.the.log.system">Sending messages to the log system</a>
66   <ul>
67    <li><a href="#Verbs.for.logging.messages">Verbs for logging messages</a></li>
68    <li><a href="#Managing.verbosity">Managing verbosity</a></li>
69    <li><a href="#Output.format.and.destination">Output format and destination</a></li>
70   </ul>
71   </li>
72   <li><a href="#Sending.events">Sending events</a></li>
73   <li><a href="#Writing.an.asynchronous.verb.implementation">Writing an asynchronous verb implementation</a></li>
74   <li><a href="#How.to.build.a.plugin">How to build a plugin</a>
75   <ul>
76    <li><a href="#Example.for.cmake.meta.build.system">Example for cmake meta build system</a></li>
77    <li><a href="#Exporting.the.function.pluginAfbV1Register">Exporting the function pluginAfbV1Register</a></li>
78    <li><a href="#Building.within.yocto">Building within yocto</a></li>
79   </ul>
80   </li>
81  </ul>
82  </li>
83 </ul></p>
84
85 <a name="Summary"></a>
86 <h2>Summary</h2>
87
88 <p>The binder afb-daemon serves files through
89 the HTTP protocol and offers access to API&rsquo;s through
90 HTTP or WebSocket protocol.</p>
91
92 <p>The plugins are used to add API&rsquo;s to afb-daemon.
93 This part describes how to write a plugin for afb-daemon.
94 Excepting this summary, this part is intended to be read
95 by developpers.</p>
96
97 <p>Before going into details, through a tiny example,
98 a short overview plugins basis is needed.</p>
99
100 <a name="Nature.of.a.plugin"></a>
101 <h3>Nature of a plugin</h3>
102
103 <p>A plugin is a separate piece of code made of a shared library.
104 The plugin is loaded and activated by afb-daemon when afb-daemon
105 starts.</p>
106
107 <p>Technically, a plugin is not linked to any library of afb-daemon.</p>
108
109 <a name="Kinds.of.plugins"></a>
110 <h3>Kinds of plugins</h3>
111
112 <p>There is two kinds of plugins: application plugins and service
113 plugins.</p>
114
115 <a name="Application.plugins"></a>
116 <h4>Application plugins</h4>
117
118 <p>Application plugins are intended to be instanciated for each
119 application: when an application using that plugin is started,
120 its binder starts a new instance of the plugin.</p>
121
122 <p>It means that the application plugins mainly have only one
123 context to manage for one client.</p>
124
125 <a name="Service.plugins"></a>
126 <h4>Service plugins</h4>
127
128 <p>Service plugins are intended to be instanciated only one time
129 only and connected to many clients.</p>
130
131 <p>So either it does not manage context at all or otherwise,
132 if it manages context, it should be able to manage one context
133 per client.</p>
134
135 <p>In details, it may be useful to have service plugins at a user
136 level.</p>
137
138 <a name="Live.cycle.of.a.plugin.within.afb-daemon"></a>
139 <h3>Live cycle of a plugin within afb-daemon</h3>
140
141 <p>The plugins are loaded and activated when afb-daemon starts.</p>
142
143 <p>At start, the plugin initialise itself.
144 If it fails to initialise then afb-daemon stops.</p>
145
146 <p>Conversely, if it success to initialize, it must declare
147 a name, that must be unique, and a list of API&rsquo;s verbs.</p>
148
149 <p>When initialized, the functions implementing the API&rsquo;s verbs
150 of the plugin are activated on call.</p>
151
152 <p>At the end, nothing special is done by afb-daemon.
153 Consequently, developpers of plugins should use &lsquo;atexit&rsquo;
154 or &lsquo;on_exit&rsquo; during initialisation if they need to
155 perform specific actions when stopping.</p>
156
157 <a name="Content.of.a.plugin"></a>
158 <h3>Content of a plugin</h3>
159
160 <p>For afb-daemon, a plugin contains 2 different
161 things: names and functions.</p>
162
163 <p>There is two kind of names:
164  - the name of the plugin,
165  - the names of the verbs.</p>
166
167 <p>There is two kind of functions:
168  - the initialisation function
169  - functions implementing verbs</p>
170
171 <p>Afb-daemon translates the name of the method that is
172 invoked to a pair of API and verb names. For example,
173 the method named <strong>foo/bar</strong> translated to the API
174 name <strong>foo</strong> and the verb name <strong>bar</strong>.
175 To serve it, afb-daemon search the plugin that record
176 the name <strong>foo</strong> and if it also recorded the verb <strong>bar</strong>,
177 it calls the implementation function declared for this verb.</p>
178
179 <p>Afb-daemon make no distinction between lower case
180 and upper case when searching for a method.
181 Thus, The names <strong>TicTacToe/Board</strong> and <strong>tictactoe/borad</strong>
182 are equals.</p>
183
184 <a name="The.name.of.the.plugin"></a>
185 <h4>The name of the plugin</h4>
186
187 <p>The name of the plugin is also known as the name
188 of the API that defines the plugin.</p>
189
190 <p>This name is also known as the prefix.</p>
191
192 <p>The name of a plugin MUST be unique within afb-daemon.</p>
193
194 <p>For example, when a client of afb-daemon
195 calls a method named <strong>foo/bar</strong>. Afb-daemon
196 extracts the prefix <strong>foo</strong> and the suffix <strong>bar</strong>.
197 <strong>foo</strong> is the API name and must match a plugin name,
198 the plugin that implements the verb <strong>bar</strong>.</p>
199
200 <a name="Names.of.verbs"></a>
201 <h4>Names of verbs</h4>
202
203 <p>Each plugin exposes a set of verbs that can be called
204 by client of afb-daemon.</p>
205
206 <p>The name of a verb MUST be unique within a plugin.</p>
207
208 <p>Plugins link verbs to functions that are called
209 when clients emit requests for that verb.</p>
210
211 <p>For example, when a client of afb-daemon
212 calls a method named <strong>foo/bar</strong>.</p>
213
214 <a name="The.initialisation.function"></a>
215 <h4>The initialisation function</h4>
216
217 <p>The initialisation function serves several purposes.</p>
218
219 <ol>
220 <li><p>It allows afb-daemon to check the version
221 of the plugin using the name of the initialisation
222 functions that it found. Currently, the initialisation
223 function is named <strong>pluginAfbV1Register</strong>. It identifies
224 the first version of plugins.</p></li>
225 <li><p>It allows the plugin to initialise itself.</p></li>
226 <li><p>It serves to the plugin to declare names, descriptions,
227 requirements and implmentations of the verbs that it exposes.</p></li>
228 </ol>
229
230
231 <a name="Functions.implementing.verbs"></a>
232 <h4>Functions implementing verbs</h4>
233
234 <p>When a method is called, afb-daemon constructs a request
235 object and pass it to the implementation function for verb
236 within the plugin of the API.</p>
237
238 <p>An implementation function receives a request object that
239 is used to get arguments of the request, to send
240 answer, to store session data.</p>
241
242 <p>A plugin MUST send an answer to the request.</p>
243
244 <p>But it is not mandatory to send the answer
245 before to return from the implementing function.
246 This behaviour is important for implementing
247 asynchronous actions.</p>
248
249 <p>Implementation functions that always reply to the request
250 before returning are named <em>synchronous implementations</em>.
251 Those that don&rsquo;t always reply to the request before
252 returning are named <em>asynchronous implementations</em>.</p>
253
254 <p>Asynchronous implementations typically initiate an
255 asynchronous action and record to send the reply
256 on completion of this action.</p>
257
258 <a name="The.Tic-Tac-Toe.example"></a>
259 <h2>The Tic-Tac-Toe example</h2>
260
261 <p>This part explains how to write an afb-plugin.
262 For the sake of being practical we will use many
263 examples from the tic-tac-toe example.
264 This plugin example is in <em>plugins/samples/tic-tac-toe.c</em>.</p>
265
266 <p>This plugin is named <strong><em>tictactoe</em></strong>.</p>
267
268 <a name="Dependencies.when.compiling"></a>
269 <h2>Dependencies when compiling</h2>
270
271 <p>Afb-daemon provides a configuration file for <em>pkg-config</em>.
272 Typing the command</p>
273
274 <pre><code>pkg-config --cflags afb-daemon
275 </code></pre>
276
277 <p>will print the flags to use for compiling, like this:</p>
278
279 <pre><code>$ pkg-config --cflags afb-daemon
280 -I/opt/local/include -I/usr/include/json-c 
281 </code></pre>
282
283 <p>For linking, you should use</p>
284
285 <pre><code>$ pkg-config --libs afb-daemon
286 -ljson-c
287 </code></pre>
288
289 <p>As you see, afb-daemon automatically includes dependency to json-c.
290 This is done through the <strong>Requires</strong> keyword of pkg-config
291 because almost all plugin will use <strong>json-c</strong>.</p>
292
293 <p>If this behaviour is a problem, let us know.</p>
294
295 <p>Internally, afb-daemon uses <strong>libsystemd</strong> for its event loop
296 and for its binding to D-Bus.
297 Plugins developpers are encouraged to also use this library.
298 But it is a matter of choice.
299 Thus there is no dependency to <strong>libsystemd</strong>.</p>
300
301 <blockquote><p>Afb-daemon provides no library for plugins.
302 The functions that the plugin need to have are given
303 to the plugin at runtime through pointer using read-only
304 memory.</p></blockquote>
305
306 <a name="Header.files.to.include"></a>
307 <h2>Header files to include</h2>
308
309 <p>The plugin <em>tictactoe</em> has the following lines for its includes:</p>
310
311 <pre><code>#define _GNU_SOURCE
312 #include &lt;stdio.h&gt;
313 #include &lt;string.h&gt;
314 #include &lt;json-c/json.h&gt;
315 #include &lt;afb/afb-plugin.h&gt;
316 </code></pre>
317
318 <p>The header <em>afb/afb-plugin.h</em> includes all the features that a plugin
319 needs except two foreign header that must be included by the plugin
320 if it needs it:</p>
321
322 <ul>
323 <li><em>json-c/json.h</em>: this header must be include to handle json objects;</li>
324 <li><em>systemd/sd-event.h</em>: this must be include to access the main loop;</li>
325 <li><em>systemd/sd-bus.h</em>: this may be include to use dbus connections.</li>
326 </ul>
327
328
329 <p>The <em>tictactoe</em> plugin does not use systemd features so it is not included.</p>
330
331 <p>When including <em>afb/afb-plugin.h</em>, the macro <strong>_GNU_SOURCE</strong> must be
332 defined.</p>
333
334 <a name="Choosing.names"></a>
335 <h2>Choosing names</h2>
336
337 <p>The designer of a plugin must defines names for its plugin
338 (or its API) and for the verbs of its API. He also
339 must defines names for arguments given by name.</p>
340
341 <p>While forging names, the designer should take into account
342 the rules for making valid names and some rules that make
343 the names easy to use across plaforms.</p>
344
345 <p>The names and strings used ALL are UTF-8 encoded.</p>
346
347 <a name="Names.for.API..plugin."></a>
348 <h3>Names for API (plugin)</h3>
349
350 <p>The names of the API are checked.
351 All characters are authorised except:</p>
352
353 <ul>
354 <li>the control characters (\u0000 .. \u001f)</li>
355 <li>the characters of the set { &lsquo; &rsquo;, &lsquo;&ldquo;&rsquo;, &lsquo;#&rsquo;, &lsquo;%&rsquo;, &lsquo;&amp;&rsquo;,
356 &lsquo;&rsquo;&lsquo;, &rsquo;/&lsquo;, &rsquo;?&lsquo;, &rsquo;`&lsquo;, &rsquo;\x7f' }</li>
357 </ul>
358
359
360 <p>In other words the set of forbidden characters is
361 { \u0000..\u0020, \u0022, \u0023, \u0025..\u0027,
362   \u002f, \u003f, \u0060, \u007f }.</p>
363
364 <p>Afb-daemon make no distinction between lower case
365 and upper case when searching for an API by its name.</p>
366
367 <a name="Names.for.verbs"></a>
368 <h3>Names for verbs</h3>
369
370 <p>The names of the verbs are not checked.</p>
371
372 <p>However, the validity rules for verb&rsquo;s names are the
373 same as for API&rsquo;s names except that the dot (.) character
374 is forbidden.</p>
375
376 <p>Afb-daemon make no distinction between lower case
377 and upper case when searching for an API by its name.</p>
378
379 <a name="Names.for.arguments"></a>
380 <h3>Names for arguments</h3>
381
382 <p>The names for arguments are not restricted and can be
383 anything.</p>
384
385 <p>The arguments are searched with the case sensitive
386 string comparison. Thus the names &ldquo;index&rdquo; and &ldquo;Index&rdquo;
387 are not the same.</p>
388
389 <a name="Forging.names.widely.available"></a>
390 <h3>Forging names widely available</h3>
391
392 <p>The key names of javascript object can be almost
393 anything using the arrayed notation:</p>
394
395 <pre><code>object[key] = value
396 </code></pre>
397
398 <p>That is not the case with the dot notation:</p>
399
400 <pre><code>object.key = value
401 </code></pre>
402
403 <p>Using the dot notation, the key must be a valid javascript
404 identifier.</p>
405
406 <p>For this reason, the chosen names should better be
407 valid javascript identifier.</p>
408
409 <p>It is also a good practice, even for arguments, to not
410 rely on the case sensitivity and to avoid the use of
411 names different only by the case.</p>
412
413 <a name="Writing.a.synchronous.verb.implementation"></a>
414 <h2>Writing a synchronous verb implementation</h2>
415
416 <p>The verb <strong>tictactoe/board</strong> is a synchronous implementation.
417 Here is its listing:</p>
418
419 <pre><code>/*
420  * get the board
421  */
422 static void board(struct afb_req req)
423 {
424         struct board *board;
425         struct json_object *description;
426
427         /* retrieves the context for the session */
428         board = board_of_req(req);
429         INFO(afbitf, "method 'board' called for boardid %d", board-&gt;id);
430
431         /* describe the board */
432         description = describe(board);
433
434         /* send the board's description */
435         afb_req_success(req, description, NULL);
436 }
437 </code></pre>
438
439 <p>This examples show many aspects of writing a synchronous
440 verb implementation. Let summarize it:</p>
441
442 <ol>
443 <li><p>The function <strong>board_of_req</strong> retrieves the context stored
444 for the plugin: the board.</p></li>
445 <li><p>The macro <strong>INFO</strong> sends a message of kind <em>INFO</em>
446 to the logging system. The global variable named <strong>afbitf</strong>
447 used represents the interface to afb-daemon.</p></li>
448 <li><p>The function <strong>describe</strong> creates a json_object representing
449 the board.</p></li>
450 <li><p>The function <strong>afb_req_success</strong> sends the reply, attaching to
451 it the object <em>description</em>.</p></li>
452 </ol>
453
454
455 <a name="The.incoming.request"></a>
456 <h3>The incoming request</h3>
457
458 <p>For any implementation, the request is received by a structure of type
459 <strong>struct afb_req</strong>.</p>
460
461 <blockquote><p>Note that this is a PLAIN structure, not a pointer to a structure.</p></blockquote>
462
463 <p>The definition of <strong>struct afb_req</strong> is:</p>
464
465 <pre><code>/*
466  * Describes the request by plugins from afb-daemon
467  */
468 struct afb_req {
469         const struct afb_req_itf *itf;  /* the interfacing functions */
470         void *closure;          /* the closure for functions */
471 };
472 </code></pre>
473
474 <p>It contains two pointers: one, <em>itf</em>, points to the functions needed
475 to handle the internal request represented by the second pointer, <em>closure</em>.</p>
476
477 <blockquote><p>The structure must never be used directly.
478 Insted, use the intended functions provided
479 by afb-daemon and described here.</p></blockquote>
480
481 <p><em>req</em> is used to get arguments of the request, to send
482 answer, to store session data.</p>
483
484 <p>This object and its interface is defined and documented
485 in the file names <em>afb/afb-req-itf.h</em></p>
486
487 <p>The above example uses 2 times the request object <em>req</em>.</p>
488
489 <p>The first time, it is used for retrieving the board attached to
490 the session of the request.</p>
491
492 <p>The second time, it is used to send the reply: an object that
493 describes the current board.</p>
494
495 <a name="Associating.a.context.to.the.session"></a>
496 <h3>Associating a context to the session</h3>
497
498 <p>When the plugin <em>tic-tac-toe</em> receives a request, it musts regain
499 the board that describes the game associated to the session.</p>
500
501 <p>For a plugin, having data associated to a session is a common case.
502 This data is called the context of the plugin for the session.
503 For the plugin <em>tic-tac-toe</em>, the context is the board.</p>
504
505 <p>The requests <em>afb_req</em> offer four functions for
506 storing and retrieving the context associated to the session.</p>
507
508 <p>These functions are:</p>
509
510 <ul>
511 <li><p><strong>afb_req_context_get</strong>:
512 retrieves the context data stored for the plugin.</p></li>
513 <li><p><strong>afb_req_context_set</strong>:
514 store the context data of the plugin.</p></li>
515 <li><p><strong>afb_req_context</strong>:
516 retrieves the context data of the plugin,
517 if needed, creates the context and store it.</p></li>
518 <li><p><strong>afb_req_context_clear</strong>:
519 reset the stored data.</p></li>
520 </ul>
521
522
523 <p>The plugin <em>tictactoe</em> use a convenient function to retrieve
524 its context: the board. This function is <em>board_of_req</em>:</p>
525
526 <pre><code>/*
527  * retrieves the board of the request
528  */
529 static inline struct board *board_of_req(struct afb_req req)
530 {
531         return afb_req_context(req, (void*)get_new_board, (void*)release_board);
532 }
533 </code></pre>
534
535 <p>The function <strong>afb_req_context</strong> ensure an existing context
536 for the session of the request.
537 Its two last arguments are functions. Here, the casts are required
538 to avoid a warning when compiling.</p>
539
540 <p>Here is the definition of the function <strong>afb_req_context</strong></p>
541
542 <pre><code>/*
543  * Gets the pointer stored by the plugin for the session of 'req'.
544  * If the stored pointer is NULL, indicating that no pointer was
545  * already stored, afb_req_context creates a new context by calling
546  * the function 'create_context' and stores it with the freeing function
547  * 'free_context'.
548  */
549 static inline void *afb_req_context(struct afb_req req, void *(*create_context)(), void (*free_context)(void*))
550 {
551         void *result = afb_req_context_get(req);
552         if (result == NULL) {
553                 result = create_context();
554                 afb_req_context_set(req, result, free_context);
555         }
556         return result;
557 }
558 </code></pre>
559
560 <p>The second argument if the function that creates the context.
561 For the plugin <em>tic-tac-toe</em> it is the function <strong>get_new_board</strong>.
562 The function <strong>get_new_board</strong> creates a new board and set its
563 count of use to 1. The boards are counting their count of use
564 to free there ressources when no more used.</p>
565
566 <p>The third argument if the function that frees the context.
567 For the plugin <em>tic-tac-toe</em> it is the function <strong>release_board</strong>.
568 The function <strong>release_board</strong> decrease the the count of use of
569 the board given as argument. If the use count decrease to zero,
570 the board data are freed.</p>
571
572 <p>The definition of the other functions for dealing with contexts are:</p>
573
574 <pre><code>/*
575  * Gets the pointer stored by the plugin for the session of 'req'.
576  * When the plugin has not yet recorded a pointer, NULL is returned.
577  */
578 void *afb_req_context_get(struct afb_req req);
579
580 /*
581  * Stores for the plugin the pointer 'context' to the session of 'req'.
582  * The function 'free_context' will be called when the session is closed
583  * or if plugin stores an other pointer.
584  */
585 void afb_req_context_set(struct afb_req req, void *context, void (*free_context)(void*));
586
587 /*
588  * Frees the pointer stored by the plugin for the session of 'req'
589  * and sets it to NULL.
590  *
591  * Shortcut for: afb_req_context_set(req, NULL, NULL)
592  */
593 static inline void afb_req_context_clear(struct afb_req req)
594 {
595         afb_req_context_set(req, NULL, NULL);
596 }
597 </code></pre>
598
599 <a name="Sending.the.reply.to.a.request"></a>
600 <h3>Sending the reply to a request</h3>
601
602 <p>Two kinds of replies can be made: successful replies and
603 failure replies.</p>
604
605 <blockquote><p>Sending a reply to a request must be done at most one time.</p></blockquote>
606
607 <p>The two functions to send a reply of kind &ldquo;success&rdquo; are
608 <strong>afb_req_success</strong> and <strong>afb_req_success_f</strong>.</p>
609
610 <pre><code>/*
611  * Sends a reply of kind success to the request 'req'.
612  * The status of the reply is automatically set to "success".
613  * Its send the object 'obj' (can be NULL) with an
614  * informationnal comment 'info (can also be NULL).
615  */
616 void afb_req_success(struct afb_req req, struct json_object *obj, const char *info);
617
618 /*
619  * Same as 'afb_req_success' but the 'info' is a formatting
620  * string followed by arguments.
621  */
622 void afb_req_success_f(struct afb_req req, struct json_object *obj, const char *info, ...);
623 </code></pre>
624
625 <p>The two functions to send a reply of kind &ldquo;failure&rdquo; are
626 <strong>afb_req_fail</strong> and <strong>afb_req_fail_f</strong>.</p>
627
628 <pre><code>/*
629  * Sends a reply of kind failure to the request 'req'.
630  * The status of the reply is set to 'status' and an
631  * informationnal comment 'info' (can also be NULL) can be added.
632  *
633  * Note that calling afb_req_fail("success", info) is equivalent
634  * to call afb_req_success(NULL, info). Thus even if possible it
635  * is strongly recommanded to NEVER use "success" for status.
636  */
637 void afb_req_fail(struct afb_req req, const char *status, const char *info);
638
639 /*
640  * Same as 'afb_req_fail' but the 'info' is a formatting
641  * string followed by arguments.
642  */
643 void afb_req_fail_f(struct afb_req req, const char *status, const char *info, ...);
644 </code></pre>
645
646 <a name="Getting.argument.of.invocation"></a>
647 <h2>Getting argument of invocation</h2>
648
649 <p>Many verbs expect arguments. Afb-daemon let plugins
650 retrieve their arguments by name not by position.</p>
651
652 <p>Arguments are given by the requests either through HTTP
653 or through WebSockets.</p>
654
655 <p>For example, the verb <strong>join</strong> of the plugin <strong>tic-tac-toe</strong>
656 expects one argument: the <em>boardid</em> to join. Here is an extract:</p>
657
658 <pre><code>/*
659  * Join a board
660  */
661 static void join(struct afb_req req)
662 {
663         struct board *board, *new_board;
664         const char *id;
665
666         /* retrieves the context for the session */
667         board = board_of_req(req);
668         INFO(afbitf, "method 'join' called for boardid %d", board-&gt;id);
669
670         /* retrieves the argument */
671         id = afb_req_value(req, "boardid");
672         if (id == NULL)
673                 goto bad_request;
674         ...
675 </code></pre>
676
677 <p>The function <strong>afb_req_value</strong> search in the request <em>req</em>
678 for an argument whose name is given. When no argument of the
679 given name was passed, <strong>afb_req_value</strong> returns NULL.</p>
680
681 <blockquote><p>The search is case sensitive. So the name <em>boardid</em> is not the
682 same name than <em>BoardId</em>. But this must not be assumed so two
683 expected names of argument should not differ only by case.</p></blockquote>
684
685 <a name="Basic.functions.for.querying.arguments"></a>
686 <h3>Basic functions for querying arguments</h3>
687
688 <p>The function <strong>afb_req_value</strong> is defined as below:</p>
689
690 <pre><code>/*
691  * Gets from the request 'req' the string value of the argument of 'name'.
692  * Returns NULL if when there is no argument of 'name'.
693  * Returns the value of the argument of 'name' otherwise.
694  *
695  * Shortcut for: afb_req_get(req, name).value
696  */
697 static inline const char *afb_req_value(struct afb_req req, const char *name)
698 {
699         return afb_req_get(req, name).value;
700 }
701 </code></pre>
702
703 <p>It is defined as a shortcut to call the function <strong>afb_req_get</strong>.
704 That function is defined as below:</p>
705
706 <pre><code>/*
707  * Gets from the request 'req' the argument of 'name'.
708  * Returns a PLAIN structure of type 'struct afb_arg'.
709  * When the argument of 'name' is not found, all fields of result are set to NULL.
710  * When the argument of 'name' is found, the fields are filled,
711  * in particular, the field 'result.name' is set to 'name'.
712  *
713  * There is a special name value: the empty string.
714  * The argument of name "" is defined only if the request was made using
715  * an HTTP POST of Content-Type "application/json". In that case, the
716  * argument of name "" receives the value of the body of the HTTP request.
717  */
718 struct afb_arg afb_req_get(struct afb_req req, const char *name);
719 </code></pre>
720
721 <p>That function takes 2 parameters: the request and the name
722 of the argument to retrieve. It returns a PLAIN structure of
723 type <strong>struct afb_arg</strong>.</p>
724
725 <p>There is a special name that is defined when the request is
726 of type HTTP/POST with a Content-Type being application/json.
727 This name is <strong>&ldquo;&rdquo;</strong> (the empty string). In that case, the value
728 of this argument of empty name is the string received as a body
729 of the post and is supposed to be a JSON string.</p>
730
731 <p>The definition of <strong>struct afb_arg</strong> is:</p>
732
733 <pre><code>/*
734  * Describes an argument (or parameter) of a request
735  */
736 struct afb_arg {
737         const char *name;   /* name of the argument or NULL if invalid */
738         const char *value;  /* string representation of the value of the argument */
739                                 /* original filename of the argument if path != NULL */
740         const char *path;   /* if not NULL, path of the received file for the argument */
741                                 /* when the request is finalized this file is removed */
742 };
743 </code></pre>
744
745 <p>The structure returns the data arguments that are known for the
746 request. This data include a field named <strong>path</strong>. This <strong>path</strong>
747 can be accessed using the function <strong>afb_req_path</strong> defined as
748 below:</p>
749
750 <pre><code>/*
751  * Gets from the request 'req' the path for file attached to the argument of 'name'.
752  * Returns NULL if when there is no argument of 'name' or when there is no file.
753  * Returns the path of the argument of 'name' otherwise.
754  *
755  * Shortcut for: afb_req_get(req, name).path
756  */
757 static inline const char *afb_req_path(struct afb_req req, const char *name)
758 {
759         return afb_req_get(req, name).path;
760 }
761 </code></pre>
762
763 <p>The path is only defined for HTTP/POST requests that send file.</p>
764
765 <a name="Arguments.for.received.files"></a>
766 <h3>Arguments for received files</h3>
767
768 <p>As it is explained just above, clients can send files using
769 HTTP/POST requests.</p>
770
771 <p>Received files are attached to a arguments. For example, the
772 following HTTP fragment (from test/sample-post.html)
773 will send an HTTP/POST request to the method
774 <strong>post/upload-image</strong> with 2 arguments named <em>file</em> and
775 <em>hidden</em>.</p>
776
777 <pre><code>&lt;h2&gt;Sample Post File&lt;/h2&gt;
778 &lt;form enctype="multipart/form-data"&gt;
779     &lt;input type="file" name="file" /&gt;
780     &lt;input type="hidden" name="hidden" value="bollobollo" /&gt;
781     &lt;br&gt;
782     &lt;button formmethod="POST" formaction="api/post/upload-image"&gt;Post File&lt;/button&gt;
783 &lt;/form&gt;
784 </code></pre>
785
786 <p>In that case, the argument named <strong>file</strong> has its value and its
787 path defined and not NULL.</p>
788
789 <p>The value is the name of the file as it was
790 set by the HTTP client and is generally the filename on the
791 client side.</p>
792
793 <p>The path is the path of the file saved on the temporary local storage
794 area of the application. This is a randomly generated and unic filename
795 not linked in any way with the original filename on the client.</p>
796
797 <p>The plugin can use the file at the given path the way that it wants:
798 read, write, remove, copy, rename&hellip;
799 But when the reply is sent and the query is terminated, the file at
800 this path is destroyed if it still exist.</p>
801
802 <a name="Arguments.as.a.JSON.object"></a>
803 <h3>Arguments as a JSON object</h3>
804
805 <p>Plugins can get all the arguments as one single object.
806 This feature is provided by the function <strong>afb_req_json</strong>
807 that is defined as below:</p>
808
809 <pre><code>/*
810  * Gets from the request 'req' the json object hashing the arguments.
811  * The returned object must not be released using 'json_object_put'.
812  */
813 struct json_object *afb_req_json(struct afb_req req);
814 </code></pre>
815
816 <p>It returns a json object. This object depends on how the request was
817 made:</p>
818
819 <ul>
820 <li><p>For HTTP requests, this is an object whose keys are the names of the
821 arguments and whose values are either a string for common arguments or
822 an object like { &ldquo;file&rdquo;: &ldquo;&hellip;&rdquo;, &ldquo;path&rdquo;: &ldquo;&hellip;&rdquo; }</p></li>
823 <li><p>For WebSockets requests, the returned object is the object
824 given by the client transparently transported.</p></li>
825 </ul>
826
827
828 <blockquote><p>In fact, for Websockets requests, the function <strong>afb_req_value</strong>
829 can be seen as a shortcut to
830 <strong><em>json_object_get_string(json_object_object_get(afb_req_json(req), name))</em></strong></p></blockquote>
831
832 <a name="Initialisation.of.the.plugin.and.declaration.of.verbs"></a>
833 <h2>Initialisation of the plugin and declaration of verbs</h2>
834
835 <p>To be active, the verbs of the plugin should be declared to
836 afb-daemon. And even more, the plugin itself must be recorded.</p>
837
838 <p>The mechanism for doing this is very simple: when afb-need starts,
839 it loads the plugins that are listed in its argument or configuration.</p>
840
841 <p>Loading a plugin follows the following steps:</p>
842
843 <ol>
844 <li><p>It loads the plugin using <em>dlopen</em>.</p></li>
845 <li><p>It searchs for the symbol named <strong>pluginAfbV1Register</strong> using <em>dlsym</em>.
846 This symbol is assumed to be the exported initialisation function of the plugin.</p></li>
847 <li><p>It build an interface object for the plugin.</p></li>
848 <li><p>It calls the found function <strong>pluginAfbV1Register</strong> and pass it the pointer
849 to its interface.</p></li>
850 <li><p>The function <strong>pluginAfbV1Register</strong> setup the plugin, initialize it.</p></li>
851 <li><p>The function <strong>pluginAfbV1Register</strong> returns the pointer to a structure
852 that describes the plugin: its version, its name (prefix or API name), and the
853 list of its verbs.</p></li>
854 <li><p>Afb-daemon checks that the returned version and name can be managed.
855 If it can manage it, the plugin and its verbs are recorded and can be used
856 when afb-daemon finishes it initialisation.</p></li>
857 </ol>
858
859
860 <p>Here is the listing of the function <strong>pluginAfbV1Register</strong> of the plugin
861 <em>tic-tac-toe</em>:</p>
862
863 <pre><code>/*
864  * activation function for registering the plugin called by afb-daemon
865  */
866 const struct AFB_plugin *pluginAfbV1Register(const struct AFB_interface *itf)
867 {
868    afbitf = itf;         // records the interface for accessing afb-daemon
869    return &amp;plugin_description;  // returns the description of the plugin
870 }
871 </code></pre>
872
873 <p>This is a very small function because the <em>tic-tac-toe</em> plugin doesn&rsquo;t have initialisation step.
874 It merely record the daemon&rsquo;s interface and returns its descritption.</p>
875
876 <p>The variable <strong>afbitf</strong> is a variable global to the plugin. It records the
877 interface to afb-daemon and is used for logging and pushing events.
878 Here is its declaration:</p>
879
880 <pre><code>/*
881  * the interface to afb-daemon
882  */
883 const struct AFB_interface *afbitf;
884 </code></pre>
885
886 <p>The description of the plugin is defined as below.</p>
887
888 <pre><code>/*
889  * array of the verbs exported to afb-daemon
890  */
891 static const struct AFB_verb_desc_v1 plugin_verbs[] = {
892    /* VERB'S NAME     SESSION MANAGEMENT          FUNCTION TO CALL  SHORT DESCRIPTION */
893    { .name= "new",   .session= AFB_SESSION_NONE, .callback= new,   .info= "Starts a new game" },
894    { .name= "play",  .session= AFB_SESSION_NONE, .callback= play,  .info= "Asks the server to play" },
895    { .name= "move",  .session= AFB_SESSION_NONE, .callback= move,  .info= "Tells the client move" },
896    { .name= "board", .session= AFB_SESSION_NONE, .callback= board, .info= "Get the current board" },
897    { .name= "level", .session= AFB_SESSION_NONE, .callback= level, .info= "Set the server level" },
898    { .name= "join",  .session= AFB_SESSION_CHECK,.callback= join,  .info= "Join a board" },
899    { .name= "undo",  .session= AFB_SESSION_NONE, .callback= undo,  .info= "Undo the last move" },
900    { .name= "wait",  .session= AFB_SESSION_NONE, .callback= wait,  .info= "Wait for a change" },
901    { .name= NULL } /* marker for end of the array */
902 };
903
904 /*
905  * description of the plugin for afb-daemon
906  */
907 static const struct AFB_plugin plugin_description =
908 {
909    /* description conforms to VERSION 1 */
910    .type= AFB_PLUGIN_VERSION_1,
911    .v1= {               /* fills the v1 field of the union when AFB_PLUGIN_VERSION_1 */
912       .prefix= "tictactoe",     /* the API name (or plugin name or prefix) */
913       .info= "Sample tac-tac-toe game", /* short description of of the plugin */
914       .verbs = plugin_verbs     /* the array describing the verbs of the API */
915    }
916 };
917 </code></pre>
918
919 <p>The structure <strong>plugin_description</strong> describes the plugin.
920 It declares the type and version of the plugin, its name, a description
921 and a list of its verbs.</p>
922
923 <p>The list of verbs is an array of structures describing the verbs and terminated by a marker:
924 a verb whose name is NULL.</p>
925
926 <p>The description of the verbs for this version is made of 4 fields:</p>
927
928 <ul>
929 <li><p>the name of the verbs,</p></li>
930 <li><p>the session management flags,</p></li>
931 <li><p>the implementation function to be call for the verb,</p></li>
932 <li><p>a short description.</p></li>
933 </ul>
934
935
936 <p>The structure describing verbs is defined as follows:</p>
937
938 <pre><code>/*
939  * Description of one verb of the API provided by the plugin
940  * This enumeration is valid for plugins of type 1
941  */
942 struct AFB_verb_desc_v1
943 {
944        const char *name;                       /* name of the verb */
945        enum AFB_session_v1 session;            /* authorisation and session requirements of the verb */
946        void (*callback)(struct afb_req req);   /* callback function implementing the verb */
947        const char *info;                       /* textual description of the verb */
948 };
949 </code></pre>
950
951 <p>For technical reasons, the enumeration <strong>enum AFB_session_v1</strong> is not exactly an
952 enumeration but the wrapper of constant definitions that can be mixed using bitwise or
953 (the C operator |).</p>
954
955 <p>The constants that can bit mixed are:</p>
956
957 <table>
958 <thead>
959 <tr>
960 <th>Constant name        </th>
961 <th> Meaning</th>
962 </tr>
963 </thead>
964 <tbody>
965 <tr>
966 <td><strong>AFB_SESSION_CREATE</strong>   </td>
967 <td> Equals to AFB_SESSION_LOA_EQ_0|AFB_SESSION_RENEW</td>
968 </tr>
969 <tr>
970 <td><strong>AFB_SESSION_CLOSE</strong>    </td>
971 <td> Closes the session after the reply and set the LOA to 0</td>
972 </tr>
973 <tr>
974 <td><strong>AFB_SESSION_RENEW</strong>    </td>
975 <td> Refreshes the token of authentification</td>
976 </tr>
977 <tr>
978 <td><strong>AFB_SESSION_CHECK</strong>    </td>
979 <td> Just requires the token authentification</td>
980 </tr>
981 <tr>
982 <td><strong>AFB_SESSION_LOA_LE_0</strong> </td>
983 <td> Requires the current LOA to be lesser then or equal to 0</td>
984 </tr>
985 <tr>
986 <td><strong>AFB_SESSION_LOA_LE_1</strong> </td>
987 <td> Requires the current LOA to be lesser then or equal to 1</td>
988 </tr>
989 <tr>
990 <td><strong>AFB_SESSION_LOA_LE_2</strong> </td>
991 <td> Requires the current LOA to be lesser then or equal to 2</td>
992 </tr>
993 <tr>
994 <td><strong>AFB_SESSION_LOA_LE_3</strong> </td>
995 <td> Requires the current LOA to be lesser then or equal to 3</td>
996 </tr>
997 <tr>
998 <td><strong>AFB_SESSION_LOA_GE_0</strong> </td>
999 <td> Requires the current LOA to be greater then or equal to 0</td>
1000 </tr>
1001 <tr>
1002 <td><strong>AFB_SESSION_LOA_GE_1</strong> </td>
1003 <td> Requires the current LOA to be greater then or equal to 1</td>
1004 </tr>
1005 <tr>
1006 <td><strong>AFB_SESSION_LOA_GE_2</strong> </td>
1007 <td> Requires the current LOA to be greater then or equal to 2</td>
1008 </tr>
1009 <tr>
1010 <td><strong>AFB_SESSION_LOA_GE_3</strong> </td>
1011 <td> Requires the current LOA to be greater then or equal to 3</td>
1012 </tr>
1013 <tr>
1014 <td><strong>AFB_SESSION_LOA_EQ_0</strong> </td>
1015 <td> Requires the current LOA to be equal to 0</td>
1016 </tr>
1017 <tr>
1018 <td><strong>AFB_SESSION_LOA_EQ_1</strong> </td>
1019 <td> Requires the current LOA to be equal to 1</td>
1020 </tr>
1021 <tr>
1022 <td><strong>AFB_SESSION_LOA_EQ_2</strong> </td>
1023 <td> Requires the current LOA to be equal to 2</td>
1024 </tr>
1025 <tr>
1026 <td><strong>AFB_SESSION_LOA_EQ_3</strong> </td>
1027 <td> Requires the current LOA to be equal to 3</td>
1028 </tr>
1029 </tbody>
1030 </table>
1031
1032
1033 <p>If any of this flags is set, afb-daemon requires the token authentification
1034 as if the flag <strong>AFB_SESSION_CHECK</strong> had been set.</p>
1035
1036 <p>The special value <strong>AFB_SESSION_NONE</strong> is zero and can be used to avoid any check.</p>
1037
1038 <blockquote><p>Note that <strong>AFB_SESSION_CREATE</strong> and <strong>AFB_SESSION_CLOSE</strong> might be removed in later versions.</p></blockquote>
1039
1040 <a name="Sending.messages.to.the.log.system"></a>
1041 <h2>Sending messages to the log system</h2>
1042
1043 <p>Afb-daemon provides 4 levels of verbosity and 5 verbs for logging messages.</p>
1044
1045 <p>The verbosity is managed. Options allow the change the verbosity of afb-daemon
1046 and the verbosity of the plugins can be set plugin by plugin.</p>
1047
1048 <p>The verbs for logging messages are defined as macros that test the
1049 verbosity level and that call the real logging function only if the
1050 message must be output. This avoid evaluation of arguments of the
1051 formatting messages if the message must not be output.</p>
1052
1053 <a name="Verbs.for.logging.messages"></a>
1054 <h3>Verbs for logging messages</h3>
1055
1056 <p>The 5 logging verbs are:</p>
1057
1058 <table>
1059 <thead>
1060 <tr>
1061 <th>Macro   </th>
1062 <th style="text-align:center;"> Verbosity </th>
1063 <th> Meaning                       </th>
1064 <th style="text-align:center;"> syslog level</th>
1065 </tr>
1066 </thead>
1067 <tbody>
1068 <tr>
1069 <td>ERROR   </td>
1070 <td style="text-align:center;">     0     </td>
1071 <td> Error conditions              </td>
1072 <td style="text-align:center;">     3</td>
1073 </tr>
1074 <tr>
1075 <td>WARNING </td>
1076 <td style="text-align:center;">     1     </td>
1077 <td> Warning conditions            </td>
1078 <td style="text-align:center;">     4</td>
1079 </tr>
1080 <tr>
1081 <td>NOTICE  </td>
1082 <td style="text-align:center;">     1     </td>
1083 <td> Normal but significant condition  </td>
1084 <td style="text-align:center;">     5</td>
1085 </tr>
1086 <tr>
1087 <td>INFO    </td>
1088 <td style="text-align:center;">     2     </td>
1089 <td> Informational                 </td>
1090 <td style="text-align:center;">     6</td>
1091 </tr>
1092 <tr>
1093 <td>DEBUG   </td>
1094 <td style="text-align:center;">     3     </td>
1095 <td> Debug-level messages          </td>
1096 <td style="text-align:center;">     7</td>
1097 </tr>
1098 </tbody>
1099 </table>
1100
1101
1102 <p>You can note that the 2 verbs <strong>WARNING</strong> and <strong>INFO</strong> have the same level
1103 of verbosity. But they don&rsquo;t have the same <em>syslog level</em>. It means that
1104 they are output with a different level on the logging system.</p>
1105
1106 <p>All of these verbs have the same signature:</p>
1107
1108 <pre><code>void ERROR(const struct AFB_interface *afbitf, const char *message, ...);
1109 </code></pre>
1110
1111 <p>The first argument <strong>afbitf</strong> is the interface to afb daemon that the
1112 plugin received at its initialisation when <strong>pluginAfbV1Register</strong> was called.</p>
1113
1114 <p>The second argument <strong>message</strong> is a formatting string compatible with printf/sprintf.</p>
1115
1116 <p>The remaining arguments are arguments of the formating message like for printf.</p>
1117
1118 <a name="Managing.verbosity"></a>
1119 <h3>Managing verbosity</h3>
1120
1121 <p>Depending on the level of verbosity, the messages are output or not.
1122 The following table explains what messages will be output depending
1123 ont the verbosity level.</p>
1124
1125 <table>
1126 <thead>
1127 <tr>
1128 <th style="text-align:center;">Level of verbosity </th>
1129 <th> Outputed macro</th>
1130 </tr>
1131 </thead>
1132 <tbody>
1133 <tr>
1134 <td style="text-align:center;">0          </td>
1135 <td> ERROR</td>
1136 </tr>
1137 <tr>
1138 <td style="text-align:center;">1          </td>
1139 <td> ERROR + WARNING + NOTICE</td>
1140 </tr>
1141 <tr>
1142 <td style="text-align:center;">2          </td>
1143 <td> ERROR + WARNING + NOTICE + INFO</td>
1144 </tr>
1145 <tr>
1146 <td style="text-align:center;">3          </td>
1147 <td> ERROR + WARNING + NOTICE + INFO + DEBUG</td>
1148 </tr>
1149 </tbody>
1150 </table>
1151
1152
1153 <a name="Output.format.and.destination"></a>
1154 <h3>Output format and destination</h3>
1155
1156 <p>The syslog level is used for forging a prefix to the message.
1157 The prefixes are:</p>
1158
1159 <table>
1160 <thead>
1161 <tr>
1162 <th style="text-align:center;">syslog level </th>
1163 <th> prefix</th>
1164 </tr>
1165 </thead>
1166 <tbody>
1167 <tr>
1168 <td style="text-align:center;">0      </td>
1169 <td> <0> EMERGENCY</td>
1170 </tr>
1171 <tr>
1172 <td style="text-align:center;">1      </td>
1173 <td> <1> ALERT</td>
1174 </tr>
1175 <tr>
1176 <td style="text-align:center;">2      </td>
1177 <td> <2> CRITICAL</td>
1178 </tr>
1179 <tr>
1180 <td style="text-align:center;">3      </td>
1181 <td> <3> ERROR</td>
1182 </tr>
1183 <tr>
1184 <td style="text-align:center;">4      </td>
1185 <td> <4> WARNING</td>
1186 </tr>
1187 <tr>
1188 <td style="text-align:center;">5      </td>
1189 <td> <5> NOTICE</td>
1190 </tr>
1191 <tr>
1192 <td style="text-align:center;">6      </td>
1193 <td> <6> INFO</td>
1194 </tr>
1195 <tr>
1196 <td style="text-align:center;">7      </td>
1197 <td> <7> DEBUG</td>
1198 </tr>
1199 </tbody>
1200 </table>
1201
1202
1203 <p>The message is issued to the standard error.
1204 The final destination of the message depends on how the systemd service
1205 was configured through the variable <strong>StandardError</strong>: It can be
1206 journal, syslog or kmsg. (See man sd-daemon).</p>
1207
1208 <a name="Sending.events"></a>
1209 <h2>Sending events</h2>
1210
1211 <p>Since version 0.5, plugins can broadcast events to any potential listener.
1212 This kind of bradcast is not targeted. Event targeted will come in a future
1213 version of afb-daemon.</p>
1214
1215 <p>The plugin <em>tic-tac-toe</em> broadcasts events when the board changes.
1216 This is done in the function <strong>changed</strong>:</p>
1217
1218 <pre><code>/*
1219  * signals a change of the board
1220  */
1221 static void changed(struct board *board, const char *reason)
1222 {
1223         ...
1224         struct json_object *description;
1225
1226         /* get the description */
1227         description = describe(board);
1228
1229         ...
1230
1231         afb_daemon_broadcast_event(afbitf-&gt;daemon, reason, description);
1232 }
1233 </code></pre>
1234
1235 <p>The description of the changed board is pushed via the daemon interface.</p>
1236
1237 <p>Within the plugin <em>tic-tac-toe</em>, the <em>reason</em> indicates the origin of
1238 the change. For the function <strong>afb_daemon_broadcast_event</strong>, the second
1239 parameter is the name of the broadcasted event. The third argument is the
1240 object that is transmitted with the event.</p>
1241
1242 <p>The function <strong>afb_daemon_broadcast_event</strong> is defined as below:</p>
1243
1244 <pre><code>/*
1245  * Broadcasts widely the event of 'name' with the data 'object'.
1246  * 'object' can be NULL.
1247  * 'daemon' MUST be the daemon given in interface when activating the plugin.
1248  */
1249 void afb_daemon_broadcast_event(struct afb_daemon daemon, const char *name, struct json_object *object);
1250 </code></pre>
1251
1252 <p>In fact the event name received by the listener is prefixed with
1253 the name of the plugin. So when the change occurs after a move, the
1254 reason is <strong>move</strong> and then the clients receive the event <strong>tictactoe/move</strong>.</p>
1255
1256 <blockquote><p>Note that nothing is said about the case sensitivity of event names.
1257 However, the event is always prefixed with the name that the plugin
1258 declared, with the same case, followed with a slash /.
1259 Thus it is safe to compare event using a case sensitive comparison.</p></blockquote>
1260
1261 <a name="Writing.an.asynchronous.verb.implementation"></a>
1262 <h2>Writing an asynchronous verb implementation</h2>
1263
1264 <p>/<em>
1265  * signals a change of the board
1266  </em>/
1267 static void changed(struct board <em>board, const char </em>reason)
1268 {
1269     struct waiter <em>waiter, </em>next;
1270     struct json_object *description;</p>
1271
1272 <pre><code>/* get the description */
1273 description = describe(board);
1274
1275 waiter = board-&gt;waiters;
1276 board-&gt;waiters = NULL;
1277 while (waiter != NULL) {
1278         next = waiter-&gt;next;
1279         afb_req_success(waiter-&gt;req, json_object_get(description), reason);
1280         afb_req_unref(waiter-&gt;req);
1281         free(waiter);
1282         waiter = next;
1283 }
1284
1285 afb_event_sender_push(afb_daemon_get_event_sender(afbitf-&gt;daemon), reason, description);
1286 </code></pre>
1287
1288 <p>}</p>
1289
1290 <a name="How.to.build.a.plugin"></a>
1291 <h2>How to build a plugin</h2>
1292
1293 <p>Afb-daemon provides a <em>pkg-config</em> configuration file that can be
1294 queried by the name <strong>afb-daemon</strong>.
1295 This configuration file provides data that should be used
1296 for compiling plugins. Examples:</p>
1297
1298 <pre><code>$ pkg-config --cflags afb-daemon
1299 $ pkg-config --libs afb-daemon
1300 </code></pre>
1301
1302 <a name="Example.for.cmake.meta.build.system"></a>
1303 <h3>Example for cmake meta build system</h3>
1304
1305 <p>This example is the extract for building the plugin <em>afm-main</em> using <em>CMAKE</em>.</p>
1306
1307 <pre><code>pkg_check_modules(afb afb-daemon)
1308 if(afb_FOUND)
1309         message(STATUS "Creation afm-main-plugin for AFB-DAEMON")
1310         add_library(afm-main-plugin MODULE afm-main-plugin.c)
1311         target_compile_options(afm-main-plugin PRIVATE ${afb_CFLAGS})
1312         target_include_directories(afm-main-plugin PRIVATE ${afb_INCLUDE_DIRS})
1313         target_link_libraries(afm-main-plugin utils ${afb_LIBRARIES})
1314         set_target_properties(afm-main-plugin PROPERTIES
1315                 PREFIX ""
1316                 LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/afm-main-plugin.export-map"
1317         )
1318         install(TARGETS afm-main-plugin LIBRARY DESTINATION ${plugin_dir})
1319 else()
1320         message(STATUS "Not creating the plugin for AFB-DAEMON")
1321 endif()
1322 </code></pre>
1323
1324 <p>Let now describe some of these lines.</p>
1325
1326 <pre><code>pkg_check_modules(afb afb-daemon)
1327 </code></pre>
1328
1329 <p>This first lines searches to the <em>pkg-config</em> configuration file for
1330 <strong>afb-daemon</strong>. Resulting data are stored in the following variables:</p>
1331
1332 <table>
1333 <thead>
1334 <tr>
1335 <th>Variable      </th>
1336 <th> Meaning</th>
1337 </tr>
1338 </thead>
1339 <tbody>
1340 <tr>
1341 <td>afb_FOUND     </td>
1342 <td> Set to 1 if afb-daemon plugin development files exist</td>
1343 </tr>
1344 <tr>
1345 <td>afb_LIBRARIES     </td>
1346 <td> Only the libraries (w/o the &lsquo;-l&rsquo;) for compiling afb-daemon plugins</td>
1347 </tr>
1348 <tr>
1349 <td>afb_LIBRARY_DIRS  </td>
1350 <td> The paths of the libraries (w/o the &lsquo;-L&rsquo;) for compiling afb-daemon plugins</td>
1351 </tr>
1352 <tr>
1353 <td>afb_LDFLAGS       </td>
1354 <td> All required linker flags for compiling afb-daemon plugins</td>
1355 </tr>
1356 <tr>
1357 <td>afb_INCLUDE_DIRS  </td>
1358 <td> The &lsquo;-I&rsquo; preprocessor flags (w/o the &lsquo;-I&rsquo;) for compiling afb-daemon plugins</td>
1359 </tr>
1360 <tr>
1361 <td>afb_CFLAGS    </td>
1362 <td> All required cflags for compiling afb-daemon plugins</td>
1363 </tr>
1364 </tbody>
1365 </table>
1366
1367
1368 <p>If development files are found, the plugin can be added to the set of
1369 target to build.</p>
1370
1371 <pre><code>add_library(afm-main-plugin MODULE afm-main-plugin.c)
1372 </code></pre>
1373
1374 <p>This line asks to create a shared library having only the
1375 source file afm-main-plugin.c (that is compiled).
1376 The default name of the created shared object is
1377 <strong>libafm-main-plugin.so</strong>.</p>
1378
1379 <pre><code>set_target_properties(afm-main-plugin PROPERTIES
1380         PREFIX ""
1381         LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/afm-main-plugin.export-map"
1382 )
1383 </code></pre>
1384
1385 <p>This lines are doing two things:</p>
1386
1387 <ol>
1388 <li><p>It renames the built library from <strong>libafm-main-plugin.so</strong> to <strong>afm-main-plugin.so</strong>
1389 by removing the implicitely added prefix <em>lib</em>. This step is not mandatory
1390 at all because afb-daemon doesn&rsquo;t check names of files when loading it.
1391 The only convention that use afb-daemon is that extension is <strong>.so</strong>
1392 but this convention is used only when afb-daemon discovers plugin
1393 from a directory hierarchy.</p></li>
1394 <li><p>It applies a version script at link to only export the conventional name
1395 of the entry point: <strong>pluginAfbV1Register</strong>. See below. By default, the linker
1396 that creates the shared object exports all the public symbols (C functions that
1397 are not <strong>static</strong>).</p></li>
1398 </ol>
1399
1400
1401 <p>Next line are:</p>
1402
1403 <pre><code>target_include_directories(afm-main-plugin PRIVATE ${afb_INCLUDE_DIRS})
1404 target_link_libraries(afm-main-plugin utils ${afb_LIBRARIES})
1405 </code></pre>
1406
1407 <p>As you can see it uses the variables computed by <strong><em>pkg_check_modules(afb afb-daemon)</em></strong>
1408 to configure the compiler and the linker.</p>
1409
1410 <a name="Exporting.the.function.pluginAfbV1Register"></a>
1411 <h3>Exporting the function pluginAfbV1Register</h3>
1412
1413 <p>The function <strong>pluginAfbV1Register</strong> must be exported. This can be achieved
1414 using a version script when linking. Here is the version script that is
1415 used for <em>tic-tac-toe</em> (plugins/samples/export.map).</p>
1416
1417 <pre><code>{ global: pluginAfbV1Register; local: *; };
1418 </code></pre>
1419
1420 <p>This sample <a href="https://sourceware.org/binutils/docs-2.26/ld/VERSION.html#VERSION">version script</a>
1421 exports as global the symbol <em>pluginAfbV1Register</em> and hides any
1422 other symbols.</p>
1423
1424 <p>This version script is added to the link options using the
1425 option <strong>&ndash;version-script=export.map</strong> is given directly to the
1426 linker or using th option <strong>-Wl,&ndash;version-script=export.map</strong>
1427 when the option is given to the C compiler.</p>
1428
1429 <a name="Building.within.yocto"></a>
1430 <h3>Building within yocto</h3>
1431
1432 <p>Adding a dependency to afb-daemon is enough. See below:</p>
1433
1434 <pre><code>DEPENDS += " afb-daemon "
1435 </code></pre>
1436 </body>
1437 </html>