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