]> sigrok.org Git - libsigrok.git/blame - src/session_driver.c
Simplify a few config_set() callbacks.
[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
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 28
3544f848 29#define LOG_PREFIX "virtual-session"
a885ce3e 30
7d658874 31/* size of payloads sent across the session bus */
b4bd7088 32/** @cond PRIVATE */
8ff6afc9 33#define CHUNKSIZE (512 * 1024)
b4bd7088 34/** @endcond */
7d658874 35
102f1239 36SR_PRIV struct sr_dev_driver session_driver_info;
102f1239 37
bb7ef793 38struct session_vdev {
40dda2c3 39 char *sessionfile;
7d658874
BV
40 char *capturefile;
41 struct zip *archive;
42 struct zip_file *capfile;
cb1e389c 43 int bytes_read;
7d658874
BV
44 uint64_t samplerate;
45 int unitsize;
fca75cbb 46 int num_channels;
f438e0c9 47 int cur_chunk;
aa48adf9 48 gboolean finished;
7d658874
BV
49};
50
f254bc4b 51static const uint32_t devopts[] = {
68ac991d
BV
52 SR_CONF_CAPTUREFILE | SR_CONF_SET,
53 SR_CONF_CAPTURE_UNITSIZE | SR_CONF_GET | SR_CONF_SET,
54 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET,
7d658874
BV
55};
56
9289e273 57static int receive_data(int fd, int revents, void *cb_data)
7d658874 58{
d68e2d1a 59 struct sr_dev_inst *sdi;
bb7ef793 60 struct session_vdev *vdev;
7d658874 61 struct sr_datafeed_packet packet;
9c939c51 62 struct sr_datafeed_logic logic;
f438e0c9 63 struct zip_stat zs;
7d658874 64 int ret, got_data;
f438e0c9
BV
65 char capturefile[16];
66 void *buf;
7d658874 67
cb93f8a9
UH
68 (void)fd;
69 (void)revents;
7d658874 70
102f1239 71 sdi = cb_data;
7d658874 72 got_data = FALSE;
102f1239
BV
73 vdev = sdi->priv;
74 if (!vdev->finished) {
f438e0c9
BV
75 if (!vdev->capfile) {
76 /* No capture file opened yet, or finished with the last
77 * chunked one. */
78 if (vdev->cur_chunk == 0) {
79 /* capturefile is always the unchunked base name. */
80 if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) != -1) {
81 /* No chunks, just a single capture file. */
82 vdev->cur_chunk = 0;
83 if (!(vdev->capfile = zip_fopen(vdev->archive,
84 vdev->capturefile, 0)))
85 return FALSE;
86 sr_dbg("Opened %s.", vdev->capturefile);
87 } else {
88 /* Try as first chunk filename. */
89 snprintf(capturefile, 15, "%s-1", vdev->capturefile);
90 if (zip_stat(vdev->archive, capturefile, 0, &zs) != -1) {
91 vdev->cur_chunk = 1;
92 if (!(vdev->capfile = zip_fopen(vdev->archive,
93 capturefile, 0)))
94 return FALSE;
95 sr_dbg("Opened %s.", capturefile);
96 } else {
97 sr_err("No capture file '%s' in " "session file '%s'.",
98 vdev->capturefile, vdev->sessionfile);
99 return FALSE;
100 }
101 }
102 } else {
103 /* Capture data is chunked, advance to the next chunk. */
104 vdev->cur_chunk++;
105 snprintf(capturefile, 15, "%s-%d", vdev->capturefile,
106 vdev->cur_chunk);
107 if (zip_stat(vdev->archive, capturefile, 0, &zs) != -1) {
108 if (!(vdev->capfile = zip_fopen(vdev->archive,
109 capturefile, 0)))
110 return FALSE;
111 sr_dbg("Opened %s.", capturefile);
112 } else {
113 /* We got all the chunks, finish up. */
aa48adf9 114 vdev->finished = TRUE;
102f1239 115 return TRUE;
f438e0c9
BV
116 }
117 }
118 }
119
016f2e00
BV
120 if (!(buf = g_try_malloc(CHUNKSIZE))) {
121 sr_err("%s: buf malloc failed", __func__);
122 return FALSE;
123 }
124
8bbdd364
DE
125 ret = zip_fread(vdev->capfile, buf,
126 CHUNKSIZE / vdev->unitsize * vdev->unitsize);
7d658874 127 if (ret > 0) {
8bbdd364
DE
128 if (ret % vdev->unitsize != 0)
129 sr_warn("Read size %d not a multiple of the"
130 " unit size %d.", ret, vdev->unitsize);
7d658874
BV
131 got_data = TRUE;
132 packet.type = SR_DF_LOGIC;
9c939c51
BV
133 packet.payload = &logic;
134 logic.length = ret;
bb7ef793 135 logic.unitsize = vdev->unitsize;
9c939c51 136 logic.data = buf;
bb7ef793 137 vdev->bytes_read += ret;
102f1239 138 sr_session_send(sdi, &packet);
7d658874
BV
139 } else {
140 /* done with this capture file */
bb7ef793 141 zip_fclose(vdev->capfile);
f438e0c9
BV
142 vdev->capfile = NULL;
143 if (vdev->cur_chunk == 0) {
144 /* It was the only file. */
aa48adf9 145 vdev->finished = TRUE;
f438e0c9
BV
146 } else {
147 /* There might be more chunks, so don't fall through
148 * to the SR_DF_END here. */
016f2e00 149 g_free(buf);
f438e0c9
BV
150 return TRUE;
151 }
7d658874 152 }
016f2e00 153 g_free(buf);
7d658874
BV
154 }
155
156 if (!got_data) {
157 packet.type = SR_DF_END;
102f1239
BV
158 sr_session_send(sdi, &packet);
159 sr_session_source_remove(sdi->session, -1);
7d658874
BV
160 }
161
162 return TRUE;
163}
164
165/* driver callbacks */
166
4f840ce9 167static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
7d658874 168{
102f1239 169 return std_init(sr_ctx, di, LOG_PREFIX);
7d658874
BV
170}
171
4f840ce9 172static int dev_clear(const struct sr_dev_driver *di)
7d658874 173{
102f1239 174 struct drv_context *drvc;
7d658874
BV
175 GSList *l;
176
102f1239
BV
177 drvc = di->priv;
178 for (l = drvc->instances; l; l = l->next)
d3683c42 179 sr_dev_inst_free(l->data);
102f1239
BV
180 g_slist_free(drvc->instances);
181 drvc->instances = NULL;
805e9640 182
57ab7d9f 183 return SR_OK;
7d658874
BV
184}
185
6078d2c9 186static int dev_open(struct sr_dev_inst *sdi)
7d658874 187{
4f840ce9 188 struct sr_dev_driver *di;
102f1239 189 struct drv_context *drvc;
aa48adf9 190 struct session_vdev *vdev;
b53738ba 191
4f840ce9 192 di = sdi->driver;
102f1239
BV
193 drvc = di->priv;
194 vdev = g_malloc0(sizeof(struct session_vdev));
aa48adf9 195 sdi->priv = vdev;
102f1239 196 drvc->instances = g_slist_append(drvc->instances, sdi);
7d658874
BV
197
198 return SR_OK;
199}
200
aa48adf9
BV
201static int dev_close(struct sr_dev_inst *sdi)
202{
8c9d4d67
JH
203 const struct session_vdev *const vdev = sdi->priv;
204 g_free(vdev->sessionfile);
205 g_free(vdev->capturefile);
206
aa48adf9
BV
207 g_free(sdi->priv);
208 sdi->priv = NULL;
209
210 return SR_OK;
211}
212
584560f1 213static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 214 const struct sr_channel_group *cg)
7d658874 215{
bb7ef793 216 struct session_vdev *vdev;
7d658874 217
53b4680f 218 (void)cg;
8f996b89 219
3f2cd87f
UH
220 if (!sdi)
221 return SR_ERR;
222
223 vdev = sdi->priv;
224
584560f1 225 switch (key) {
123e1313 226 case SR_CONF_SAMPLERATE:
3f2cd87f
UH
227 *data = g_variant_new_uint64(vdev->samplerate);
228 break;
229 case SR_CONF_CAPTURE_UNITSIZE:
230 *data = g_variant_new_uint64(vdev->unitsize);
387014de
BV
231 break;
232 default:
96ea73db 233 return SR_ERR_NA;
387014de 234 }
7d658874 235
387014de 236 return SR_OK;
7d658874
BV
237}
238
584560f1 239static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 240 const struct sr_channel_group *cg)
7d658874 241{
bb7ef793 242 struct session_vdev *vdev;
7d658874 243
53b4680f 244 (void)cg;
8f996b89 245
6f4b1868 246 vdev = sdi->priv;
7d658874 247
584560f1 248 switch (key) {
1953564a 249 case SR_CONF_SAMPLERATE:
003595ac 250 vdev->samplerate = g_variant_get_uint64(data);
a885ce3e 251 sr_info("Setting samplerate to %" PRIu64 ".", vdev->samplerate);
7d658874 252 break;
1953564a 253 case SR_CONF_SESSIONFILE:
8c9d4d67 254 g_free(vdev->sessionfile);
003595ac 255 vdev->sessionfile = g_strdup(g_variant_get_string(data, NULL));
a885ce3e 256 sr_info("Setting sessionfile to '%s'.", vdev->sessionfile);
40dda2c3 257 break;
1953564a 258 case SR_CONF_CAPTUREFILE:
8c9d4d67 259 g_free(vdev->capturefile);
003595ac 260 vdev->capturefile = g_strdup(g_variant_get_string(data, NULL));
a885ce3e 261 sr_info("Setting capturefile to '%s'.", vdev->capturefile);
7d658874 262 break;
1953564a 263 case SR_CONF_CAPTURE_UNITSIZE:
003595ac 264 vdev->unitsize = g_variant_get_uint64(data);
7d658874 265 break;
3f239f08 266 case SR_CONF_NUM_LOGIC_CHANNELS:
fca75cbb 267 vdev->num_channels = g_variant_get_uint64(data);
7d658874
BV
268 break;
269 default:
96ea73db 270 return SR_ERR_NA;
7d658874
BV
271 }
272
273 return SR_OK;
274}
275
584560f1 276static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 277 const struct sr_channel_group *cg)
9a6517d1 278{
9a6517d1 279 (void)sdi;
53b4680f 280 (void)cg;
9a6517d1
BV
281
282 switch (key) {
283 case SR_CONF_DEVICE_OPTIONS:
584560f1 284 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 285 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1
BV
286 break;
287 default:
96ea73db 288 return SR_ERR_NA;
9a6517d1
BV
289 }
290
291 return SR_OK;
292}
293
6078d2c9 294static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
7d658874 295{
bb7ef793 296 struct session_vdev *vdev;
ebc34738 297 int ret;
7d658874 298
102f1239 299 (void)cb_data;
7d658874 300
102f1239 301 vdev = sdi->priv;
8c9d4d67
JH
302 vdev->bytes_read = 0;
303 vdev->cur_chunk = 0;
304 vdev->finished = FALSE;
305
a885ce3e 306 sr_info("Opening archive %s file %s", vdev->sessionfile,
bb7ef793 307 vdev->capturefile);
7d658874 308
40dda2c3 309 if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
a885ce3e 310 sr_err("Failed to open session file '%s': "
9d122af8 311 "zip error %d.", vdev->sessionfile, ret);
7d658874
BV
312 return SR_ERR;
313 }
314
4afdfd46 315 /* Send header packet to the session bus. */
102f1239 316 std_session_send_df_header(sdi, LOG_PREFIX);
4afdfd46 317
7d658874 318 /* freewheeling source */
102f1239 319 sr_session_source_add(sdi->session, -1, 0, 0, receive_data, (void *)sdi);
7d658874 320
7d658874
BV
321 return SR_OK;
322}
323
b4bd7088 324/** @private */
c09f0b57 325SR_PRIV struct sr_dev_driver session_driver = {
a885ce3e 326 .name = "virtual-session",
5097b0d0
UH
327 .longname = "Session-emulating driver",
328 .api_version = 1,
6078d2c9 329 .init = init,
824fba03 330 .cleanup = dev_clear,
96ea73db
UH
331 .scan = NULL,
332 .dev_list = NULL,
824fba03 333 .dev_clear = dev_clear,
035a1078
BV
334 .config_get = config_get,
335 .config_set = config_set,
9a6517d1 336 .config_list = config_list,
6078d2c9 337 .dev_open = dev_open,
aa48adf9 338 .dev_close = dev_close,
6078d2c9 339 .dev_acquisition_start = dev_acquisition_start,
69040b7c 340 .dev_acquisition_stop = NULL,
96ea73db 341 .priv = NULL,
7d658874 342};