]> sigrok.org Git - libsigrok.git/blame - session.c
ols: Minor whitespace and coding style fixes.
[libsigrok.git] / session.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
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
22b02383 20#include "config.h"
a1bb33af
UH
21#include <stdio.h>
22#include <stdlib.h>
23#include <unistd.h>
24#include <string.h>
544a4582 25#include <glib.h>
62c82025 26#include <sigrok.h>
b08024a8 27#include <sigrok-internal.h>
aa4b1107 28
9f4bc44e
UH
29/* demo.c */
30extern GIOChannel channels[2];
a1bb33af 31
544a4582
BV
32struct source {
33 int fd;
34 int events;
35 int timeout;
a887e3da 36 sr_receive_data_callback cb;
544a4582
BV
37 void *user_data;
38};
39
7d658874 40/* There can only be one session at a time. */
2872d21e 41struct sr_session *session;
7d658874
BV
42int num_sources = 0;
43
544a4582
BV
44struct source *sources = NULL;
45int source_timeout = -1;
46
47
8a2efef2 48struct sr_session *sr_session_new(void)
a1bb33af 49{
2872d21e 50 session = calloc(1, sizeof(struct sr_session));
a1bb33af
UH
51
52 return session;
53}
54
8a2efef2 55void sr_session_destroy(void)
a1bb33af 56{
8722c31e 57
a1bb33af
UH
58 g_slist_free(session->devices);
59
aa4b1107 60 /* TODO: Loop over protocol decoders and free them. */
a1bb33af
UH
61
62 g_free(session);
a1bb33af
UH
63}
64
8a2efef2 65void sr_session_device_clear(void)
a1bb33af 66{
a1bb33af
UH
67 g_slist_free(session->devices);
68 session->devices = NULL;
a1bb33af
UH
69}
70
8a2efef2 71int sr_session_device_add(struct sr_device *device)
a1bb33af
UH
72{
73 int ret;
74
86f5e3d8
UH
75 if (device->plugin && device->plugin->opendev) {
76 ret = device->plugin->opendev(device->plugin_index);
e46b8fb1 77 if (ret != SR_OK)
aa4b1107
BV
78 return ret;
79 }
a1bb33af 80
aa4b1107
BV
81 session->devices = g_slist_append(session->devices, device);
82
e46b8fb1 83 return SR_OK;
a1bb33af
UH
84}
85
8bb416be 86#if 0
8a2efef2 87void sr_session_pa_clear(void)
a1bb33af 88{
62c82025
UH
89 /*
90 * The protocols are pointers to the global set of PA plugins,
91 * so don't free them.
92 */
a1bb33af
UH
93 g_slist_free(session->analyzers);
94 session->analyzers = NULL;
a1bb33af
UH
95}
96
809c5f20 97void sr_session_pa_add(struct sr_analyzer *an)
a1bb33af 98{
a1bb33af 99 session->analyzers = g_slist_append(session->analyzers, an);
a1bb33af 100}
8bb416be 101#endif
a1bb33af 102
8a2efef2 103void sr_session_datafeed_callback_clear(void)
a1bb33af 104{
a1bb33af
UH
105 g_slist_free(session->datafeed_callbacks);
106 session->datafeed_callbacks = NULL;
a1bb33af
UH
107}
108
13b05733 109void sr_session_datafeed_callback_add(sr_datafeed_callback callback)
a1bb33af 110{
62c82025
UH
111 session->datafeed_callbacks =
112 g_slist_append(session->datafeed_callbacks, callback);
a1bb33af
UH
113}
114
8a2efef2 115static void sr_session_run_poll()
544a4582
BV
116{
117 GPollFD *fds, my_gpollfd;
118 int ret, i;
119
544a4582
BV
120 fds = NULL;
121 while (session->running) {
122 if (fds)
123 free(fds);
124
125 /* Construct g_poll()'s array. */
126 fds = malloc(sizeof(GPollFD) * num_sources);
127 for (i = 0; i < num_sources; i++) {
128#ifdef _WIN32
129 g_io_channel_win32_make_pollfd(&channels[0],
130 sources[i].events, &my_gpollfd);
131#else
132 my_gpollfd.fd = sources[i].fd;
133 my_gpollfd.events = sources[i].events;
134 fds[i] = my_gpollfd;
135#endif
136 }
137
138 ret = g_poll(fds, num_sources, source_timeout);
139
140 for (i = 0; i < num_sources; i++) {
141 if (fds[i].revents > 0 || (ret == 0
142 && source_timeout == sources[i].timeout)) {
143 /*
144 * Invoke the source's callback on an event,
145 * or if the poll timeout out and this source
146 * asked for that timeout.
147 */
148 sources[i].cb(fds[i].fd, fds[i].revents,
7d658874 149 sources[i].user_data);
544a4582
BV
150 }
151 }
152 }
153 free(fds);
154
155}
156
8a2efef2 157int sr_session_start(void)
7d658874
BV
158{
159 struct sr_device *device;
160 GSList *l;
161 int ret;
162
b08024a8 163 sr_info("session: starting");
7d658874
BV
164 for (l = session->devices; l; l = l->next) {
165 device = l->data;
166 if ((ret = device->plugin->start_acquisition(
167 device->plugin_index, device)) != SR_OK)
168 break;
169 }
170
171 return ret;
172}
173
8a2efef2 174void sr_session_run(void)
7d658874
BV
175{
176
b08024a8 177 sr_info("session: running");
7d658874
BV
178 session->running = TRUE;
179
180 /* do we have real sources? */
181 if (num_sources == 1 && sources[0].fd == -1)
182 /* dummy source, freewheel over it */
183 while (session->running)
184 sources[0].cb(-1, 0, sources[0].user_data);
185 else
186 /* real sources, use g_poll() main loop */
8a2efef2 187 sr_session_run_poll();
7d658874
BV
188
189}
190
8a2efef2 191void sr_session_halt(void)
544a4582
BV
192{
193
b08024a8 194 sr_info("session: halting");
544a4582
BV
195 session->running = FALSE;
196
197}
198
8a2efef2 199void sr_session_stop(void)
a1bb33af 200{
5c2d46d1 201 struct sr_device *device;
a1bb33af
UH
202 GSList *l;
203
b08024a8 204 sr_info("session: stopping");
544a4582 205 session->running = FALSE;
62c82025 206 for (l = session->devices; l; l = l->next) {
a1bb33af 207 device = l->data;
b8c2f85f 208 if (device->plugin && device->plugin->stop_acquisition)
aa4b1107 209 device->plugin->stop_acquisition(device->plugin_index, device);
a1bb33af 210 }
544a4582 211
a1bb33af
UH
212}
213
7d2afd6c
BV
214static void datafeed_dump(struct sr_datafeed_packet *packet)
215{
216 struct sr_datafeed_logic *logic;
217
218 switch (packet->type) {
219 case SR_DF_HEADER:
220 sr_dbg("bus: received SR_DF_HEADER");
221 break;
222 case SR_DF_TRIGGER:
223 sr_dbg("bus: received SR_DF_TRIGGER at %lu ms",
224 packet->timeoffset / 1000000);
225 break;
226 case SR_DF_LOGIC:
227 logic = packet->payload;
228 sr_dbg("bus: received SR_DF_LOGIC at %f ms duration %f ms, %"PRIu64" bytes",
229 packet->timeoffset / 1000000.0, packet->duration / 1000000.0,
230 logic->length);
231 break;
232 case SR_DF_END:
233 sr_dbg("bus: received SR_DF_END");
234 break;
235 default:
236 sr_dbg("bus: received unknown packet type %d", packet->type);
237 }
238
239}
240
8a2efef2 241void sr_session_bus(struct sr_device *device, struct sr_datafeed_packet *packet)
a1bb33af
UH
242{
243 GSList *l;
13b05733 244 sr_datafeed_callback cb;
a1bb33af 245
62c82025 246 /*
aa4b1107 247 * TODO: Send packet through PD pipe, and send the output of that to
62c82025 248 * the callbacks as well.
a1bb33af 249 */
62c82025 250 for (l = session->datafeed_callbacks; l; l = l->next) {
a1bb33af 251 cb = l->data;
7d2afd6c 252 datafeed_dump(packet);
a1bb33af
UH
253 cb(device, packet);
254 }
a1bb33af
UH
255}
256
8a2efef2 257void sr_session_source_add(int fd, int events, int timeout,
a887e3da 258 sr_receive_data_callback callback, void *user_data)
544a4582
BV
259{
260 struct source *new_sources, *s;
261
262 new_sources = calloc(1, sizeof(struct source) * (num_sources + 1));
263
264 if (sources) {
265 memcpy(new_sources, sources,
266 sizeof(struct source) * num_sources);
267 free(sources);
268 }
269
270 s = &new_sources[num_sources++];
271 s->fd = fd;
272 s->events = events;
273 s->timeout = timeout;
274 s->cb = callback;
275 s->user_data = user_data;
276 sources = new_sources;
277
278 if (timeout != source_timeout && timeout > 0
279 && (source_timeout == -1 || timeout < source_timeout))
280 source_timeout = timeout;
281}
282
8a2efef2 283void sr_session_source_remove(int fd)
544a4582
BV
284{
285 struct source *new_sources;
286 int old, new;
287
288 if (!sources)
289 return;
290
291 new_sources = calloc(1, sizeof(struct source) * num_sources);
292 for (old = 0; old < num_sources; old++)
293 if (sources[old].fd != fd)
294 memcpy(&new_sources[new++], &sources[old],
295 sizeof(struct source));
296
297 if (old != new) {
298 free(sources);
299 sources = new_sources;
300 num_sources--;
301 } else {
302 /* Target fd was not found. */
303 free(new_sources);
304 }
305}
306