Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 1 | /* |
Uwe Hermann | 50985c2 | 2013-04-23 22:24:30 +0200 | [diff] [blame] | 2 | * This file is part of the libsigrok project. |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 3 | * |
Bert Vermeulen | c73d2ea | 2012-02-13 14:31:51 +0100 | [diff] [blame] | 4 | * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com> |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 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> |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 24 | #include <glib.h> |
Bert Vermeulen | 45c59c8 | 2012-07-05 00:55:07 +0200 | [diff] [blame] | 25 | #include "libsigrok.h" |
| 26 | #include "libsigrok-internal.h" |
Bert Vermeulen | aa4b110 | 2011-01-24 07:46:16 +0100 | [diff] [blame] | 27 | |
Uwe Hermann | 2ad1deb | 2014-04-25 18:40:59 +0200 | [diff] [blame] | 28 | /** @cond PRIVATE */ |
Martin Ling | 3544f84 | 2013-12-23 03:38:35 +0000 | [diff] [blame] | 29 | #define LOG_PREFIX "session" |
Uwe Hermann | 2ad1deb | 2014-04-25 18:40:59 +0200 | [diff] [blame] | 30 | /** @endcond */ |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 31 | |
Uwe Hermann | 7b870c3 | 2012-10-21 16:13:36 +0200 | [diff] [blame] | 32 | /** |
Uwe Hermann | 393fb9c | 2012-10-22 00:30:12 +0200 | [diff] [blame] | 33 | * @file |
| 34 | * |
| 35 | * Creating, using, or destroying libsigrok sessions. |
| 36 | */ |
| 37 | |
| 38 | /** |
Uwe Hermann | 7b870c3 | 2012-10-21 16:13:36 +0200 | [diff] [blame] | 39 | * @defgroup grp_session Session handling |
| 40 | * |
| 41 | * Creating, using, or destroying libsigrok sessions. |
| 42 | * |
| 43 | * @{ |
| 44 | */ |
| 45 | |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 46 | struct source { |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 47 | int timeout; |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 48 | sr_receive_data_callback cb; |
Uwe Hermann | 1f9813e | 2012-02-29 22:32:34 +0100 | [diff] [blame] | 49 | void *cb_data; |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 50 | |
| 51 | /* This is used to keep track of the object (fd, pollfd or channel) which is |
| 52 | * being polled and will be used to match the source when removing it again. |
| 53 | */ |
| 54 | gintptr poll_object; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 55 | }; |
| 56 | |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 57 | struct datafeed_callback { |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 58 | sr_datafeed_callback cb; |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 59 | void *cb_data; |
| 60 | }; |
| 61 | |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 62 | /* There can only be one session at a time. */ |
Uwe Hermann | a0ecd83 | 2011-12-28 22:55:21 +0100 | [diff] [blame] | 63 | /* 'session' is not static, it's used elsewhere (via 'extern'). */ |
Uwe Hermann | 2872d21 | 2011-02-08 17:50:29 +0100 | [diff] [blame] | 64 | struct sr_session *session; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 65 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 66 | /** |
| 67 | * Create a new session. |
| 68 | * |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 69 | * @todo Should it use the file-global "session" variable or take an argument? |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 70 | * The same question applies to all the other session functions. |
| 71 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 72 | * @retval NULL Error. |
Bert Vermeulen | 98582bf | 2013-12-09 22:49:12 +0100 | [diff] [blame] | 73 | * @retval other A pointer to the newly allocated session. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 74 | * |
| 75 | * @since 0.1.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 76 | */ |
Uwe Hermann | 1a081ca | 2012-02-01 23:40:35 +0100 | [diff] [blame] | 77 | SR_API struct sr_session *sr_session_new(void) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 78 | { |
Uwe Hermann | 133a37b | 2012-02-11 20:06:46 +0100 | [diff] [blame] | 79 | if (!(session = g_try_malloc0(sizeof(struct sr_session)))) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 80 | sr_err("Session malloc failed."); |
| 81 | return NULL; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 82 | } |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 83 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 84 | session->source_timeout = -1; |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 85 | session->running = FALSE; |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 86 | session->abort_session = FALSE; |
| 87 | g_mutex_init(&session->stop_mutex); |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 88 | |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 89 | return session; |
| 90 | } |
| 91 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 92 | /** |
| 93 | * Destroy the current session. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 94 | * This frees up all memory used by the session. |
| 95 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 96 | * @retval SR_OK Success. |
| 97 | * @retval SR_ERR_BUG No session exists. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 98 | * |
| 99 | * @since 0.1.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 100 | */ |
Uwe Hermann | 1a081ca | 2012-02-01 23:40:35 +0100 | [diff] [blame] | 101 | SR_API int sr_session_destroy(void) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 102 | { |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 103 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 104 | sr_err("%s: session was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 105 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Lars-Peter Clausen | ed229aa | 2012-07-05 21:15:07 +0200 | [diff] [blame] | 108 | sr_session_dev_remove_all(); |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 109 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 110 | /* TODO: Error checks needed? */ |
| 111 | |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 112 | g_mutex_clear(&session->stop_mutex); |
| 113 | |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 114 | g_free(session); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 115 | session = NULL; |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 116 | |
| 117 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 118 | } |
| 119 | |
Uwe Hermann | 961009b | 2013-02-01 22:58:54 +0100 | [diff] [blame] | 120 | /** |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 121 | * Remove all the devices from the current session. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 122 | * |
| 123 | * The session itself (i.e., the struct sr_session) is not free'd and still |
| 124 | * exists after this function returns. |
| 125 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 126 | * @retval SR_OK Success. |
| 127 | * @retval SR_ERR_BUG No session exists. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 128 | * |
| 129 | * @since 0.1.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 130 | */ |
Uwe Hermann | 01c3e9d | 2012-03-28 21:55:48 +0200 | [diff] [blame] | 131 | SR_API int sr_session_dev_remove_all(void) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 132 | { |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 133 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 134 | sr_err("%s: session was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 135 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 136 | } |
| 137 | |
Bert Vermeulen | 681803d | 2013-04-28 22:35:42 +0200 | [diff] [blame] | 138 | g_slist_free(session->devs); |
Uwe Hermann | bb7ef79 | 2012-02-17 22:25:01 +0100 | [diff] [blame] | 139 | session->devs = NULL; |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 140 | |
| 141 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 144 | /** |
Uwe Hermann | 9c5332d | 2012-10-21 16:52:56 +0200 | [diff] [blame] | 145 | * Add a device instance to the current session. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 146 | * |
Uwe Hermann | 9c5332d | 2012-10-21 16:52:56 +0200 | [diff] [blame] | 147 | * @param sdi The device instance to add to the current session. Must not |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 148 | * be NULL. Also, sdi->driver and sdi->driver->dev_open must |
| 149 | * not be NULL. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 150 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 151 | * @retval SR_OK Success. |
| 152 | * @retval SR_ERR_ARG Invalid argument. |
| 153 | * @retval SR_ERR_BUG No session exists. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 154 | * |
| 155 | * @since 0.2.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 156 | */ |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 157 | SR_API int sr_session_dev_add(const struct sr_dev_inst *sdi) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 158 | { |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 159 | int ret; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 160 | |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 161 | if (!sdi) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 162 | sr_err("%s: sdi was NULL", __func__); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 163 | return SR_ERR_ARG; |
| 164 | } |
| 165 | |
Uwe Hermann | d6eb0c3 | 2012-03-18 12:57:34 +0100 | [diff] [blame] | 166 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 167 | sr_err("%s: session was NULL", __func__); |
Uwe Hermann | d6eb0c3 | 2012-03-18 12:57:34 +0100 | [diff] [blame] | 168 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 171 | /* If sdi->driver is NULL, this is a virtual device. */ |
| 172 | if (!sdi->driver) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 173 | sr_dbg("%s: sdi->driver was NULL, this seems to be " |
Uwe Hermann | d6eb0c3 | 2012-03-18 12:57:34 +0100 | [diff] [blame] | 174 | "a virtual device; continuing", __func__); |
| 175 | /* Just add the device, don't run dev_open(). */ |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 176 | session->devs = g_slist_append(session->devs, (gpointer)sdi); |
Uwe Hermann | d6eb0c3 | 2012-03-18 12:57:34 +0100 | [diff] [blame] | 177 | return SR_OK; |
| 178 | } |
| 179 | |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 180 | /* sdi->driver is non-NULL (i.e. we have a real device). */ |
| 181 | if (!sdi->driver->dev_open) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 182 | sr_err("%s: sdi->driver->dev_open was NULL", __func__); |
Uwe Hermann | 8ec95d2 | 2012-03-21 19:28:43 +0100 | [diff] [blame] | 183 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 184 | } |
| 185 | |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 186 | session->devs = g_slist_append(session->devs, (gpointer)sdi); |
Bert Vermeulen | aa4b110 | 2011-01-24 07:46:16 +0100 | [diff] [blame] | 187 | |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 188 | if (session->running) { |
Daniel Elstner | 32b7cd4 | 2014-01-20 23:04:49 +0100 | [diff] [blame] | 189 | /* Adding a device to a running session. Commit settings |
| 190 | * and start acquisition on that device now. */ |
| 191 | if ((ret = sr_config_commit(sdi)) != SR_OK) { |
| 192 | sr_err("Failed to commit device settings before " |
| 193 | "starting acquisition in running session (%s)", |
| 194 | sr_strerror(ret)); |
| 195 | return ret; |
| 196 | } |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 197 | if ((ret = sdi->driver->dev_acquisition_start(sdi, |
Daniel Elstner | 32b7cd4 | 2014-01-20 23:04:49 +0100 | [diff] [blame] | 198 | (void *)sdi)) != SR_OK) { |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 199 | sr_err("Failed to start acquisition of device in " |
Daniel Elstner | 32b7cd4 | 2014-01-20 23:04:49 +0100 | [diff] [blame] | 200 | "running session (%s)", sr_strerror(ret)); |
| 201 | return ret; |
| 202 | } |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 203 | } |
| 204 | |
Uwe Hermann | e46b8fb | 2011-01-29 16:23:12 +0100 | [diff] [blame] | 205 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 208 | /** |
Bert Vermeulen | 2bb311b | 2013-09-02 14:24:32 +0200 | [diff] [blame] | 209 | * List all device instances attached to the current session. |
| 210 | * |
| 211 | * @param devlist A pointer where the device instance list will be |
| 212 | * stored on return. If no devices are in the session, |
| 213 | * this will be NULL. Each element in the list points |
| 214 | * to a struct sr_dev_inst *. |
| 215 | * The list must be freed by the caller, but not the |
| 216 | * elements pointed to. |
| 217 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 218 | * @retval SR_OK Success. |
| 219 | * @retval SR_ERR Invalid argument. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 220 | * |
| 221 | * @since 0.3.0 |
Bert Vermeulen | 2bb311b | 2013-09-02 14:24:32 +0200 | [diff] [blame] | 222 | */ |
| 223 | SR_API int sr_session_dev_list(GSList **devlist) |
| 224 | { |
| 225 | |
| 226 | *devlist = NULL; |
| 227 | |
| 228 | if (!session) |
| 229 | return SR_ERR; |
| 230 | |
| 231 | *devlist = g_slist_copy(session->devs); |
| 232 | |
| 233 | return SR_OK; |
| 234 | } |
| 235 | |
| 236 | /** |
Uwe Hermann | 01c3e9d | 2012-03-28 21:55:48 +0200 | [diff] [blame] | 237 | * Remove all datafeed callbacks in the current session. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 238 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 239 | * @retval SR_OK Success. |
| 240 | * @retval SR_ERR_BUG No session exists. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 241 | * |
| 242 | * @since 0.1.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 243 | */ |
Uwe Hermann | 01c3e9d | 2012-03-28 21:55:48 +0200 | [diff] [blame] | 244 | SR_API int sr_session_datafeed_callback_remove_all(void) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 245 | { |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 246 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 247 | sr_err("%s: session was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 248 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 251 | g_slist_free_full(session->datafeed_callbacks, g_free); |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 252 | session->datafeed_callbacks = NULL; |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 253 | |
| 254 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 255 | } |
| 256 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 257 | /** |
| 258 | * Add a datafeed callback to the current session. |
| 259 | * |
Uwe Hermann | d08490a | 2012-02-29 21:56:24 +0100 | [diff] [blame] | 260 | * @param cb Function to call when a chunk of data is received. |
Uwe Hermann | 0abee50 | 2012-03-04 15:08:11 +0100 | [diff] [blame] | 261 | * Must not be NULL. |
Uwe Hermann | 8522279 | 2013-04-16 12:48:58 +0200 | [diff] [blame] | 262 | * @param cb_data Opaque pointer passed in by the caller. |
Bert Vermeulen | a1645fc | 2012-02-13 03:36:32 +0100 | [diff] [blame] | 263 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 264 | * @retval SR_OK Success. |
| 265 | * @retval SR_ERR_BUG No session exists. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 266 | * |
| 267 | * @since 0.3.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 268 | */ |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 269 | SR_API int sr_session_datafeed_callback_add(sr_datafeed_callback cb, void *cb_data) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 270 | { |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 271 | struct datafeed_callback *cb_struct; |
| 272 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 273 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 274 | sr_err("%s: session was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 275 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 276 | } |
| 277 | |
Uwe Hermann | 0abee50 | 2012-03-04 15:08:11 +0100 | [diff] [blame] | 278 | if (!cb) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 279 | sr_err("%s: cb was NULL", __func__); |
Uwe Hermann | 0abee50 | 2012-03-04 15:08:11 +0100 | [diff] [blame] | 280 | return SR_ERR_ARG; |
| 281 | } |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 282 | |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 283 | if (!(cb_struct = g_try_malloc0(sizeof(struct datafeed_callback)))) |
| 284 | return SR_ERR_MALLOC; |
| 285 | |
| 286 | cb_struct->cb = cb; |
| 287 | cb_struct->cb_data = cb_data; |
| 288 | |
Uwe Hermann | 62c8202 | 2010-04-15 20:16:53 +0200 | [diff] [blame] | 289 | session->datafeed_callbacks = |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 290 | g_slist_append(session->datafeed_callbacks, cb_struct); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 291 | |
| 292 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 293 | } |
| 294 | |
Bert Vermeulen | 7b5e6d2 | 2014-05-23 01:21:58 +0200 | [diff] [blame^] | 295 | SR_PRIV struct sr_trigger *sr_session_trigger_get(void) |
| 296 | { |
| 297 | return session->trigger; |
| 298 | } |
| 299 | |
| 300 | SR_API int sr_session_trigger_set(struct sr_trigger *trig) |
| 301 | { |
| 302 | session->trigger = trig; |
| 303 | |
| 304 | return SR_OK; |
| 305 | } |
| 306 | |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 307 | /** |
| 308 | * Call every device in the session's callback. |
| 309 | * |
| 310 | * For sessions not driven by select loops such as sr_session_run(), |
| 311 | * but driven by another scheduler, this can be used to poll the devices |
| 312 | * from within that scheduler. |
| 313 | * |
Bert Vermeulen | f6eb2cb | 2013-07-18 15:06:06 +0200 | [diff] [blame] | 314 | * @param block If TRUE, this call will wait for any of the session's |
| 315 | * sources to fire an event on the file descriptors, or |
| 316 | * any of their timeouts to activate. In other words, this |
| 317 | * can be used as a select loop. |
| 318 | * If FALSE, all sources have their callback run, regardless |
| 319 | * of file descriptor or timeout status. |
| 320 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 321 | * @retval SR_OK Success. |
| 322 | * @retval SR_ERR Error occured. |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 323 | */ |
Uwe Hermann | 1861be0 | 2013-08-07 00:34:06 +0200 | [diff] [blame] | 324 | static int sr_session_iteration(gboolean block) |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 325 | { |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 326 | unsigned int i; |
| 327 | int ret; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 328 | |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 329 | ret = g_poll(session->pollfds, session->num_sources, |
| 330 | block ? session->source_timeout : 0); |
| 331 | for (i = 0; i < session->num_sources; i++) { |
| 332 | if (session->pollfds[i].revents > 0 || (ret == 0 |
| 333 | && session->source_timeout == session->sources[i].timeout)) { |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 334 | /* |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 335 | * Invoke the source's callback on an event, |
| 336 | * or if the poll timed out and this source |
| 337 | * asked for that timeout. |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 338 | */ |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 339 | if (!session->sources[i].cb(session->pollfds[i].fd, |
| 340 | session->pollfds[i].revents, |
| 341 | session->sources[i].cb_data)) |
| 342 | sr_session_source_remove(session->sources[i].poll_object); |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 343 | } |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 344 | /* |
| 345 | * We want to take as little time as possible to stop |
| 346 | * the session if we have been told to do so. Therefore, |
| 347 | * we check the flag after processing every source, not |
| 348 | * just once per main event loop. |
| 349 | */ |
| 350 | g_mutex_lock(&session->stop_mutex); |
| 351 | if (session->abort_session) { |
| 352 | sr_session_stop_sync(); |
| 353 | /* But once is enough. */ |
| 354 | session->abort_session = FALSE; |
| 355 | } |
| 356 | g_mutex_unlock(&session->stop_mutex); |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 357 | } |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 358 | |
| 359 | return SR_OK; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 360 | } |
| 361 | |
Bert Vermeulen | 7b5e6d2 | 2014-05-23 01:21:58 +0200 | [diff] [blame^] | 362 | |
| 363 | static int verify_trigger(struct sr_trigger *trigger) |
| 364 | { |
| 365 | struct sr_trigger_stage *stage; |
| 366 | struct sr_trigger_match *match; |
| 367 | GSList *l, *m; |
| 368 | |
| 369 | if (!trigger->stages) { |
| 370 | sr_err("No trigger stages defined."); |
| 371 | return SR_ERR; |
| 372 | } |
| 373 | |
| 374 | sr_spew("Checking trigger:"); |
| 375 | for (l = trigger->stages; l; l = l->next) { |
| 376 | stage = l->data; |
| 377 | if (!stage->matches) { |
| 378 | sr_err("Stage %d has no matches defined.", stage->stage); |
| 379 | return SR_ERR; |
| 380 | } |
| 381 | for (m = stage->matches; m; m = m->next) { |
| 382 | match = m->data; |
| 383 | if (!match->channel) { |
| 384 | sr_err("Stage %d match has no channel.", stage->stage); |
| 385 | return SR_ERR; |
| 386 | } |
| 387 | if (!match->match) { |
| 388 | sr_err("Stage %d match is not defined.", stage->stage); |
| 389 | return SR_ERR; |
| 390 | } |
| 391 | sr_spew("Stage %d match on channel %s, match %d", stage->stage, |
| 392 | match->channel->name, match->match); |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | return SR_OK; |
| 397 | } |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 398 | /** |
| 399 | * Start a session. |
| 400 | * |
Bert Vermeulen | a1645fc | 2012-02-13 03:36:32 +0100 | [diff] [blame] | 401 | * There can only be one session at a time. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 402 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 403 | * @retval SR_OK Success. |
| 404 | * @retval SR_ERR Error occured. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 405 | * |
| 406 | * @since 0.1.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 407 | */ |
Uwe Hermann | 1a081ca | 2012-02-01 23:40:35 +0100 | [diff] [blame] | 408 | SR_API int sr_session_start(void) |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 409 | { |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 410 | struct sr_dev_inst *sdi; |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 411 | GSList *l; |
| 412 | int ret; |
| 413 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 414 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 415 | sr_err("%s: session was NULL; a session must be " |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 416 | "created before starting it.", __func__); |
Uwe Hermann | 0abee50 | 2012-03-04 15:08:11 +0100 | [diff] [blame] | 417 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 418 | } |
| 419 | |
Uwe Hermann | bb7ef79 | 2012-02-17 22:25:01 +0100 | [diff] [blame] | 420 | if (!session->devs) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 421 | sr_err("%s: session->devs was NULL; a session " |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 422 | "cannot be started without devices.", __func__); |
Uwe Hermann | 0abee50 | 2012-03-04 15:08:11 +0100 | [diff] [blame] | 423 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 424 | } |
| 425 | |
Bert Vermeulen | 7b5e6d2 | 2014-05-23 01:21:58 +0200 | [diff] [blame^] | 426 | if (session->trigger && verify_trigger(session->trigger) != SR_OK) |
| 427 | return SR_ERR; |
| 428 | |
Uwe Hermann | c714260 | 2013-02-07 09:16:28 +0100 | [diff] [blame] | 429 | sr_info("Starting."); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 430 | |
Uwe Hermann | b7c3e84 | 2012-12-31 21:05:11 +0100 | [diff] [blame] | 431 | ret = SR_OK; |
Uwe Hermann | bb7ef79 | 2012-02-17 22:25:01 +0100 | [diff] [blame] | 432 | for (l = session->devs; l; l = l->next) { |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 433 | sdi = l->data; |
Daniel Elstner | 32b7cd4 | 2014-01-20 23:04:49 +0100 | [diff] [blame] | 434 | if ((ret = sr_config_commit(sdi)) != SR_OK) { |
| 435 | sr_err("Failed to commit device settings before " |
| 436 | "starting acquisition (%s)", sr_strerror(ret)); |
| 437 | break; |
| 438 | } |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 439 | if ((ret = sdi->driver->dev_acquisition_start(sdi, sdi)) != SR_OK) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 440 | sr_err("%s: could not start an acquisition " |
Bert Vermeulen | 568dcac | 2013-10-16 10:40:38 +0200 | [diff] [blame] | 441 | "(%s)", __func__, sr_strerror(ret)); |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 442 | break; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 443 | } |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 444 | } |
| 445 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 446 | /* TODO: What if there are multiple devices? Which return code? */ |
| 447 | |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 448 | return ret; |
| 449 | } |
| 450 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 451 | /** |
| 452 | * Run the session. |
| 453 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 454 | * @retval SR_OK Success. |
| 455 | * @retval SR_ERR_BUG Error occured. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 456 | * |
| 457 | * @since 0.1.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 458 | */ |
Uwe Hermann | 1a081ca | 2012-02-01 23:40:35 +0100 | [diff] [blame] | 459 | SR_API int sr_session_run(void) |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 460 | { |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 461 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 462 | sr_err("%s: session was NULL; a session must be " |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 463 | "created first, before running it.", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 464 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 465 | } |
| 466 | |
Uwe Hermann | bb7ef79 | 2012-02-17 22:25:01 +0100 | [diff] [blame] | 467 | if (!session->devs) { |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 468 | /* TODO: Actually the case? */ |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 469 | sr_err("%s: session->devs was NULL; a session " |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 470 | "cannot be run without devices.", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 471 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 472 | } |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 473 | session->running = TRUE; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 474 | |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 475 | sr_info("Running."); |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 476 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 477 | /* Do we have real sources? */ |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 478 | if (session->num_sources == 1 && session->pollfds[0].fd == -1) { |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 479 | /* Dummy source, freewheel over it. */ |
Bert Vermeulen | 2cbeb2b | 2012-08-03 01:04:05 +0200 | [diff] [blame] | 480 | while (session->num_sources) |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 481 | session->sources[0].cb(-1, 0, session->sources[0].cb_data); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 482 | } else { |
| 483 | /* Real sources, use g_poll() main loop. */ |
Bert Vermeulen | b483be7 | 2013-07-15 14:14:28 +0200 | [diff] [blame] | 484 | while (session->num_sources) |
| 485 | sr_session_iteration(TRUE); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 486 | } |
| 487 | |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 488 | return SR_OK; |
Bert Vermeulen | 7d65887 | 2011-01-31 22:34:14 +0100 | [diff] [blame] | 489 | } |
| 490 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 491 | /** |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 492 | * Stop the current session. |
| 493 | * |
Bert Vermeulen | a1645fc | 2012-02-13 03:36:32 +0100 | [diff] [blame] | 494 | * The current session is stopped immediately, with all acquisition sessions |
Uwe Hermann | c09f0b5 | 2012-02-28 23:52:30 +0100 | [diff] [blame] | 495 | * being stopped and hardware drivers cleaned up. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 496 | * |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 497 | * This must be called from within the session thread, to prevent freeing |
| 498 | * resources that the session thread will try to use. |
| 499 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 500 | * @retval SR_OK Success. |
| 501 | * @retval SR_ERR_BUG No session exists. |
Bert Vermeulen | 72a08bc | 2013-09-25 11:51:38 +0200 | [diff] [blame] | 502 | * |
| 503 | * @private |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 504 | */ |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 505 | SR_PRIV int sr_session_stop_sync(void) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 506 | { |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 507 | struct sr_dev_inst *sdi; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 508 | GSList *l; |
| 509 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 510 | if (!session) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 511 | sr_err("%s: session was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 512 | return SR_ERR_BUG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 513 | } |
| 514 | |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 515 | sr_info("Stopping."); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 516 | |
Uwe Hermann | bb7ef79 | 2012-02-17 22:25:01 +0100 | [diff] [blame] | 517 | for (l = session->devs; l; l = l->next) { |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 518 | sdi = l->data; |
| 519 | if (sdi->driver) { |
| 520 | if (sdi->driver->dev_acquisition_stop) |
| 521 | sdi->driver->dev_acquisition_stop(sdi, sdi); |
Bert Vermeulen | 8c76be5 | 2012-01-08 22:05:00 +0100 | [diff] [blame] | 522 | } |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 523 | } |
Bert Vermeulen | 5451816 | 2013-09-21 17:44:49 +0200 | [diff] [blame] | 524 | session->running = FALSE; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 525 | |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 526 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 527 | } |
| 528 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 529 | /** |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 530 | * Stop the current session. |
| 531 | * |
| 532 | * The current session is stopped immediately, with all acquisition sessions |
| 533 | * being stopped and hardware drivers cleaned up. |
| 534 | * |
| 535 | * If the session is run in a separate thread, this function will not block |
| 536 | * until the session is finished executing. It is the caller's responsibility |
| 537 | * to wait for the session thread to return before assuming that the session is |
| 538 | * completely decommissioned. |
| 539 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 540 | * @retval SR_OK Success. |
| 541 | * @retval SR_ERR_BUG No session exists. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 542 | * |
| 543 | * @since 0.1.0 |
Alexandru Gagniuc | 33c6e4c | 2013-02-02 00:50:00 -0600 | [diff] [blame] | 544 | */ |
| 545 | SR_API int sr_session_stop(void) |
| 546 | { |
| 547 | if (!session) { |
| 548 | sr_err("%s: session was NULL", __func__); |
| 549 | return SR_ERR_BUG; |
| 550 | } |
| 551 | |
| 552 | g_mutex_lock(&session->stop_mutex); |
| 553 | session->abort_session = TRUE; |
| 554 | g_mutex_unlock(&session->stop_mutex); |
| 555 | |
| 556 | return SR_OK; |
| 557 | } |
| 558 | |
| 559 | /** |
Bert Vermeulen | a1645fc | 2012-02-13 03:36:32 +0100 | [diff] [blame] | 560 | * Debug helper. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 561 | * |
Bert Vermeulen | 996b0c7 | 2012-02-13 02:13:51 +0100 | [diff] [blame] | 562 | * @param packet The packet to show debugging information for. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 563 | */ |
Joel Holdsworth | bf53457 | 2012-12-13 21:07:53 +0000 | [diff] [blame] | 564 | static void datafeed_dump(const struct sr_datafeed_packet *packet) |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 565 | { |
Joel Holdsworth | bf53457 | 2012-12-13 21:07:53 +0000 | [diff] [blame] | 566 | const struct sr_datafeed_logic *logic; |
| 567 | const struct sr_datafeed_analog *analog; |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 568 | |
| 569 | switch (packet->type) { |
| 570 | case SR_DF_HEADER: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 571 | sr_dbg("bus: Received SR_DF_HEADER packet."); |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 572 | break; |
| 573 | case SR_DF_TRIGGER: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 574 | sr_dbg("bus: Received SR_DF_TRIGGER packet."); |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 575 | break; |
Bert Vermeulen | c71bac3 | 2013-01-20 16:37:23 +0100 | [diff] [blame] | 576 | case SR_DF_META: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 577 | sr_dbg("bus: Received SR_DF_META packet."); |
Bert Vermeulen | ee7489d | 2012-04-22 18:11:31 +0200 | [diff] [blame] | 578 | break; |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 579 | case SR_DF_LOGIC: |
| 580 | logic = packet->payload; |
Uwe Hermann | 7ea4586 | 2014-04-25 19:34:41 +0200 | [diff] [blame] | 581 | sr_dbg("bus: Received SR_DF_LOGIC packet (%" PRIu64 " bytes, " |
| 582 | "unitsize = %d).", logic->length, logic->unitsize); |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 583 | break; |
Bert Vermeulen | ee7489d | 2012-04-22 18:11:31 +0200 | [diff] [blame] | 584 | case SR_DF_ANALOG: |
| 585 | analog = packet->payload; |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 586 | sr_dbg("bus: Received SR_DF_ANALOG packet (%d samples).", |
| 587 | analog->num_samples); |
Bert Vermeulen | ee7489d | 2012-04-22 18:11:31 +0200 | [diff] [blame] | 588 | break; |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 589 | case SR_DF_END: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 590 | sr_dbg("bus: Received SR_DF_END packet."); |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 591 | break; |
Bert Vermeulen | 6ea7669 | 2012-04-30 19:55:06 +0200 | [diff] [blame] | 592 | case SR_DF_FRAME_BEGIN: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 593 | sr_dbg("bus: Received SR_DF_FRAME_BEGIN packet."); |
Bert Vermeulen | 6ea7669 | 2012-04-30 19:55:06 +0200 | [diff] [blame] | 594 | break; |
| 595 | case SR_DF_FRAME_END: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 596 | sr_dbg("bus: Received SR_DF_FRAME_END packet."); |
Bert Vermeulen | 6ea7669 | 2012-04-30 19:55:06 +0200 | [diff] [blame] | 597 | break; |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 598 | default: |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 599 | sr_dbg("bus: Received unknown packet type: %d.", packet->type); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 600 | break; |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 601 | } |
Bert Vermeulen | 7d2afd6 | 2011-06-20 11:42:43 +0200 | [diff] [blame] | 602 | } |
| 603 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 604 | /** |
Bert Vermeulen | a1645fc | 2012-02-13 03:36:32 +0100 | [diff] [blame] | 605 | * Send a packet to whatever is listening on the datafeed bus. |
| 606 | * |
| 607 | * Hardware drivers use this to send a data packet to the frontend. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 608 | * |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 609 | * @param sdi TODO. |
Uwe Hermann | 31ccebc | 2012-02-29 22:08:45 +0100 | [diff] [blame] | 610 | * @param packet The datafeed packet to send to the session bus. |
Uwe Hermann | 44dae53 | 2012-02-17 20:44:19 +0100 | [diff] [blame] | 611 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 612 | * @retval SR_OK Success. |
| 613 | * @retval SR_ERR_ARG Invalid argument. |
Uwe Hermann | b4bd708 | 2012-10-19 10:07:22 +0200 | [diff] [blame] | 614 | * |
| 615 | * @private |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 616 | */ |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 617 | SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi, |
Joel Holdsworth | bf53457 | 2012-12-13 21:07:53 +0000 | [diff] [blame] | 618 | const struct sr_datafeed_packet *packet) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 619 | { |
| 620 | GSList *l; |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 621 | struct datafeed_callback *cb_struct; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 622 | |
Bert Vermeulen | de4d3f9 | 2012-07-22 15:31:56 +0200 | [diff] [blame] | 623 | if (!sdi) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 624 | sr_err("%s: sdi was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 625 | return SR_ERR_ARG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 626 | } |
| 627 | |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 628 | if (!packet) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 629 | sr_err("%s: packet was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 630 | return SR_ERR_ARG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 631 | } |
| 632 | |
Uwe Hermann | 62c8202 | 2010-04-15 20:16:53 +0200 | [diff] [blame] | 633 | for (l = session->datafeed_callbacks; l; l = l->next) { |
Bert Vermeulen | 18beaef | 2012-02-13 00:08:23 +0100 | [diff] [blame] | 634 | if (sr_log_loglevel_get() >= SR_LOG_DBG) |
| 635 | datafeed_dump(packet); |
Martin Ling | 2726474 | 2013-04-15 21:08:55 +0100 | [diff] [blame] | 636 | cb_struct = l->data; |
| 637 | cb_struct->cb(sdi, packet, cb_struct->cb_data); |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 638 | } |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 639 | |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 640 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 641 | } |
| 642 | |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 643 | /** |
| 644 | * Add an event source for a file descriptor. |
| 645 | * |
| 646 | * @param pollfd The GPollFD. |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 647 | * @param[in] timeout Max time to wait before the callback is called, |
| 648 | * ignored if 0. |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 649 | * @param cb Callback function to add. Must not be NULL. |
| 650 | * @param cb_data Data for the callback function. Can be NULL. |
| 651 | * @param poll_object TODO. |
| 652 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 653 | * @retval SR_OK Success. |
| 654 | * @retval SR_ERR_ARG Invalid argument. |
| 655 | * @retval SR_ERR_MALLOC Memory allocation error. |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 656 | */ |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 657 | static int _sr_session_source_add(GPollFD *pollfd, int timeout, |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 658 | sr_receive_data_callback cb, void *cb_data, gintptr poll_object) |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 659 | { |
| 660 | struct source *new_sources, *s; |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 661 | GPollFD *new_pollfds; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 662 | |
Uwe Hermann | d08490a | 2012-02-29 21:56:24 +0100 | [diff] [blame] | 663 | if (!cb) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 664 | sr_err("%s: cb was NULL", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 665 | return SR_ERR_ARG; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 666 | } |
| 667 | |
Uwe Hermann | 1f9813e | 2012-02-29 22:32:34 +0100 | [diff] [blame] | 668 | /* Note: cb_data can be NULL, that's not a bug. */ |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 669 | |
Bert Vermeulen | 2ac2e62 | 2012-07-22 15:32:35 +0200 | [diff] [blame] | 670 | new_pollfds = g_try_realloc(session->pollfds, |
| 671 | sizeof(GPollFD) * (session->num_sources + 1)); |
Lars-Peter Clausen | 0687dfc | 2012-06-30 20:54:43 +0200 | [diff] [blame] | 672 | if (!new_pollfds) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 673 | sr_err("%s: new_pollfds malloc failed", __func__); |
Lars-Peter Clausen | 0687dfc | 2012-06-30 20:54:43 +0200 | [diff] [blame] | 674 | return SR_ERR_MALLOC; |
| 675 | } |
| 676 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 677 | new_sources = g_try_realloc(session->sources, sizeof(struct source) * |
Bert Vermeulen | 2ac2e62 | 2012-07-22 15:32:35 +0200 | [diff] [blame] | 678 | (session->num_sources + 1)); |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 679 | if (!new_sources) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 680 | sr_err("%s: new_sources malloc failed", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 681 | return SR_ERR_MALLOC; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 682 | } |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 683 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 684 | new_pollfds[session->num_sources] = *pollfd; |
| 685 | s = &new_sources[session->num_sources++]; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 686 | s->timeout = timeout; |
Uwe Hermann | d08490a | 2012-02-29 21:56:24 +0100 | [diff] [blame] | 687 | s->cb = cb; |
Uwe Hermann | 1f9813e | 2012-02-29 22:32:34 +0100 | [diff] [blame] | 688 | s->cb_data = cb_data; |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 689 | s->poll_object = poll_object; |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 690 | session->pollfds = new_pollfds; |
| 691 | session->sources = new_sources; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 692 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 693 | if (timeout != session->source_timeout && timeout > 0 |
| 694 | && (session->source_timeout == -1 || timeout < session->source_timeout)) |
| 695 | session->source_timeout = timeout; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 696 | |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 697 | return SR_OK; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 698 | } |
| 699 | |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 700 | /** |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 701 | * Add an event source for a file descriptor. |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 702 | * |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 703 | * @param fd The file descriptor. |
| 704 | * @param events Events to check for. |
| 705 | * @param timeout Max time to wait before the callback is called, ignored if 0. |
| 706 | * @param cb Callback function to add. Must not be NULL. |
| 707 | * @param cb_data Data for the callback function. Can be NULL. |
Uwe Hermann | 44dae53 | 2012-02-17 20:44:19 +0100 | [diff] [blame] | 708 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 709 | * @retval SR_OK Success. |
| 710 | * @retval SR_ERR_ARG Invalid argument. |
| 711 | * @retval SR_ERR_MALLOC Memory allocation error. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 712 | * |
| 713 | * @since 0.3.0 |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 714 | */ |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 715 | SR_API int sr_session_source_add(int fd, int events, int timeout, |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 716 | sr_receive_data_callback cb, void *cb_data) |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 717 | { |
| 718 | GPollFD p; |
| 719 | |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 720 | p.fd = fd; |
| 721 | p.events = events; |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 722 | |
| 723 | return _sr_session_source_add(&p, timeout, cb, cb_data, (gintptr)fd); |
| 724 | } |
| 725 | |
| 726 | /** |
Uwe Hermann | 1a895c6 | 2012-07-05 01:47:44 +0200 | [diff] [blame] | 727 | * Add an event source for a GPollFD. |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 728 | * |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 729 | * @param pollfd The GPollFD. |
| 730 | * @param timeout Max time to wait before the callback is called, ignored if 0. |
| 731 | * @param cb Callback function to add. Must not be NULL. |
| 732 | * @param cb_data Data for the callback function. Can be NULL. |
| 733 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 734 | * @retval SR_OK Success. |
| 735 | * @retval SR_ERR_ARG Invalid argument. |
| 736 | * @retval SR_ERR_MALLOC Memory allocation error. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 737 | * |
| 738 | * @since 0.3.0 |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 739 | */ |
| 740 | SR_API int sr_session_source_add_pollfd(GPollFD *pollfd, int timeout, |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 741 | sr_receive_data_callback cb, void *cb_data) |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 742 | { |
Uwe Hermann | 1a895c6 | 2012-07-05 01:47:44 +0200 | [diff] [blame] | 743 | return _sr_session_source_add(pollfd, timeout, cb, |
| 744 | cb_data, (gintptr)pollfd); |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | /** |
Uwe Hermann | 1a895c6 | 2012-07-05 01:47:44 +0200 | [diff] [blame] | 748 | * Add an event source for a GIOChannel. |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 749 | * |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 750 | * @param channel The GIOChannel. |
| 751 | * @param events Events to poll on. |
| 752 | * @param timeout Max time to wait before the callback is called, ignored if 0. |
| 753 | * @param cb Callback function to add. Must not be NULL. |
| 754 | * @param cb_data Data for the callback function. Can be NULL. |
| 755 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 756 | * @retval SR_OK Success. |
| 757 | * @retval SR_ERR_ARG Invalid argument. |
| 758 | * @retval SR_ERR_MALLOC Memory allocation error. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 759 | * |
| 760 | * @since 0.3.0 |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 761 | */ |
Uwe Hermann | 1a895c6 | 2012-07-05 01:47:44 +0200 | [diff] [blame] | 762 | SR_API int sr_session_source_add_channel(GIOChannel *channel, int events, |
Uwe Hermann | 144f666 | 2014-05-03 22:14:01 +0200 | [diff] [blame] | 763 | int timeout, sr_receive_data_callback cb, void *cb_data) |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 764 | { |
| 765 | GPollFD p; |
| 766 | |
| 767 | #ifdef _WIN32 |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 768 | g_io_channel_win32_make_pollfd(channel, events, &p); |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 769 | #else |
| 770 | p.fd = g_io_channel_unix_get_fd(channel); |
| 771 | p.events = events; |
| 772 | #endif |
| 773 | |
| 774 | return _sr_session_source_add(&p, timeout, cb, cb_data, (gintptr)channel); |
| 775 | } |
| 776 | |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 777 | /** |
| 778 | * Remove the source belonging to the specified channel. |
| 779 | * |
| 780 | * @todo Add more error checks and logging. |
| 781 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 782 | * @param poll_object The channel for which the source should be removed. |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 783 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 784 | * @retval SR_OK Success |
| 785 | * @retval SR_ERR_ARG Invalid arguments |
| 786 | * @retval SR_ERR_MALLOC Memory allocation error |
| 787 | * @retval SR_ERR_BUG Internal error |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 788 | */ |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 789 | static int _sr_session_source_remove(gintptr poll_object) |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 790 | { |
| 791 | struct source *new_sources; |
Lars-Peter Clausen | 0687dfc | 2012-06-30 20:54:43 +0200 | [diff] [blame] | 792 | GPollFD *new_pollfds; |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 793 | unsigned int old; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 794 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 795 | if (!session->sources || !session->num_sources) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 796 | sr_err("%s: sources was NULL", __func__); |
Uwe Hermann | 0abee50 | 2012-03-04 15:08:11 +0100 | [diff] [blame] | 797 | return SR_ERR_BUG; |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 798 | } |
| 799 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 800 | for (old = 0; old < session->num_sources; old++) { |
| 801 | if (session->sources[old].poll_object == poll_object) |
Lars-Peter Clausen | 2bccd32 | 2012-06-30 20:54:42 +0200 | [diff] [blame] | 802 | break; |
| 803 | } |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 804 | |
Lars-Peter Clausen | 2bccd32 | 2012-06-30 20:54:42 +0200 | [diff] [blame] | 805 | /* fd not found, nothing to do */ |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 806 | if (old == session->num_sources) |
Lars-Peter Clausen | 2bccd32 | 2012-06-30 20:54:42 +0200 | [diff] [blame] | 807 | return SR_OK; |
| 808 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 809 | session->num_sources -= 1; |
Lars-Peter Clausen | 2bccd32 | 2012-06-30 20:54:42 +0200 | [diff] [blame] | 810 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 811 | if (old != session->num_sources) { |
| 812 | memmove(&session->pollfds[old], &session->pollfds[old+1], |
| 813 | (session->num_sources - old) * sizeof(GPollFD)); |
| 814 | memmove(&session->sources[old], &session->sources[old+1], |
| 815 | (session->num_sources - old) * sizeof(struct source)); |
Lars-Peter Clausen | 2bccd32 | 2012-06-30 20:54:42 +0200 | [diff] [blame] | 816 | } |
| 817 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 818 | new_pollfds = g_try_realloc(session->pollfds, sizeof(GPollFD) * session->num_sources); |
| 819 | if (!new_pollfds && session->num_sources > 0) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 820 | sr_err("%s: new_pollfds malloc failed", __func__); |
Lars-Peter Clausen | 0687dfc | 2012-06-30 20:54:43 +0200 | [diff] [blame] | 821 | return SR_ERR_MALLOC; |
| 822 | } |
| 823 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 824 | new_sources = g_try_realloc(session->sources, sizeof(struct source) * session->num_sources); |
| 825 | if (!new_sources && session->num_sources > 0) { |
Uwe Hermann | a421dc1 | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 826 | sr_err("%s: new_sources malloc failed", __func__); |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 827 | return SR_ERR_MALLOC; |
Uwe Hermann | 9f45fb3 | 2012-01-02 14:15:25 +0100 | [diff] [blame] | 828 | } |
| 829 | |
Lars-Peter Clausen | b7e9411 | 2012-07-06 23:23:31 +0200 | [diff] [blame] | 830 | session->pollfds = new_pollfds; |
| 831 | session->sources = new_sources; |
Uwe Hermann | e0508e6 | 2012-01-07 17:08:54 +0100 | [diff] [blame] | 832 | |
| 833 | return SR_OK; |
Bert Vermeulen | 544a458 | 2011-01-30 02:40:55 +0100 | [diff] [blame] | 834 | } |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 835 | |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 836 | /** |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 837 | * Remove the source belonging to the specified file descriptor. |
| 838 | * |
Uwe Hermann | 1a895c6 | 2012-07-05 01:47:44 +0200 | [diff] [blame] | 839 | * @param fd The file descriptor for which the source should be removed. |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 840 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 841 | * @retval SR_OK Success |
| 842 | * @retval SR_ERR_ARG Invalid argument |
| 843 | * @retval SR_ERR_MALLOC Memory allocation error. |
| 844 | * @retval SR_ERR_BUG Internal error. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 845 | * |
| 846 | * @since 0.3.0 |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 847 | */ |
| 848 | SR_API int sr_session_source_remove(int fd) |
| 849 | { |
| 850 | return _sr_session_source_remove((gintptr)fd); |
| 851 | } |
| 852 | |
| 853 | /** |
| 854 | * Remove the source belonging to the specified poll descriptor. |
| 855 | * |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 856 | * @param pollfd The poll descriptor for which the source should be removed. |
| 857 | * |
| 858 | * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or |
| 859 | * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon |
| 860 | * internal errors. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 861 | * |
| 862 | * @since 0.2.0 |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 863 | */ |
| 864 | SR_API int sr_session_source_remove_pollfd(GPollFD *pollfd) |
| 865 | { |
| 866 | return _sr_session_source_remove((gintptr)pollfd); |
| 867 | } |
| 868 | |
Uwe Hermann | 6b2d8d3 | 2012-10-21 23:24:42 +0200 | [diff] [blame] | 869 | /** |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 870 | * Remove the source belonging to the specified channel. |
| 871 | * |
Uwe Hermann | 1a895c6 | 2012-07-05 01:47:44 +0200 | [diff] [blame] | 872 | * @param channel The channel for which the source should be removed. |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 873 | * |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 874 | * @retval SR_OK Success. |
| 875 | * @retval SR_ERR_ARG Invalid argument. |
| 876 | * @retval SR_ERR_MALLOC Memory allocation error. |
| 877 | * @return SR_ERR_BUG Internal error. |
Uwe Hermann | 4711724 | 2014-05-04 20:51:05 +0200 | [diff] [blame] | 878 | * |
| 879 | * @since 0.2.0 |
Lars-Peter Clausen | aac0ea2 | 2012-06-30 20:54:44 +0200 | [diff] [blame] | 880 | */ |
| 881 | SR_API int sr_session_source_remove_channel(GIOChannel *channel) |
| 882 | { |
| 883 | return _sr_session_source_remove((gintptr)channel); |
| 884 | } |
Uwe Hermann | 7b870c3 | 2012-10-21 16:13:36 +0200 | [diff] [blame] | 885 | |
| 886 | /** @} */ |