]> sigrok.org Git - libsigrok.git/blame_incremental - session.c
Add SR_ERR_ARG #define.
[libsigrok.git] / session.c
... / ...
CommitLineData
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
20#include "config.h"
21#include <stdio.h>
22#include <stdlib.h>
23#include <unistd.h>
24#include <string.h>
25#include <glib.h>
26#include <sigrok.h>
27
28/* demo.c */
29extern GIOChannel channels[2];
30
31struct source {
32 int fd;
33 int events;
34 int timeout;
35 sr_receive_data_callback cb;
36 void *user_data;
37};
38
39/* There can only be one session at a time. */
40struct sr_session *session;
41int num_sources = 0;
42
43struct source *sources = NULL;
44int source_timeout = -1;
45
46
47struct sr_session *sr_session_new(void)
48{
49 session = calloc(1, sizeof(struct sr_session));
50
51 return session;
52}
53
54void sr_session_destroy(void)
55{
56 g_slist_free(session->devices);
57
58 /* TODO: Loop over protocol decoders and free them. */
59
60 g_free(session);
61}
62
63void sr_session_device_clear(void)
64{
65 g_slist_free(session->devices);
66 session->devices = NULL;
67}
68
69int sr_session_device_add(struct sr_device *device)
70{
71 int ret;
72
73 if (device->plugin && device->plugin->open) {
74 ret = device->plugin->open(device->plugin_index);
75 if (ret != SR_OK)
76 return ret;
77 }
78
79 session->devices = g_slist_append(session->devices, device);
80
81 return SR_OK;
82}
83
84#if 0
85void sr_session_pa_clear(void)
86{
87 /*
88 * The protocols are pointers to the global set of PA plugins,
89 * so don't free them.
90 */
91 g_slist_free(session->analyzers);
92 session->analyzers = NULL;
93}
94
95void sr_session_pa_add(struct sr_analyzer *an)
96{
97 session->analyzers = g_slist_append(session->analyzers, an);
98}
99#endif
100
101void sr_session_datafeed_callback_clear(void)
102{
103 g_slist_free(session->datafeed_callbacks);
104 session->datafeed_callbacks = NULL;
105}
106
107void sr_session_datafeed_callback_add(sr_datafeed_callback callback)
108{
109 session->datafeed_callbacks =
110 g_slist_append(session->datafeed_callbacks, callback);
111}
112
113static void sr_session_run_poll()
114{
115 GPollFD *fds, my_gpollfd;
116 int ret, i;
117
118 fds = NULL;
119 while (session->running) {
120 if (fds)
121 free(fds);
122
123 /* Construct g_poll()'s array. */
124 fds = malloc(sizeof(GPollFD) * num_sources);
125 for (i = 0; i < num_sources; i++) {
126#ifdef _WIN32
127 g_io_channel_win32_make_pollfd(&channels[0],
128 sources[i].events, &my_gpollfd);
129#else
130 my_gpollfd.fd = sources[i].fd;
131 my_gpollfd.events = sources[i].events;
132 fds[i] = my_gpollfd;
133#endif
134 }
135
136 ret = g_poll(fds, num_sources, source_timeout);
137
138 for (i = 0; i < num_sources; i++) {
139 if (fds[i].revents > 0 || (ret == 0
140 && source_timeout == sources[i].timeout)) {
141 /*
142 * Invoke the source's callback on an event,
143 * or if the poll timeout out and this source
144 * asked for that timeout.
145 */
146 sources[i].cb(fds[i].fd, fds[i].revents,
147 sources[i].user_data);
148 }
149 }
150 }
151 free(fds);
152
153}
154
155int sr_session_start(void)
156{
157 struct sr_device *device;
158 GSList *l;
159 int ret;
160
161 g_message("session: starting");
162 for (l = session->devices; l; l = l->next) {
163 device = l->data;
164 if ((ret = device->plugin->start_acquisition(
165 device->plugin_index, device)) != SR_OK)
166 break;
167 }
168
169 return ret;
170}
171
172void sr_session_run(void)
173{
174
175 g_message("session: running");
176 session->running = TRUE;
177
178 /* do we have real sources? */
179 if (num_sources == 1 && sources[0].fd == -1)
180 /* dummy source, freewheel over it */
181 while (session->running)
182 sources[0].cb(-1, 0, sources[0].user_data);
183 else
184 /* real sources, use g_poll() main loop */
185 sr_session_run_poll();
186
187}
188
189void sr_session_halt(void)
190{
191
192 g_message("session: halting");
193 session->running = FALSE;
194
195}
196
197void sr_session_stop(void)
198{
199 struct sr_device *device;
200 GSList *l;
201
202 g_message("session: stopping");
203 session->running = FALSE;
204 for (l = session->devices; l; l = l->next) {
205 device = l->data;
206 if (device->plugin && device->plugin->stop_acquisition)
207 device->plugin->stop_acquisition(device->plugin_index, device);
208 }
209
210}
211
212void sr_session_bus(struct sr_device *device, struct sr_datafeed_packet *packet)
213{
214 GSList *l;
215 sr_datafeed_callback cb;
216
217 /*
218 * TODO: Send packet through PD pipe, and send the output of that to
219 * the callbacks as well.
220 */
221 for (l = session->datafeed_callbacks; l; l = l->next) {
222 cb = l->data;
223 cb(device, packet);
224 }
225}
226
227void sr_session_source_add(int fd, int events, int timeout,
228 sr_receive_data_callback callback, void *user_data)
229{
230 struct source *new_sources, *s;
231
232 new_sources = calloc(1, sizeof(struct source) * (num_sources + 1));
233
234 if (sources) {
235 memcpy(new_sources, sources,
236 sizeof(struct source) * num_sources);
237 free(sources);
238 }
239
240 s = &new_sources[num_sources++];
241 s->fd = fd;
242 s->events = events;
243 s->timeout = timeout;
244 s->cb = callback;
245 s->user_data = user_data;
246 sources = new_sources;
247
248 if (timeout != source_timeout && timeout > 0
249 && (source_timeout == -1 || timeout < source_timeout))
250 source_timeout = timeout;
251}
252
253void sr_session_source_remove(int fd)
254{
255 struct source *new_sources;
256 int old, new;
257
258 if (!sources)
259 return;
260
261 new_sources = calloc(1, sizeof(struct source) * num_sources);
262 for (old = 0; old < num_sources; old++)
263 if (sources[old].fd != fd)
264 memcpy(&new_sources[new++], &sources[old],
265 sizeof(struct source));
266
267 if (old != new) {
268 free(sources);
269 sources = new_sources;
270 num_sources--;
271 } else {
272 /* Target fd was not found. */
273 free(new_sources);
274 }
275}
276