]> sigrok.org Git - libsigrok.git/blame - src/output/srzip.c
srzip: Store total number of analog channels.
[libsigrok.git] / src / output / srzip.c
CommitLineData
3250d8c7
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 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
6ec6c43b 20#include <config.h>
3250d8c7 21#include <stdlib.h>
3250d8c7
BV
22#include <string.h>
23#include <errno.h>
24#include <glib.h>
25#include <glib/gstdio.h>
26#include <zip.h>
c1aae900 27#include <libsigrok/libsigrok.h>
3250d8c7
BV
28#include "libsigrok-internal.h"
29
30#define LOG_PREFIX "output/srzip"
31
32struct out_context {
33 gboolean zip_created;
34 uint64_t samplerate;
35 char *filename;
36};
37
38static int init(struct sr_output *o, GHashTable *options)
39{
40 struct out_context *outc;
41
37875f75
SA
42 (void)options;
43
98654c99 44 if (!o->filename || o->filename[0] == '\0') {
37875f75 45 sr_info("srzip output module requires a file name, cannot save.");
3250d8c7 46 return SR_ERR_ARG;
37875f75 47 }
7df31ae8
SA
48
49 outc = g_malloc0(sizeof(struct out_context));
37875f75 50 outc->filename = g_strdup(o->filename);
7df31ae8 51 o->priv = outc;
3250d8c7
BV
52
53 return SR_OK;
54}
55
56static int zip_create(const struct sr_output *o)
57{
58 struct out_context *outc;
3250d8c7
BV
59 struct zip *zipfile;
60 struct zip_source *versrc, *metasrc;
98654c99 61 struct sr_channel *ch;
3250d8c7 62 GVariant *gvar;
98654c99 63 GKeyFile *meta;
3250d8c7 64 GSList *l;
98654c99
DE
65 const char *devgroup;
66 char *s, *metabuf;
67 gsize metalen;
eab05299 68 guint logic_channels = 0, analog_channels = 0;
3250d8c7
BV
69
70 outc = o->priv;
98654c99
DE
71
72 if (outc->samplerate == 0 && sr_config_get(o->sdi->driver, o->sdi, NULL,
73 SR_CONF_SAMPLERATE, &gvar) == SR_OK) {
74 outc->samplerate = g_variant_get_uint64(gvar);
75 g_variant_unref(gvar);
3250d8c7
BV
76 }
77
78 /* Quietly delete it first, libzip wants replace ops otherwise. */
98654c99
DE
79 g_unlink(outc->filename);
80 zipfile = zip_open(outc->filename, ZIP_CREATE, NULL);
81 if (!zipfile)
3250d8c7
BV
82 return SR_ERR;
83
84 /* "version" */
98654c99 85 versrc = zip_source_buffer(zipfile, "2", 1, FALSE);
eaa6a7a3 86 if (zip_add(zipfile, "version", versrc) < 0) {
98654c99 87 sr_err("Error saving version into zipfile: %s",
3250d8c7 88 zip_strerror(zipfile));
98654c99
DE
89 zip_source_free(versrc);
90 zip_discard(zipfile);
3250d8c7
BV
91 return SR_ERR;
92 }
93
94 /* init "metadata" */
98654c99
DE
95 meta = g_key_file_new();
96
97 g_key_file_set_string(meta, "global", "sigrok version",
98 SR_PACKAGE_VERSION_STRING);
99
100 devgroup = "device 1";
101 g_key_file_set_string(meta, devgroup, "capturefile", "logic-1");
102
3250d8c7 103 s = sr_samplerate_string(outc->samplerate);
98654c99 104 g_key_file_set_string(meta, devgroup, "samplerate", s);
3250d8c7
BV
105 g_free(s);
106
82883219
ML
107 for (l = o->sdi->channels; l; l = l->next) {
108 ch = l->data;
eab05299
ML
109 switch (ch->type) {
110 case SR_CHANNEL_LOGIC:
111 logic_channels++;
112 break;
113 case SR_CHANNEL_ANALOG:
114 analog_channels++;
115 break;
116 }
82883219
ML
117 }
118
119 g_key_file_set_integer(meta, devgroup, "total probes", logic_channels);
eab05299 120 g_key_file_set_integer(meta, devgroup, "total analog", analog_channels);
82883219 121
3250d8c7
BV
122 for (l = o->sdi->channels; l; l = l->next) {
123 ch = l->data;
eab05299
ML
124 switch (ch->type) {
125 case SR_CHANNEL_LOGIC:
126 s = g_strdup_printf("probe%d", ch->index + 1);
127 break;
128 case SR_CHANNEL_ANALOG:
129 s = g_strdup_printf("analog%d", ch->index + 1);
130 break;
98654c99 131 }
eab05299
ML
132 if (ch->enabled)
133 g_key_file_set_string(meta, devgroup, s, ch->name);
134 g_free(s);
3250d8c7 135 }
82883219 136
98654c99
DE
137 metabuf = g_key_file_to_data(meta, &metalen, NULL);
138 g_key_file_free(meta);
3250d8c7 139
98654c99 140 metasrc = zip_source_buffer(zipfile, metabuf, metalen, FALSE);
eaa6a7a3 141 if (zip_add(zipfile, "metadata", metasrc) < 0) {
98654c99
DE
142 sr_err("Error saving metadata into zipfile: %s",
143 zip_strerror(zipfile));
144 zip_source_free(metasrc);
145 zip_discard(zipfile);
146 g_free(metabuf);
3250d8c7
BV
147 return SR_ERR;
148 }
149
98654c99
DE
150 if (zip_close(zipfile) < 0) {
151 sr_err("Error saving zipfile: %s", zip_strerror(zipfile));
152 zip_discard(zipfile);
153 g_free(metabuf);
3250d8c7
BV
154 return SR_ERR;
155 }
98654c99 156 g_free(metabuf);
3250d8c7
BV
157
158 return SR_OK;
159}
160
161static int zip_append(const struct sr_output *o, unsigned char *buf,
162 int unitsize, int length)
163{
164 struct out_context *outc;
165 struct zip *archive;
166 struct zip_source *logicsrc;
98654c99 167 int64_t i, num_files;
3250d8c7
BV
168 struct zip_stat zs;
169 struct zip_source *metasrc;
170 GKeyFile *kf;
171 GError *error;
98654c99 172 uint64_t chunk_num;
3250d8c7 173 const char *entry_name;
98654c99
DE
174 char *metabuf;
175 gsize metalen;
176 char *chunkname;
177 unsigned int next_chunk_num;
3250d8c7
BV
178
179 outc = o->priv;
98654c99 180 if (!(archive = zip_open(outc->filename, 0, NULL)))
3250d8c7
BV
181 return SR_ERR;
182
98654c99
DE
183 if (zip_stat(archive, "metadata", 0, &zs) < 0) {
184 sr_err("Failed to open metadata: %s", zip_strerror(archive));
185 zip_discard(archive);
3250d8c7 186 return SR_ERR;
98654c99
DE
187 }
188 kf = sr_sessionfile_read_metadata(archive, &zs);
189 if (!kf) {
190 zip_discard(archive);
191 return SR_ERR_DATA;
192 }
3250d8c7
BV
193 /*
194 * If the file was only initialized but doesn't yet have any
195 * data it in, it won't have a unitsize field in metadata yet.
196 */
197 error = NULL;
98654c99 198 metabuf = NULL;
3250d8c7
BV
199 if (!g_key_file_has_key(kf, "device 1", "unitsize", &error)) {
200 if (error && error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
98654c99
DE
201 sr_err("Failed to check unitsize key: %s", error->message);
202 g_error_free(error);
203 g_key_file_free(kf);
204 zip_discard(archive);
3250d8c7
BV
205 return SR_ERR;
206 }
98654c99
DE
207 g_clear_error(&error);
208
3250d8c7
BV
209 /* Add unitsize field. */
210 g_key_file_set_integer(kf, "device 1", "unitsize", unitsize);
98654c99
DE
211 metabuf = g_key_file_to_data(kf, &metalen, NULL);
212 metasrc = zip_source_buffer(archive, metabuf, metalen, FALSE);
213
214 if (zip_replace(archive, zs.index, metasrc) < 0) {
215 sr_err("Failed to replace metadata: %s",
216 zip_strerror(archive));
217 g_key_file_free(kf);
218 zip_source_free(metasrc);
219 zip_discard(archive);
220 g_free(metabuf);
3250d8c7
BV
221 return SR_ERR;
222 }
3250d8c7
BV
223 }
224 g_key_file_free(kf);
225
226 next_chunk_num = 1;
227 num_files = zip_get_num_entries(archive, 0);
228 for (i = 0; i < num_files; i++) {
229 entry_name = zip_get_name(archive, i, 0);
98654c99 230 if (!entry_name || strncmp(entry_name, "logic-1", 7) != 0)
3250d8c7 231 continue;
98654c99 232 if (entry_name[7] == '\0') {
3250d8c7
BV
233 /* This file has no extra chunks, just a single "logic-1".
234 * Rename it to "logic-1-1" * and continue with chunk 2. */
98654c99
DE
235 if (zip_rename(archive, i, "logic-1-1") < 0) {
236 sr_err("Failed to rename 'logic-1' to 'logic-1-1': %s",
237 zip_strerror(archive));
238 zip_discard(archive);
239 g_free(metabuf);
3250d8c7
BV
240 return SR_ERR;
241 }
242 next_chunk_num = 2;
243 break;
98654c99
DE
244 } else if (entry_name[7] == '-') {
245 chunk_num = g_ascii_strtoull(entry_name + 8, NULL, 10);
246 if (chunk_num < G_MAXINT && chunk_num >= next_chunk_num)
3250d8c7
BV
247 next_chunk_num = chunk_num + 1;
248 }
249 }
98654c99
DE
250
251 if (length % unitsize != 0) {
252 sr_warn("Chunk size %d not a multiple of the"
253 " unit size %d.", length, unitsize);
3250d8c7 254 }
98654c99
DE
255 logicsrc = zip_source_buffer(archive, buf, length, FALSE);
256 chunkname = g_strdup_printf("logic-1-%u", next_chunk_num);
257 i = zip_add(archive, chunkname, logicsrc);
258 g_free(chunkname);
259 if (i < 0) {
260 sr_err("Failed to add chunk 'logic-1-%u': %s",
261 next_chunk_num, zip_strerror(archive));
262 zip_source_free(logicsrc);
263 zip_discard(archive);
264 g_free(metabuf);
3250d8c7
BV
265 return SR_ERR;
266 }
98654c99
DE
267 if (zip_close(archive) < 0) {
268 sr_err("Error saving session file: %s", zip_strerror(archive));
269 zip_discard(archive);
270 g_free(metabuf);
3250d8c7
BV
271 return SR_ERR;
272 }
98654c99 273 g_free(metabuf);
3250d8c7
BV
274
275 return SR_OK;
276}
277
278static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
279 GString **out)
280{
281 struct out_context *outc;
282 const struct sr_datafeed_meta *meta;
283 const struct sr_datafeed_logic *logic;
284 const struct sr_config *src;
285 GSList *l;
286
287 int ret;
288
289 *out = NULL;
290 if (!o || !o->sdi || !(outc = o->priv))
291 return SR_ERR_ARG;
292
293 switch (packet->type) {
294 case SR_DF_META:
295 meta = packet->payload;
296 for (l = meta->config; l; l = l->next) {
297 src = l->data;
298 if (src->key != SR_CONF_SAMPLERATE)
299 continue;
300 outc->samplerate = g_variant_get_uint64(src->data);
301 }
302 break;
303 case SR_DF_LOGIC:
304 if (!outc->zip_created) {
305 if ((ret = zip_create(o)) != SR_OK)
306 return ret;
307 outc->zip_created = TRUE;
308 }
309 logic = packet->payload;
310 ret = zip_append(o, logic->data, logic->unitsize, logic->length);
e57057ae
UH
311 if (ret != SR_OK)
312 return ret;
3250d8c7
BV
313 break;
314 }
315
316 return SR_OK;
317}
318
3250d8c7 319static struct sr_option options[] = {
3250d8c7
BV
320 ALL_ZERO
321};
322
323static const struct sr_option *get_options(void)
324{
325 if (!options[0].def)
326 options[0].def = g_variant_ref_sink(g_variant_new_string(""));
327
328 return options;
329}
330
da3d141f
SB
331static int cleanup(struct sr_output *o)
332{
333 struct out_context *outc;
334
335 outc = o->priv;
336 g_variant_unref(options[0].def);
337 g_free(outc->filename);
338 g_free(outc);
339 o->priv = NULL;
340
341 return SR_OK;
342}
343
3250d8c7
BV
344SR_PRIV struct sr_output_module output_srzip = {
345 .id = "srzip",
346 .name = "srzip",
347 .desc = "srzip session file",
8a174d23 348 .exts = (const char*[]){"sr", NULL},
3cd4b381 349 .flags = SR_OUTPUT_INTERNAL_IO_HANDLING,
3250d8c7
BV
350 .options = get_options,
351 .init = init,
352 .receive = receive,
353 .cleanup = cleanup,
354};