]> sigrok.org Git - libsigrok.git/blame - session_driver.c
Always interleave analog data with all enabled probes.
[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 28
a885ce3e
UH
29/* Message logging helpers with driver-specific prefix string. */
30#define DRIVER_LOG_DOMAIN "virtual-session: "
31#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
32#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
33#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
35#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
36#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
37
7d658874 38/* size of payloads sent across the session bus */
b4bd7088 39/** @cond PRIVATE */
8ff6afc9 40#define CHUNKSIZE (512 * 1024)
b4bd7088 41/** @endcond */
7d658874 42
bb7ef793 43struct session_vdev {
40dda2c3 44 char *sessionfile;
7d658874
BV
45 char *capturefile;
46 struct zip *archive;
47 struct zip_file *capfile;
cb1e389c 48 int bytes_read;
7d658874
BV
49 uint64_t samplerate;
50 int unitsize;
51 int num_probes;
52};
53
d68e2d1a 54static GSList *dev_insts = NULL;
915f7cc8 55static const int hwcaps[] = {
1953564a
BV
56 SR_CONF_CAPTUREFILE,
57 SR_CONF_CAPTURE_UNITSIZE,
7d658874
BV
58 0,
59};
60
9289e273 61static int receive_data(int fd, int revents, void *cb_data)
7d658874 62{
d68e2d1a 63 struct sr_dev_inst *sdi;
bb7ef793 64 struct session_vdev *vdev;
7d658874 65 struct sr_datafeed_packet packet;
9c939c51 66 struct sr_datafeed_logic logic;
7d658874
BV
67 GSList *l;
68 void *buf;
69 int ret, got_data;
70
cb93f8a9
UH
71 (void)fd;
72 (void)revents;
7d658874 73
a885ce3e 74 sr_dbg("Feed chunk.");
7d658874
BV
75
76 got_data = FALSE;
d68e2d1a 77 for (l = dev_insts; l; l = l->next) {
7d658874 78 sdi = l->data;
bb7ef793
UH
79 vdev = sdi->priv;
80 if (!vdev)
7d658874
BV
81 /* already done with this instance */
82 continue;
83
b53738ba 84 if (!(buf = g_try_malloc(CHUNKSIZE))) {
a885ce3e 85 sr_err("%s: buf malloc failed", __func__);
a2e46460 86 return FALSE;
b53738ba
UH
87 }
88
bb7ef793 89 ret = zip_fread(vdev->capfile, buf, CHUNKSIZE);
7d658874
BV
90 if (ret > 0) {
91 got_data = TRUE;
92 packet.type = SR_DF_LOGIC;
9c939c51
BV
93 packet.payload = &logic;
94 logic.length = ret;
bb7ef793 95 logic.unitsize = vdev->unitsize;
9c939c51 96 logic.data = buf;
bb7ef793 97 vdev->bytes_read += ret;
9289e273 98 sr_session_send(cb_data, &packet);
7d658874
BV
99 } else {
100 /* done with this capture file */
bb7ef793
UH
101 zip_fclose(vdev->capfile);
102 g_free(vdev->capturefile);
103 g_free(vdev);
7d658874
BV
104 sdi->priv = NULL;
105 }
106 }
107
108 if (!got_data) {
109 packet.type = SR_DF_END;
9289e273 110 sr_session_send(cb_data, &packet);
b863fb1b 111 sr_session_source_remove(-1);
7d658874
BV
112 }
113
114 return TRUE;
115}
116
117/* driver callbacks */
57ab7d9f 118static int hw_cleanup(void);
7d658874 119
34f06b90 120static int hw_init(struct sr_context *sr_ctx)
7d658874 121{
34f06b90
PS
122 (void)sr_ctx;
123
61136ea6 124 return SR_OK;
7d658874
BV
125}
126
57ab7d9f 127static int hw_cleanup(void)
7d658874
BV
128{
129 GSList *l;
130
d68e2d1a 131 for (l = dev_insts; l; l = l->next)
d3683c42 132 sr_dev_inst_free(l->data);
d68e2d1a
UH
133 g_slist_free(dev_insts);
134 dev_insts = NULL;
805e9640 135
57ab7d9f 136 return SR_OK;
7d658874
BV
137}
138
25a0f108 139static int hw_dev_open(struct sr_dev_inst *sdi)
7d658874 140{
bb7ef793 141 if (!(sdi->priv = g_try_malloc0(sizeof(struct session_vdev)))) {
a885ce3e 142 sr_err("%s: sdi->priv malloc failed", __func__);
b53738ba
UH
143 return SR_ERR_MALLOC;
144 }
145
d68e2d1a 146 dev_insts = g_slist_append(dev_insts, sdi);
7d658874
BV
147
148 return SR_OK;
149}
150
387014de
BV
151static int hw_info_get(int info_id, const void **data,
152 const struct sr_dev_inst *sdi)
7d658874 153{
bb7ef793 154 struct session_vdev *vdev;
7d658874 155
387014de
BV
156 switch (info_id) {
157 case SR_DI_HWCAPS:
158 *data = hwcaps;
159 break;
160 case SR_DI_CUR_SAMPLERATE:
161 if (sdi) {
162 vdev = sdi->priv;
163 *data = &vdev->samplerate;
164 } else
165 return SR_ERR;
166 break;
167 default:
168 return SR_ERR_ARG;
169 }
7d658874 170
387014de 171 return SR_OK;
7d658874
BV
172}
173
6f4b1868
BV
174static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
175 const void *value)
7d658874 176{
bb7ef793 177 struct session_vdev *vdev;
1b79df2f 178 const uint64_t *tmp_u64;
7d658874 179
6f4b1868 180 vdev = sdi->priv;
7d658874 181
ffedd0bf 182 switch (hwcap) {
1953564a 183 case SR_CONF_SAMPLERATE:
7d658874 184 tmp_u64 = value;
bb7ef793 185 vdev->samplerate = *tmp_u64;
a885ce3e 186 sr_info("Setting samplerate to %" PRIu64 ".", vdev->samplerate);
7d658874 187 break;
1953564a 188 case SR_CONF_SESSIONFILE:
40dda2c3 189 vdev->sessionfile = g_strdup(value);
a885ce3e 190 sr_info("Setting sessionfile to '%s'.", vdev->sessionfile);
40dda2c3 191 break;
1953564a 192 case SR_CONF_CAPTUREFILE:
bb7ef793 193 vdev->capturefile = g_strdup(value);
a885ce3e 194 sr_info("Setting capturefile to '%s'.", vdev->capturefile);
7d658874 195 break;
1953564a 196 case SR_CONF_CAPTURE_UNITSIZE:
7d658874 197 tmp_u64 = value;
bb7ef793 198 vdev->unitsize = *tmp_u64;
7d658874 199 break;
1953564a 200 case SR_CONF_CAPTURE_NUM_PROBES:
7d658874 201 tmp_u64 = value;
bb7ef793 202 vdev->num_probes = *tmp_u64;
7d658874
BV
203 break;
204 default:
a885ce3e 205 sr_err("Unknown capability: %d.", hwcap);
7d658874
BV
206 return SR_ERR;
207 }
208
209 return SR_OK;
210}
211
4d684427
BV
212static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
213 void *cb_data)
7d658874
BV
214{
215 struct zip_stat zs;
bb7ef793 216 struct session_vdev *vdev;
7d658874
BV
217 struct sr_datafeed_header *header;
218 struct sr_datafeed_packet *packet;
ebc34738 219 int ret;
7d658874 220
4d684427 221 vdev = sdi->priv;
7d658874 222
a885ce3e 223 sr_info("Opening archive %s file %s", vdev->sessionfile,
bb7ef793 224 vdev->capturefile);
7d658874 225
40dda2c3 226 if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
a885ce3e 227 sr_err("Failed to open session file '%s': "
40dda2c3 228 "zip error %d\n", vdev->sessionfile, ret);
7d658874
BV
229 return SR_ERR;
230 }
231
bb7ef793 232 if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) == -1) {
a885ce3e 233 sr_err("Failed to check capture file '%s' in "
40dda2c3 234 "session file '%s'.", vdev->capturefile, vdev->sessionfile);
7d658874
BV
235 return SR_ERR;
236 }
237
bb7ef793 238 if (!(vdev->capfile = zip_fopen(vdev->archive, vdev->capturefile, 0))) {
a885ce3e 239 sr_err("Failed to open capture file '%s' in "
40dda2c3 240 "session file '%s'.", vdev->capturefile, vdev->sessionfile);
7d658874
BV
241 return SR_ERR;
242 }
243
244 /* freewheeling source */
9289e273 245 sr_session_source_add(-1, 0, 0, receive_data, cb_data);
7d658874 246
b53738ba 247 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
a885ce3e 248 sr_err("%s: packet malloc failed", __func__);
b53738ba
UH
249 return SR_ERR_MALLOC;
250 }
251
252 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
a885ce3e 253 sr_err("%s: header malloc failed", __func__);
b53738ba
UH
254 return SR_ERR_MALLOC;
255 }
256
7d658874 257 /* Send header packet to the session bus. */
7d658874 258 packet->type = SR_DF_HEADER;
7d658874
BV
259 packet->payload = (unsigned char *)header;
260 header->feed_version = 1;
261 gettimeofday(&header->starttime, NULL);
9289e273 262 sr_session_send(cb_data, packet);
f366e86c 263
7d658874
BV
264 g_free(header);
265 g_free(packet);
266
267 return SR_OK;
268}
269
b4bd7088 270/** @private */
c09f0b57 271SR_PRIV struct sr_dev_driver session_driver = {
a885ce3e 272 .name = "virtual-session",
5097b0d0
UH
273 .longname = "Session-emulating driver",
274 .api_version = 1,
275 .init = hw_init,
276 .cleanup = hw_cleanup,
e7eb703f
UH
277 .dev_open = hw_dev_open,
278 .dev_close = NULL,
387014de 279 .info_get = hw_info_get,
a9a245b4 280 .dev_config_set = hw_dev_config_set,
69040b7c
UH
281 .dev_acquisition_start = hw_dev_acquisition_start,
282 .dev_acquisition_stop = NULL,
7d658874 283};