]> sigrok.org Git - libsigrok.git/blame - session.c
serial-dmm/uni-t-dmm: Drop Tecpel DMM-8060.
[libsigrok.git] / session.c
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <stdio.h>
21#include <stdlib.h>
22#include <unistd.h>
23#include <string.h>
544a4582 24#include <glib.h>
45c59c8b
BV
25#include "libsigrok.h"
26#include "libsigrok-internal.h"
aa4b1107 27
29a27196
UH
28/* Message logging helpers with subsystem-specific prefix string. */
29#define LOG_PREFIX "session: "
30#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
31#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
32#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
33#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
34#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
35#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
a421dc1d 36
393fb9cb
UH
37/**
38 * @file
39 *
40 * Creating, using, or destroying libsigrok sessions.
41 */
42
7b870c38
UH
43/**
44 * @defgroup grp_session Session handling
45 *
46 * Creating, using, or destroying libsigrok sessions.
47 *
48 * @{
49 */
50
544a4582 51struct source {
544a4582 52 int timeout;
d08490aa 53 sr_receive_data_callback_t cb;
1f9813eb 54 void *cb_data;
aac0ea25
LPC
55
56 /* This is used to keep track of the object (fd, pollfd or channel) which is
57 * being polled and will be used to match the source when removing it again.
58 */
59 gintptr poll_object;
544a4582
BV
60};
61
2726474a
ML
62struct datafeed_callback {
63 sr_datafeed_callback_t cb;
64 void *cb_data;
65};
66
7d658874 67/* There can only be one session at a time. */
a0ecd83b 68/* 'session' is not static, it's used elsewhere (via 'extern'). */
2872d21e 69struct sr_session *session;
544a4582 70
9f45fb3a
UH
71/**
72 * Create a new session.
73 *
6b2d8d3e 74 * @todo Should it use the file-global "session" variable or take an argument?
9f45fb3a
UH
75 * The same question applies to all the other session functions.
76 *
77 * @return A pointer to the newly allocated session, or NULL upon errors.
78 */
1a081ca6 79SR_API struct sr_session *sr_session_new(void)
a1bb33af 80{
133a37bf 81 if (!(session = g_try_malloc0(sizeof(struct sr_session)))) {
a421dc1d
UH
82 sr_err("Session malloc failed.");
83 return NULL;
9f45fb3a 84 }
a1bb33af 85
b7e94111 86 session->source_timeout = -1;
33c6e4c5
AG
87 session->abort_session = FALSE;
88 g_mutex_init(&session->stop_mutex);
b7e94111 89
a1bb33af
UH
90 return session;
91}
92
9f45fb3a
UH
93/**
94 * Destroy the current session.
95 *
96 * This frees up all memory used by the session.
97 *
e0508e67 98 * @return SR_OK upon success, SR_ERR_BUG if no session exists.
9f45fb3a 99 */
1a081ca6 100SR_API int sr_session_destroy(void)
a1bb33af 101{
9f45fb3a 102 if (!session) {
a421dc1d 103 sr_err("%s: session was NULL", __func__);
e0508e67 104 return SR_ERR_BUG;
9f45fb3a
UH
105 }
106
ed229aaa 107 sr_session_dev_remove_all();
a1bb33af 108
9f45fb3a
UH
109 /* TODO: Error checks needed? */
110
33c6e4c5
AG
111 g_mutex_clear(&session->stop_mutex);
112
a1bb33af 113 g_free(session);
9f45fb3a 114 session = NULL;
e0508e67
UH
115
116 return SR_OK;
a1bb33af
UH
117}
118
9f45fb3a 119/**
6b2d8d3e 120 * Remove all the devices from the current session.
9f45fb3a
UH
121 *
122 * The session itself (i.e., the struct sr_session) is not free'd and still
123 * exists after this function returns.
124 *
e0508e67 125 * @return SR_OK upon success, SR_ERR_BUG if no session exists.
9f45fb3a 126 */
01c3e9db 127SR_API int sr_session_dev_remove_all(void)
a1bb33af 128{
9f45fb3a 129 if (!session) {
a421dc1d 130 sr_err("%s: session was NULL", __func__);
e0508e67 131 return SR_ERR_BUG;
9f45fb3a
UH
132 }
133
681803df 134 g_slist_free(session->devs);
bb7ef793 135 session->devs = NULL;
e0508e67
UH
136
137 return SR_OK;
a1bb33af
UH
138}
139
9f45fb3a 140/**
9c5332d2 141 * Add a device instance to the current session.
9f45fb3a 142 *
9c5332d2 143 * @param sdi The device instance to add to the current session. Must not
de4d3f99
BV
144 * be NULL. Also, sdi->driver and sdi->driver->dev_open must
145 * not be NULL.
9f45fb3a
UH
146 *
147 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
148 */
de4d3f99 149SR_API int sr_session_dev_add(const struct sr_dev_inst *sdi)
a1bb33af 150{
a1bb33af 151
de4d3f99 152 if (!sdi) {
a421dc1d 153 sr_err("%s: sdi was NULL", __func__);
9f45fb3a
UH
154 return SR_ERR_ARG;
155 }
156
d6eb0c33 157 if (!session) {
a421dc1d 158 sr_err("%s: session was NULL", __func__);
d6eb0c33
UH
159 return SR_ERR_BUG;
160 }
161
de4d3f99
BV
162 /* If sdi->driver is NULL, this is a virtual device. */
163 if (!sdi->driver) {
a421dc1d 164 sr_dbg("%s: sdi->driver was NULL, this seems to be "
d6eb0c33
UH
165 "a virtual device; continuing", __func__);
166 /* Just add the device, don't run dev_open(). */
de4d3f99 167 session->devs = g_slist_append(session->devs, (gpointer)sdi);
d6eb0c33 168 return SR_OK;
9f45fb3a
UH
169 }
170
de4d3f99
BV
171 /* sdi->driver is non-NULL (i.e. we have a real device). */
172 if (!sdi->driver->dev_open) {
a421dc1d 173 sr_err("%s: sdi->driver->dev_open was NULL", __func__);
8ec95d22 174 return SR_ERR_BUG;
9f45fb3a
UH
175 }
176
de4d3f99 177 session->devs = g_slist_append(session->devs, (gpointer)sdi);
aa4b1107 178
e46b8fb1 179 return SR_OK;
a1bb33af
UH
180}
181
9f45fb3a 182/**
01c3e9db 183 * Remove all datafeed callbacks in the current session.
9f45fb3a 184 *
e0508e67 185 * @return SR_OK upon success, SR_ERR_BUG if no session exists.
9f45fb3a 186 */
01c3e9db 187SR_API int sr_session_datafeed_callback_remove_all(void)
a1bb33af 188{
9f45fb3a 189 if (!session) {
a421dc1d 190 sr_err("%s: session was NULL", __func__);
e0508e67 191 return SR_ERR_BUG;
9f45fb3a
UH
192 }
193
2726474a 194 g_slist_free_full(session->datafeed_callbacks, g_free);
a1bb33af 195 session->datafeed_callbacks = NULL;
e0508e67
UH
196
197 return SR_OK;
a1bb33af
UH
198}
199
9f45fb3a
UH
200/**
201 * Add a datafeed callback to the current session.
202 *
d08490aa 203 * @param cb Function to call when a chunk of data is received.
0abee507 204 * Must not be NULL.
85222791 205 * @param cb_data Opaque pointer passed in by the caller.
a1645fcd 206 *
e0508e67 207 * @return SR_OK upon success, SR_ERR_BUG if no session exists.
9f45fb3a 208 */
2726474a 209SR_API int sr_session_datafeed_callback_add(sr_datafeed_callback_t cb, void *cb_data)
a1bb33af 210{
2726474a
ML
211 struct datafeed_callback *cb_struct;
212
9f45fb3a 213 if (!session) {
a421dc1d 214 sr_err("%s: session was NULL", __func__);
e0508e67 215 return SR_ERR_BUG;
9f45fb3a
UH
216 }
217
0abee507 218 if (!cb) {
a421dc1d 219 sr_err("%s: cb was NULL", __func__);
0abee507
UH
220 return SR_ERR_ARG;
221 }
9f45fb3a 222
2726474a
ML
223 if (!(cb_struct = g_try_malloc0(sizeof(struct datafeed_callback))))
224 return SR_ERR_MALLOC;
225
226 cb_struct->cb = cb;
227 cb_struct->cb_data = cb_data;
228
62c82025 229 session->datafeed_callbacks =
2726474a 230 g_slist_append(session->datafeed_callbacks, cb_struct);
e0508e67
UH
231
232 return SR_OK;
a1bb33af
UH
233}
234
b483be74
BV
235/**
236 * Call every device in the session's callback.
237 *
238 * For sessions not driven by select loops such as sr_session_run(),
239 * but driven by another scheduler, this can be used to poll the devices
240 * from within that scheduler.
241 *
242 * @return SR_OK upon success, SR_ERR on errors.
243 */
244SR_API int sr_session_iteration(gboolean block)
544a4582 245{
b7e94111
LPC
246 unsigned int i;
247 int ret;
544a4582 248
b483be74
BV
249 ret = g_poll(session->pollfds, session->num_sources,
250 block ? session->source_timeout : 0);
251 for (i = 0; i < session->num_sources; i++) {
252 if (session->pollfds[i].revents > 0 || (ret == 0
253 && session->source_timeout == session->sources[i].timeout)) {
33c6e4c5 254 /*
b483be74
BV
255 * Invoke the source's callback on an event,
256 * or if the poll timed out and this source
257 * asked for that timeout.
33c6e4c5 258 */
b483be74
BV
259 if (!session->sources[i].cb(session->pollfds[i].fd,
260 session->pollfds[i].revents,
261 session->sources[i].cb_data))
262 sr_session_source_remove(session->sources[i].poll_object);
263 }
264 /*
265 * We want to take as little time as possible to stop
266 * the session if we have been told to do so. Therefore,
267 * we check the flag after processing every source, not
268 * just once per main event loop.
269 */
270 g_mutex_lock(&session->stop_mutex);
271 if (session->abort_session) {
272 sr_session_stop_sync();
273 /* But once is enough. */
274 session->abort_session = FALSE;
544a4582 275 }
b483be74 276 g_mutex_unlock(&session->stop_mutex);
544a4582 277 }
e0508e67
UH
278
279 return SR_OK;
544a4582
BV
280}
281
9f45fb3a
UH
282/**
283 * Start a session.
284 *
a1645fcd 285 * There can only be one session at a time.
9f45fb3a
UH
286 *
287 * @return SR_OK upon success, SR_ERR upon errors.
288 */
1a081ca6 289SR_API int sr_session_start(void)
7d658874 290{
de4d3f99 291 struct sr_dev_inst *sdi;
7d658874
BV
292 GSList *l;
293 int ret;
294
9f45fb3a 295 if (!session) {
a421dc1d 296 sr_err("%s: session was NULL; a session must be "
de4d3f99 297 "created before starting it.", __func__);
0abee507 298 return SR_ERR_BUG;
9f45fb3a
UH
299 }
300
bb7ef793 301 if (!session->devs) {
a421dc1d 302 sr_err("%s: session->devs was NULL; a session "
9f45fb3a 303 "cannot be started without devices.", __func__);
0abee507 304 return SR_ERR_BUG;
9f45fb3a
UH
305 }
306
c7142604 307 sr_info("Starting.");
9f45fb3a 308
b7c3e849 309 ret = SR_OK;
bb7ef793 310 for (l = session->devs; l; l = l->next) {
de4d3f99
BV
311 sdi = l->data;
312 if ((ret = sdi->driver->dev_acquisition_start(sdi, sdi)) != SR_OK) {
a421dc1d 313 sr_err("%s: could not start an acquisition "
9f45fb3a 314 "(%d)", __func__, ret);
7d658874 315 break;
9f45fb3a 316 }
7d658874
BV
317 }
318
9f45fb3a
UH
319 /* TODO: What if there are multiple devices? Which return code? */
320
7d658874
BV
321 return ret;
322}
323
9f45fb3a
UH
324/**
325 * Run the session.
326 *
e0508e67 327 * @return SR_OK upon success, SR_ERR_BUG upon errors.
9f45fb3a 328 */
1a081ca6 329SR_API int sr_session_run(void)
7d658874 330{
9f45fb3a 331 if (!session) {
a421dc1d 332 sr_err("%s: session was NULL; a session must be "
9f45fb3a 333 "created first, before running it.", __func__);
e0508e67 334 return SR_ERR_BUG;
9f45fb3a
UH
335 }
336
bb7ef793 337 if (!session->devs) {
9f45fb3a 338 /* TODO: Actually the case? */
a421dc1d 339 sr_err("%s: session->devs was NULL; a session "
9f45fb3a 340 "cannot be run without devices.", __func__);
e0508e67 341 return SR_ERR_BUG;
9f45fb3a
UH
342 }
343
a421dc1d 344 sr_info("Running.");
7d658874 345
9f45fb3a 346 /* Do we have real sources? */
b7e94111 347 if (session->num_sources == 1 && session->pollfds[0].fd == -1) {
9f45fb3a 348 /* Dummy source, freewheel over it. */
2cbeb2b7 349 while (session->num_sources)
b7e94111 350 session->sources[0].cb(-1, 0, session->sources[0].cb_data);
9f45fb3a
UH
351 } else {
352 /* Real sources, use g_poll() main loop. */
b483be74
BV
353 while (session->num_sources)
354 sr_session_iteration(TRUE);
9f45fb3a
UH
355 }
356
e0508e67 357 return SR_OK;
7d658874
BV
358}
359
9f45fb3a
UH
360/**
361 * Stop the current session.
362 *
a1645fcd 363 * The current session is stopped immediately, with all acquisition sessions
c09f0b57 364 * being stopped and hardware drivers cleaned up.
9f45fb3a 365 *
33c6e4c5
AG
366 * This must be called from within the session thread, to prevent freeing
367 * resources that the session thread will try to use.
368 *
e0508e67 369 * @return SR_OK upon success, SR_ERR_BUG if no session exists.
9f45fb3a 370 */
33c6e4c5 371SR_PRIV int sr_session_stop_sync(void)
a1bb33af 372{
de4d3f99 373 struct sr_dev_inst *sdi;
a1bb33af
UH
374 GSList *l;
375
9f45fb3a 376 if (!session) {
a421dc1d 377 sr_err("%s: session was NULL", __func__);
e0508e67 378 return SR_ERR_BUG;
9f45fb3a
UH
379 }
380
a421dc1d 381 sr_info("Stopping.");
e0508e67 382
bb7ef793 383 for (l = session->devs; l; l = l->next) {
de4d3f99
BV
384 sdi = l->data;
385 if (sdi->driver) {
386 if (sdi->driver->dev_acquisition_stop)
387 sdi->driver->dev_acquisition_stop(sdi, sdi);
8c76be53 388 }
a1bb33af 389 }
9f45fb3a 390
e0508e67 391 return SR_OK;
a1bb33af
UH
392}
393
33c6e4c5
AG
394/**
395 * Stop the current session.
396 *
397 * The current session is stopped immediately, with all acquisition sessions
398 * being stopped and hardware drivers cleaned up.
399 *
400 * If the session is run in a separate thread, this function will not block
401 * until the session is finished executing. It is the caller's responsibility
402 * to wait for the session thread to return before assuming that the session is
403 * completely decommissioned.
404 *
405 * @return SR_OK upon success, SR_ERR_BUG if no session exists.
406 */
407SR_API int sr_session_stop(void)
408{
409 if (!session) {
410 sr_err("%s: session was NULL", __func__);
411 return SR_ERR_BUG;
412 }
413
414 g_mutex_lock(&session->stop_mutex);
415 session->abort_session = TRUE;
416 g_mutex_unlock(&session->stop_mutex);
417
418 return SR_OK;
419}
420
9f45fb3a 421/**
a1645fcd 422 * Debug helper.
9f45fb3a 423 *
996b0c72 424 * @param packet The packet to show debugging information for.
9f45fb3a 425 */
bf53457d 426static void datafeed_dump(const struct sr_datafeed_packet *packet)
7d2afd6c 427{
bf53457d
JH
428 const struct sr_datafeed_logic *logic;
429 const struct sr_datafeed_analog *analog;
7d2afd6c
BV
430
431 switch (packet->type) {
432 case SR_DF_HEADER:
a421dc1d 433 sr_dbg("bus: Received SR_DF_HEADER packet.");
7d2afd6c
BV
434 break;
435 case SR_DF_TRIGGER:
a421dc1d 436 sr_dbg("bus: Received SR_DF_TRIGGER packet.");
7d2afd6c 437 break;
c71bac3b 438 case SR_DF_META:
a421dc1d 439 sr_dbg("bus: Received SR_DF_META packet.");
ee7489d2 440 break;
7d2afd6c
BV
441 case SR_DF_LOGIC:
442 logic = packet->payload;
a421dc1d
UH
443 sr_dbg("bus: Received SR_DF_LOGIC packet (%" PRIu64 " bytes).",
444 logic->length);
7d2afd6c 445 break;
ee7489d2
BV
446 case SR_DF_ANALOG:
447 analog = packet->payload;
a421dc1d
UH
448 sr_dbg("bus: Received SR_DF_ANALOG packet (%d samples).",
449 analog->num_samples);
ee7489d2 450 break;
7d2afd6c 451 case SR_DF_END:
a421dc1d 452 sr_dbg("bus: Received SR_DF_END packet.");
7d2afd6c 453 break;
6ea7669c 454 case SR_DF_FRAME_BEGIN:
a421dc1d 455 sr_dbg("bus: Received SR_DF_FRAME_BEGIN packet.");
6ea7669c
BV
456 break;
457 case SR_DF_FRAME_END:
a421dc1d 458 sr_dbg("bus: Received SR_DF_FRAME_END packet.");
6ea7669c 459 break;
7d2afd6c 460 default:
a421dc1d 461 sr_dbg("bus: Received unknown packet type: %d.", packet->type);
9f45fb3a 462 break;
7d2afd6c 463 }
7d2afd6c
BV
464}
465
9f45fb3a 466/**
a1645fcd
BV
467 * Send a packet to whatever is listening on the datafeed bus.
468 *
469 * Hardware drivers use this to send a data packet to the frontend.
9f45fb3a 470 *
6b2d8d3e 471 * @param sdi TODO.
31ccebc4 472 * @param packet The datafeed packet to send to the session bus.
44dae539 473 *
e0508e67 474 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
b4bd7088
UH
475 *
476 * @private
9f45fb3a 477 */
de4d3f99 478SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
bf53457d 479 const struct sr_datafeed_packet *packet)
a1bb33af
UH
480{
481 GSList *l;
2726474a 482 struct datafeed_callback *cb_struct;
a1bb33af 483
de4d3f99 484 if (!sdi) {
a421dc1d 485 sr_err("%s: sdi was NULL", __func__);
e0508e67 486 return SR_ERR_ARG;
9f45fb3a
UH
487 }
488
e0508e67 489 if (!packet) {
a421dc1d 490 sr_err("%s: packet was NULL", __func__);
e0508e67 491 return SR_ERR_ARG;
9f45fb3a
UH
492 }
493
62c82025 494 for (l = session->datafeed_callbacks; l; l = l->next) {
18beaeff
BV
495 if (sr_log_loglevel_get() >= SR_LOG_DBG)
496 datafeed_dump(packet);
2726474a
ML
497 cb_struct = l->data;
498 cb_struct->cb(sdi, packet, cb_struct->cb_data);
a1bb33af 499 }
9f45fb3a 500
e0508e67 501 return SR_OK;
a1bb33af
UH
502}
503
6b2d8d3e
UH
504/**
505 * Add an event source for a file descriptor.
506 *
507 * @param pollfd The GPollFD.
508 * @param timeout Max time to wait before the callback is called, ignored if 0.
509 * @param cb Callback function to add. Must not be NULL.
510 * @param cb_data Data for the callback function. Can be NULL.
511 * @param poll_object TODO.
512 *
513 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
514 * SR_ERR_MALLOC upon memory allocation errors.
515 */
aac0ea25 516static int _sr_session_source_add(GPollFD *pollfd, int timeout,
1a895c61 517 sr_receive_data_callback_t cb, void *cb_data, gintptr poll_object)
544a4582
BV
518{
519 struct source *new_sources, *s;
aac0ea25 520 GPollFD *new_pollfds;
544a4582 521
d08490aa 522 if (!cb) {
a421dc1d 523 sr_err("%s: cb was NULL", __func__);
e0508e67 524 return SR_ERR_ARG;
9f45fb3a
UH
525 }
526
1f9813eb 527 /* Note: cb_data can be NULL, that's not a bug. */
9f45fb3a 528
2ac2e629
BV
529 new_pollfds = g_try_realloc(session->pollfds,
530 sizeof(GPollFD) * (session->num_sources + 1));
0687dfcd 531 if (!new_pollfds) {
a421dc1d 532 sr_err("%s: new_pollfds malloc failed", __func__);
0687dfcd
LPC
533 return SR_ERR_MALLOC;
534 }
535
b7e94111 536 new_sources = g_try_realloc(session->sources, sizeof(struct source) *
2ac2e629 537 (session->num_sources + 1));
9f45fb3a 538 if (!new_sources) {
a421dc1d 539 sr_err("%s: new_sources malloc failed", __func__);
e0508e67 540 return SR_ERR_MALLOC;
9f45fb3a 541 }
544a4582 542
b7e94111
LPC
543 new_pollfds[session->num_sources] = *pollfd;
544 s = &new_sources[session->num_sources++];
544a4582 545 s->timeout = timeout;
d08490aa 546 s->cb = cb;
1f9813eb 547 s->cb_data = cb_data;
aac0ea25 548 s->poll_object = poll_object;
b7e94111
LPC
549 session->pollfds = new_pollfds;
550 session->sources = new_sources;
544a4582 551
b7e94111
LPC
552 if (timeout != session->source_timeout && timeout > 0
553 && (session->source_timeout == -1 || timeout < session->source_timeout))
554 session->source_timeout = timeout;
9f45fb3a 555
e0508e67 556 return SR_OK;
544a4582
BV
557}
558
9f45fb3a 559/**
6b2d8d3e 560 * Add an event source for a file descriptor.
9f45fb3a 561 *
aac0ea25
LPC
562 * @param fd The file descriptor.
563 * @param events Events to check for.
564 * @param timeout Max time to wait before the callback is called, ignored if 0.
565 * @param cb Callback function to add. Must not be NULL.
566 * @param cb_data Data for the callback function. Can be NULL.
9f45fb3a 567 *
aac0ea25
LPC
568 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
569 * SR_ERR_MALLOC upon memory allocation errors.
570 */
571SR_API int sr_session_source_add(int fd, int events, int timeout,
572 sr_receive_data_callback_t cb, void *cb_data)
573{
574 GPollFD p;
575
aac0ea25
LPC
576 p.fd = fd;
577 p.events = events;
aac0ea25
LPC
578
579 return _sr_session_source_add(&p, timeout, cb, cb_data, (gintptr)fd);
580}
581
582/**
1a895c61 583 * Add an event source for a GPollFD.
aac0ea25 584 *
aac0ea25
LPC
585 * @param pollfd The GPollFD.
586 * @param timeout Max time to wait before the callback is called, ignored if 0.
587 * @param cb Callback function to add. Must not be NULL.
588 * @param cb_data Data for the callback function. Can be NULL.
44dae539 589 *
e0508e67 590 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
aac0ea25 591 * SR_ERR_MALLOC upon memory allocation errors.
9f45fb3a 592 */
aac0ea25
LPC
593SR_API int sr_session_source_add_pollfd(GPollFD *pollfd, int timeout,
594 sr_receive_data_callback_t cb, void *cb_data)
595{
1a895c61
UH
596 return _sr_session_source_add(pollfd, timeout, cb,
597 cb_data, (gintptr)pollfd);
aac0ea25
LPC
598}
599
600/**
1a895c61 601 * Add an event source for a GIOChannel.
aac0ea25 602 *
aac0ea25
LPC
603 * @param channel The GIOChannel.
604 * @param events Events to poll on.
605 * @param timeout Max time to wait before the callback is called, ignored if 0.
606 * @param cb Callback function to add. Must not be NULL.
607 * @param cb_data Data for the callback function. Can be NULL.
608 *
609 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
610 * SR_ERR_MALLOC upon memory allocation errors.
611 */
1a895c61
UH
612SR_API int sr_session_source_add_channel(GIOChannel *channel, int events,
613 int timeout, sr_receive_data_callback_t cb, void *cb_data)
aac0ea25
LPC
614{
615 GPollFD p;
616
617#ifdef _WIN32
6b2d8d3e 618 g_io_channel_win32_make_pollfd(channel, events, &p);
aac0ea25
LPC
619#else
620 p.fd = g_io_channel_unix_get_fd(channel);
621 p.events = events;
622#endif
623
624 return _sr_session_source_add(&p, timeout, cb, cb_data, (gintptr)channel);
625}
626
6b2d8d3e
UH
627/**
628 * Remove the source belonging to the specified channel.
629 *
630 * @todo Add more error checks and logging.
631 *
632 * @param channel The channel for which the source should be removed.
633 *
634 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
635 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
636 * internal errors.
637 */
aac0ea25 638static int _sr_session_source_remove(gintptr poll_object)
544a4582
BV
639{
640 struct source *new_sources;
0687dfcd 641 GPollFD *new_pollfds;
b7e94111 642 unsigned int old;
544a4582 643
b7e94111 644 if (!session->sources || !session->num_sources) {
a421dc1d 645 sr_err("%s: sources was NULL", __func__);
0abee507 646 return SR_ERR_BUG;
e0508e67
UH
647 }
648
b7e94111
LPC
649 for (old = 0; old < session->num_sources; old++) {
650 if (session->sources[old].poll_object == poll_object)
2bccd322 651 break;
9f45fb3a
UH
652 }
653
2bccd322 654 /* fd not found, nothing to do */
b7e94111 655 if (old == session->num_sources)
2bccd322
LPC
656 return SR_OK;
657
b7e94111 658 session->num_sources -= 1;
2bccd322 659
b7e94111
LPC
660 if (old != session->num_sources) {
661 memmove(&session->pollfds[old], &session->pollfds[old+1],
662 (session->num_sources - old) * sizeof(GPollFD));
663 memmove(&session->sources[old], &session->sources[old+1],
664 (session->num_sources - old) * sizeof(struct source));
9f45fb3a 665 }
544a4582 666
b7e94111
LPC
667 new_pollfds = g_try_realloc(session->pollfds, sizeof(GPollFD) * session->num_sources);
668 if (!new_pollfds && session->num_sources > 0) {
a421dc1d 669 sr_err("%s: new_pollfds malloc failed", __func__);
0687dfcd
LPC
670 return SR_ERR_MALLOC;
671 }
672
b7e94111
LPC
673 new_sources = g_try_realloc(session->sources, sizeof(struct source) * session->num_sources);
674 if (!new_sources && session->num_sources > 0) {
a421dc1d 675 sr_err("%s: new_sources malloc failed", __func__);
2bccd322 676 return SR_ERR_MALLOC;
544a4582 677 }
e0508e67 678
b7e94111
LPC
679 session->pollfds = new_pollfds;
680 session->sources = new_sources;
2bccd322 681
e0508e67 682 return SR_OK;
544a4582 683}
aac0ea25 684
6b2d8d3e 685/**
aac0ea25
LPC
686 * Remove the source belonging to the specified file descriptor.
687 *
1a895c61 688 * @param fd The file descriptor for which the source should be removed.
aac0ea25
LPC
689 *
690 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
691 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
692 * internal errors.
693 */
694SR_API int sr_session_source_remove(int fd)
695{
696 return _sr_session_source_remove((gintptr)fd);
697}
698
699/**
700 * Remove the source belonging to the specified poll descriptor.
701 *
aac0ea25
LPC
702 * @param pollfd The poll descriptor for which the source should be removed.
703 *
704 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
705 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
706 * internal errors.
707 */
708SR_API int sr_session_source_remove_pollfd(GPollFD *pollfd)
709{
710 return _sr_session_source_remove((gintptr)pollfd);
711}
712
6b2d8d3e 713/**
aac0ea25
LPC
714 * Remove the source belonging to the specified channel.
715 *
1a895c61 716 * @param channel The channel for which the source should be removed.
aac0ea25
LPC
717 *
718 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
719 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
720 * internal errors.
721 */
722SR_API int sr_session_source_remove_channel(GIOChannel *channel)
723{
724 return _sr_session_source_remove((gintptr)channel);
725}
7b870c38
UH
726
727/** @} */