]> sigrok.org Git - libsigrok.git/blame_incremental - src/session.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / session.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5 * Copyright (C) 2015 Daniel Elstner <daniel.kitta@gmail.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
21#include <config.h>
22#include <errno.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <unistd.h>
26#include <string.h>
27#include <glib.h>
28#include <libsigrok/libsigrok.h>
29#include "libsigrok-internal.h"
30
31/** @cond PRIVATE */
32#define LOG_PREFIX "session"
33/** @endcond */
34
35/**
36 * @file
37 *
38 * Creating, using, or destroying libsigrok sessions.
39 */
40
41/**
42 * @defgroup grp_session Session handling
43 *
44 * Creating, using, or destroying libsigrok sessions.
45 *
46 * @{
47 */
48
49struct datafeed_callback {
50 sr_datafeed_callback cb;
51 void *cb_data;
52};
53
54/** Custom GLib event source for generic descriptor I/O.
55 * @see https://developer.gnome.org/glib/stable/glib-The-Main-Event-Loop.html
56 * @internal
57 */
58struct fd_source {
59 GSource base;
60
61 int64_t timeout_us;
62 int64_t due_us;
63
64 /* Meta-data needed to keep track of installed sources */
65 struct sr_session *session;
66 void *key;
67
68 GPollFD pollfd;
69};
70
71/** FD event source prepare() method.
72 * This is called immediately before poll().
73 */
74static gboolean fd_source_prepare(GSource *source, int *timeout)
75{
76 int64_t now_us;
77 struct fd_source *fsource;
78 int remaining_ms;
79
80 fsource = (struct fd_source *)source;
81
82 if (fsource->timeout_us >= 0) {
83 now_us = g_source_get_time(source);
84
85 if (fsource->due_us == 0) {
86 /* First-time initialization of the expiration time */
87 fsource->due_us = now_us + fsource->timeout_us;
88 }
89 remaining_ms = (MAX(0, fsource->due_us - now_us) + 999) / 1000;
90 } else {
91 remaining_ms = -1;
92 }
93 *timeout = remaining_ms;
94
95 return (remaining_ms == 0);
96}
97
98/** FD event source check() method.
99 * This is called after poll() returns to check whether an event fired.
100 */
101static gboolean fd_source_check(GSource *source)
102{
103 struct fd_source *fsource;
104 unsigned int revents;
105
106 fsource = (struct fd_source *)source;
107 revents = fsource->pollfd.revents;
108
109 return (revents != 0 || (fsource->timeout_us >= 0
110 && fsource->due_us <= g_source_get_time(source)));
111}
112
113/** FD event source dispatch() method.
114 * This is called if either prepare() or check() returned TRUE.
115 */
116static gboolean fd_source_dispatch(GSource *source,
117 GSourceFunc callback, void *user_data)
118{
119 struct fd_source *fsource;
120 unsigned int revents;
121 gboolean keep;
122
123 fsource = (struct fd_source *)source;
124 revents = fsource->pollfd.revents;
125
126 if (!callback) {
127 sr_err("Callback not set, cannot dispatch event.");
128 return G_SOURCE_REMOVE;
129 }
130 keep = (*(sr_receive_data_callback)callback)
131 (fsource->pollfd.fd, revents, user_data);
132
133 if (fsource->timeout_us >= 0 && G_LIKELY(keep)
134 && G_LIKELY(!g_source_is_destroyed(source)))
135 fsource->due_us = g_source_get_time(source)
136 + fsource->timeout_us;
137 return keep;
138}
139
140/** FD event source finalize() method.
141 */
142static void fd_source_finalize(GSource *source)
143{
144 struct fd_source *fsource;
145
146 fsource = (struct fd_source *)source;
147
148 sr_dbg("%s: key %p", __func__, fsource->key);
149
150 sr_session_source_destroyed(fsource->session, fsource->key, source);
151}
152
153/** Create an event source for I/O on a file descriptor.
154 *
155 * In order to maintain API compatibility, this event source also doubles
156 * as a timer event source.
157 *
158 * @param session The session the event source belongs to.
159 * @param key The key used to identify this source.
160 * @param fd The file descriptor or HANDLE.
161 * @param timeout_ms The timeout interval in ms, or -1 to wait indefinitely.
162 * @return A new event source object, or NULL on failure.
163 */
164static GSource *fd_source_new(struct sr_session *session, void *key,
165 gintptr fd, int events, int timeout_ms)
166{
167 static GSourceFuncs fd_source_funcs = {
168 .prepare = &fd_source_prepare,
169 .check = &fd_source_check,
170 .dispatch = &fd_source_dispatch,
171 .finalize = &fd_source_finalize
172 };
173 GSource *source;
174 struct fd_source *fsource;
175
176 source = g_source_new(&fd_source_funcs, sizeof(struct fd_source));
177 fsource = (struct fd_source *)source;
178
179 g_source_set_name(source, (fd < 0) ? "timer" : "fd");
180
181 if (timeout_ms >= 0) {
182 fsource->timeout_us = 1000 * (int64_t)timeout_ms;
183 fsource->due_us = 0;
184 } else {
185 fsource->timeout_us = -1;
186 fsource->due_us = INT64_MAX;
187 }
188 fsource->session = session;
189 fsource->key = key;
190
191 fsource->pollfd.fd = fd;
192 fsource->pollfd.events = events;
193 fsource->pollfd.revents = 0;
194
195 if (fd >= 0)
196 g_source_add_poll(source, &fsource->pollfd);
197
198 return source;
199}
200
201/**
202 * Create a new session.
203 *
204 * @param ctx The context in which to create the new session.
205 * @param new_session This will contain a pointer to the newly created
206 * session if the return value is SR_OK, otherwise the value
207 * is undefined and should not be used. Must not be NULL.
208 *
209 * @retval SR_OK Success.
210 * @retval SR_ERR_ARG Invalid argument.
211 *
212 * @since 0.4.0
213 */
214SR_API int sr_session_new(struct sr_context *ctx,
215 struct sr_session **new_session)
216{
217 struct sr_session *session;
218
219 if (!new_session)
220 return SR_ERR_ARG;
221
222 session = g_malloc0(sizeof(struct sr_session));
223
224 session->ctx = ctx;
225
226 g_mutex_init(&session->main_mutex);
227
228 /* To maintain API compatibility, we need a lookup table
229 * which maps poll_object IDs to GSource* pointers.
230 */
231 session->event_sources = g_hash_table_new(NULL, NULL);
232
233 *new_session = session;
234
235 return SR_OK;
236}
237
238/**
239 * Destroy a session.
240 * This frees up all memory used by the session.
241 *
242 * @param session The session to destroy. Must not be NULL.
243 *
244 * @retval SR_OK Success.
245 * @retval SR_ERR_ARG Invalid session passed.
246 *
247 * @since 0.4.0
248 */
249SR_API int sr_session_destroy(struct sr_session *session)
250{
251 if (!session) {
252 sr_err("%s: session was NULL", __func__);
253 return SR_ERR_ARG;
254 }
255
256 sr_session_dev_remove_all(session);
257 g_slist_free_full(session->owned_devs, (GDestroyNotify)sr_dev_inst_free);
258
259 g_hash_table_unref(session->event_sources);
260
261 g_mutex_clear(&session->main_mutex);
262
263 g_free(session);
264
265 return SR_OK;
266}
267
268/**
269 * Remove all the devices from a session.
270 *
271 * The session itself (i.e., the struct sr_session) is not free'd and still
272 * exists after this function returns.
273 *
274 * @param session The session to use. Must not be NULL.
275 *
276 * @retval SR_OK Success.
277 * @retval SR_ERR_BUG Invalid session passed.
278 *
279 * @since 0.4.0
280 */
281SR_API int sr_session_dev_remove_all(struct sr_session *session)
282{
283 struct sr_dev_inst *sdi;
284 GSList *l;
285
286 if (!session) {
287 sr_err("%s: session was NULL", __func__);
288 return SR_ERR_ARG;
289 }
290
291 for (l = session->devs; l; l = l->next) {
292 sdi = (struct sr_dev_inst *) l->data;
293 sdi->session = NULL;
294 }
295
296 g_slist_free(session->devs);
297 session->devs = NULL;
298
299 return SR_OK;
300}
301
302/**
303 * Add a device instance to a session.
304 *
305 * @param session The session to add to. Must not be NULL.
306 * @param sdi The device instance to add to a session. Must not
307 * be NULL. Also, sdi->driver and sdi->driver->dev_open must
308 * not be NULL.
309 *
310 * @retval SR_OK Success.
311 * @retval SR_ERR_ARG Invalid argument.
312 *
313 * @since 0.4.0
314 */
315SR_API int sr_session_dev_add(struct sr_session *session,
316 struct sr_dev_inst *sdi)
317{
318 int ret;
319
320 if (!sdi) {
321 sr_err("%s: sdi was NULL", __func__);
322 return SR_ERR_ARG;
323 }
324
325 if (!session) {
326 sr_err("%s: session was NULL", __func__);
327 return SR_ERR_ARG;
328 }
329
330 /* If sdi->session is not NULL, the device is already in this or
331 * another session. */
332 if (sdi->session) {
333 sr_err("%s: already assigned to session", __func__);
334 return SR_ERR_ARG;
335 }
336
337 /* If sdi->driver is NULL, this is a virtual device. */
338 if (!sdi->driver) {
339 /* Just add the device, don't run dev_open(). */
340 session->devs = g_slist_append(session->devs, sdi);
341 sdi->session = session;
342 return SR_OK;
343 }
344
345 /* sdi->driver is non-NULL (i.e. we have a real device). */
346 if (!sdi->driver->dev_open) {
347 sr_err("%s: sdi->driver->dev_open was NULL", __func__);
348 return SR_ERR_BUG;
349 }
350
351 session->devs = g_slist_append(session->devs, sdi);
352 sdi->session = session;
353
354 /* TODO: This is invalid if the session runs in a different thread.
355 * The usage semantics and restrictions need to be documented.
356 */
357 if (session->running) {
358 /* Adding a device to a running session. Commit settings
359 * and start acquisition on that device now. */
360 if ((ret = sr_config_commit(sdi)) != SR_OK) {
361 sr_err("Failed to commit device settings before "
362 "starting acquisition in running session (%s)",
363 sr_strerror(ret));
364 return ret;
365 }
366 if ((ret = sdi->driver->dev_acquisition_start(sdi,
367 sdi)) != SR_OK) {
368 sr_err("Failed to start acquisition of device in "
369 "running session (%s)", sr_strerror(ret));
370 return ret;
371 }
372 }
373
374 return SR_OK;
375}
376
377/**
378 * List all device instances attached to a session.
379 *
380 * @param session The session to use. Must not be NULL.
381 * @param devlist A pointer where the device instance list will be
382 * stored on return. If no devices are in the session,
383 * this will be NULL. Each element in the list points
384 * to a struct sr_dev_inst *.
385 * The list must be freed by the caller, but not the
386 * elements pointed to.
387 *
388 * @retval SR_OK Success.
389 * @retval SR_ERR_ARG Invalid argument.
390 *
391 * @since 0.4.0
392 */
393SR_API int sr_session_dev_list(struct sr_session *session, GSList **devlist)
394{
395 if (!session)
396 return SR_ERR_ARG;
397
398 if (!devlist)
399 return SR_ERR_ARG;
400
401 *devlist = g_slist_copy(session->devs);
402
403 return SR_OK;
404}
405
406/**
407 * Remove all datafeed callbacks in a session.
408 *
409 * @param session The session to use. Must not be NULL.
410 *
411 * @retval SR_OK Success.
412 * @retval SR_ERR_ARG Invalid session passed.
413 *
414 * @since 0.4.0
415 */
416SR_API int sr_session_datafeed_callback_remove_all(struct sr_session *session)
417{
418 if (!session) {
419 sr_err("%s: session was NULL", __func__);
420 return SR_ERR_ARG;
421 }
422
423 g_slist_free_full(session->datafeed_callbacks, g_free);
424 session->datafeed_callbacks = NULL;
425
426 return SR_OK;
427}
428
429/**
430 * Add a datafeed callback to a session.
431 *
432 * @param session The session to use. Must not be NULL.
433 * @param cb Function to call when a chunk of data is received.
434 * Must not be NULL.
435 * @param cb_data Opaque pointer passed in by the caller.
436 *
437 * @retval SR_OK Success.
438 * @retval SR_ERR_BUG No session exists.
439 *
440 * @since 0.3.0
441 */
442SR_API int sr_session_datafeed_callback_add(struct sr_session *session,
443 sr_datafeed_callback cb, void *cb_data)
444{
445 struct datafeed_callback *cb_struct;
446
447 if (!session) {
448 sr_err("%s: session was NULL", __func__);
449 return SR_ERR_BUG;
450 }
451
452 if (!cb) {
453 sr_err("%s: cb was NULL", __func__);
454 return SR_ERR_ARG;
455 }
456
457 cb_struct = g_malloc0(sizeof(struct datafeed_callback));
458 cb_struct->cb = cb;
459 cb_struct->cb_data = cb_data;
460
461 session->datafeed_callbacks =
462 g_slist_append(session->datafeed_callbacks, cb_struct);
463
464 return SR_OK;
465}
466
467/**
468 * Get the trigger assigned to this session.
469 *
470 * @param session The session to use.
471 *
472 * @retval NULL Invalid (NULL) session was passed to the function.
473 * @retval other The trigger assigned to this session (can be NULL).
474 *
475 * @since 0.4.0
476 */
477SR_API struct sr_trigger *sr_session_trigger_get(struct sr_session *session)
478{
479 if (!session)
480 return NULL;
481
482 return session->trigger;
483}
484
485/**
486 * Set the trigger of this session.
487 *
488 * @param session The session to use. Must not be NULL.
489 * @param trig The trigger to assign to this session. Can be NULL.
490 *
491 * @retval SR_OK Success.
492 * @retval SR_ERR_ARG Invalid argument.
493 *
494 * @since 0.4.0
495 */
496SR_API int sr_session_trigger_set(struct sr_session *session, struct sr_trigger *trig)
497{
498 if (!session)
499 return SR_ERR_ARG;
500
501 session->trigger = trig;
502
503 return SR_OK;
504}
505
506static int verify_trigger(struct sr_trigger *trigger)
507{
508 struct sr_trigger_stage *stage;
509 struct sr_trigger_match *match;
510 GSList *l, *m;
511
512 if (!trigger->stages) {
513 sr_err("No trigger stages defined.");
514 return SR_ERR;
515 }
516
517 sr_spew("Checking trigger:");
518 for (l = trigger->stages; l; l = l->next) {
519 stage = l->data;
520 if (!stage->matches) {
521 sr_err("Stage %d has no matches defined.", stage->stage);
522 return SR_ERR;
523 }
524 for (m = stage->matches; m; m = m->next) {
525 match = m->data;
526 if (!match->channel) {
527 sr_err("Stage %d match has no channel.", stage->stage);
528 return SR_ERR;
529 }
530 if (!match->match) {
531 sr_err("Stage %d match is not defined.", stage->stage);
532 return SR_ERR;
533 }
534 sr_spew("Stage %d match on channel %s, match %d", stage->stage,
535 match->channel->name, match->match);
536 }
537 }
538
539 return SR_OK;
540}
541
542/** Set up the main context the session will be executing in.
543 *
544 * Must be called just before the session starts, by the thread which
545 * will execute the session main loop. Once acquired, the main context
546 * pointer is immutable for the duration of the session run.
547 */
548static int set_main_context(struct sr_session *session)
549{
550 GMainContext *main_context;
551
552 g_mutex_lock(&session->main_mutex);
553
554 /* May happen if sr_session_start() is called a second time
555 * while the session is still running.
556 */
557 if (session->main_context) {
558 sr_err("Main context already set.");
559
560 g_mutex_unlock(&session->main_mutex);
561 return SR_ERR;
562 }
563 main_context = g_main_context_ref_thread_default();
564 /*
565 * Try to use an existing main context if possible, but only if we
566 * can make it owned by the current thread. Otherwise, create our
567 * own main context so that event source callbacks can execute in
568 * the session thread.
569 */
570 if (g_main_context_acquire(main_context)) {
571 g_main_context_release(main_context);
572
573 sr_dbg("Using thread-default main context.");
574 } else {
575 g_main_context_unref(main_context);
576
577 sr_dbg("Creating our own main context.");
578 main_context = g_main_context_new();
579 }
580 session->main_context = main_context;
581
582 g_mutex_unlock(&session->main_mutex);
583
584 return SR_OK;
585}
586
587/** Unset the main context used for the current session run.
588 *
589 * Must be called right after stopping the session. Note that if the
590 * session is stopped asynchronously, the main loop may still be running
591 * after the main context has been unset. This is OK as long as no new
592 * event sources are created -- the main loop holds its own reference
593 * to the main context.
594 */
595static int unset_main_context(struct sr_session *session)
596{
597 int ret;
598
599 g_mutex_lock(&session->main_mutex);
600
601 if (session->main_context) {
602 g_main_context_unref(session->main_context);
603 session->main_context = NULL;
604 ret = SR_OK;
605 } else {
606 /* May happen if the set/unset calls are not matched.
607 */
608 sr_err("No main context to unset.");
609 ret = SR_ERR;
610 }
611 g_mutex_unlock(&session->main_mutex);
612
613 return ret;
614}
615
616static unsigned int session_source_attach(struct sr_session *session,
617 GSource *source)
618{
619 unsigned int id = 0;
620
621 g_mutex_lock(&session->main_mutex);
622
623 if (session->main_context)
624 id = g_source_attach(source, session->main_context);
625 else
626 sr_err("Cannot add event source without main context.");
627
628 g_mutex_unlock(&session->main_mutex);
629
630 return id;
631}
632
633/* Idle handler; invoked when the number of registered event sources
634 * for a running session drops to zero.
635 */
636static gboolean delayed_stop_check(void *data)
637{
638 struct sr_session *session;
639
640 session = data;
641 session->stop_check_id = 0;
642
643 /* Session already ended? */
644 if (!session->running)
645 return G_SOURCE_REMOVE;
646
647 /* New event sources may have been installed in the meantime. */
648 if (g_hash_table_size(session->event_sources) != 0)
649 return G_SOURCE_REMOVE;
650
651 session->running = FALSE;
652 unset_main_context(session);
653
654 sr_info("Stopped.");
655
656 /* This indicates a bug in user code, since it is not valid to
657 * restart or destroy a session while it may still be running.
658 */
659 if (!session->main_loop && !session->stopped_callback) {
660 sr_err("BUG: Session stop left unhandled.");
661 return G_SOURCE_REMOVE;
662 }
663 if (session->main_loop)
664 g_main_loop_quit(session->main_loop);
665
666 if (session->stopped_callback)
667 (*session->stopped_callback)(session->stopped_cb_data);
668
669 return G_SOURCE_REMOVE;
670}
671
672static int stop_check_later(struct sr_session *session)
673{
674 GSource *source;
675 unsigned int source_id;
676
677 if (session->stop_check_id != 0)
678 return SR_OK; /* idle handler already installed */
679
680 source = g_idle_source_new();
681 g_source_set_callback(source, &delayed_stop_check, session, NULL);
682
683 source_id = session_source_attach(session, source);
684 session->stop_check_id = source_id;
685
686 g_source_unref(source);
687
688 return (source_id != 0) ? SR_OK : SR_ERR;
689}
690
691/**
692 * Start a session.
693 *
694 * When this function returns with a status code indicating success, the
695 * session is running. Use sr_session_stopped_callback_set() to receive
696 * notification upon completion, or call sr_session_run() to block until
697 * the session stops.
698 *
699 * Session events will be processed in the context of the current thread.
700 * If a thread-default GLib main context has been set, and is not owned by
701 * any other thread, it will be used. Otherwise, libsigrok will create its
702 * own main context for the current thread.
703 *
704 * @param session The session to use. Must not be NULL.
705 *
706 * @retval SR_OK Success.
707 * @retval SR_ERR_ARG Invalid session passed.
708 * @retval SR_ERR Other error.
709 *
710 * @since 0.4.0
711 */
712SR_API int sr_session_start(struct sr_session *session)
713{
714 struct sr_dev_inst *sdi;
715 struct sr_channel *ch;
716 GSList *l, *c, *lend;
717 int ret;
718
719 if (!session) {
720 sr_err("%s: session was NULL", __func__);
721 return SR_ERR_ARG;
722 }
723
724 if (!session->devs) {
725 sr_err("%s: session->devs was NULL; a session "
726 "cannot be started without devices.", __func__);
727 return SR_ERR_ARG;
728 }
729
730 if (session->running) {
731 sr_err("Cannot (re-)start session while it is still running.");
732 return SR_ERR;
733 }
734
735 if (session->trigger) {
736 ret = verify_trigger(session->trigger);
737 if (ret != SR_OK)
738 return ret;
739 }
740
741 /* Check enabled channels and commit settings of all devices. */
742 for (l = session->devs; l; l = l->next) {
743 sdi = l->data;
744 for (c = sdi->channels; c; c = c->next) {
745 ch = c->data;
746 if (ch->enabled)
747 break;
748 }
749 if (!c) {
750 sr_err("%s device %s has no enabled channels.",
751 sdi->driver->name, sdi->connection_id);
752 return SR_ERR;
753 }
754
755 ret = sr_config_commit(sdi);
756 if (ret != SR_OK) {
757 sr_err("Failed to commit %s device %s settings "
758 "before starting acquisition.",
759 sdi->driver->name, sdi->connection_id);
760 return ret;
761 }
762 }
763
764 ret = set_main_context(session);
765 if (ret != SR_OK)
766 return ret;
767
768 sr_info("Starting.");
769
770 session->running = TRUE;
771
772 /* Have all devices start acquisition. */
773 for (l = session->devs; l; l = l->next) {
774 sdi = l->data;
775 ret = sdi->driver->dev_acquisition_start(sdi, sdi);
776 if (ret != SR_OK) {
777 sr_err("Could not start %s device %s acquisition.",
778 sdi->driver->name, sdi->connection_id);
779 break;
780 }
781 }
782
783 if (ret != SR_OK) {
784 /* If there are multiple devices, some of them may already have
785 * started successfully. Stop them now before returning. */
786 lend = l->next;
787 for (l = session->devs; l != lend; l = l->next) {
788 sdi = l->data;
789 if (sdi->driver->dev_acquisition_stop)
790 sdi->driver->dev_acquisition_stop(sdi, sdi);
791 }
792 /* TODO: Handle delayed stops. Need to iterate the event
793 * sources... */
794 session->running = FALSE;
795
796 unset_main_context(session);
797 return ret;
798 }
799
800 if (g_hash_table_size(session->event_sources) == 0)
801 stop_check_later(session);
802
803 return SR_OK;
804}
805
806/**
807 * Block until the running session stops.
808 *
809 * This is a convenience function which creates a GLib main loop and runs
810 * it to process session events until the session stops.
811 *
812 * Instead of using this function, applications may run their own GLib main
813 * loop, and use sr_session_stopped_callback_set() to receive notification
814 * when the session finished running.
815 *
816 * @param session The session to use. Must not be NULL.
817 *
818 * @retval SR_OK Success.
819 * @retval SR_ERR_ARG Invalid session passed.
820 * @retval SR_ERR Other error.
821 *
822 * @since 0.4.0
823 */
824SR_API int sr_session_run(struct sr_session *session)
825{
826 if (!session) {
827 sr_err("%s: session was NULL", __func__);
828 return SR_ERR_ARG;
829 }
830 if (!session->running) {
831 sr_err("No session running.");
832 return SR_ERR;
833 }
834 if (session->main_loop) {
835 sr_err("Main loop already created.");
836 return SR_ERR;
837 }
838
839 g_mutex_lock(&session->main_mutex);
840
841 if (!session->main_context) {
842 sr_err("Cannot run without main context.");
843 g_mutex_unlock(&session->main_mutex);
844 return SR_ERR;
845 }
846 session->main_loop = g_main_loop_new(session->main_context, FALSE);
847
848 g_mutex_unlock(&session->main_mutex);
849
850 g_main_loop_run(session->main_loop);
851
852 g_main_loop_unref(session->main_loop);
853 session->main_loop = NULL;
854
855 return SR_OK;
856}
857
858static gboolean session_stop_sync(void *user_data)
859{
860 struct sr_session *session;
861 struct sr_dev_inst *sdi;
862 GSList *node;
863
864 session = user_data;
865
866 if (!session->running)
867 return G_SOURCE_REMOVE;
868
869 sr_info("Stopping.");
870
871 for (node = session->devs; node; node = node->next) {
872 sdi = node->data;
873 if (sdi->driver && sdi->driver->dev_acquisition_stop)
874 sdi->driver->dev_acquisition_stop(sdi, sdi);
875 }
876
877 return G_SOURCE_REMOVE;
878}
879
880/**
881 * Stop a session.
882 *
883 * This requests the drivers of each device participating in the session to
884 * abort the acquisition as soon as possible. Even after this function returns,
885 * event processing still continues until all devices have actually stopped.
886 *
887 * Use sr_session_stopped_callback_set() to receive notification when the event
888 * processing finished.
889 *
890 * This function is reentrant. That is, it may be called from a different
891 * thread than the one executing the session, as long as it can be ensured
892 * that the session object is valid.
893 *
894 * If the session is not running, sr_session_stop() silently does nothing.
895 *
896 * @param session The session to use. Must not be NULL.
897 *
898 * @retval SR_OK Success.
899 * @retval SR_ERR_ARG Invalid session passed.
900 *
901 * @since 0.4.0
902 */
903SR_API int sr_session_stop(struct sr_session *session)
904{
905 GMainContext *main_context;
906
907 if (!session) {
908 sr_err("%s: session was NULL", __func__);
909 return SR_ERR_ARG;
910 }
911
912 g_mutex_lock(&session->main_mutex);
913
914 main_context = (session->main_context)
915 ? g_main_context_ref(session->main_context)
916 : NULL;
917
918 g_mutex_unlock(&session->main_mutex);
919
920 if (!main_context) {
921 sr_dbg("No main context set; already stopped?");
922 /* Not an error; as it would be racy. */
923 return SR_OK;
924 }
925 g_main_context_invoke(main_context, &session_stop_sync, session);
926 g_main_context_unref(main_context);
927
928 return SR_OK;
929}
930
931/**
932 * Return whether the session is currently running.
933 *
934 * Note that this function should be called from the same thread
935 * the session was started in.
936 *
937 * @param session The session to use. Must not be NULL.
938 *
939 * @retval TRUE Session is running.
940 * @retval FALSE Session is not running.
941 * @retval SR_ERR_ARG Invalid session passed.
942 *
943 * @since 0.4.0
944 */
945SR_API int sr_session_is_running(struct sr_session *session)
946{
947 if (!session) {
948 sr_err("%s: session was NULL", __func__);
949 return SR_ERR_ARG;
950 }
951 return session->running;
952}
953
954/**
955 * Set the callback to be invoked after a session stopped running.
956 *
957 * Install a callback to receive notification when a session run stopped.
958 * This can be used to integrate session execution with an existing main
959 * loop, without having to block in sr_session_run().
960 *
961 * Note that the callback will be invoked in the context of the thread
962 * that calls sr_session_start().
963 *
964 * @param session The session to use. Must not be NULL.
965 * @param cb The callback to invoke on session stop. May be NULL to unset.
966 * @param cb_data User data pointer to be passed to the callback.
967 *
968 * @retval SR_OK Success.
969 * @retval SR_ERR_ARG Invalid session passed.
970 *
971 * @since 0.4.0
972 */
973SR_API int sr_session_stopped_callback_set(struct sr_session *session,
974 sr_session_stopped_callback cb, void *cb_data)
975{
976 if (!session) {
977 sr_err("%s: session was NULL", __func__);
978 return SR_ERR_ARG;
979 }
980 session->stopped_callback = cb;
981 session->stopped_cb_data = cb_data;
982
983 return SR_OK;
984}
985
986/**
987 * Debug helper.
988 *
989 * @param packet The packet to show debugging information for.
990 */
991static void datafeed_dump(const struct sr_datafeed_packet *packet)
992{
993 const struct sr_datafeed_logic *logic;
994 const struct sr_datafeed_analog_old *analog_old;
995 const struct sr_datafeed_analog *analog;
996
997 /* Please use the same order as in libsigrok.h. */
998 switch (packet->type) {
999 case SR_DF_HEADER:
1000 sr_dbg("bus: Received SR_DF_HEADER packet.");
1001 break;
1002 case SR_DF_END:
1003 sr_dbg("bus: Received SR_DF_END packet.");
1004 break;
1005 case SR_DF_META:
1006 sr_dbg("bus: Received SR_DF_META packet.");
1007 break;
1008 case SR_DF_TRIGGER:
1009 sr_dbg("bus: Received SR_DF_TRIGGER packet.");
1010 break;
1011 case SR_DF_LOGIC:
1012 logic = packet->payload;
1013 sr_dbg("bus: Received SR_DF_LOGIC packet (%" PRIu64 " bytes, "
1014 "unitsize = %d).", logic->length, logic->unitsize);
1015 break;
1016 case SR_DF_ANALOG_OLD:
1017 analog_old = packet->payload;
1018 sr_dbg("bus: Received SR_DF_ANALOG_OLD packet (%d samples).",
1019 analog_old->num_samples);
1020 break;
1021 case SR_DF_FRAME_BEGIN:
1022 sr_dbg("bus: Received SR_DF_FRAME_BEGIN packet.");
1023 break;
1024 case SR_DF_FRAME_END:
1025 sr_dbg("bus: Received SR_DF_FRAME_END packet.");
1026 break;
1027 case SR_DF_ANALOG:
1028 analog = packet->payload;
1029 sr_dbg("bus: Received SR_DF_ANALOG packet (%d samples).",
1030 analog->num_samples);
1031 break;
1032 default:
1033 sr_dbg("bus: Received unknown packet type: %d.", packet->type);
1034 break;
1035 }
1036}
1037
1038/**
1039 * Send a packet to whatever is listening on the datafeed bus.
1040 *
1041 * Hardware drivers use this to send a data packet to the frontend.
1042 *
1043 * @param sdi TODO.
1044 * @param packet The datafeed packet to send to the session bus.
1045 *
1046 * @retval SR_OK Success.
1047 * @retval SR_ERR_ARG Invalid argument.
1048 *
1049 * @private
1050 */
1051SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
1052 const struct sr_datafeed_packet *packet)
1053{
1054 GSList *l;
1055 struct datafeed_callback *cb_struct;
1056 struct sr_datafeed_packet *packet_in, *packet_out;
1057 struct sr_transform *t;
1058 int ret;
1059
1060 if (!sdi) {
1061 sr_err("%s: sdi was NULL", __func__);
1062 return SR_ERR_ARG;
1063 }
1064
1065 if (!packet) {
1066 sr_err("%s: packet was NULL", __func__);
1067 return SR_ERR_ARG;
1068 }
1069
1070 if (!sdi->session) {
1071 sr_err("%s: session was NULL", __func__);
1072 return SR_ERR_BUG;
1073 }
1074
1075 if (packet->type == SR_DF_ANALOG_OLD) {
1076 /* Convert to SR_DF_ANALOG. */
1077 const struct sr_datafeed_analog_old *analog_old = packet->payload;
1078 struct sr_analog_encoding encoding;
1079 struct sr_analog_meaning meaning;
1080 struct sr_analog_spec spec;
1081 struct sr_datafeed_analog analog;
1082 struct sr_datafeed_packet new_packet;
1083 new_packet.type = SR_DF_ANALOG;
1084 new_packet.payload = &analog;
1085 analog.data = analog_old->data;
1086 analog.num_samples = analog_old->num_samples;
1087 analog.encoding = &encoding;
1088 analog.meaning = &meaning;
1089 analog.spec = &spec;
1090 encoding.unitsize = sizeof(float);
1091 encoding.is_signed = TRUE;
1092 encoding.is_float = TRUE;
1093#ifdef WORDS_BIGENDIAN
1094 encoding.is_bigendian = TRUE;
1095#else
1096 encoding.is_bigendian = FALSE;
1097#endif
1098 encoding.digits = 0;
1099 encoding.is_digits_decimal = FALSE;
1100 encoding.scale.p = 1;
1101 encoding.scale.q = 1;
1102 encoding.offset.p = 0;
1103 encoding.offset.q = 1;
1104 meaning.mq = analog_old->mq;
1105 meaning.unit = analog_old->unit;
1106 meaning.mqflags = analog_old->mqflags;
1107 meaning.channels = analog_old->channels;
1108 spec.spec_digits = 0;
1109 return sr_session_send(sdi, &new_packet);
1110 }
1111
1112 /*
1113 * Pass the packet to the first transform module. If that returns
1114 * another packet (instead of NULL), pass that packet to the next
1115 * transform module in the list, and so on.
1116 */
1117 packet_in = (struct sr_datafeed_packet *)packet;
1118 for (l = sdi->session->transforms; l; l = l->next) {
1119 t = l->data;
1120 sr_spew("Running transform module '%s'.", t->module->id);
1121 ret = t->module->receive(t, packet_in, &packet_out);
1122 if (ret < 0) {
1123 sr_err("Error while running transform module: %d.", ret);
1124 return SR_ERR;
1125 }
1126 if (!packet_out) {
1127 /*
1128 * If any of the transforms don't return an output
1129 * packet, abort.
1130 */
1131 sr_spew("Transform module didn't return a packet, aborting.");
1132 return SR_OK;
1133 } else {
1134 /*
1135 * Use this transform module's output packet as input
1136 * for the next transform module.
1137 */
1138 packet_in = packet_out;
1139 }
1140 }
1141 packet = packet_in;
1142
1143 /*
1144 * If the last transform did output a packet, pass it to all datafeed
1145 * callbacks.
1146 */
1147 for (l = sdi->session->datafeed_callbacks; l; l = l->next) {
1148 if (sr_log_loglevel_get() >= SR_LOG_DBG)
1149 datafeed_dump(packet);
1150 cb_struct = l->data;
1151 cb_struct->cb(sdi, packet, cb_struct->cb_data);
1152 }
1153
1154 return SR_OK;
1155}
1156
1157/**
1158 * Add an event source for a file descriptor.
1159 *
1160 * @param session The session to use. Must not be NULL.
1161 * @param key The key which identifies the event source.
1162 * @param source An event source object. Must not be NULL.
1163 *
1164 * @retval SR_OK Success.
1165 * @retval SR_ERR_ARG Invalid argument.
1166 * @retval SR_ERR_BUG Event source with @a key already installed.
1167 * @retval SR_ERR Other error.
1168 *
1169 * @private
1170 */
1171SR_PRIV int sr_session_source_add_internal(struct sr_session *session,
1172 void *key, GSource *source)
1173{
1174 /*
1175 * This must not ever happen, since the source has already been
1176 * created and its finalize() method will remove the key for the
1177 * already installed source. (Well it would, if we did not have
1178 * another sanity check there.)
1179 */
1180 if (g_hash_table_contains(session->event_sources, key)) {
1181 sr_err("Event source with key %p already exists.", key);
1182 return SR_ERR_BUG;
1183 }
1184 g_hash_table_insert(session->event_sources, key, source);
1185
1186 if (session_source_attach(session, source) == 0)
1187 return SR_ERR;
1188
1189 return SR_OK;
1190}
1191
1192SR_PRIV int sr_session_fd_source_add(struct sr_session *session,
1193 void *key, gintptr fd, int events, int timeout,
1194 sr_receive_data_callback cb, void *cb_data)
1195{
1196 GSource *source;
1197 int ret;
1198
1199 source = fd_source_new(session, key, fd, events, timeout);
1200 if (!source)
1201 return SR_ERR;
1202
1203 g_source_set_callback(source, (GSourceFunc)cb, cb_data, NULL);
1204
1205 ret = sr_session_source_add_internal(session, key, source);
1206 g_source_unref(source);
1207
1208 return ret;
1209}
1210
1211/**
1212 * Add an event source for a file descriptor.
1213 *
1214 * @param session The session to use. Must not be NULL.
1215 * @param fd The file descriptor, or a negative value to create a timer source.
1216 * @param events Events to check for.
1217 * @param timeout Max time in ms to wait before the callback is called,
1218 * or -1 to wait indefinitely.
1219 * @param cb Callback function to add. Must not be NULL.
1220 * @param cb_data Data for the callback function. Can be NULL.
1221 *
1222 * @retval SR_OK Success.
1223 * @retval SR_ERR_ARG Invalid argument.
1224 *
1225 * @since 0.3.0
1226 * @private
1227 */
1228SR_PRIV int sr_session_source_add(struct sr_session *session, int fd,
1229 int events, int timeout, sr_receive_data_callback cb, void *cb_data)
1230{
1231 if (fd < 0 && timeout < 0) {
1232 sr_err("Cannot create timer source without timeout.");
1233 return SR_ERR_ARG;
1234 }
1235 return sr_session_fd_source_add(session, GINT_TO_POINTER(fd),
1236 fd, events, timeout, cb, cb_data);
1237}
1238
1239/**
1240 * Add an event source for a GPollFD.
1241 *
1242 * @param session The session to use. Must not be NULL.
1243 * @param pollfd The GPollFD. Must not be NULL.
1244 * @param timeout Max time in ms to wait before the callback is called,
1245 * or -1 to wait indefinitely.
1246 * @param cb Callback function to add. Must not be NULL.
1247 * @param cb_data Data for the callback function. Can be NULL.
1248 *
1249 * @retval SR_OK Success.
1250 * @retval SR_ERR_ARG Invalid argument.
1251 *
1252 * @since 0.3.0
1253 * @private
1254 */
1255SR_PRIV int sr_session_source_add_pollfd(struct sr_session *session,
1256 GPollFD *pollfd, int timeout, sr_receive_data_callback cb,
1257 void *cb_data)
1258{
1259 if (!pollfd) {
1260 sr_err("%s: pollfd was NULL", __func__);
1261 return SR_ERR_ARG;
1262 }
1263 return sr_session_fd_source_add(session, pollfd, pollfd->fd,
1264 pollfd->events, timeout, cb, cb_data);
1265}
1266
1267/**
1268 * Add an event source for a GIOChannel.
1269 *
1270 * @param session The session to use. Must not be NULL.
1271 * @param channel The GIOChannel.
1272 * @param events Events to poll on.
1273 * @param timeout Max time in ms to wait before the callback is called,
1274 * or -1 to wait indefinitely.
1275 * @param cb Callback function to add. Must not be NULL.
1276 * @param cb_data Data for the callback function. Can be NULL.
1277 *
1278 * @retval SR_OK Success.
1279 * @retval SR_ERR_ARG Invalid argument.
1280 *
1281 * @since 0.3.0
1282 * @private
1283 */
1284SR_PRIV int sr_session_source_add_channel(struct sr_session *session,
1285 GIOChannel *channel, int events, int timeout,
1286 sr_receive_data_callback cb, void *cb_data)
1287{
1288 GPollFD pollfd;
1289
1290 if (!channel) {
1291 sr_err("%s: channel was NULL", __func__);
1292 return SR_ERR_ARG;
1293 }
1294 /* We should be using g_io_create_watch(), but can't without
1295 * changing the driver API, as the callback signature is different.
1296 */
1297#ifdef G_OS_WIN32
1298 g_io_channel_win32_make_pollfd(channel, events, &pollfd);
1299#else
1300 pollfd.fd = g_io_channel_unix_get_fd(channel);
1301 pollfd.events = events;
1302#endif
1303 return sr_session_fd_source_add(session, channel, pollfd.fd,
1304 pollfd.events, timeout, cb, cb_data);
1305}
1306
1307/**
1308 * Remove the source identified by the specified poll object.
1309 *
1310 * @param session The session to use. Must not be NULL.
1311 * @param key The key by which the source is identified.
1312 *
1313 * @retval SR_OK Success
1314 * @retval SR_ERR_BUG No event source for poll_object found.
1315 *
1316 * @private
1317 */
1318SR_PRIV int sr_session_source_remove_internal(struct sr_session *session,
1319 void *key)
1320{
1321 GSource *source;
1322
1323 source = g_hash_table_lookup(session->event_sources, key);
1324 /*
1325 * Trying to remove an already removed event source is problematic
1326 * since the poll_object handle may have been reused in the meantime.
1327 */
1328 if (!source) {
1329 sr_warn("Cannot remove non-existing event source %p.", key);
1330 return SR_ERR_BUG;
1331 }
1332 g_source_destroy(source);
1333
1334 return SR_OK;
1335}
1336
1337/**
1338 * Remove the source belonging to the specified file descriptor.
1339 *
1340 * @param session The session to use. Must not be NULL.
1341 * @param fd The file descriptor for which the source should be removed.
1342 *
1343 * @retval SR_OK Success
1344 * @retval SR_ERR_ARG Invalid argument
1345 * @retval SR_ERR_BUG Internal error.
1346 *
1347 * @since 0.3.0
1348 * @private
1349 */
1350SR_PRIV int sr_session_source_remove(struct sr_session *session, int fd)
1351{
1352 return sr_session_source_remove_internal(session, GINT_TO_POINTER(fd));
1353}
1354
1355/**
1356 * Remove the source belonging to the specified poll descriptor.
1357 *
1358 * @param session The session to use. Must not be NULL.
1359 * @param pollfd The poll descriptor for which the source should be removed.
1360 * Must not be NULL.
1361 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
1362 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
1363 * internal errors.
1364 *
1365 * @since 0.2.0
1366 * @private
1367 */
1368SR_PRIV int sr_session_source_remove_pollfd(struct sr_session *session,
1369 GPollFD *pollfd)
1370{
1371 if (!pollfd) {
1372 sr_err("%s: pollfd was NULL", __func__);
1373 return SR_ERR_ARG;
1374 }
1375 return sr_session_source_remove_internal(session, pollfd);
1376}
1377
1378/**
1379 * Remove the source belonging to the specified channel.
1380 *
1381 * @param session The session to use. Must not be NULL.
1382 * @param channel The channel for which the source should be removed.
1383 * Must not be NULL.
1384 * @retval SR_OK Success.
1385 * @retval SR_ERR_ARG Invalid argument.
1386 * @return SR_ERR_BUG Internal error.
1387 *
1388 * @since 0.2.0
1389 * @private
1390 */
1391SR_PRIV int sr_session_source_remove_channel(struct sr_session *session,
1392 GIOChannel *channel)
1393{
1394 if (!channel) {
1395 sr_err("%s: channel was NULL", __func__);
1396 return SR_ERR_ARG;
1397 }
1398 return sr_session_source_remove_internal(session, channel);
1399}
1400
1401/** Unregister an event source that has been destroyed.
1402 *
1403 * This is intended to be called from a source's finalize() method.
1404 *
1405 * @param session The session to use. Must not be NULL.
1406 * @param key The key used to identify @a source.
1407 * @param source The source object that was destroyed.
1408 *
1409 * @retval SR_OK Success.
1410 * @retval SR_ERR_BUG Event source for @a key does not match @a source.
1411 * @retval SR_ERR Other error.
1412 *
1413 * @private
1414 */
1415SR_PRIV int sr_session_source_destroyed(struct sr_session *session,
1416 void *key, GSource *source)
1417{
1418 GSource *registered_source;
1419
1420 registered_source = g_hash_table_lookup(session->event_sources, key);
1421 /*
1422 * Trying to remove an already removed event source is problematic
1423 * since the poll_object handle may have been reused in the meantime.
1424 */
1425 if (!registered_source) {
1426 sr_err("No event source for key %p found.", key);
1427 return SR_ERR_BUG;
1428 }
1429 if (registered_source != source) {
1430 sr_err("Event source for key %p does not match"
1431 " destroyed source.", key);
1432 return SR_ERR_BUG;
1433 }
1434 g_hash_table_remove(session->event_sources, key);
1435
1436 if (g_hash_table_size(session->event_sources) > 0)
1437 return SR_OK;
1438
1439 /* If no event sources are left, consider the acquisition finished.
1440 * This is pretty crude, as it requires all event sources to be
1441 * registered via the libsigrok API.
1442 */
1443 return stop_check_later(session);
1444}
1445
1446static void copy_src(struct sr_config *src, struct sr_datafeed_meta *meta_copy)
1447{
1448 g_variant_ref(src->data);
1449 meta_copy->config = g_slist_append(meta_copy->config,
1450 g_memdup(src, sizeof(struct sr_config)));
1451}
1452
1453SR_PRIV int sr_packet_copy(const struct sr_datafeed_packet *packet,
1454 struct sr_datafeed_packet **copy)
1455{
1456 const struct sr_datafeed_meta *meta;
1457 struct sr_datafeed_meta *meta_copy;
1458 const struct sr_datafeed_logic *logic;
1459 struct sr_datafeed_logic *logic_copy;
1460 const struct sr_datafeed_analog_old *analog_old;
1461 struct sr_datafeed_analog_old *analog_old_copy;
1462 const struct sr_datafeed_analog *analog;
1463 struct sr_datafeed_analog *analog_copy;
1464 uint8_t *payload;
1465
1466 *copy = g_malloc0(sizeof(struct sr_datafeed_packet));
1467 (*copy)->type = packet->type;
1468
1469 switch (packet->type) {
1470 case SR_DF_TRIGGER:
1471 case SR_DF_END:
1472 /* No payload. */
1473 break;
1474 case SR_DF_HEADER:
1475 payload = g_malloc(sizeof(struct sr_datafeed_header));
1476 memcpy(payload, packet->payload, sizeof(struct sr_datafeed_header));
1477 (*copy)->payload = payload;
1478 break;
1479 case SR_DF_META:
1480 meta = packet->payload;
1481 meta_copy = g_malloc0(sizeof(struct sr_datafeed_meta));
1482 g_slist_foreach(meta->config, (GFunc)copy_src, meta_copy->config);
1483 (*copy)->payload = meta_copy;
1484 break;
1485 case SR_DF_LOGIC:
1486 logic = packet->payload;
1487 logic_copy = g_malloc(sizeof(logic));
1488 logic_copy->length = logic->length;
1489 logic_copy->unitsize = logic->unitsize;
1490 memcpy(logic_copy->data, logic->data, logic->length * logic->unitsize);
1491 (*copy)->payload = logic_copy;
1492 break;
1493 case SR_DF_ANALOG_OLD:
1494 analog_old = packet->payload;
1495 analog_old_copy = g_malloc(sizeof(analog_old));
1496 analog_old_copy->channels = g_slist_copy(analog_old->channels);
1497 analog_old_copy->num_samples = analog_old->num_samples;
1498 analog_old_copy->mq = analog_old->mq;
1499 analog_old_copy->unit = analog_old->unit;
1500 analog_old_copy->mqflags = analog_old->mqflags;
1501 analog_old_copy->data = g_malloc(analog_old->num_samples * sizeof(float));
1502 memcpy(analog_old_copy->data, analog_old->data,
1503 analog_old->num_samples * sizeof(float));
1504 (*copy)->payload = analog_old_copy;
1505 break;
1506 case SR_DF_ANALOG:
1507 analog = packet->payload;
1508 analog_copy = g_malloc(sizeof(analog));
1509 analog_copy->data = g_malloc(
1510 analog->encoding->unitsize * analog->num_samples);
1511 memcpy(analog_copy->data, analog->data,
1512 analog->encoding->unitsize * analog->num_samples);
1513 analog_copy->num_samples = analog->num_samples;
1514 analog_copy->encoding = g_memdup(analog->encoding,
1515 sizeof(struct sr_analog_encoding));
1516 analog_copy->meaning = g_memdup(analog->meaning,
1517 sizeof(struct sr_analog_meaning));
1518 analog_copy->meaning->channels = g_slist_copy(
1519 analog->meaning->channels);
1520 analog_copy->spec = g_memdup(analog->spec,
1521 sizeof(struct sr_analog_spec));
1522 (*copy)->payload = analog_copy;
1523 break;
1524 default:
1525 sr_err("Unknown packet type %d", packet->type);
1526 return SR_ERR;
1527 }
1528
1529 return SR_OK;
1530}
1531
1532void sr_packet_free(struct sr_datafeed_packet *packet)
1533{
1534 const struct sr_datafeed_meta *meta;
1535 const struct sr_datafeed_logic *logic;
1536 const struct sr_datafeed_analog_old *analog_old;
1537 const struct sr_datafeed_analog *analog;
1538 struct sr_config *src;
1539 GSList *l;
1540
1541 switch (packet->type) {
1542 case SR_DF_TRIGGER:
1543 case SR_DF_END:
1544 /* No payload. */
1545 break;
1546 case SR_DF_HEADER:
1547 /* Payload is a simple struct. */
1548 g_free((void *)packet->payload);
1549 break;
1550 case SR_DF_META:
1551 meta = packet->payload;
1552 for (l = meta->config; l; l = l->next) {
1553 src = l->data;
1554 g_variant_unref(src->data);
1555 g_free(src);
1556 }
1557 g_slist_free(meta->config);
1558 g_free((void *)packet->payload);
1559 break;
1560 case SR_DF_LOGIC:
1561 logic = packet->payload;
1562 g_free(logic->data);
1563 g_free((void *)packet->payload);
1564 break;
1565 case SR_DF_ANALOG_OLD:
1566 analog_old = packet->payload;
1567 g_slist_free(analog_old->channels);
1568 g_free(analog_old->data);
1569 g_free((void *)packet->payload);
1570 break;
1571 case SR_DF_ANALOG:
1572 analog = packet->payload;
1573 g_free(analog->data);
1574 g_free(analog->encoding);
1575 g_slist_free(analog->meaning->channels);
1576 g_free(analog->meaning);
1577 g_free(analog->spec);
1578 g_free((void *)packet->payload);
1579 break;
1580 default:
1581 sr_err("Unknown packet type %d", packet->type);
1582 }
1583 g_free(packet);
1584
1585}
1586
1587/** @} */