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