291b7f799d2e22ac8b122551a45dd4a5c8c0d5b0
[src/app-framework-binder.git] / doc / afb-plugins-overview.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta charset="utf-8">
5   <meta name="generator" content="pandoc">
6   <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
7   <meta name="author" content="Manuel Bachmann">
8   <meta name="author" content="José Bollo">
9   <title>Overview of plugins shipped with AFB-Daemon</title>
10   <style type="text/css">code{white-space: pre;}</style>
11   <!--[if lt IE 9]>
12     <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
13   <![endif]-->
14   <link rel="stylesheet" href="doc.css">
15 </head>
16 <body>
17 <header>
18 <h1 class="title">Overview of plugins shipped with AFB-Daemon</h1>
19 <h2 class="author">Manuel Bachmann</h2>
20 <h2 class="author">José Bollo</h2>
21 <h3 class="date">09 juin 2016</h3>
22 </header>
23 <nav id="TOC">
24 <ul>
25 <li><a href="#overview-of-plugins-shipped-with-afb-daemon">Overview of plugins shipped with AFB-Daemon</a><ul>
26 <li><a href="#list-of-plugins">List of plugins</a></li>
27 <li><a href="#detail-of-plugins">Detail of plugins</a><ul>
28 <li><a href="#hello-world">Hello World</a></li>
29 <li><a href="#authentication">Authentication</a></li>
30 <li><a href="#tic-tac-toe">Tic Tac Toe</a></li>
31 <li><a href="#audio">Audio</a></li>
32 <li><a href="#radio">Radio</a></li>
33 <li><a href="#media">Media</a></li>
34 </ul></li>
35 </ul></li>
36 </ul>
37 </nav>
38 <h1 id="overview-of-plugins-shipped-with-afb-daemon">Overview of plugins shipped with AFB-Daemon</h1>
39 <pre><code>Version: 1
40 Date:    09 juin 2016
41 Author:  Manuel Bachmann</code></pre>
42 <h2 id="list-of-plugins">List of plugins</h2>
43 <p>Here are the plugins shipped in the source tree:</p>
44 <ul>
45 <li>Hello World</li>
46 <li>Authentication</li>
47 <li>Tic Tac Toe</li>
48 <li>Audio <em>(2 backends: ALSA/PulseAudio)</em></li>
49 <li>Radio <em>(1 backend: RTLSDR RTL2832U)</em></li>
50 <li>Media <em>(1 backend: Rygel UPnP)</em></li>
51 </ul>
52 <p>All plugins may not be built, depending on the development libraries present on the system at build time.</p>
53 <h2 id="detail-of-plugins">Detail of plugins</h2>
54 <h3 id="hello-world">Hello World</h3>
55 <p>A sample Hello World plugin for demonstration and learning purposes.</p>
56 <p>This plugin provides a few unauthenticated requests, all beginning with &quot;ping&quot;, to demonstrate basic binder capabilities.</p>
57 <p><strong>Verbs</strong>:</p>
58 <ul>
59 <li><em>ping:</em> returns a success response</li>
60 <li><em>pingfail:</em> returns a failure response</li>
61 <li><em>pingnull:</em> returns a success response, with an empty JSON response field</li>
62 <li><em>pingbug:</em> does a memory violation (intercepted by the binder)</li>
63 <li><em>pingJson:</em> returns a success response, with a complex JSON response field</li>
64 <li><em>pingevent:</em> broadcasts a global event</li>
65 </ul>
66 <p><br /></p>
67 <h3 id="authentication">Authentication</h3>
68 <p>An sample Authentication plugin for demonstration purposes.</p>
69 <p>This plugin provides a few requests to demonstrate the binder's token-based security mechanism.</p>
70 <p>Calling &quot;<em>connect</em>&quot; with a security token will initiate a session, calling &quot;<em>refresh</em>&quot; will issue a new token and invalidate the previous one, calling &quot;<em>logout</em>&quot; will invalidate all tokens and close the session.</p>
71 <p><strong>Verbs</strong>:</p>
72 <ul>
73 <li><em>ping:</em> returns a success response</li>
74 <li><em>connect:</em> creates a session and returns a new token</li>
75 <li><em>refresh:</em> returns a new token</li>
76 <li><em>check:</em> verifies the passed token is valid</li>
77 <li><em>logout:</em> closes the session</li>
78 </ul>
79 <p><br /></p>
80 <h3 id="tic-tac-toe">Tic Tac Toe</h3>
81 <p>A sample Tic Tac Toe game plugin.</p>
82 <p>This plugin provides an interactive Tic Tac Toe game where the binder returns the grid as a JSON response.</p>
83 <p><strong>Verbs</strong>:</p>
84 <ul>
85 <li><em>new:</em> starts a new game</li>
86 <li><em>play:</em> asks the server to play</li>
87 <li><em>move:</em> gives a client move</li>
88 <li><em>board:</em> gets the current board state, as a JSON structure</li>
89 <li><em>level</em>: sets the server level</li>
90 <li><em>join</em>: joins an existing board</li>
91 <li><em>undo</em>: undo the last move</li>
92 <li><em>wait</em>: wait for a move</li>
93 </ul>
94 <p><br /></p>
95 <h3 id="audio">Audio</h3>
96 <p>A sample Audio plugin with 2 backends:</p>
97 <ul>
98 <li>ALSA (mandatory)</li>
99 <li>PulseAudio (optional)</li>
100 </ul>
101 <p>This plugin is able to initialize a specific soundcard, define volume levels, channels (mono/stereo...), mute sound, and play a 22,050 Hz PCM stream.</p>
102 <p><strong>Verbs</strong>:</p>
103 <ul>
104 <li><em>ping:</em> returns a success response</li>
105 <li><em>init:</em> initializes backend, on the &quot;default&quot; sound card</li>
106 <li><em>volume:</em> gets or sets volume, in % (0-100)</li>
107 <li><em>channels:</em> gets or sets channels count (1-8)</li>
108 <li><em>mute:</em> gets or sets the mute status (on-off)</li>
109 <li><em>play</em>: gets or sets the playing status (on-off)</li>
110 </ul>
111 <p><em>(if PulseAudio development libraries are not found at build time, only ALSA will be available)</em></p>
112 <p><em>(if a PulseAudio server is not found at runtime, the plugin will dynamically fall back to ALSA)</em></p>
113 <p><em>(a specifc backend can be forced by using this syntax before running afb-daemon : <strong>$ export AFB_AUDIO_OUTPUT=Alsa</strong>)</em></p>
114 <p><br /></p>
115 <h3 id="radio">Radio</h3>
116 <p>A sample AM/FM Radio plugin with 1 backend:</p>
117 <ul>
118 <li>RTLSDR - Realtek RTL2832U dongles (mandatory)</li>
119 </ul>
120 <p>This plugin is able to initialize specific RTL2832U dongles, switch between AM/FM modes, define frequency, mute sound, and play sound (if combining with the <strong>audio</strong> plugin).</p>
121 <p><strong>Verbs</strong>:</p>
122 <ul>
123 <li><em>ping:</em> returns a success response</li>
124 <li><em>init:</em> initializes backend, looking for plugged-in devices</li>
125 <li><em>power:</em> sets device power status (on-off)</li>
126 <li><em>mode:</em> sets device reception mode (AM-FM)</li>
127 <li><em>freq:</em> sets device frequency (in Hz)</li>
128 <li><em>mute</em>: sets device mute status (on-off)</li>
129 <li><em>play</em>: sets device playing status (on-off)</li>
130 </ul>
131 <p><em>(if rtlsdr development libraries are not found at build time, this plugin will not be built)</em></p>
132 <p><br /></p>
133 <h3 id="media">Media</h3>
134 <p>A sample Media Server plugin with 1 backend:</p>
135 <ul>
136 <li>Rygel</li>
137 </ul>
138 <p>This plugin is able to detect a local Rygel UPnP media server, list audio files, select an audio file for playback, play/pause/seek in this file, upload an audio file to the server.</p>
139 <p><strong>Verbs</strong>:</p>
140 <ul>
141 <li><em>ping:</em> returns a success response</li>
142 <li><em>init:</em> initializes backend, looking for an active local UPnP server</li>
143 <li><em>list:</em> returns list of audio files, as a JSON structure</li>
144 <li><em>select:</em> select an audio files, by index number (001-...)</li>
145 <li><em>play:</em> plays the currently selected audio file</li>
146 <li><em>stop:</em> stops the currently selected audio file</li>
147 <li><em>pause:</em> pauses the currently selected audio file</li>
148 <li><em>seek:</em> seeks in the currently selected audio file, in seconds</li>
149 <li><em>upload:</em> uploads an audio file, with a POST request</li>
150 </ul>
151 <p><em>(if GUPnP/GSSDP development libraries are not fund at build time, this plugin will not be built)</em></p>
152 <p><br /></p>
153 <hr />
154 <p><br /></p>
155 <p>Sample command-line applications: <em>afb-client-demo</em> (built by default)</p>
156 <p>Sample HTML5 applications: **test/*.html<strong>, </strong><a href="https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/app-framework-demo.git;a=tree">afb-client</a><strong>, </strong><a href="https://github.com/iotbzh/afb-radio">afb-radio</a>**</p>
157 <p>Sample Qt/QML applications: <em>test/token-websock.qml</em></p>
158 </body>
159 </html>