]> sigrok.org Git - libsigrok.git/blame - src/session.c
session: Fix USB timeout handling
[libsigrok.git] / src / session.c
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <stdio.h>
21#include <stdlib.h>
22#include <unistd.h>
23#include <string.h>
544a4582 24#include <glib.h>
c1aae900 25#include <libsigrok/libsigrok.h>
45c59c8b 26#include "libsigrok-internal.h"
aa4b1107 27
2ad1deb8 28/** @cond PRIVATE */
3544f848 29#define LOG_PREFIX "session"
2ad1deb8 30/** @endcond */
a421dc1d 31
393fb9cb
UH
32/**
33 * @file
34 *
35 * Creating, using, or destroying libsigrok sessions.
36 */
37
7b870c38
UH
38/**
39 * @defgroup grp_session Session handling
40 *
41 * Creating, using, or destroying libsigrok sessions.
42 *
43 * @{
44 */
45
544a4582 46struct source {
544a4582 47 int timeout;
144f6660 48 sr_receive_data_callback cb;
1f9813eb 49 void *cb_data;
aac0ea25
LPC
50
51 /* This is used to keep track of the object (fd, pollfd or channel) which is
52 * being polled and will be used to match the source when removing it again.
53 */
54 gintptr poll_object;
544a4582
BV
55};
56
2726474a 57struct datafeed_callback {
144f6660 58 sr_datafeed_callback cb;
2726474a
ML
59 void *cb_data;
60};
61
9f45fb3a
UH
62/**
63 * Create a new session.
7efe889e 64 *
61e6e2da 65 * @param ctx The context in which to create the new session.
7efe889e
UH
66 * @param new_session This will contain a pointer to the newly created
67 * session if the return value is SR_OK, otherwise the value
68 * is undefined and should not be used. Must not be NULL.
9f45fb3a 69 *
0812c40e 70 * @retval SR_OK Success.
41de54ff 71 * @retval SR_ERR_ARG Invalid argument.
47117241 72 *
0812c40e 73 * @since 0.4.0
9f45fb3a 74 */
61e6e2da
ML
75SR_API int sr_session_new(struct sr_context *ctx,
76 struct sr_session **new_session)
a1bb33af 77{
3337e9a1 78 struct sr_session *session;
a1bb33af 79
41de54ff
UH
80 if (!new_session)
81 return SR_ERR_ARG;
82
3337e9a1 83 session = g_malloc0(sizeof(struct sr_session));
b7e94111 84
4ed5d21d 85 session->ctx = ctx;
3337e9a1
BV
86 session->source_timeout = -1;
87 session->running = FALSE;
88 session->abort_session = FALSE;
89 g_mutex_init(&session->stop_mutex);
0812c40e 90
3337e9a1 91 *new_session = session;
0812c40e
ML
92
93 return SR_OK;
a1bb33af
UH
94}
95
9f45fb3a 96/**
0812c40e 97 * Destroy a session.
9f45fb3a
UH
98 * This frees up all memory used by the session.
99 *
7efe889e
UH
100 * @param session The session to destroy. Must not be NULL.
101 *
04cb9157 102 * @retval SR_OK Success.
0812c40e 103 * @retval SR_ERR_ARG Invalid session passed.
47117241 104 *
0812c40e 105 * @since 0.4.0
9f45fb3a 106 */
0812c40e 107SR_API int sr_session_destroy(struct sr_session *session)
a1bb33af 108{
9f45fb3a 109 if (!session) {
a421dc1d 110 sr_err("%s: session was NULL", __func__);
0812c40e 111 return SR_ERR_ARG;
9f45fb3a
UH
112 }
113
0812c40e 114 sr_session_dev_remove_all(session);
33c6e4c5 115 g_mutex_clear(&session->stop_mutex);
3d68b612
BV
116 if (session->trigger)
117 sr_trigger_free(session->trigger);
33c6e4c5 118
1de3cced
ML
119 g_slist_free_full(session->owned_devs, (GDestroyNotify)sr_dev_inst_free);
120
a1bb33af 121 g_free(session);
0812c40e 122
e0508e67 123 return SR_OK;
a1bb33af
UH
124}
125
9f45fb3a 126/**
0812c40e 127 * Remove all the devices from a session.
9f45fb3a
UH
128 *
129 * The session itself (i.e., the struct sr_session) is not free'd and still
130 * exists after this function returns.
131 *
7efe889e
UH
132 * @param session The session to use. Must not be NULL.
133 *
04cb9157 134 * @retval SR_OK Success.
0812c40e 135 * @retval SR_ERR_BUG Invalid session passed.
47117241 136 *
0812c40e 137 * @since 0.4.0
9f45fb3a 138 */
0812c40e 139SR_API int sr_session_dev_remove_all(struct sr_session *session)
a1bb33af 140{
0812c40e
ML
141 struct sr_dev_inst *sdi;
142 GSList *l;
143
9f45fb3a 144 if (!session) {
a421dc1d 145 sr_err("%s: session was NULL", __func__);
0812c40e
ML
146 return SR_ERR_ARG;
147 }
148
149 for (l = session->devs; l; l = l->next) {
150 sdi = (struct sr_dev_inst *) l->data;
151 sdi->session = NULL;
9f45fb3a
UH
152 }
153
681803df 154 g_slist_free(session->devs);
bb7ef793 155 session->devs = NULL;
e0508e67
UH
156
157 return SR_OK;
a1bb33af
UH
158}
159
9f45fb3a 160/**
0812c40e 161 * Add a device instance to a session.
9f45fb3a 162 *
7efe889e 163 * @param session The session to add to. Must not be NULL.
0812c40e 164 * @param sdi The device instance to add to a session. Must not
de4d3f99
BV
165 * be NULL. Also, sdi->driver and sdi->driver->dev_open must
166 * not be NULL.
9f45fb3a 167 *
04cb9157
MH
168 * @retval SR_OK Success.
169 * @retval SR_ERR_ARG Invalid argument.
47117241 170 *
0812c40e 171 * @since 0.4.0
9f45fb3a 172 */
0812c40e
ML
173SR_API int sr_session_dev_add(struct sr_session *session,
174 struct sr_dev_inst *sdi)
a1bb33af 175{
5451816f 176 int ret;
a1bb33af 177
de4d3f99 178 if (!sdi) {
a421dc1d 179 sr_err("%s: sdi was NULL", __func__);
9f45fb3a
UH
180 return SR_ERR_ARG;
181 }
182
d6eb0c33 183 if (!session) {
a421dc1d 184 sr_err("%s: session was NULL", __func__);
0812c40e
ML
185 return SR_ERR_ARG;
186 }
187
188 /* If sdi->session is not NULL, the device is already in this or
189 * another session. */
190 if (sdi->session) {
191 sr_err("%s: already assigned to session", __func__);
192 return SR_ERR_ARG;
d6eb0c33
UH
193 }
194
de4d3f99
BV
195 /* If sdi->driver is NULL, this is a virtual device. */
196 if (!sdi->driver) {
d6eb0c33 197 /* Just add the device, don't run dev_open(). */
de4d3f99 198 session->devs = g_slist_append(session->devs, (gpointer)sdi);
0812c40e 199 sdi->session = session;
d6eb0c33 200 return SR_OK;
9f45fb3a
UH
201 }
202
de4d3f99
BV
203 /* sdi->driver is non-NULL (i.e. we have a real device). */
204 if (!sdi->driver->dev_open) {
a421dc1d 205 sr_err("%s: sdi->driver->dev_open was NULL", __func__);
8ec95d22 206 return SR_ERR_BUG;
9f45fb3a
UH
207 }
208
de4d3f99 209 session->devs = g_slist_append(session->devs, (gpointer)sdi);
0812c40e 210 sdi->session = session;
aa4b1107 211
5451816f 212 if (session->running) {
32b7cd4f
DE
213 /* Adding a device to a running session. Commit settings
214 * and start acquisition on that device now. */
215 if ((ret = sr_config_commit(sdi)) != SR_OK) {
216 sr_err("Failed to commit device settings before "
217 "starting acquisition in running session (%s)",
218 sr_strerror(ret));
219 return ret;
220 }
5451816f 221 if ((ret = sdi->driver->dev_acquisition_start(sdi,
32b7cd4f 222 (void *)sdi)) != SR_OK) {
5451816f 223 sr_err("Failed to start acquisition of device in "
32b7cd4f
DE
224 "running session (%s)", sr_strerror(ret));
225 return ret;
226 }
5451816f
BV
227 }
228
e46b8fb1 229 return SR_OK;
a1bb33af
UH
230}
231
2bb311b4 232/**
0812c40e 233 * List all device instances attached to a session.
2bb311b4 234 *
7efe889e 235 * @param session The session to use. Must not be NULL.
2bb311b4
BV
236 * @param devlist A pointer where the device instance list will be
237 * stored on return. If no devices are in the session,
238 * this will be NULL. Each element in the list points
239 * to a struct sr_dev_inst *.
240 * The list must be freed by the caller, but not the
241 * elements pointed to.
242 *
04cb9157 243 * @retval SR_OK Success.
0812c40e 244 * @retval SR_ERR_ARG Invalid argument.
47117241 245 *
0812c40e 246 * @since 0.4.0
2bb311b4 247 */
0812c40e 248SR_API int sr_session_dev_list(struct sr_session *session, GSList **devlist)
2bb311b4 249{
2bb311b4 250 if (!session)
0812c40e
ML
251 return SR_ERR_ARG;
252
253 if (!devlist)
254 return SR_ERR_ARG;
2bb311b4
BV
255
256 *devlist = g_slist_copy(session->devs);
257
258 return SR_OK;
259}
260
9f45fb3a 261/**
0812c40e 262 * Remove all datafeed callbacks in a session.
9f45fb3a 263 *
7efe889e
UH
264 * @param session The session to use. Must not be NULL.
265 *
04cb9157 266 * @retval SR_OK Success.
0812c40e 267 * @retval SR_ERR_ARG Invalid session passed.
47117241 268 *
0812c40e 269 * @since 0.4.0
9f45fb3a 270 */
0812c40e 271SR_API int sr_session_datafeed_callback_remove_all(struct sr_session *session)
a1bb33af 272{
9f45fb3a 273 if (!session) {
a421dc1d 274 sr_err("%s: session was NULL", __func__);
0812c40e 275 return SR_ERR_ARG;
9f45fb3a
UH
276 }
277
2726474a 278 g_slist_free_full(session->datafeed_callbacks, g_free);
a1bb33af 279 session->datafeed_callbacks = NULL;
e0508e67
UH
280
281 return SR_OK;
a1bb33af
UH
282}
283
9f45fb3a 284/**
0812c40e 285 * Add a datafeed callback to a session.
9f45fb3a 286 *
7efe889e 287 * @param session The session to use. Must not be NULL.
d08490aa 288 * @param cb Function to call when a chunk of data is received.
0abee507 289 * Must not be NULL.
85222791 290 * @param cb_data Opaque pointer passed in by the caller.
a1645fcd 291 *
04cb9157
MH
292 * @retval SR_OK Success.
293 * @retval SR_ERR_BUG No session exists.
47117241
UH
294 *
295 * @since 0.3.0
9f45fb3a 296 */
0812c40e
ML
297SR_API int sr_session_datafeed_callback_add(struct sr_session *session,
298 sr_datafeed_callback cb, void *cb_data)
a1bb33af 299{
2726474a
ML
300 struct datafeed_callback *cb_struct;
301
9f45fb3a 302 if (!session) {
a421dc1d 303 sr_err("%s: session was NULL", __func__);
e0508e67 304 return SR_ERR_BUG;
9f45fb3a
UH
305 }
306
0abee507 307 if (!cb) {
a421dc1d 308 sr_err("%s: cb was NULL", __func__);
0abee507
UH
309 return SR_ERR_ARG;
310 }
9f45fb3a 311
91219afc 312 cb_struct = g_malloc0(sizeof(struct datafeed_callback));
2726474a
ML
313 cb_struct->cb = cb;
314 cb_struct->cb_data = cb_data;
315
62c82025 316 session->datafeed_callbacks =
2726474a 317 g_slist_append(session->datafeed_callbacks, cb_struct);
e0508e67
UH
318
319 return SR_OK;
a1bb33af
UH
320}
321
9f42e2e6
UH
322/**
323 * Get the trigger assigned to this session.
324 *
325 * @param session The session to use.
326 *
327 * @retval NULL Invalid (NULL) session was passed to the function.
328 * @retval other The trigger assigned to this session (can be NULL).
329 *
330 * @since 0.4.0
331 */
0812c40e 332SR_API struct sr_trigger *sr_session_trigger_get(struct sr_session *session)
7b5e6d29 333{
9f42e2e6
UH
334 if (!session)
335 return NULL;
336
7b5e6d29
BV
337 return session->trigger;
338}
339
9f42e2e6
UH
340/**
341 * Set the trigger of this session.
342 *
343 * @param session The session to use. Must not be NULL.
344 * @param trig The trigger to assign to this session. Can be NULL.
345 *
346 * @retval SR_OK Success.
347 * @retval SR_ERR_ARG Invalid argument.
348 *
349 * @since 0.4.0
350 */
0812c40e 351SR_API int sr_session_trigger_set(struct sr_session *session, struct sr_trigger *trig)
7b5e6d29 352{
9f42e2e6
UH
353 if (!session)
354 return SR_ERR_ARG;
355
7b5e6d29
BV
356 session->trigger = trig;
357
358 return SR_OK;
359}
360
b483be74 361/**
0812c40e 362 * Call every device in the current session's callback.
b483be74
BV
363 *
364 * For sessions not driven by select loops such as sr_session_run(),
365 * but driven by another scheduler, this can be used to poll the devices
366 * from within that scheduler.
367 *
7efe889e 368 * @param session The session to use. Must not be NULL.
f6eb2cb5
BV
369 * @param block If TRUE, this call will wait for any of the session's
370 * sources to fire an event on the file descriptors, or
371 * any of their timeouts to activate. In other words, this
372 * can be used as a select loop.
373 * If FALSE, all sources have their callback run, regardless
374 * of file descriptor or timeout status.
375 *
04cb9157 376 * @retval SR_OK Success.
f3f19d11 377 * @retval SR_ERR Error occurred.
b483be74 378 */
3337e9a1 379static int sr_session_iteration(struct sr_session *session, gboolean block)
544a4582 380{
b7e94111 381 unsigned int i;
bb5f6110
ML
382 int ret, timeout;
383#ifdef HAVE_LIBUSB_1_0
384 int usb_timeout;
385 struct timeval tv;
386#endif
387
1190c653 388 timeout = block ? session->source_timeout : 0;
bb5f6110
ML
389
390#ifdef HAVE_LIBUSB_1_0
1190c653 391 if (session->ctx->usb_source_present) {
1190c653
UH
392 ret = libusb_get_next_timeout(session->ctx->libusb_ctx, &tv);
393 if (ret < 0) {
394 sr_err("Error getting libusb timeout: %s",
395 libusb_error_name(ret));
396 return SR_ERR;
397 } else if (ret == 1) {
398 usb_timeout = tv.tv_sec * 1000 + tv.tv_usec / 1000;
399 timeout = MIN(timeout, usb_timeout);
400 }
bb5f6110
ML
401 }
402#endif
544a4582 403
bb5f6110 404 ret = g_poll(session->pollfds, session->num_sources, timeout);
b483be74
BV
405 for (i = 0; i < session->num_sources; i++) {
406 if (session->pollfds[i].revents > 0 || (ret == 0
407 && session->source_timeout == session->sources[i].timeout)) {
33c6e4c5 408 /*
b483be74
BV
409 * Invoke the source's callback on an event,
410 * or if the poll timed out and this source
411 * asked for that timeout.
33c6e4c5 412 */
b483be74
BV
413 if (!session->sources[i].cb(session->pollfds[i].fd,
414 session->pollfds[i].revents,
415 session->sources[i].cb_data))
0812c40e
ML
416 sr_session_source_remove(session,
417 session->sources[i].poll_object);
b483be74
BV
418 }
419 /*
420 * We want to take as little time as possible to stop
421 * the session if we have been told to do so. Therefore,
422 * we check the flag after processing every source, not
423 * just once per main event loop.
424 */
425 g_mutex_lock(&session->stop_mutex);
426 if (session->abort_session) {
0812c40e 427 sr_session_stop_sync(session);
b483be74
BV
428 /* But once is enough. */
429 session->abort_session = FALSE;
544a4582 430 }
b483be74 431 g_mutex_unlock(&session->stop_mutex);
544a4582 432 }
e0508e67
UH
433
434 return SR_OK;
544a4582
BV
435}
436
7b5e6d29
BV
437static int verify_trigger(struct sr_trigger *trigger)
438{
439 struct sr_trigger_stage *stage;
440 struct sr_trigger_match *match;
441 GSList *l, *m;
442
443 if (!trigger->stages) {
444 sr_err("No trigger stages defined.");
445 return SR_ERR;
446 }
447
448 sr_spew("Checking trigger:");
449 for (l = trigger->stages; l; l = l->next) {
450 stage = l->data;
451 if (!stage->matches) {
452 sr_err("Stage %d has no matches defined.", stage->stage);
453 return SR_ERR;
454 }
455 for (m = stage->matches; m; m = m->next) {
456 match = m->data;
457 if (!match->channel) {
458 sr_err("Stage %d match has no channel.", stage->stage);
459 return SR_ERR;
460 }
461 if (!match->match) {
462 sr_err("Stage %d match is not defined.", stage->stage);
463 return SR_ERR;
464 }
465 sr_spew("Stage %d match on channel %s, match %d", stage->stage,
466 match->channel->name, match->match);
467 }
468 }
469
470 return SR_OK;
471}
1beccaed 472
9f45fb3a
UH
473/**
474 * Start a session.
475 *
7efe889e
UH
476 * @param session The session to use. Must not be NULL.
477 *
04cb9157 478 * @retval SR_OK Success.
0812c40e 479 * @retval SR_ERR_ARG Invalid session passed.
47117241 480 *
0812c40e 481 * @since 0.4.0
9f45fb3a 482 */
0812c40e 483SR_API int sr_session_start(struct sr_session *session)
7d658874 484{
de4d3f99 485 struct sr_dev_inst *sdi;
013ec84b
BV
486 struct sr_channel *ch;
487 GSList *l, *c;
488 int enabled_channels, ret;
7d658874 489
9f45fb3a 490 if (!session) {
0812c40e
ML
491 sr_err("%s: session was NULL", __func__);
492 return SR_ERR_ARG;
9f45fb3a
UH
493 }
494
bb7ef793 495 if (!session->devs) {
a421dc1d 496 sr_err("%s: session->devs was NULL; a session "
9f45fb3a 497 "cannot be started without devices.", __func__);
0812c40e 498 return SR_ERR_ARG;
9f45fb3a
UH
499 }
500
7b5e6d29
BV
501 if (session->trigger && verify_trigger(session->trigger) != SR_OK)
502 return SR_ERR;
503
c7142604 504 sr_info("Starting.");
9f45fb3a 505
b7c3e849 506 ret = SR_OK;
bb7ef793 507 for (l = session->devs; l; l = l->next) {
de4d3f99 508 sdi = l->data;
013ec84b
BV
509 enabled_channels = 0;
510 for (c = sdi->channels; c; c = c->next) {
511 ch = c->data;
512 if (ch->enabled) {
513 enabled_channels++;
514 break;
515 }
516 }
517 if (enabled_channels == 0) {
518 ret = SR_ERR;
1b9e567b
SA
519 sr_err("%s using connection %s has no enabled channels!",
520 sdi->driver->name, sdi->connection_id);
013ec84b
BV
521 break;
522 }
523
32b7cd4f
DE
524 if ((ret = sr_config_commit(sdi)) != SR_OK) {
525 sr_err("Failed to commit device settings before "
526 "starting acquisition (%s)", sr_strerror(ret));
527 break;
528 }
de4d3f99 529 if ((ret = sdi->driver->dev_acquisition_start(sdi, sdi)) != SR_OK) {
a421dc1d 530 sr_err("%s: could not start an acquisition "
568dcacc 531 "(%s)", __func__, sr_strerror(ret));
7d658874 532 break;
9f45fb3a 533 }
7d658874
BV
534 }
535
9f45fb3a
UH
536 /* TODO: What if there are multiple devices? Which return code? */
537
7d658874
BV
538 return ret;
539}
540
9f45fb3a 541/**
0812c40e 542 * Run a session.
9f45fb3a 543 *
7efe889e
UH
544 * @param session The session to use. Must not be NULL.
545 *
04cb9157 546 * @retval SR_OK Success.
0812c40e 547 * @retval SR_ERR_ARG Invalid session passed.
47117241 548 *
0812c40e 549 * @since 0.4.0
9f45fb3a 550 */
0812c40e 551SR_API int sr_session_run(struct sr_session *session)
7d658874 552{
9f45fb3a 553 if (!session) {
0812c40e
ML
554 sr_err("%s: session was NULL", __func__);
555 return SR_ERR_ARG;
9f45fb3a
UH
556 }
557
bb7ef793 558 if (!session->devs) {
9f45fb3a 559 /* TODO: Actually the case? */
a421dc1d 560 sr_err("%s: session->devs was NULL; a session "
9f45fb3a 561 "cannot be run without devices.", __func__);
0812c40e 562 return SR_ERR_ARG;
9f45fb3a 563 }
5451816f 564 session->running = TRUE;
9f45fb3a 565
a421dc1d 566 sr_info("Running.");
7d658874 567
9f45fb3a 568 /* Do we have real sources? */
b7e94111 569 if (session->num_sources == 1 && session->pollfds[0].fd == -1) {
9f45fb3a 570 /* Dummy source, freewheel over it. */
2cbeb2b7 571 while (session->num_sources)
b7e94111 572 session->sources[0].cb(-1, 0, session->sources[0].cb_data);
9f45fb3a
UH
573 } else {
574 /* Real sources, use g_poll() main loop. */
b483be74 575 while (session->num_sources)
3337e9a1 576 sr_session_iteration(session, TRUE);
9f45fb3a
UH
577 }
578
e0508e67 579 return SR_OK;
7d658874
BV
580}
581
9f45fb3a 582/**
0812c40e 583 * Stop a session.
9f45fb3a 584 *
0812c40e
ML
585 * The session is stopped immediately, with all acquisition sessions stopped
586 * and hardware drivers cleaned up.
9f45fb3a 587 *
33c6e4c5
AG
588 * This must be called from within the session thread, to prevent freeing
589 * resources that the session thread will try to use.
590 *
7efe889e
UH
591 * @param session The session to use. Must not be NULL.
592 *
04cb9157 593 * @retval SR_OK Success.
0812c40e 594 * @retval SR_ERR_ARG Invalid session passed.
72a08bcc
BV
595 *
596 * @private
9f45fb3a 597 */
0812c40e 598SR_PRIV int sr_session_stop_sync(struct sr_session *session)
a1bb33af 599{
de4d3f99 600 struct sr_dev_inst *sdi;
a1bb33af
UH
601 GSList *l;
602
9f45fb3a 603 if (!session) {
a421dc1d 604 sr_err("%s: session was NULL", __func__);
0812c40e 605 return SR_ERR_ARG;
9f45fb3a
UH
606 }
607
a421dc1d 608 sr_info("Stopping.");
e0508e67 609
bb7ef793 610 for (l = session->devs; l; l = l->next) {
de4d3f99
BV
611 sdi = l->data;
612 if (sdi->driver) {
613 if (sdi->driver->dev_acquisition_stop)
614 sdi->driver->dev_acquisition_stop(sdi, sdi);
8c76be53 615 }
a1bb33af 616 }
5451816f 617 session->running = FALSE;
9f45fb3a 618
e0508e67 619 return SR_OK;
a1bb33af
UH
620}
621
33c6e4c5 622/**
0812c40e 623 * Stop a session.
33c6e4c5 624 *
0812c40e
ML
625 * The session is stopped immediately, with all acquisition sessions being
626 * stopped and hardware drivers cleaned up.
33c6e4c5
AG
627 *
628 * If the session is run in a separate thread, this function will not block
629 * until the session is finished executing. It is the caller's responsibility
630 * to wait for the session thread to return before assuming that the session is
631 * completely decommissioned.
632 *
7efe889e
UH
633 * @param session The session to use. Must not be NULL.
634 *
04cb9157 635 * @retval SR_OK Success.
0812c40e 636 * @retval SR_ERR_ARG Invalid session passed.
47117241 637 *
0812c40e 638 * @since 0.4.0
33c6e4c5 639 */
0812c40e 640SR_API int sr_session_stop(struct sr_session *session)
33c6e4c5
AG
641{
642 if (!session) {
643 sr_err("%s: session was NULL", __func__);
644 return SR_ERR_BUG;
645 }
646
647 g_mutex_lock(&session->stop_mutex);
648 session->abort_session = TRUE;
649 g_mutex_unlock(&session->stop_mutex);
650
651 return SR_OK;
652}
653
9f45fb3a 654/**
a1645fcd 655 * Debug helper.
9f45fb3a 656 *
996b0c72 657 * @param packet The packet to show debugging information for.
9f45fb3a 658 */
bf53457d 659static void datafeed_dump(const struct sr_datafeed_packet *packet)
7d2afd6c 660{
bf53457d
JH
661 const struct sr_datafeed_logic *logic;
662 const struct sr_datafeed_analog *analog;
1954dfa9 663 const struct sr_datafeed_analog2 *analog2;
7d2afd6c 664
ca7dbb56 665 /* Please use the same order as in libsigrok.h. */
7d2afd6c
BV
666 switch (packet->type) {
667 case SR_DF_HEADER:
a421dc1d 668 sr_dbg("bus: Received SR_DF_HEADER packet.");
7d2afd6c 669 break;
55c9f09d
UH
670 case SR_DF_END:
671 sr_dbg("bus: Received SR_DF_END packet.");
7d2afd6c 672 break;
c71bac3b 673 case SR_DF_META:
a421dc1d 674 sr_dbg("bus: Received SR_DF_META packet.");
ee7489d2 675 break;
55c9f09d
UH
676 case SR_DF_TRIGGER:
677 sr_dbg("bus: Received SR_DF_TRIGGER packet.");
678 break;
7d2afd6c
BV
679 case SR_DF_LOGIC:
680 logic = packet->payload;
7ea45862
UH
681 sr_dbg("bus: Received SR_DF_LOGIC packet (%" PRIu64 " bytes, "
682 "unitsize = %d).", logic->length, logic->unitsize);
7d2afd6c 683 break;
ee7489d2
BV
684 case SR_DF_ANALOG:
685 analog = packet->payload;
a421dc1d
UH
686 sr_dbg("bus: Received SR_DF_ANALOG packet (%d samples).",
687 analog->num_samples);
ee7489d2 688 break;
6ea7669c 689 case SR_DF_FRAME_BEGIN:
a421dc1d 690 sr_dbg("bus: Received SR_DF_FRAME_BEGIN packet.");
6ea7669c
BV
691 break;
692 case SR_DF_FRAME_END:
a421dc1d 693 sr_dbg("bus: Received SR_DF_FRAME_END packet.");
6ea7669c 694 break;
55c9f09d
UH
695 case SR_DF_ANALOG2:
696 analog2 = packet->payload;
697 sr_dbg("bus: Received SR_DF_ANALOG2 packet (%d samples).",
698 analog2->num_samples);
699 break;
7d2afd6c 700 default:
a421dc1d 701 sr_dbg("bus: Received unknown packet type: %d.", packet->type);
9f45fb3a 702 break;
7d2afd6c 703 }
7d2afd6c
BV
704}
705
9f45fb3a 706/**
a1645fcd
BV
707 * Send a packet to whatever is listening on the datafeed bus.
708 *
709 * Hardware drivers use this to send a data packet to the frontend.
9f45fb3a 710 *
6b2d8d3e 711 * @param sdi TODO.
31ccebc4 712 * @param packet The datafeed packet to send to the session bus.
44dae539 713 *
04cb9157
MH
714 * @retval SR_OK Success.
715 * @retval SR_ERR_ARG Invalid argument.
b4bd7088
UH
716 *
717 * @private
9f45fb3a 718 */
de4d3f99 719SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
8143cfdc 720 const struct sr_datafeed_packet *packet)
a1bb33af
UH
721{
722 GSList *l;
2726474a 723 struct datafeed_callback *cb_struct;
c0a1e532
UH
724 struct sr_datafeed_packet *packet_in, *packet_out;
725 struct sr_transform *t;
726 int ret;
a1bb33af 727
de4d3f99 728 if (!sdi) {
a421dc1d 729 sr_err("%s: sdi was NULL", __func__);
e0508e67 730 return SR_ERR_ARG;
9f45fb3a
UH
731 }
732
e0508e67 733 if (!packet) {
a421dc1d 734 sr_err("%s: packet was NULL", __func__);
e0508e67 735 return SR_ERR_ARG;
9f45fb3a
UH
736 }
737
79f92686
BV
738 if (!sdi->session) {
739 sr_err("%s: session was NULL", __func__);
740 return SR_ERR_BUG;
741 }
742
c0a1e532
UH
743 /*
744 * Pass the packet to the first transform module. If that returns
745 * another packet (instead of NULL), pass that packet to the next
746 * transform module in the list, and so on.
747 */
748 packet_in = (struct sr_datafeed_packet *)packet;
749 for (l = sdi->session->transforms; l; l = l->next) {
750 t = l->data;
751 sr_spew("Running transform module '%s'.", t->module->id);
752 ret = t->module->receive(t, packet_in, &packet_out);
753 if (ret < 0) {
754 sr_err("Error while running transform module: %d.", ret);
755 return SR_ERR;
756 }
757 if (!packet_out) {
758 /*
759 * If any of the transforms don't return an output
760 * packet, abort.
761 */
762 sr_spew("Transform module didn't return a packet, aborting.");
763 return SR_OK;
764 } else {
765 /*
766 * Use this transform module's output packet as input
767 * for the next transform module.
768 */
769 packet_in = packet_out;
770 }
771 }
4ec436c4 772 packet = packet_in;
c0a1e532
UH
773
774 /*
775 * If the last transform did output a packet, pass it to all datafeed
776 * callbacks.
777 */
3337e9a1 778 for (l = sdi->session->datafeed_callbacks; l; l = l->next) {
18beaeff
BV
779 if (sr_log_loglevel_get() >= SR_LOG_DBG)
780 datafeed_dump(packet);
2726474a
ML
781 cb_struct = l->data;
782 cb_struct->cb(sdi, packet, cb_struct->cb_data);
a1bb33af 783 }
9f45fb3a 784
e0508e67 785 return SR_OK;
a1bb33af
UH
786}
787
6b2d8d3e
UH
788/**
789 * Add an event source for a file descriptor.
790 *
7efe889e 791 * @param session The session to use. Must not be NULL.
6b2d8d3e 792 * @param pollfd The GPollFD.
04cb9157
MH
793 * @param[in] timeout Max time to wait before the callback is called,
794 * ignored if 0.
6b2d8d3e
UH
795 * @param cb Callback function to add. Must not be NULL.
796 * @param cb_data Data for the callback function. Can be NULL.
797 * @param poll_object TODO.
798 *
04cb9157
MH
799 * @retval SR_OK Success.
800 * @retval SR_ERR_ARG Invalid argument.
6b2d8d3e 801 */
102f1239
BV
802static int _sr_session_source_add(struct sr_session *session, GPollFD *pollfd,
803 int timeout, sr_receive_data_callback cb, void *cb_data, gintptr poll_object)
544a4582
BV
804{
805 struct source *new_sources, *s;
aac0ea25 806 GPollFD *new_pollfds;
544a4582 807
d08490aa 808 if (!cb) {
a421dc1d 809 sr_err("%s: cb was NULL", __func__);
e0508e67 810 return SR_ERR_ARG;
9f45fb3a
UH
811 }
812
1f9813eb 813 /* Note: cb_data can be NULL, that's not a bug. */
9f45fb3a 814
91219afc 815 new_pollfds = g_realloc(session->pollfds,
2ac2e629 816 sizeof(GPollFD) * (session->num_sources + 1));
91219afc 817 new_sources = g_realloc(session->sources, sizeof(struct source) *
2ac2e629 818 (session->num_sources + 1));
544a4582 819
b7e94111
LPC
820 new_pollfds[session->num_sources] = *pollfd;
821 s = &new_sources[session->num_sources++];
544a4582 822 s->timeout = timeout;
d08490aa 823 s->cb = cb;
1f9813eb 824 s->cb_data = cb_data;
aac0ea25 825 s->poll_object = poll_object;
b7e94111
LPC
826 session->pollfds = new_pollfds;
827 session->sources = new_sources;
544a4582 828
b7e94111
LPC
829 if (timeout != session->source_timeout && timeout > 0
830 && (session->source_timeout == -1 || timeout < session->source_timeout))
831 session->source_timeout = timeout;
9f45fb3a 832
e0508e67 833 return SR_OK;
544a4582
BV
834}
835
9f45fb3a 836/**
6b2d8d3e 837 * Add an event source for a file descriptor.
9f45fb3a 838 *
7efe889e 839 * @param session The session to use. Must not be NULL.
aac0ea25
LPC
840 * @param fd The file descriptor.
841 * @param events Events to check for.
842 * @param timeout Max time to wait before the callback is called, ignored if 0.
843 * @param cb Callback function to add. Must not be NULL.
844 * @param cb_data Data for the callback function. Can be NULL.
9f45fb3a 845 *
04cb9157
MH
846 * @retval SR_OK Success.
847 * @retval SR_ERR_ARG Invalid argument.
47117241
UH
848 *
849 * @since 0.3.0
aac0ea25 850 */
0812c40e
ML
851SR_API int sr_session_source_add(struct sr_session *session, int fd,
852 int events, int timeout, sr_receive_data_callback cb, void *cb_data)
aac0ea25
LPC
853{
854 GPollFD p;
855
aac0ea25
LPC
856 p.fd = fd;
857 p.events = events;
89efe064 858 p.revents = 0;
aac0ea25 859
102f1239 860 return _sr_session_source_add(session, &p, timeout, cb, cb_data, (gintptr)fd);
aac0ea25
LPC
861}
862
863/**
1a895c61 864 * Add an event source for a GPollFD.
aac0ea25 865 *
7efe889e 866 * @param session The session to use. Must not be NULL.
aac0ea25
LPC
867 * @param pollfd The GPollFD.
868 * @param timeout Max time to wait before the callback is called, ignored if 0.
869 * @param cb Callback function to add. Must not be NULL.
870 * @param cb_data Data for the callback function. Can be NULL.
44dae539 871 *
04cb9157
MH
872 * @retval SR_OK Success.
873 * @retval SR_ERR_ARG Invalid argument.
47117241
UH
874 *
875 * @since 0.3.0
9f45fb3a 876 */
0812c40e
ML
877SR_API int sr_session_source_add_pollfd(struct sr_session *session,
878 GPollFD *pollfd, int timeout, sr_receive_data_callback cb,
879 void *cb_data)
aac0ea25 880{
102f1239 881 return _sr_session_source_add(session, pollfd, timeout, cb,
8143cfdc 882 cb_data, (gintptr)pollfd);
aac0ea25
LPC
883}
884
885/**
1a895c61 886 * Add an event source for a GIOChannel.
aac0ea25 887 *
7efe889e 888 * @param session The session to use. Must not be NULL.
aac0ea25
LPC
889 * @param channel The GIOChannel.
890 * @param events Events to poll on.
891 * @param timeout Max time to wait before the callback is called, ignored if 0.
892 * @param cb Callback function to add. Must not be NULL.
893 * @param cb_data Data for the callback function. Can be NULL.
894 *
04cb9157
MH
895 * @retval SR_OK Success.
896 * @retval SR_ERR_ARG Invalid argument.
47117241
UH
897 *
898 * @since 0.3.0
aac0ea25 899 */
0812c40e
ML
900SR_API int sr_session_source_add_channel(struct sr_session *session,
901 GIOChannel *channel, int events, int timeout,
902 sr_receive_data_callback cb, void *cb_data)
aac0ea25
LPC
903{
904 GPollFD p;
905
906#ifdef _WIN32
6b2d8d3e 907 g_io_channel_win32_make_pollfd(channel, events, &p);
aac0ea25
LPC
908#else
909 p.fd = g_io_channel_unix_get_fd(channel);
910 p.events = events;
89efe064 911 p.revents = 0;
aac0ea25
LPC
912#endif
913
102f1239 914 return _sr_session_source_add(session, &p, timeout, cb, cb_data, (gintptr)channel);
aac0ea25
LPC
915}
916
6b2d8d3e
UH
917/**
918 * Remove the source belonging to the specified channel.
919 *
7efe889e 920 * @param session The session to use. Must not be NULL.
04cb9157 921 * @param poll_object The channel for which the source should be removed.
6b2d8d3e 922 *
04cb9157
MH
923 * @retval SR_OK Success
924 * @retval SR_ERR_ARG Invalid arguments
04cb9157 925 * @retval SR_ERR_BUG Internal error
6b2d8d3e 926 */
102f1239 927static int _sr_session_source_remove(struct sr_session *session, gintptr poll_object)
544a4582 928{
b7e94111 929 unsigned int old;
544a4582 930
b7e94111 931 if (!session->sources || !session->num_sources) {
a421dc1d 932 sr_err("%s: sources was NULL", __func__);
0abee507 933 return SR_ERR_BUG;
e0508e67
UH
934 }
935
b7e94111
LPC
936 for (old = 0; old < session->num_sources; old++) {
937 if (session->sources[old].poll_object == poll_object)
2bccd322 938 break;
9f45fb3a
UH
939 }
940
2bccd322 941 /* fd not found, nothing to do */
b7e94111 942 if (old == session->num_sources)
2bccd322
LPC
943 return SR_OK;
944
91219afc 945 session->num_sources--;
2bccd322 946
b7e94111 947 if (old != session->num_sources) {
91219afc 948 memmove(&session->pollfds[old], &session->pollfds[old + 1],
b7e94111 949 (session->num_sources - old) * sizeof(GPollFD));
91219afc 950 memmove(&session->sources[old], &session->sources[old + 1],
b7e94111 951 (session->num_sources - old) * sizeof(struct source));
9f45fb3a 952 }
544a4582 953
91219afc
UH
954 session->pollfds = g_realloc(session->pollfds, sizeof(GPollFD) * session->num_sources);
955 session->sources = g_realloc(session->sources, sizeof(struct source) * session->num_sources);
2bccd322 956
e0508e67 957 return SR_OK;
544a4582 958}
aac0ea25 959
6b2d8d3e 960/**
aac0ea25
LPC
961 * Remove the source belonging to the specified file descriptor.
962 *
7efe889e 963 * @param session The session to use. Must not be NULL.
1a895c61 964 * @param fd The file descriptor for which the source should be removed.
aac0ea25 965 *
04cb9157
MH
966 * @retval SR_OK Success
967 * @retval SR_ERR_ARG Invalid argument
04cb9157 968 * @retval SR_ERR_BUG Internal error.
47117241
UH
969 *
970 * @since 0.3.0
aac0ea25 971 */
0812c40e 972SR_API int sr_session_source_remove(struct sr_session *session, int fd)
aac0ea25 973{
102f1239 974 return _sr_session_source_remove(session, (gintptr)fd);
aac0ea25
LPC
975}
976
977/**
978 * Remove the source belonging to the specified poll descriptor.
979 *
7efe889e 980 * @param session The session to use. Must not be NULL.
aac0ea25
LPC
981 * @param pollfd The poll descriptor for which the source should be removed.
982 *
983 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
984 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
985 * internal errors.
47117241
UH
986 *
987 * @since 0.2.0
aac0ea25 988 */
0812c40e
ML
989SR_API int sr_session_source_remove_pollfd(struct sr_session *session,
990 GPollFD *pollfd)
aac0ea25 991{
102f1239 992 return _sr_session_source_remove(session, (gintptr)pollfd);
aac0ea25
LPC
993}
994
6b2d8d3e 995/**
aac0ea25
LPC
996 * Remove the source belonging to the specified channel.
997 *
7efe889e 998 * @param session The session to use. Must not be NULL.
1a895c61 999 * @param channel The channel for which the source should be removed.
aac0ea25 1000 *
04cb9157
MH
1001 * @retval SR_OK Success.
1002 * @retval SR_ERR_ARG Invalid argument.
04cb9157 1003 * @return SR_ERR_BUG Internal error.
47117241
UH
1004 *
1005 * @since 0.2.0
aac0ea25 1006 */
0812c40e
ML
1007SR_API int sr_session_source_remove_channel(struct sr_session *session,
1008 GIOChannel *channel)
aac0ea25 1009{
102f1239 1010 return _sr_session_source_remove(session, (gintptr)channel);
aac0ea25 1011}
7b870c38 1012
ee29d92e 1013static void copy_src(struct sr_config *src, struct sr_datafeed_meta *meta_copy)
8143cfdc 1014{
8143cfdc 1015 g_variant_ref(src->data);
ee29d92e
AJ
1016 meta_copy->config = g_slist_append(meta_copy->config,
1017 g_memdup(src, sizeof(struct sr_config)));
8143cfdc
BV
1018}
1019
1020SR_PRIV int sr_packet_copy(const struct sr_datafeed_packet *packet,
1021 struct sr_datafeed_packet **copy)
1022{
1023 const struct sr_datafeed_meta *meta;
1024 struct sr_datafeed_meta *meta_copy;
1025 const struct sr_datafeed_logic *logic;
1026 struct sr_datafeed_logic *logic_copy;
1027 const struct sr_datafeed_analog *analog;
1028 struct sr_datafeed_analog *analog_copy;
1029 uint8_t *payload;
1030
1031 *copy = g_malloc0(sizeof(struct sr_datafeed_packet));
1032 (*copy)->type = packet->type;
1033
1034 switch (packet->type) {
1035 case SR_DF_TRIGGER:
1036 case SR_DF_END:
1037 /* No payload. */
1038 break;
1039 case SR_DF_HEADER:
1040 payload = g_malloc(sizeof(struct sr_datafeed_header));
1041 memcpy(payload, packet->payload, sizeof(struct sr_datafeed_header));
1042 (*copy)->payload = payload;
1043 break;
1044 case SR_DF_META:
1045 meta = packet->payload;
ee29d92e
AJ
1046 meta_copy = g_malloc0(sizeof(struct sr_datafeed_meta));
1047 g_slist_foreach(meta->config, (GFunc)copy_src, meta_copy->config);
8143cfdc
BV
1048 (*copy)->payload = meta_copy;
1049 break;
1050 case SR_DF_LOGIC:
1051 logic = packet->payload;
1052 logic_copy = g_malloc(sizeof(logic));
1053 logic_copy->length = logic->length;
1054 logic_copy->unitsize = logic->unitsize;
1055 memcpy(logic_copy->data, logic->data, logic->length * logic->unitsize);
1056 (*copy)->payload = logic_copy;
1057 break;
1058 case SR_DF_ANALOG:
1059 analog = packet->payload;
1060 analog_copy = g_malloc(sizeof(analog));
1061 analog_copy->channels = g_slist_copy(analog->channels);
1062 analog_copy->num_samples = analog->num_samples;
1063 analog_copy->mq = analog->mq;
1064 analog_copy->unit = analog->unit;
1065 analog_copy->mqflags = analog->mqflags;
1066 memcpy(analog_copy->data, analog->data,
1067 analog->num_samples * sizeof(float));
1068 (*copy)->payload = analog_copy;
1069 break;
1070 default:
1071 sr_err("Unknown packet type %d", packet->type);
1072 return SR_ERR;
1073 }
1074
1075 return SR_OK;
1076}
1077
1078void sr_packet_free(struct sr_datafeed_packet *packet)
1079{
1080 const struct sr_datafeed_meta *meta;
1081 const struct sr_datafeed_logic *logic;
1082 const struct sr_datafeed_analog *analog;
1083 struct sr_config *src;
1084 GSList *l;
1085
1086 switch (packet->type) {
1087 case SR_DF_TRIGGER:
1088 case SR_DF_END:
1089 /* No payload. */
1090 break;
1091 case SR_DF_HEADER:
1092 /* Payload is a simple struct. */
1093 g_free((void *)packet->payload);
1094 break;
1095 case SR_DF_META:
1096 meta = packet->payload;
1097 for (l = meta->config; l; l = l->next) {
1098 src = l->data;
1099 g_variant_unref(src->data);
1100 g_free(src);
1101 }
1102 g_slist_free(meta->config);
1103 g_free((void *)packet->payload);
1104 break;
1105 case SR_DF_LOGIC:
1106 logic = packet->payload;
1107 g_free(logic->data);
1108 g_free((void *)packet->payload);
1109 break;
1110 case SR_DF_ANALOG:
1111 analog = packet->payload;
1112 g_slist_free(analog->channels);
1113 g_free(analog->data);
1114 g_free((void *)packet->payload);
1115 break;
1116 default:
1117 sr_err("Unknown packet type %d", packet->type);
1118 }
1119 g_free(packet);
1120
1121}
1122
7b870c38 1123/** @} */