]> sigrok.org Git - libsigrok.git/blame_incremental - session_driver.c
sr: change sr_dev_trigger_set() to use sdi
[libsigrok.git] / session_driver.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010-2012 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 <sys/types.h>
21#include <sys/stat.h>
22#include <fcntl.h>
23#include <unistd.h>
24#include <sys/time.h>
25#include <zip.h>
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
28
29/* size of payloads sent across the session bus */
30#define CHUNKSIZE (512 * 1024)
31
32struct session_vdev {
33 char *sessionfile;
34 char *capturefile;
35 struct zip *archive;
36 struct zip_file *capfile;
37 int bytes_read;
38 uint64_t samplerate;
39 int unitsize;
40 int num_probes;
41};
42
43static GSList *dev_insts = NULL;
44static const int hwcaps[] = {
45 SR_HWCAP_CAPTUREFILE,
46 SR_HWCAP_CAPTURE_UNITSIZE,
47 0,
48};
49
50/**
51 * TODO.
52 *
53 * @param dev_index TODO.
54 */
55static struct session_vdev *get_vdev_by_index(int dev_index)
56{
57 struct sr_dev_inst *sdi;
58 struct session_vdev *vdev;
59
60 /* TODO: Sanity checks on dev_index. */
61
62 if (!(sdi = sr_dev_inst_get(dev_insts, dev_index))) {
63 sr_err("session driver: %s: device instance with device "
64 "index %d was not found", __func__, dev_index);
65 return NULL;
66 }
67
68 /* TODO: Is sdi->priv == NULL valid? */
69
70 vdev = sdi->priv;
71
72 return vdev;
73}
74
75/**
76 * TODO.
77 *
78 * @param fd TODO.
79 * @param revents TODO.
80 * @param cb_data TODO.
81 *
82 * @return TODO.
83 */
84static int receive_data(int fd, int revents, void *cb_data)
85{
86 struct sr_dev_inst *sdi;
87 struct session_vdev *vdev;
88 struct sr_datafeed_packet packet;
89 struct sr_datafeed_logic logic;
90 GSList *l;
91 void *buf;
92 int ret, got_data;
93
94 /* Avoid compiler warnings. */
95 (void)fd;
96 (void)revents;
97
98 sr_dbg("session_driver: feed chunk");
99
100 got_data = FALSE;
101 for (l = dev_insts; l; l = l->next) {
102 sdi = l->data;
103 vdev = sdi->priv;
104 if (!vdev)
105 /* already done with this instance */
106 continue;
107
108 if (!(buf = g_try_malloc(CHUNKSIZE))) {
109 sr_err("session driver: %s: buf malloc failed",
110 __func__);
111 return FALSE; /* TODO: SR_ERR_MALLOC */
112 }
113
114 ret = zip_fread(vdev->capfile, buf, CHUNKSIZE);
115 if (ret > 0) {
116 got_data = TRUE;
117 packet.type = SR_DF_LOGIC;
118 packet.payload = &logic;
119 logic.length = ret;
120 logic.unitsize = vdev->unitsize;
121 logic.data = buf;
122 vdev->bytes_read += ret;
123 sr_session_send(cb_data, &packet);
124 } else {
125 /* done with this capture file */
126 zip_fclose(vdev->capfile);
127 g_free(vdev->capturefile);
128 g_free(vdev);
129 sdi->priv = NULL;
130 }
131 }
132
133 if (!got_data) {
134 packet.type = SR_DF_END;
135 sr_session_send(cb_data, &packet);
136 }
137
138 return TRUE;
139}
140
141/* driver callbacks */
142static int hw_cleanup(void);
143
144/**
145 * TODO.
146 *
147 * @param devinfo TODO.
148 *
149 * @return TODO.
150 */
151static int hw_init(void)
152{
153
154 return SR_OK;
155}
156
157/**
158 * TODO.
159 */
160static int hw_cleanup(void)
161{
162 GSList *l;
163
164 for (l = dev_insts; l; l = l->next)
165 sr_dev_inst_free(l->data);
166 g_slist_free(dev_insts);
167 dev_insts = NULL;
168
169 sr_session_source_remove(-1);
170
171 return SR_OK;
172}
173
174static int hw_dev_open(int dev_index)
175{
176 struct sr_dev_inst *sdi;
177
178 sdi = sr_dev_inst_new(dev_index, SR_ST_INITIALIZING,
179 NULL, NULL, NULL);
180 if (!sdi)
181 return SR_ERR;
182
183 if (!(sdi->priv = g_try_malloc0(sizeof(struct session_vdev)))) {
184 sr_err("session driver: %s: sdi->priv malloc failed", __func__);
185 return SR_ERR_MALLOC;
186 }
187
188 dev_insts = g_slist_append(dev_insts, sdi);
189
190 return SR_OK;
191}
192
193static int hw_info_get(int info_id, const void **data,
194 const struct sr_dev_inst *sdi)
195{
196 struct session_vdev *vdev;
197
198 switch (info_id) {
199 case SR_DI_HWCAPS:
200 *data = hwcaps;
201 break;
202 case SR_DI_CUR_SAMPLERATE:
203 if (sdi) {
204 vdev = sdi->priv;
205 *data = &vdev->samplerate;
206 } else
207 return SR_ERR;
208 break;
209 default:
210 return SR_ERR_ARG;
211 }
212
213 return SR_OK;
214}
215
216static int hw_dev_status_get(int dev_index)
217{
218 /* Avoid compiler warnings. */
219 (void)dev_index;
220
221 if (sr_dev_list() != NULL)
222 return SR_OK;
223 else
224 return SR_ERR;
225}
226
227static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
228 const void *value)
229{
230 struct session_vdev *vdev;
231 const uint64_t *tmp_u64;
232
233 vdev = sdi->priv;
234
235 switch (hwcap) {
236 case SR_HWCAP_SAMPLERATE:
237 tmp_u64 = value;
238 vdev->samplerate = *tmp_u64;
239 sr_info("session driver: setting samplerate to %" PRIu64,
240 vdev->samplerate);
241 break;
242 case SR_HWCAP_SESSIONFILE:
243 vdev->sessionfile = g_strdup(value);
244 sr_info("session driver: setting sessionfile to %s",
245 vdev->sessionfile);
246 break;
247 case SR_HWCAP_CAPTUREFILE:
248 vdev->capturefile = g_strdup(value);
249 sr_info("session driver: setting capturefile to %s",
250 vdev->capturefile);
251 break;
252 case SR_HWCAP_CAPTURE_UNITSIZE:
253 tmp_u64 = value;
254 vdev->unitsize = *tmp_u64;
255 break;
256 case SR_HWCAP_CAPTURE_NUM_PROBES:
257 tmp_u64 = value;
258 vdev->num_probes = *tmp_u64;
259 break;
260 default:
261 sr_err("session driver: %s: unknown capability %d requested",
262 __func__, hwcap);
263 return SR_ERR;
264 }
265
266 return SR_OK;
267}
268
269static int hw_dev_acquisition_start(int dev_index, void *cb_data)
270{
271 struct zip_stat zs;
272 struct session_vdev *vdev;
273 struct sr_datafeed_header *header;
274 struct sr_datafeed_packet *packet;
275 struct sr_datafeed_meta_logic meta;
276 int ret;
277
278 if (!(vdev = get_vdev_by_index(dev_index)))
279 return SR_ERR;
280
281 sr_info("session_driver: opening archive %s file %s", vdev->sessionfile,
282 vdev->capturefile);
283
284 if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
285 sr_err("session driver: Failed to open session file '%s': "
286 "zip error %d\n", vdev->sessionfile, ret);
287 return SR_ERR;
288 }
289
290 if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) == -1) {
291 sr_err("session driver: Failed to check capture file '%s' in "
292 "session file '%s'.", vdev->capturefile, vdev->sessionfile);
293 return SR_ERR;
294 }
295
296 if (!(vdev->capfile = zip_fopen(vdev->archive, vdev->capturefile, 0))) {
297 sr_err("session driver: Failed to open capture file '%s' in "
298 "session file '%s'.", vdev->capturefile, vdev->sessionfile);
299 return SR_ERR;
300 }
301
302 /* freewheeling source */
303 sr_session_source_add(-1, 0, 0, receive_data, cb_data);
304
305 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
306 sr_err("session driver: %s: packet malloc failed", __func__);
307 return SR_ERR_MALLOC;
308 }
309
310 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
311 sr_err("session driver: %s: header malloc failed", __func__);
312 return SR_ERR_MALLOC;
313 }
314
315 /* Send header packet to the session bus. */
316 packet->type = SR_DF_HEADER;
317 packet->payload = (unsigned char *)header;
318 header->feed_version = 1;
319 gettimeofday(&header->starttime, NULL);
320 sr_session_send(cb_data, packet);
321
322 /* Send metadata about the SR_DF_LOGIC packets to come. */
323 packet->type = SR_DF_META_LOGIC;
324 packet->payload = &meta;
325 meta.samplerate = vdev->samplerate;
326 meta.num_probes = vdev->num_probes;
327 sr_session_send(cb_data, packet);
328
329 g_free(header);
330 g_free(packet);
331
332 return SR_OK;
333}
334
335SR_PRIV struct sr_dev_driver session_driver = {
336 .name = "session",
337 .longname = "Session-emulating driver",
338 .api_version = 1,
339 .init = hw_init,
340 .cleanup = hw_cleanup,
341 .dev_open = hw_dev_open,
342 .dev_close = NULL,
343 .info_get = hw_info_get,
344 .dev_status_get = hw_dev_status_get,
345 .dev_config_set = hw_dev_config_set,
346 .dev_acquisition_start = hw_dev_acquisition_start,
347 .dev_acquisition_stop = NULL,
348};