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