]> sigrok.org Git - libsigrokdecode.git/blame - session.c
uart: handle zero stop bits configuration
[libsigrokdecode.git] / session.c
CommitLineData
fe9d91a8
BV
1/*
2 * This file is part of the libsigrokdecode project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
36784362 21#include <config.h>
f6c7eade
MC
22#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
23#include "libsigrokdecode.h"
d95f2888 24#include <inttypes.h>
fe9d91a8
BV
25#include <glib.h>
26
27/**
28 * @file
29 *
30 * Session handling.
31 */
32
33/**
34 * @defgroup grp_session Session handling
35 *
36 * Starting and handling decoding sessions.
37 *
38 * @{
39 */
40
41/** @cond PRIVATE */
42
43SRD_PRIV GSList *sessions = NULL;
23a29d24 44SRD_PRIV int max_session_id = -1;
fe9d91a8
BV
45
46/** @endcond */
47
fe9d91a8
BV
48/**
49 * Create a decoding session.
50 *
51 * A session holds all decoder instances, their stack relationships and
52 * output callbacks.
53 *
54 * @param sess A pointer which will hold a pointer to a newly
4ccebbd3 55 * initialized session on return. Must not be NULL.
fe9d91a8
BV
56 *
57 * @return SRD_OK upon success, a (negative) error code otherwise.
58 *
59 * @since 0.3.0
60 */
61SRD_API int srd_session_new(struct srd_session **sess)
62{
4ccebbd3 63 if (!sess)
fe9d91a8 64 return SRD_ERR_ARG;
fe9d91a8 65
077fa8ac 66 *sess = g_malloc(sizeof(struct srd_session));
fe9d91a8
BV
67 (*sess)->session_id = ++max_session_id;
68 (*sess)->di_list = (*sess)->callbacks = NULL;
69
70 /* Keep a list of all sessions, so we can clean up as needed. */
71 sessions = g_slist_append(sessions, *sess);
72
755e4a1e 73 srd_dbg("Creating session %d.", (*sess)->session_id);
fe9d91a8
BV
74
75 return SRD_OK;
76}
77
78/**
79 * Start a decoding session.
80 *
81 * Decoders, instances and stack must have been prepared beforehand,
82 * and all SRD_CONF parameters set.
83 *
4ccebbd3 84 * @param sess The session to start. Must not be NULL.
fe9d91a8
BV
85 *
86 * @return SRD_OK upon success, a (negative) error code otherwise.
87 *
88 * @since 0.3.0
89 */
90SRD_API int srd_session_start(struct srd_session *sess)
91{
92 GSList *d;
93 struct srd_decoder_inst *di;
94 int ret;
95
4ccebbd3
UH
96 if (!sess)
97 return SRD_ERR_ARG;
fe9d91a8 98
755e4a1e 99 srd_dbg("Calling start() of all instances in session %d.", sess->session_id);
fe9d91a8 100
755e4a1e 101 /* Run the start() method of all decoders receiving frontend data. */
fe9d91a8
BV
102 ret = SRD_OK;
103 for (d = sess->di_list; d; d = d->next) {
104 di = d->data;
105 if ((ret = srd_inst_start(di)) != SRD_OK)
106 break;
107 }
108
109 return ret;
110}
111
4467372a 112static int srd_inst_send_meta(struct srd_decoder_inst *di, int key,
fe9d91a8
BV
113 GVariant *data)
114{
115 PyObject *py_ret;
937e4c51
SB
116 GSList *l;
117 struct srd_decoder_inst *next_di;
118 int ret;
514b2edc 119 PyGILState_STATE gstate;
fe9d91a8
BV
120
121 if (key != SRD_CONF_SAMPLERATE)
122 /* This is the only key we pass on to the decoder for now. */
123 return SRD_OK;
124
514b2edc
UH
125 gstate = PyGILState_Ensure();
126
937e4c51
SB
127 if (PyObject_HasAttrString(di->py_inst, "metadata")) {
128 py_ret = PyObject_CallMethod(di->py_inst, "metadata", "lK",
129 (long)SRD_CONF_SAMPLERATE,
130 (unsigned long long)g_variant_get_uint64(data));
131 Py_XDECREF(py_ret);
132 }
fe9d91a8 133
514b2edc
UH
134 PyGILState_Release(gstate);
135
937e4c51
SB
136 /* Push metadata to all the PDs stacked on top of this one. */
137 for (l = di->next_di; l; l = l->next) {
138 next_di = l->data;
139 if ((ret = srd_inst_send_meta(next_di, key, data)) != SRD_OK)
140 return ret;
141 }
fe9d91a8
BV
142
143 return SRD_OK;
144}
145
146/**
147 * Set a metadata configuration key in a session.
148 *
4ccebbd3 149 * @param sess The session to configure. Must not be NULL.
fe9d91a8
BV
150 * @param key The configuration key (SRD_CONF_*).
151 * @param data The new value for the key, as a GVariant with GVariantType
152 * appropriate to that key. A floating reference can be passed
153 * in; its refcount will be sunk and unreferenced after use.
154 *
155 * @return SRD_OK upon success, a (negative) error code otherwise.
156 *
157 * @since 0.3.0
158 */
159SRD_API int srd_session_metadata_set(struct srd_session *sess, int key,
160 GVariant *data)
161{
162 GSList *l;
163 int ret;
164
4ccebbd3 165 if (!sess)
fe9d91a8 166 return SRD_ERR_ARG;
fe9d91a8 167
ca27aa8f
BV
168 if (!key) {
169 srd_err("Invalid key.");
170 return SRD_ERR_ARG;
171 }
172
173 if (!data) {
174 srd_err("Invalid value.");
175 return SRD_ERR_ARG;
176 }
177
178 /* Hardcoded to samplerate/uint64 for now. */
179
fe9d91a8
BV
180 if (key != SRD_CONF_SAMPLERATE) {
181 srd_err("Unknown config key %d.", key);
182 return SRD_ERR_ARG;
183 }
ca27aa8f
BV
184 if (!g_variant_is_of_type(data, G_VARIANT_TYPE_UINT64)) {
185 srd_err("Invalid value type: expected uint64, got %s",
186 g_variant_get_type_string(data));
187 return SRD_ERR_ARG;
188 }
fe9d91a8 189
23e806c2 190 srd_dbg("Setting session %d samplerate to %"G_GUINT64_FORMAT".",
fe9d91a8
BV
191 sess->session_id, g_variant_get_uint64(data));
192
193 ret = SRD_OK;
194 for (l = sess->di_list; l; l = l->next) {
195 if ((ret = srd_inst_send_meta(l->data, key, data)) != SRD_OK)
196 break;
197 }
198
199 g_variant_unref(data);
200
201 return ret;
202}
203
204/**
205 * Send a chunk of logic sample data to a running decoder session.
206 *
6a15597a
UH
207 * If no channel map has been set up, the logic samples must be arranged
208 * in channel order, in the least amount of space possible. The default
209 * channel set consists of all required channels + all optional channels.
fe9d91a8 210 *
cda2d36c
UH
211 * The size of a sample in inbuf is 'unitsize' bytes. If no channel map
212 * has been configured, it is the minimum number of bytes needed to store
213 * the default channels.
fe9d91a8 214 *
4564e8e5
UH
215 * The calls to this function must provide the samples that shall be
216 * used by the protocol decoder
217 * - in the correct order ([...]5, 6, 4, 7, 8[...] is a bug),
218 * - starting from sample zero (2, 3, 4, 5, 6[...] is a bug),
219 * - consecutively, with no gaps (0, 1, 2, 4, 5[...] is a bug).
220 *
221 * The start- and end-sample numbers are absolute sample numbers (relative
222 * to the start of the whole capture/file/stream), i.e. they are not relative
223 * sample numbers within the chunk specified by 'inbuf' and 'inbuflen'.
224 *
225 * Correct example (4096 samples total, 4 chunks @ 1024 samples each):
226 * srd_session_send(s, 0, 1023, inbuf, 1024, 1);
227 * srd_session_send(s, 1024, 2047, inbuf, 1024, 1);
228 * srd_session_send(s, 2048, 3071, inbuf, 1024, 1);
229 * srd_session_send(s, 3072, 4095, inbuf, 1024, 1);
230 *
231 * The chunk size ('inbuflen') can be arbitrary and can differ between calls.
232 *
233 * Correct example (4096 samples total, 7 chunks @ various samples each):
234 * srd_session_send(s, 0, 1023, inbuf, 1024, 1);
235 * srd_session_send(s, 1024, 1123, inbuf, 100, 1);
236 * srd_session_send(s, 1124, 1423, inbuf, 300, 1);
237 * srd_session_send(s, 1424, 1642, inbuf, 219, 1);
238 * srd_session_send(s, 1643, 2047, inbuf, 405, 1);
239 * srd_session_send(s, 2048, 3071, inbuf, 1024, 1);
240 * srd_session_send(s, 3072, 4095, inbuf, 1024, 1);
241 *
242 * INCORRECT example (4096 samples total, 4 chunks @ 1024 samples each, but
243 * the start- and end-samplenumbers are not absolute):
244 * srd_session_send(s, 0, 1023, inbuf, 1024, 1);
245 * srd_session_send(s, 0, 1023, inbuf, 1024, 1);
246 * srd_session_send(s, 0, 1023, inbuf, 1024, 1);
247 * srd_session_send(s, 0, 1023, inbuf, 1024, 1);
248 *
e27347a4 249 * @param sess The session to use. Must not be NULL.
4564e8e5
UH
250 * @param abs_start_samplenum The absolute starting sample number for the
251 * buffer's sample set, relative to the start of capture.
252 * @param abs_end_samplenum The absolute ending sample number for the
253 * buffer's sample set, relative to the start of capture.
e27347a4
UH
254 * @param inbuf Pointer to sample data. Must not be NULL.
255 * @param inbuflen Length in bytes of the buffer. Must be > 0.
256 * @param unitsize The number of bytes per sample. Must be > 0.
fe9d91a8
BV
257 *
258 * @return SRD_OK upon success, a (negative) error code otherwise.
259 *
cda2d36c 260 * @since 0.4.0
fe9d91a8
BV
261 */
262SRD_API int srd_session_send(struct srd_session *sess,
4564e8e5 263 uint64_t abs_start_samplenum, uint64_t abs_end_samplenum,
cda2d36c 264 const uint8_t *inbuf, uint64_t inbuflen, uint64_t unitsize)
fe9d91a8
BV
265{
266 GSList *d;
267 int ret;
268
4ccebbd3 269 if (!sess)
fe9d91a8 270 return SRD_ERR_ARG;
fe9d91a8 271
fe9d91a8 272 for (d = sess->di_list; d; d = d->next) {
4564e8e5
UH
273 if ((ret = srd_inst_decode(d->data, abs_start_samplenum,
274 abs_end_samplenum, inbuf, inbuflen, unitsize)) != SRD_OK)
fe9d91a8
BV
275 return ret;
276 }
277
278 return SRD_OK;
279}
280
819e5089
GS
281/**
282 * Communicate the end of the stream of sample data to the session.
283 *
284 * @param[in] sess The session. Must not be NULL.
285 *
286 * @return SRD_OK upon success. A (negative) error code otherwise.
287 *
288 * @since 0.6.0
289 */
290SRD_API int srd_session_send_eof(struct srd_session *sess)
291{
292 GSList *d;
293 int ret;
294
295 if (!sess)
296 return SRD_ERR_ARG;
297
298 for (d = sess->di_list; d; d = d->next) {
299 ret = srd_inst_send_eof(d->data);
300 if (ret != SRD_OK)
301 return ret;
302 }
303
304 return SRD_OK;
305}
306
9553e962
GS
307/**
308 * Terminate currently executing decoders in a session, reset internal state.
309 *
310 * All decoder instances have their .wait() method terminated, which
311 * shall terminate .decode() as well. Afterwards the decoders' optional
312 * .reset() method gets executed.
313 *
314 * This routine allows callers to abort pending expensive operations,
315 * when they are no longer interested in the decoders' results. Note
316 * that the decoder state is lost and aborted work cannot resume.
317 *
318 * This routine also allows callers to re-use previously created decoder
319 * stacks to process new input data which is not related to previously
320 * processed input data. This avoids the necessity to re-construct the
321 * decoder stack.
322 *
4ccebbd3
UH
323 * @param sess The session in which to terminate decoders. Must not be NULL.
324 *
9553e962
GS
325 * @return SRD_OK upon success, a (negative) error code otherwise.
326 *
3a063627 327 * @since 0.5.1
9553e962
GS
328 */
329SRD_API int srd_session_terminate_reset(struct srd_session *sess)
330{
331 GSList *d;
332 int ret;
333
4ccebbd3 334 if (!sess)
9553e962 335 return SRD_ERR_ARG;
9553e962
GS
336
337 for (d = sess->di_list; d; d = d->next) {
338 ret = srd_inst_terminate_reset(d->data);
339 if (ret != SRD_OK)
340 return ret;
341 }
7969d803 342
9553e962
GS
343 return SRD_OK;
344}
345
fe9d91a8
BV
346/**
347 * Destroy a decoding session.
348 *
349 * All decoder instances and output callbacks are properly released.
350 *
4ccebbd3 351 * @param sess The session to be destroyed. Must not be NULL.
fe9d91a8
BV
352 *
353 * @return SRD_OK upon success, a (negative) error code otherwise.
354 *
355 * @since 0.3.0
356 */
357SRD_API int srd_session_destroy(struct srd_session *sess)
358{
359 int session_id;
360
4ccebbd3 361 if (!sess)
fe9d91a8 362 return SRD_ERR_ARG;
fe9d91a8
BV
363
364 session_id = sess->session_id;
365 if (sess->di_list)
3262ef02 366 srd_inst_free_all(sess);
fe9d91a8
BV
367 if (sess->callbacks)
368 g_slist_free_full(sess->callbacks, g_free);
369 sessions = g_slist_remove(sessions, sess);
370 g_free(sess);
371
372 srd_dbg("Destroyed session %d.", session_id);
373
374 return SRD_OK;
375}
376
377/**
378 * Register/add a decoder output callback function.
379 *
380 * The function will be called when a protocol decoder sends output back
381 * to the PD controller (except for Python objects, which only go up the
382 * stack).
383 *
384 * @param sess The output session in which to register the callback.
4ccebbd3 385 * Must not be NULL.
fe9d91a8
BV
386 * @param output_type The output type this callback will receive. Only one
387 * callback per output type can be registered.
388 * @param cb The function to call. Must not be NULL.
389 * @param cb_data Private data for the callback function. Can be NULL.
390 *
391 * @since 0.3.0
392 */
393SRD_API int srd_pd_output_callback_add(struct srd_session *sess,
2372b199 394 int output_type, srd_pd_output_callback cb, void *cb_data)
fe9d91a8
BV
395{
396 struct srd_pd_callback *pd_cb;
397
4ccebbd3 398 if (!sess)
fe9d91a8 399 return SRD_ERR_ARG;
fe9d91a8 400
5c723a57
UH
401 srd_dbg("Registering new callback for output type %s.",
402 output_type_name(output_type));
fe9d91a8 403
077fa8ac 404 pd_cb = g_malloc(sizeof(struct srd_pd_callback));
fe9d91a8
BV
405 pd_cb->output_type = output_type;
406 pd_cb->cb = cb;
407 pd_cb->cb_data = cb_data;
408 sess->callbacks = g_slist_append(sess->callbacks, pd_cb);
409
410 return SRD_OK;
411}
412
413/** @private */
414SRD_PRIV struct srd_pd_callback *srd_pd_output_callback_find(
415 struct srd_session *sess, int output_type)
416{
417 GSList *l;
418 struct srd_pd_callback *tmp, *pd_cb;
419
4ccebbd3 420 if (!sess)
fe9d91a8 421 return NULL;
fe9d91a8
BV
422
423 pd_cb = NULL;
424 for (l = sess->callbacks; l; l = l->next) {
425 tmp = l->data;
426 if (tmp->output_type == output_type) {
427 pd_cb = tmp;
428 break;
429 }
430 }
431
432 return pd_cb;
433}
434
435/** @} */