]> sigrok.org Git - libsigrok.git/blame - session_driver.c
sr: better file version check
[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
BV
28
29/* size of payloads sent across the session bus */
8ff6afc9 30#define CHUNKSIZE (512 * 1024)
7d658874 31
bb7ef793 32struct session_vdev {
40dda2c3 33 char *sessionfile;
7d658874
BV
34 char *capturefile;
35 struct zip *archive;
36 struct zip_file *capfile;
cb1e389c 37 int bytes_read;
7d658874
BV
38 uint64_t samplerate;
39 int unitsize;
40 int num_probes;
41};
42
d68e2d1a 43static GSList *dev_insts = NULL;
915f7cc8 44static const int hwcaps[] = {
7d658874
BV
45 SR_HWCAP_CAPTUREFILE,
46 SR_HWCAP_CAPTURE_UNITSIZE,
47 0,
48};
49
9f45fb3a
UH
50/**
51 * TODO.
52 *
53 * @param fd TODO.
54 * @param revents TODO.
9289e273 55 * @param cb_data TODO.
9f45fb3a
UH
56 *
57 * @return TODO.
58 */
9289e273 59static int receive_data(int fd, int revents, void *cb_data)
7d658874 60{
d68e2d1a 61 struct sr_dev_inst *sdi;
bb7ef793 62 struct session_vdev *vdev;
7d658874 63 struct sr_datafeed_packet packet;
9c939c51 64 struct sr_datafeed_logic logic;
7d658874
BV
65 GSList *l;
66 void *buf;
67 int ret, got_data;
68
cb93f8a9
UH
69 /* Avoid compiler warnings. */
70 (void)fd;
71 (void)revents;
7d658874 72
b08024a8 73 sr_dbg("session_driver: feed chunk");
7d658874
BV
74
75 got_data = FALSE;
d68e2d1a 76 for (l = dev_insts; l; l = l->next) {
7d658874 77 sdi = l->data;
bb7ef793
UH
78 vdev = sdi->priv;
79 if (!vdev)
7d658874
BV
80 /* already done with this instance */
81 continue;
82
b53738ba 83 if (!(buf = g_try_malloc(CHUNKSIZE))) {
7b48d6e1
UH
84 sr_err("session driver: %s: buf malloc failed",
85 __func__);
133a37bf 86 return FALSE; /* TODO: SR_ERR_MALLOC */
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);
7d658874
BV
111 }
112
113 return TRUE;
114}
115
116/* driver callbacks */
57ab7d9f 117static int hw_cleanup(void);
7d658874 118
9f45fb3a
UH
119/**
120 * TODO.
121 *
bb7ef793 122 * @param devinfo TODO.
9f45fb3a
UH
123 *
124 * @return TODO.
125 */
40dda2c3 126static int hw_init(void)
7d658874 127{
7d658874 128
61136ea6 129 return SR_OK;
7d658874
BV
130}
131
9f45fb3a
UH
132/**
133 * TODO.
9f45fb3a 134 */
57ab7d9f 135static int hw_cleanup(void)
7d658874
BV
136{
137 GSList *l;
138
d68e2d1a 139 for (l = dev_insts; l; l = l->next)
d3683c42 140 sr_dev_inst_free(l->data);
d68e2d1a
UH
141 g_slist_free(dev_insts);
142 dev_insts = NULL;
805e9640
GM
143
144 sr_session_source_remove(-1);
145
57ab7d9f 146 return SR_OK;
7d658874
BV
147}
148
25a0f108 149static int hw_dev_open(struct sr_dev_inst *sdi)
7d658874 150{
b53738ba 151
bb7ef793 152 if (!(sdi->priv = g_try_malloc0(sizeof(struct session_vdev)))) {
7b48d6e1 153 sr_err("session driver: %s: sdi->priv malloc failed", __func__);
b53738ba
UH
154 return SR_ERR_MALLOC;
155 }
156
d68e2d1a 157 dev_insts = g_slist_append(dev_insts, sdi);
7d658874
BV
158
159 return SR_OK;
160}
161
387014de
BV
162static int hw_info_get(int info_id, const void **data,
163 const struct sr_dev_inst *sdi)
7d658874 164{
bb7ef793 165 struct session_vdev *vdev;
7d658874 166
387014de
BV
167 switch (info_id) {
168 case SR_DI_HWCAPS:
169 *data = hwcaps;
170 break;
171 case SR_DI_CUR_SAMPLERATE:
172 if (sdi) {
173 vdev = sdi->priv;
174 *data = &vdev->samplerate;
175 } else
176 return SR_ERR;
177 break;
178 default:
179 return SR_ERR_ARG;
180 }
7d658874 181
387014de 182 return SR_OK;
7d658874
BV
183}
184
6f4b1868
BV
185static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
186 const void *value)
7d658874 187{
bb7ef793 188 struct session_vdev *vdev;
1b79df2f 189 const uint64_t *tmp_u64;
7d658874 190
6f4b1868 191 vdev = sdi->priv;
7d658874 192
ffedd0bf 193 switch (hwcap) {
7d658874
BV
194 case SR_HWCAP_SAMPLERATE:
195 tmp_u64 = value;
bb7ef793 196 vdev->samplerate = *tmp_u64;
9f45fb3a 197 sr_info("session driver: setting samplerate to %" PRIu64,
bb7ef793 198 vdev->samplerate);
7d658874 199 break;
40dda2c3
BV
200 case SR_HWCAP_SESSIONFILE:
201 vdev->sessionfile = g_strdup(value);
202 sr_info("session driver: setting sessionfile to %s",
203 vdev->sessionfile);
204 break;
7d658874 205 case SR_HWCAP_CAPTUREFILE:
bb7ef793 206 vdev->capturefile = g_strdup(value);
9f45fb3a 207 sr_info("session driver: setting capturefile to %s",
bb7ef793 208 vdev->capturefile);
7d658874
BV
209 break;
210 case SR_HWCAP_CAPTURE_UNITSIZE:
211 tmp_u64 = value;
bb7ef793 212 vdev->unitsize = *tmp_u64;
7d658874
BV
213 break;
214 case SR_HWCAP_CAPTURE_NUM_PROBES:
215 tmp_u64 = value;
bb7ef793 216 vdev->num_probes = *tmp_u64;
7d658874
BV
217 break;
218 default:
9f45fb3a 219 sr_err("session driver: %s: unknown capability %d requested",
ffedd0bf 220 __func__, hwcap);
7d658874
BV
221 return SR_ERR;
222 }
223
224 return SR_OK;
225}
226
4d684427
BV
227static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
228 void *cb_data)
7d658874
BV
229{
230 struct zip_stat zs;
bb7ef793 231 struct session_vdev *vdev;
7d658874
BV
232 struct sr_datafeed_header *header;
233 struct sr_datafeed_packet *packet;
f366e86c 234 struct sr_datafeed_meta_logic meta;
ebc34738 235 int ret;
7d658874 236
4d684427 237 vdev = sdi->priv;
7d658874 238
40dda2c3 239 sr_info("session_driver: opening archive %s file %s", vdev->sessionfile,
bb7ef793 240 vdev->capturefile);
7d658874 241
40dda2c3 242 if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
7b48d6e1 243 sr_err("session driver: Failed to open session file '%s': "
40dda2c3 244 "zip error %d\n", vdev->sessionfile, ret);
7d658874
BV
245 return SR_ERR;
246 }
247
bb7ef793 248 if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) == -1) {
7b48d6e1 249 sr_err("session driver: Failed to check capture file '%s' in "
40dda2c3 250 "session file '%s'.", vdev->capturefile, vdev->sessionfile);
7d658874
BV
251 return SR_ERR;
252 }
253
bb7ef793 254 if (!(vdev->capfile = zip_fopen(vdev->archive, vdev->capturefile, 0))) {
7b48d6e1 255 sr_err("session driver: Failed to open capture file '%s' in "
40dda2c3 256 "session file '%s'.", vdev->capturefile, vdev->sessionfile);
7d658874
BV
257 return SR_ERR;
258 }
259
260 /* freewheeling source */
9289e273 261 sr_session_source_add(-1, 0, 0, receive_data, cb_data);
7d658874 262
b53738ba 263 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
7b48d6e1 264 sr_err("session driver: %s: packet malloc failed", __func__);
b53738ba
UH
265 return SR_ERR_MALLOC;
266 }
267
268 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
7b48d6e1 269 sr_err("session driver: %s: header malloc failed", __func__);
b53738ba
UH
270 return SR_ERR_MALLOC;
271 }
272
7d658874 273 /* Send header packet to the session bus. */
7d658874 274 packet->type = SR_DF_HEADER;
7d658874
BV
275 packet->payload = (unsigned char *)header;
276 header->feed_version = 1;
277 gettimeofday(&header->starttime, NULL);
9289e273 278 sr_session_send(cb_data, packet);
f366e86c
BV
279
280 /* Send metadata about the SR_DF_LOGIC packets to come. */
281 packet->type = SR_DF_META_LOGIC;
282 packet->payload = &meta;
283 meta.samplerate = vdev->samplerate;
284 meta.num_probes = vdev->num_probes;
285 sr_session_send(cb_data, packet);
286
7d658874
BV
287 g_free(header);
288 g_free(packet);
289
290 return SR_OK;
291}
292
c09f0b57 293SR_PRIV struct sr_dev_driver session_driver = {
5097b0d0
UH
294 .name = "session",
295 .longname = "Session-emulating driver",
296 .api_version = 1,
297 .init = hw_init,
298 .cleanup = hw_cleanup,
e7eb703f
UH
299 .dev_open = hw_dev_open,
300 .dev_close = NULL,
387014de 301 .info_get = hw_info_get,
a9a245b4 302 .dev_config_set = hw_dev_config_set,
69040b7c
UH
303 .dev_acquisition_start = hw_dev_acquisition_start,
304 .dev_acquisition_stop = NULL,
7d658874 305};