]> sigrok.org Git - libsigrok.git/blame - src/session_driver.c
openbench-logic-sniffer: fix acquisition restart with trigger enabled
[libsigrok.git] / src / session_driver.c
CommitLineData
7d658874 1/*
50985c20 2 * This file is part of the libsigrok project.
7d658874 3 *
13d8e03c 4 * Copyright (C) 2013 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
6ec6c43b 20#include <config.h>
7d658874
BV
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <fcntl.h>
24#include <unistd.h>
25#include <sys/time.h>
26#include <zip.h>
c1aae900 27#include <libsigrok/libsigrok.h>
45c59c8b 28#include "libsigrok-internal.h"
7d658874 29
3544f848 30#define LOG_PREFIX "virtual-session"
a885ce3e 31
7d658874 32/* size of payloads sent across the session bus */
b4bd7088 33/** @cond PRIVATE */
df3e608a 34#define CHUNKSIZE (4 * 1024 * 1024)
b4bd7088 35/** @endcond */
7d658874 36
102f1239 37SR_PRIV struct sr_dev_driver session_driver_info;
102f1239 38
bb7ef793 39struct session_vdev {
40dda2c3 40 char *sessionfile;
7d658874
BV
41 char *capturefile;
42 struct zip *archive;
43 struct zip_file *capfile;
cb1e389c 44 int bytes_read;
7d658874
BV
45 uint64_t samplerate;
46 int unitsize;
fca75cbb 47 int num_channels;
b317d1bb 48 int num_analog_channels;
906921ba 49 int cur_analog_channel;
2dc40815 50 GArray *analog_channels;
f438e0c9 51 int cur_chunk;
aa48adf9 52 gboolean finished;
7d658874
BV
53};
54
f254bc4b 55static const uint32_t devopts[] = {
68ac991d
BV
56 SR_CONF_CAPTUREFILE | SR_CONF_SET,
57 SR_CONF_CAPTURE_UNITSIZE | SR_CONF_GET | SR_CONF_SET,
02e49ae5 58 SR_CONF_NUM_LOGIC_CHANNELS | SR_CONF_SET,
b317d1bb 59 SR_CONF_NUM_ANALOG_CHANNELS | SR_CONF_SET,
68ac991d 60 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET,
02e49ae5 61 SR_CONF_SESSIONFILE | SR_CONF_SET,
7d658874
BV
62};
63
8d4097ff 64static gboolean stream_session_data(struct sr_dev_inst *sdi)
7d658874 65{
bb7ef793 66 struct session_vdev *vdev;
7d658874 67 struct sr_datafeed_packet packet;
9c939c51 68 struct sr_datafeed_logic logic;
6cdb1da6
UH
69 struct sr_datafeed_analog analog;
70 struct sr_analog_encoding encoding;
71 struct sr_analog_meaning meaning;
72 struct sr_analog_spec spec;
f438e0c9 73 struct zip_stat zs;
7d658874 74 int ret, got_data;
f438e0c9
BV
75 char capturefile[16];
76 void *buf;
7d658874 77
7d658874 78 got_data = FALSE;
102f1239 79 vdev = sdi->priv;
7c69b528 80
8d4097ff
DE
81 if (!vdev->capfile) {
82 /* No capture file opened yet, or finished with the last
83 * chunked one. */
7c69b528 84 if (vdev->capturefile && (vdev->cur_chunk == 0)) {
8d4097ff
DE
85 /* capturefile is always the unchunked base name. */
86 if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) != -1) {
87 /* No chunks, just a single capture file. */
88 vdev->cur_chunk = 0;
89 if (!(vdev->capfile = zip_fopen(vdev->archive,
90 vdev->capturefile, 0)))
91 return FALSE;
92 sr_dbg("Opened %s.", vdev->capturefile);
f438e0c9 93 } else {
8d4097ff
DE
94 /* Try as first chunk filename. */
95 snprintf(capturefile, 15, "%s-1", vdev->capturefile);
f438e0c9 96 if (zip_stat(vdev->archive, capturefile, 0, &zs) != -1) {
8d4097ff 97 vdev->cur_chunk = 1;
f438e0c9
BV
98 if (!(vdev->capfile = zip_fopen(vdev->archive,
99 capturefile, 0)))
100 return FALSE;
101 sr_dbg("Opened %s.", capturefile);
102 } else {
8d4097ff
DE
103 sr_err("No capture file '%s' in " "session file '%s'.",
104 vdev->capturefile, vdev->sessionfile);
105 return FALSE;
f438e0c9
BV
106 }
107 }
7d658874 108 } else {
8d4097ff
DE
109 /* Capture data is chunked, advance to the next chunk. */
110 vdev->cur_chunk++;
111 snprintf(capturefile, 15, "%s-%d", vdev->capturefile,
112 vdev->cur_chunk);
113 if (zip_stat(vdev->archive, capturefile, 0, &zs) != -1) {
114 if (!(vdev->capfile = zip_fopen(vdev->archive,
115 capturefile, 0)))
116 return FALSE;
117 sr_dbg("Opened %s.", capturefile);
906921ba
ML
118 } else if (vdev->cur_analog_channel < vdev->num_analog_channels) {
119 vdev->capturefile = g_strdup_printf("analog-1-%d",
e5b280e4 120 vdev->num_channels + vdev->cur_analog_channel + 1);
906921ba
ML
121 vdev->cur_analog_channel++;
122 vdev->cur_chunk = 0;
123 return TRUE;
f438e0c9 124 } else {
8d4097ff
DE
125 /* We got all the chunks, finish up. */
126 return FALSE;
f438e0c9 127 }
7d658874
BV
128 }
129 }
130
8d4097ff
DE
131 buf = g_malloc(CHUNKSIZE);
132
9cfc695f
SA
133 /* unitsize is not defined for purely analog session files. */
134 if (vdev->unitsize)
135 ret = zip_fread(vdev->capfile, buf,
136 CHUNKSIZE / vdev->unitsize * vdev->unitsize);
137 else
138 ret = zip_fread(vdev->capfile, buf, CHUNKSIZE);
139
8d4097ff 140 if (ret > 0) {
8d4097ff 141 got_data = TRUE;
2dc40815 142 if (vdev->cur_analog_channel != 0) {
6cdb1da6 143 packet.type = SR_DF_ANALOG;
2dc40815 144 packet.payload = &analog;
7dcaddd3
UH
145 /* TODO: Use proper 'digits' value for this device (and its modes). */
146 sr_analog_init(&analog, &encoding, &meaning, &spec, 2);
6cdb1da6 147 analog.meaning->channels = g_slist_prepend(NULL,
2dc40815
ML
148 g_array_index(vdev->analog_channels,
149 struct sr_channel *, vdev->cur_analog_channel - 1));
150 analog.num_samples = ret / sizeof(float);
6cdb1da6
UH
151 analog.meaning->mq = SR_MQ_VOLTAGE;
152 analog.meaning->unit = SR_UNIT_VOLT;
153 analog.meaning->mqflags = SR_MQFLAG_DC;
2dc40815
ML
154 analog.data = (float *) buf;
155 } else {
156 if (ret % vdev->unitsize != 0)
157 sr_warn("Read size %d not a multiple of the"
158 " unit size %d.", ret, vdev->unitsize);
159 packet.type = SR_DF_LOGIC;
160 packet.payload = &logic;
161 logic.length = ret;
162 logic.unitsize = vdev->unitsize;
163 logic.data = buf;
164 }
8d4097ff 165 vdev->bytes_read += ret;
102f1239 166 sr_session_send(sdi, &packet);
8d4097ff
DE
167 } else {
168 /* done with this capture file */
169 zip_fclose(vdev->capfile);
170 vdev->capfile = NULL;
171 if (vdev->cur_chunk != 0) {
172 /* There might be more chunks, so don't fall through
173 * to the SR_DF_END here. */
174 got_data = TRUE;
175 }
7d658874 176 }
8d4097ff 177 g_free(buf);
7d658874 178
8d4097ff
DE
179 return got_data;
180}
181
182static int receive_data(int fd, int revents, void *cb_data)
183{
184 struct sr_dev_inst *sdi;
185 struct session_vdev *vdev;
8d4097ff
DE
186
187 (void)fd;
188 (void)revents;
189
190 sdi = cb_data;
191 vdev = sdi->priv;
192
193 if (!vdev->finished && !stream_session_data(sdi))
194 vdev->finished = TRUE;
195 if (!vdev->finished)
196 return G_SOURCE_CONTINUE;
197
198 if (vdev->capfile) {
199 zip_fclose(vdev->capfile);
200 vdev->capfile = NULL;
201 }
202 if (vdev->archive) {
203 zip_discard(vdev->archive);
204 vdev->archive = NULL;
205 }
3be42bc2 206
bee2b016 207 std_session_send_df_end(sdi);
8d4097ff
DE
208
209 return G_SOURCE_REMOVE;
7d658874
BV
210}
211
212/* driver callbacks */
213
4f840ce9 214static int dev_clear(const struct sr_dev_driver *di)
7d658874 215{
102f1239 216 struct drv_context *drvc;
7d658874
BV
217 GSList *l;
218
41812aca 219 drvc = di->context;
102f1239 220 for (l = drvc->instances; l; l = l->next)
d3683c42 221 sr_dev_inst_free(l->data);
102f1239
BV
222 g_slist_free(drvc->instances);
223 drvc->instances = NULL;
805e9640 224
57ab7d9f 225 return SR_OK;
7d658874
BV
226}
227
6078d2c9 228static int dev_open(struct sr_dev_inst *sdi)
7d658874 229{
4f840ce9 230 struct sr_dev_driver *di;
102f1239 231 struct drv_context *drvc;
aa48adf9 232 struct session_vdev *vdev;
b53738ba 233
4f840ce9 234 di = sdi->driver;
41812aca 235 drvc = di->context;
102f1239 236 vdev = g_malloc0(sizeof(struct session_vdev));
aa48adf9 237 sdi->priv = vdev;
102f1239 238 drvc->instances = g_slist_append(drvc->instances, sdi);
7d658874
BV
239
240 return SR_OK;
241}
242
aa48adf9
BV
243static int dev_close(struct sr_dev_inst *sdi)
244{
8c9d4d67
JH
245 const struct session_vdev *const vdev = sdi->priv;
246 g_free(vdev->sessionfile);
247 g_free(vdev->capturefile);
248
aa48adf9
BV
249 g_free(sdi->priv);
250 sdi->priv = NULL;
251
252 return SR_OK;
253}
254
584560f1 255static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 256 const struct sr_channel_group *cg)
7d658874 257{
bb7ef793 258 struct session_vdev *vdev;
7d658874 259
53b4680f 260 (void)cg;
8f996b89 261
3f2cd87f
UH
262 if (!sdi)
263 return SR_ERR;
264
265 vdev = sdi->priv;
266
584560f1 267 switch (key) {
123e1313 268 case SR_CONF_SAMPLERATE:
3f2cd87f
UH
269 *data = g_variant_new_uint64(vdev->samplerate);
270 break;
271 case SR_CONF_CAPTURE_UNITSIZE:
272 *data = g_variant_new_uint64(vdev->unitsize);
387014de
BV
273 break;
274 default:
96ea73db 275 return SR_ERR_NA;
387014de 276 }
7d658874 277
387014de 278 return SR_OK;
7d658874
BV
279}
280
584560f1 281static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 282 const struct sr_channel_group *cg)
7d658874 283{
bb7ef793 284 struct session_vdev *vdev;
7d658874 285
53b4680f 286 (void)cg;
8f996b89 287
6f4b1868 288 vdev = sdi->priv;
7d658874 289
584560f1 290 switch (key) {
1953564a 291 case SR_CONF_SAMPLERATE:
003595ac 292 vdev->samplerate = g_variant_get_uint64(data);
a885ce3e 293 sr_info("Setting samplerate to %" PRIu64 ".", vdev->samplerate);
7d658874 294 break;
1953564a 295 case SR_CONF_SESSIONFILE:
8c9d4d67 296 g_free(vdev->sessionfile);
003595ac 297 vdev->sessionfile = g_strdup(g_variant_get_string(data, NULL));
a885ce3e 298 sr_info("Setting sessionfile to '%s'.", vdev->sessionfile);
40dda2c3 299 break;
1953564a 300 case SR_CONF_CAPTUREFILE:
8c9d4d67 301 g_free(vdev->capturefile);
003595ac 302 vdev->capturefile = g_strdup(g_variant_get_string(data, NULL));
a885ce3e 303 sr_info("Setting capturefile to '%s'.", vdev->capturefile);
7d658874 304 break;
1953564a 305 case SR_CONF_CAPTURE_UNITSIZE:
003595ac 306 vdev->unitsize = g_variant_get_uint64(data);
7d658874 307 break;
3f239f08 308 case SR_CONF_NUM_LOGIC_CHANNELS:
2c38a41a 309 vdev->num_channels = g_variant_get_int32(data);
7d658874 310 break;
b317d1bb
ML
311 case SR_CONF_NUM_ANALOG_CHANNELS:
312 vdev->num_analog_channels = g_variant_get_int32(data);
313 break;
7d658874 314 default:
96ea73db 315 return SR_ERR_NA;
7d658874
BV
316 }
317
318 return SR_OK;
319}
320
584560f1 321static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 322 const struct sr_channel_group *cg)
9a6517d1 323{
9a6517d1 324 (void)sdi;
53b4680f 325 (void)cg;
9a6517d1
BV
326
327 switch (key) {
328 case SR_CONF_DEVICE_OPTIONS:
584560f1 329 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 330 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1
BV
331 break;
332 default:
96ea73db 333 return SR_ERR_NA;
9a6517d1
BV
334 }
335
336 return SR_OK;
337}
338
695dc859 339static int dev_acquisition_start(const struct sr_dev_inst *sdi)
7d658874 340{
bb7ef793 341 struct session_vdev *vdev;
ebc34738 342 int ret;
2dc40815
ML
343 GSList *l;
344 struct sr_channel *ch;
7d658874 345
102f1239 346 vdev = sdi->priv;
8c9d4d67 347 vdev->bytes_read = 0;
906921ba 348 vdev->cur_analog_channel = 0;
2dc40815
ML
349 vdev->analog_channels = g_array_sized_new(FALSE, FALSE,
350 sizeof(struct sr_channel *), vdev->num_analog_channels);
351 for (l = sdi->channels; l; l = l->next) {
352 ch = l->data;
353 if (ch->type == SR_CHANNEL_ANALOG)
354 g_array_append_val(vdev->analog_channels, ch);
355 }
8c9d4d67
JH
356 vdev->cur_chunk = 0;
357 vdev->finished = FALSE;
358
a885ce3e 359 sr_info("Opening archive %s file %s", vdev->sessionfile,
bb7ef793 360 vdev->capturefile);
7d658874 361
40dda2c3 362 if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
a885ce3e 363 sr_err("Failed to open session file '%s': "
9d122af8 364 "zip error %d.", vdev->sessionfile, ret);
7d658874
BV
365 return SR_ERR;
366 }
367
bee2b016 368 std_session_send_df_header(sdi);
4afdfd46 369
7d658874 370 /* freewheeling source */
102f1239 371 sr_session_source_add(sdi->session, -1, 0, 0, receive_data, (void *)sdi);
7d658874 372
7d658874
BV
373 return SR_OK;
374}
375
695dc859 376static int dev_acquisition_stop(struct sr_dev_inst *sdi)
8d4097ff
DE
377{
378 struct session_vdev *vdev;
379
8d4097ff
DE
380 vdev = sdi->priv;
381
382 vdev->finished = TRUE;
383
384 return SR_OK;
385}
386
b4bd7088 387/** @private */
c09f0b57 388SR_PRIV struct sr_dev_driver session_driver = {
a885ce3e 389 .name = "virtual-session",
5097b0d0
UH
390 .longname = "Session-emulating driver",
391 .api_version = 1,
c2fdcc25 392 .init = std_init,
824fba03 393 .cleanup = dev_clear,
96ea73db
UH
394 .scan = NULL,
395 .dev_list = NULL,
824fba03 396 .dev_clear = dev_clear,
035a1078
BV
397 .config_get = config_get,
398 .config_set = config_set,
9a6517d1 399 .config_list = config_list,
6078d2c9 400 .dev_open = dev_open,
aa48adf9 401 .dev_close = dev_close,
6078d2c9 402 .dev_acquisition_start = dev_acquisition_start,
8d4097ff 403 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 404 .context = NULL,
7d658874 405};