]> sigrok.org Git - libsigrok.git/blame_incremental - session_driver.c
libsigrok-internal.h: Fix libserialport.h name.
[libsigrok.git] / session_driver.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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>
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
28
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)
37
38/* size of payloads sent across the session bus */
39/** @cond PRIVATE */
40#define CHUNKSIZE (512 * 1024)
41/** @endcond */
42
43struct session_vdev {
44 char *sessionfile;
45 char *capturefile;
46 struct zip *archive;
47 struct zip_file *capfile;
48 int bytes_read;
49 uint64_t samplerate;
50 int unitsize;
51 int num_probes;
52 int cur_chunk;
53};
54
55static GSList *dev_insts = NULL;
56static const int hwcaps[] = {
57 SR_CONF_CAPTUREFILE,
58 SR_CONF_CAPTURE_UNITSIZE,
59 0,
60};
61
62static int receive_data(int fd, int revents, void *cb_data)
63{
64 struct sr_dev_inst *sdi;
65 struct session_vdev *vdev;
66 struct sr_datafeed_packet packet;
67 struct sr_datafeed_logic logic;
68 struct zip_stat zs;
69 GSList *l;
70 int ret, got_data;
71 char capturefile[16];
72 void *buf;
73
74 (void)fd;
75 (void)revents;
76
77 got_data = FALSE;
78 for (l = dev_insts; l; l = l->next) {
79 sdi = l->data;
80 if (!(vdev = sdi->priv))
81 /* Already done with this instance. */
82 continue;
83
84 if (!(buf = g_try_malloc(CHUNKSIZE))) {
85 sr_err("%s: buf malloc failed", __func__);
86 return FALSE;
87 }
88
89 if (!vdev->capfile) {
90 /* No capture file opened yet, or finished with the last
91 * chunked one. */
92 if (vdev->cur_chunk == 0) {
93 /* capturefile is always the unchunked base name. */
94 if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) != -1) {
95 /* No chunks, just a single capture file. */
96 vdev->cur_chunk = 0;
97 if (!(vdev->capfile = zip_fopen(vdev->archive,
98 vdev->capturefile, 0)))
99 return FALSE;
100 sr_dbg("Opened %s.", vdev->capturefile);
101 } else {
102 /* Try as first chunk filename. */
103 snprintf(capturefile, 15, "%s-1", vdev->capturefile);
104 if (zip_stat(vdev->archive, capturefile, 0, &zs) != -1) {
105 vdev->cur_chunk = 1;
106 if (!(vdev->capfile = zip_fopen(vdev->archive,
107 capturefile, 0)))
108 return FALSE;
109 sr_dbg("Opened %s.", capturefile);
110 } else {
111 sr_err("No capture file '%s' in " "session file '%s'.",
112 vdev->capturefile, vdev->sessionfile);
113 return FALSE;
114 }
115 }
116 } else {
117 /* Capture data is chunked, advance to the next chunk. */
118 vdev->cur_chunk++;
119 snprintf(capturefile, 15, "%s-%d", vdev->capturefile,
120 vdev->cur_chunk);
121 if (zip_stat(vdev->archive, capturefile, 0, &zs) != -1) {
122 if (!(vdev->capfile = zip_fopen(vdev->archive,
123 capturefile, 0)))
124 return FALSE;
125 sr_dbg("Opened %s.", capturefile);
126 } else {
127 /* We got all the chunks, finish up. */
128 g_free(vdev->capturefile);
129 g_free(vdev);
130 sdi->priv = NULL;
131 continue;
132 }
133 }
134 }
135
136 ret = zip_fread(vdev->capfile, buf, CHUNKSIZE);
137 if (ret > 0) {
138 got_data = TRUE;
139 packet.type = SR_DF_LOGIC;
140 packet.payload = &logic;
141 logic.length = ret;
142 logic.unitsize = vdev->unitsize;
143 logic.data = buf;
144 vdev->bytes_read += ret;
145 sr_session_send(cb_data, &packet);
146 } else {
147 /* done with this capture file */
148 zip_fclose(vdev->capfile);
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. */
158 return TRUE;
159 }
160 }
161 }
162
163 if (!got_data) {
164 packet.type = SR_DF_END;
165 sr_session_send(cb_data, &packet);
166 sr_session_source_remove(-1);
167 }
168
169 return TRUE;
170}
171
172/* driver callbacks */
173
174static int init(struct sr_context *sr_ctx)
175{
176 (void)sr_ctx;
177
178 return SR_OK;
179}
180
181static int cleanup(void)
182{
183 GSList *l;
184
185 for (l = dev_insts; l; l = l->next)
186 sr_dev_inst_free(l->data);
187 g_slist_free(dev_insts);
188 dev_insts = NULL;
189
190 return SR_OK;
191}
192
193static int dev_open(struct sr_dev_inst *sdi)
194{
195 if (!(sdi->priv = g_try_malloc0(sizeof(struct session_vdev)))) {
196 sr_err("Device context malloc failed.");
197 return SR_ERR_MALLOC;
198 }
199
200 dev_insts = g_slist_append(dev_insts, sdi);
201
202 return SR_OK;
203}
204
205static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
206 const struct sr_probe_group *probe_group)
207{
208 struct session_vdev *vdev;
209
210 (void)probe_group;
211
212 switch (id) {
213 case SR_CONF_SAMPLERATE:
214 if (sdi) {
215 vdev = sdi->priv;
216 *data = g_variant_new_uint64(vdev->samplerate);
217 } else
218 return SR_ERR;
219 break;
220 default:
221 return SR_ERR_NA;
222 }
223
224 return SR_OK;
225}
226
227static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
228 const struct sr_probe_group *probe_group)
229{
230 struct session_vdev *vdev;
231
232 (void)probe_group;
233
234 vdev = sdi->priv;
235
236 switch (id) {
237 case SR_CONF_SAMPLERATE:
238 vdev->samplerate = g_variant_get_uint64(data);
239 sr_info("Setting samplerate to %" PRIu64 ".", vdev->samplerate);
240 break;
241 case SR_CONF_SESSIONFILE:
242 vdev->sessionfile = g_strdup(g_variant_get_string(data, NULL));
243 sr_info("Setting sessionfile to '%s'.", vdev->sessionfile);
244 break;
245 case SR_CONF_CAPTUREFILE:
246 vdev->capturefile = g_strdup(g_variant_get_string(data, NULL));
247 sr_info("Setting capturefile to '%s'.", vdev->capturefile);
248 break;
249 case SR_CONF_CAPTURE_UNITSIZE:
250 vdev->unitsize = g_variant_get_uint64(data);
251 break;
252 case SR_CONF_CAPTURE_NUM_PROBES:
253 vdev->num_probes = g_variant_get_uint64(data);
254 break;
255 default:
256 return SR_ERR_NA;
257 }
258
259 return SR_OK;
260}
261
262static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
263 const struct sr_probe_group *probe_group)
264{
265 (void)sdi;
266 (void)probe_group;
267
268 switch (key) {
269 case SR_CONF_DEVICE_OPTIONS:
270 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
271 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
272 break;
273 default:
274 return SR_ERR_NA;
275 }
276
277 return SR_OK;
278}
279
280static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
281{
282 struct session_vdev *vdev;
283 int ret;
284
285 vdev = sdi->priv;
286
287 sr_info("Opening archive %s file %s", vdev->sessionfile,
288 vdev->capturefile);
289
290 if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
291 sr_err("Failed to open session file '%s': "
292 "zip error %d\n", vdev->sessionfile, ret);
293 return SR_ERR;
294 }
295
296 /* Send header packet to the session bus. */
297 std_session_send_df_header(cb_data, LOG_PREFIX);
298
299 /* freewheeling source */
300 sr_session_source_add(-1, 0, 0, receive_data, cb_data);
301
302 return SR_OK;
303}
304
305/** @private */
306SR_PRIV struct sr_dev_driver session_driver = {
307 .name = "virtual-session",
308 .longname = "Session-emulating driver",
309 .api_version = 1,
310 .init = init,
311 .cleanup = cleanup,
312 .scan = NULL,
313 .dev_list = NULL,
314 .dev_clear = NULL,
315 .config_get = config_get,
316 .config_set = config_set,
317 .config_list = config_list,
318 .dev_open = dev_open,
319 .dev_close = NULL,
320 .dev_acquisition_start = dev_acquisition_start,
321 .dev_acquisition_stop = NULL,
322 .priv = NULL,
323};