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