]> sigrok.org Git - libsigrok.git/blame - src/session_file.c
Simplify a few config_set() callbacks.
[libsigrok.git] / src / session_file.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 <string.h>
21#include <stdlib.h>
22#include <unistd.h>
23#include <zip.h>
5f9c4c8a
BV
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <errno.h>
7d658874 27#include <glib.h>
3bbd9849 28#include <glib/gstdio.h>
545f9786 29#include "config.h" /* Needed for PACKAGE_VERSION and others. */
45c59c8b
BV
30#include "libsigrok.h"
31#include "libsigrok-internal.h"
7d658874 32
2ad1deb8 33/** @cond PRIVATE */
3544f848 34#define LOG_PREFIX "session-file"
2ad1deb8 35/** @endcond */
a885ce3e 36
393fb9cb
UH
37/**
38 * @file
39 *
40 * Loading and saving libsigrok session files.
41 */
42
7b870c38 43/**
777e2035 44 * @addtogroup grp_session
7b870c38
UH
45 *
46 * @{
47 */
48
c09f0b57 49extern SR_PRIV struct sr_dev_driver session_driver;
c6805a02
SA
50static int session_driver_initialized = 0;
51
72a08bcc 52/** @private */
f438e0c9 53SR_PRIV int sr_sessionfile_check(const char *filename)
7d658874 54{
5f9c4c8a 55 struct stat st;
7d658874
BV
56 struct zip *archive;
57 struct zip_file *zf;
58 struct zip_stat zs;
f438e0c9
BV
59 int version, ret;
60 char s[11];
7d658874 61
f438e0c9 62 if (!filename)
9f45fb3a 63 return SR_ERR_ARG;
9f45fb3a 64
5f9c4c8a
BV
65 if (stat(filename, &st) == -1) {
66 sr_err("Couldn't stat %s: %s", filename, strerror(errno));
67 return SR_ERR;
68 }
69
f438e0c9
BV
70 if (!(archive = zip_open(filename, 0, &ret)))
71 /* No logging: this can be used just to check if it's
72 * a sigrok session file or not. */
7d658874 73 return SR_ERR;
7d658874
BV
74
75 /* check "version" */
76 if (!(zf = zip_fopen(archive, "version", 0))) {
f438e0c9 77 sr_dbg("Not a sigrok session file: no version found.");
7d658874
BV
78 return SR_ERR;
79 }
f438e0c9 80 if ((ret = zip_fread(zf, s, 10)) == -1)
7d658874 81 return SR_ERR;
7d658874 82 zip_fclose(zf);
c1864d55
BV
83 s[ret] = 0;
84 version = strtoull(s, NULL, 10);
3a841040 85 if (version > 2) {
f438e0c9 86 sr_dbg("Cannot handle sigrok session file version %d.", version);
c1864d55
BV
87 return SR_ERR;
88 }
3a841040 89 sr_spew("Detected sigrok session file version %d.", version);
7d658874
BV
90
91 /* read "metadata" */
92 if (zip_stat(archive, "metadata", 0, &zs) == -1) {
a885ce3e 93 sr_dbg("Not a valid sigrok session file.");
7d658874
BV
94 return SR_ERR;
95 }
b53738ba 96
aba57f35
ML
97 if ((ret = zip_close(archive)) == -1) {
98 sr_dbg("error closing zipfile: %s", zip_strerror(archive));
99 return SR_ERR;
100 }
101
f438e0c9
BV
102 return SR_OK;
103}
104
105/**
106 * Load the session from the specified filename.
107 *
d386a52f
BV
108 * @param filename The name of the session file to load.
109 * @param session The session to load the file into.
f438e0c9 110 *
d386a52f
BV
111 * @retval SR_OK Success
112 * @retval SR_ERR_MALLOC Memory allocation error
113 * @retval SR_ERR_DATA Malformed session file
114 * @retval SR_ERR This is not a session file
f438e0c9 115 */
0812c40e 116SR_API int sr_session_load(const char *filename, struct sr_session **session)
f438e0c9
BV
117{
118 GKeyFile *kf;
119 GPtrArray *capturefiles;
120 struct zip *archive;
121 struct zip_file *zf;
122 struct zip_stat zs;
123 struct sr_dev_inst *sdi;
6f1346fb 124 struct sr_channel *ch;
c6805a02 125 int ret, i, j;
a160a0c3 126 uint64_t tmp_u64, total_channels, p;
f438e0c9 127 char **sections, **keys, *metafile, *val;
3f239f08 128 char channelname[SR_MAX_CHANNELNAME_LEN + 1];
f438e0c9
BV
129
130 if ((ret = sr_sessionfile_check(filename)) != SR_OK)
131 return ret;
132
133 if (!(archive = zip_open(filename, 0, &ret)))
134 return SR_ERR;
135
136 if (zip_stat(archive, "metadata", 0, &zs) == -1)
137 return SR_ERR;
138
b53738ba 139 if (!(metafile = g_try_malloc(zs.size))) {
a885ce3e 140 sr_err("%s: metafile malloc failed", __func__);
b53738ba
UH
141 return SR_ERR_MALLOC;
142 }
143
7d658874
BV
144 zf = zip_fopen_index(archive, zs.index, 0);
145 zip_fread(zf, metafile, zs.size);
146 zip_fclose(zf);
147
148 kf = g_key_file_new();
149 if (!g_key_file_load_from_data(kf, metafile, zs.size, 0, NULL)) {
a885ce3e 150 sr_dbg("Failed to parse metadata.");
7d658874
BV
151 return SR_ERR;
152 }
153
0812c40e
ML
154 if ((ret = sr_session_new(session)) != SR_OK)
155 return ret;
7d658874 156
d386a52f 157 ret = SR_OK;
7d658874
BV
158 capturefiles = g_ptr_array_new_with_free_func(g_free);
159 sections = g_key_file_get_groups(kf, NULL);
d386a52f 160 for (i = 0; sections[i] && ret == SR_OK; i++) {
7d658874
BV
161 if (!strcmp(sections[i], "global"))
162 /* nothing really interesting in here yet */
163 continue;
164 if (!strncmp(sections[i], "device ", 7)) {
165 /* device section */
4d684427 166 sdi = NULL;
7d658874
BV
167 keys = g_key_file_get_keys(kf, sections[i], NULL, NULL);
168 for (j = 0; keys[j]; j++) {
169 val = g_key_file_get_string(kf, sections[i], keys[j], NULL);
170 if (!strcmp(keys[j], "capturefile")) {
aac29cc1 171 sdi = g_malloc0(sizeof(struct sr_dev_inst));
4d684427 172 sdi->driver = &session_driver;
0af636be 173 sdi->status = SR_ST_ACTIVE;
c6805a02 174 if (!session_driver_initialized) {
c09f0b57 175 /* first device, init the driver */
c6805a02 176 session_driver_initialized = 1;
4f840ce9 177 sdi->driver->init(sdi->driver, NULL);
c6805a02 178 }
bd7bfe8c 179 sr_dev_open(sdi);
0812c40e 180 sr_session_dev_add(*session, sdi);
1de3cced
ML
181 (*session)->owned_devs = g_slist_append(
182 (*session)->owned_devs, sdi);
003595ac 183 sdi->driver->config_set(SR_CONF_SESSIONFILE,
8f996b89 184 g_variant_new_string(filename), sdi, NULL);
003595ac 185 sdi->driver->config_set(SR_CONF_CAPTUREFILE,
8f996b89 186 g_variant_new_string(val), sdi, NULL);
7d658874
BV
187 g_ptr_array_add(capturefiles, val);
188 } else if (!strcmp(keys[j], "samplerate")) {
d386a52f
BV
189 if (!sdi) {
190 ret = SR_ERR_DATA;
191 break;
192 }
f64c1414 193 sr_parse_sizestring(val, &tmp_u64);
003595ac 194 sdi->driver->config_set(SR_CONF_SAMPLERATE,
8f996b89 195 g_variant_new_uint64(tmp_u64), sdi, NULL);
7d658874 196 } else if (!strcmp(keys[j], "unitsize")) {
d386a52f
BV
197 if (!sdi) {
198 ret = SR_ERR_DATA;
199 break;
200 }
7d658874 201 tmp_u64 = strtoull(val, NULL, 10);
003595ac 202 sdi->driver->config_set(SR_CONF_CAPTURE_UNITSIZE,
8f996b89 203 g_variant_new_uint64(tmp_u64), sdi, NULL);
7d658874 204 } else if (!strcmp(keys[j], "total probes")) {
d386a52f
BV
205 if (!sdi) {
206 ret = SR_ERR_DATA;
207 break;
208 }
ba7dd8bb 209 total_channels = strtoull(val, NULL, 10);
3f239f08 210 sdi->driver->config_set(SR_CONF_NUM_LOGIC_CHANNELS,
ba7dd8bb
UH
211 g_variant_new_uint64(total_channels), sdi, NULL);
212 for (p = 0; p < total_channels; p++) {
3f239f08 213 snprintf(channelname, SR_MAX_CHANNELNAME_LEN, "%" PRIu64, p);
5e23fcab 214 sr_channel_new(sdi, p, SR_CHANNEL_LOGIC, FALSE,
c368e6f3 215 channelname);
464d12c7 216 }
7d658874 217 } else if (!strncmp(keys[j], "probe", 5)) {
d386a52f
BV
218 if (!sdi) {
219 ret = SR_ERR_DATA;
220 break;
221 }
6f1346fb
ML
222 tmp_u64 = strtoul(keys[j]+5, NULL, 10) - 1;
223 ch = g_slist_nth_data(sdi->channels, tmp_u64);
fb381e4d 224 /* sr_session_save() */
6f1346fb
ML
225 sr_dev_channel_name_set(ch, val);
226 sr_dev_channel_enable(ch, TRUE);
7d658874
BV
227 }
228 }
229 g_strfreev(keys);
7d658874
BV
230 }
231 }
232 g_strfreev(sections);
233 g_key_file_free(kf);
234
d386a52f 235 return ret;
7d658874
BV
236}
237
9f45fb3a 238/**
0812c40e 239 * Save a session to the specified file.
9f45fb3a 240 *
7efe889e 241 * @param session The session to save to the specified file. Must not be NULL.
0812c40e 242 * @param filename The name of the filename to save the session as.
9f45fb3a 243 * Must not be NULL.
056be071 244 * @param sdi The device instance from which the data was captured.
18bc2704
BV
245 * @param buf The data to be saved.
246 * @param unitsize The number of bytes per sample.
247 * @param units The number of samples.
9f45fb3a 248 *
a769b9f3
BV
249 * @retval SR_OK Success
250 * @retval SR_ERR_ARG Invalid arguments
251 * @retval SR_ERR Other errors
47117241
UH
252 *
253 * @since 0.2.0
9f45fb3a 254 */
0812c40e
ML
255SR_API int sr_session_save(struct sr_session *session, const char *filename,
256 const struct sr_dev_inst *sdi, unsigned char *buf, int unitsize,
257 int units)
7d658874 258{
ba7dd8bb 259 struct sr_channel *ch;
18bc2704 260 GSList *l;
003595ac 261 GVariant *gvar;
a769b9f3
BV
262 uint64_t samplerate;
263 int cnt, ret;
ba7dd8bb 264 char **channel_names;
a769b9f3
BV
265
266 samplerate = 0;
267 if (sr_dev_has_option(sdi, SR_CONF_SAMPLERATE)) {
268 if (sr_config_get(sdi->driver, sdi, NULL,
269 SR_CONF_SAMPLERATE, &gvar) == SR_OK) {
270 samplerate = g_variant_get_uint64(gvar);
271 g_variant_unref(gvar);
272 }
273 }
274
ba7dd8bb 275 channel_names = g_malloc0(sizeof(char *) * (g_slist_length(sdi->channels) + 1));
a769b9f3 276 cnt = 0;
ba7dd8bb
UH
277 for (l = sdi->channels; l; l = l->next) {
278 ch = l->data;
3f239f08 279 if (ch->type != SR_CHANNEL_LOGIC)
eca2f852 280 continue;
ba7dd8bb 281 if (ch->enabled != TRUE)
eca2f852 282 continue;
ba7dd8bb 283 if (!ch->name)
eca2f852
BV
284 continue;
285 /* Just borrowing the ptr. */
ba7dd8bb 286 channel_names[cnt++] = ch->name;
a769b9f3
BV
287 }
288
0812c40e
ML
289 if ((ret = sr_session_save_init(session, filename, samplerate,
290 channel_names)) != SR_OK)
a769b9f3
BV
291 return ret;
292
0812c40e 293 ret = sr_session_append(session, filename, buf, unitsize, units);
a769b9f3
BV
294
295 return ret;
296}
297
298/**
299 * Initialize a saved session file.
300 *
7efe889e 301 * @param session The session to use. Must not be NULL.
0812c40e 302 * @param filename The name of the filename to save the session as.
a769b9f3
BV
303 * Must not be NULL.
304 * @param samplerate The samplerate to store for this session.
ba7dd8bb
UH
305 * @param channels A NULL-terminated array of strings containing the names
306 * of all the channels active in this session.
a769b9f3
BV
307 *
308 * @retval SR_OK Success
309 * @retval SR_ERR_ARG Invalid arguments
310 * @retval SR_ERR Other errors
47117241
UH
311 *
312 * @since 0.3.0
a769b9f3 313 */
0812c40e
ML
314SR_API int sr_session_save_init(struct sr_session *session,
315 const char *filename, uint64_t samplerate, char **channels)
a769b9f3 316{
7d658874 317 FILE *meta;
7d658874 318 struct zip *zipfile;
a769b9f3
BV
319 struct zip_source *versrc, *metasrc;
320 int tmpfile, cnt, ret, i;
321 char version[1], metafile[32], *s;
7d658874 322
f4d2042d 323 (void)session;
0812c40e 324
9f45fb3a 325 if (!filename) {
a885ce3e 326 sr_err("%s: filename was NULL", __func__);
9f45fb3a
UH
327 return SR_ERR_ARG;
328 }
329
7d658874 330 /* Quietly delete it first, libzip wants replace ops otherwise. */
4a1b18f8 331 unlink(filename);
ebc34738 332 if (!(zipfile = zip_open(filename, ZIP_CREATE, &ret)))
7d658874 333 return SR_ERR;
7d658874
BV
334
335 /* "version" */
3a841040 336 version[0] = '2';
7d658874
BV
337 if (!(versrc = zip_source_buffer(zipfile, version, 1, 0)))
338 return SR_ERR;
339 if (zip_add(zipfile, "version", versrc) == -1) {
a885ce3e 340 sr_info("error saving version into zipfile: %s",
b08024a8 341 zip_strerror(zipfile));
7d658874
BV
342 return SR_ERR;
343 }
344
345 /* init "metadata" */
346 strcpy(metafile, "sigrok-meta-XXXXXX");
347 if ((tmpfile = g_mkstemp(metafile)) == -1)
348 return SR_ERR;
349 close(tmpfile);
868d8cef 350 meta = g_fopen(metafile, "wb");
7d658874
BV
351 fprintf(meta, "[global]\n");
352 fprintf(meta, "sigrok version = %s\n", PACKAGE_VERSION);
7d658874 353
056be071
BV
354 /* metadata */
355 fprintf(meta, "[device 1]\n");
7d658874 356
056be071
BV
357 /* metadata */
358 fprintf(meta, "capturefile = logic-1\n");
a769b9f3 359 cnt = 0;
ba7dd8bb 360 for (i = 0; channels[i]; i++)
a769b9f3
BV
361 cnt++;
362 fprintf(meta, "total probes = %d\n", cnt);
363 s = sr_samplerate_string(samplerate);
364 fprintf(meta, "samplerate = %s\n", s);
365 g_free(s);
366
ba7dd8bb
UH
367 for (i = 0; channels[i]; i++)
368 fprintf(meta, "probe%d = %s\n", i + 1, channels[i]);
7d658874 369
7d658874
BV
370 fclose(meta);
371
d2cd06e7
BV
372 if (!(metasrc = zip_source_file(zipfile, metafile, 0, -1))) {
373 unlink(metafile);
7d658874 374 return SR_ERR;
d2cd06e7
BV
375 }
376 if (zip_add(zipfile, "metadata", metasrc) == -1) {
377 unlink(metafile);
7d658874 378 return SR_ERR;
d2cd06e7 379 }
7d658874
BV
380
381 if ((ret = zip_close(zipfile)) == -1) {
a885ce3e 382 sr_info("error saving zipfile: %s", zip_strerror(zipfile));
d2cd06e7 383 unlink(metafile);
7d658874
BV
384 return SR_ERR;
385 }
386
387 unlink(metafile);
388
389 return SR_OK;
390}
7b870c38 391
f438e0c9
BV
392/**
393 * Append data to an existing session file.
394 *
a769b9f3
BV
395 * The session file must have been created with sr_session_save_init()
396 * or sr_session_save() beforehand.
397 *
7efe889e 398 * @param session The session to use. Must not be NULL.
f438e0c9
BV
399 * @param filename The name of the filename to append to. Must not be NULL.
400 * @param buf The data to be appended.
401 * @param unitsize The number of bytes per sample.
402 * @param units The number of samples.
403 *
a769b9f3
BV
404 * @retval SR_OK Success
405 * @retval SR_ERR_ARG Invalid arguments
406 * @retval SR_ERR Other errors
47117241
UH
407 *
408 * @since 0.3.0
f438e0c9 409 */
0812c40e
ML
410SR_API int sr_session_append(struct sr_session *session, const char *filename,
411 unsigned char *buf, int unitsize, int units)
f438e0c9
BV
412{
413 struct zip *archive;
414 struct zip_source *logicsrc;
415 zip_int64_t num_files;
a769b9f3
BV
416 struct zip_file *zf;
417 struct zip_stat zs;
418 struct zip_source *metasrc;
419 GKeyFile *kf;
420 GError *error;
421 gsize len;
422 int chunk_num, next_chunk_num, tmpfile, ret, i;
f438e0c9 423 const char *entry_name;
a769b9f3 424 char *metafile, tmpname[32], chunkname[16];
f438e0c9 425
f4d2042d 426 (void)session;
0812c40e 427
f438e0c9
BV
428 if ((ret = sr_sessionfile_check(filename)) != SR_OK)
429 return ret;
430
431 if (!(archive = zip_open(filename, 0, &ret)))
432 return SR_ERR;
433
a769b9f3
BV
434 if (zip_stat(archive, "metadata", 0, &zs) == -1)
435 return SR_ERR;
436
437 metafile = g_malloc(zs.size);
438 zf = zip_fopen_index(archive, zs.index, 0);
439 zip_fread(zf, metafile, zs.size);
440 zip_fclose(zf);
441
442 /*
443 * If the file was only initialized but doesn't yet have any
444 * data it in, it won't have a unitsize field in metadata yet.
445 */
446 error = NULL;
447 kf = g_key_file_new();
448 if (!g_key_file_load_from_data(kf, metafile, zs.size, 0, &error)) {
449 sr_err("Failed to parse metadata: %s.", error->message);
450 return SR_ERR;
451 }
452 g_free(metafile);
d2cd06e7 453 tmpname[0] = '\0';
a769b9f3
BV
454 if (!g_key_file_has_key(kf, "device 1", "unitsize", &error)) {
455 if (error && error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
456 sr_err("Failed to check unitsize key: %s", error ? error->message : "?");
457 return SR_ERR;
458 }
459 /* Add unitsize field. */
460 g_key_file_set_integer(kf, "device 1", "unitsize", unitsize);
461 metafile = g_key_file_to_data(kf, &len, &error);
462 strcpy(tmpname, "sigrok-meta-XXXXXX");
463 if ((tmpfile = g_mkstemp(tmpname)) == -1)
464 return SR_ERR;
465 if (write(tmpfile, metafile, len) < 0) {
466 sr_dbg("Failed to create new metadata: %s", strerror(errno));
d2cd06e7
BV
467 g_free(metafile);
468 unlink(tmpname);
a769b9f3
BV
469 return SR_ERR;
470 }
471 close(tmpfile);
472 if (!(metasrc = zip_source_file(archive, tmpname, 0, -1))) {
a769b9f3 473 sr_err("Failed to create zip source for metadata.");
d2cd06e7
BV
474 g_free(metafile);
475 unlink(tmpname);
a769b9f3
BV
476 return SR_ERR;
477 }
478 if (zip_replace(archive, zs.index, metasrc) == -1) {
479 sr_err("Failed to replace metadata file.");
d2cd06e7
BV
480 g_free(metafile);
481 unlink(tmpname);
a769b9f3
BV
482 return SR_ERR;
483 }
484 g_free(metafile);
485 }
486 g_key_file_free(kf);
487
f438e0c9
BV
488 next_chunk_num = 1;
489 num_files = zip_get_num_entries(archive, 0);
490 for (i = 0; i < num_files; i++) {
491 entry_name = zip_get_name(archive, i, 0);
492 if (strncmp(entry_name, "logic-1", 7))
493 continue;
494 if (strlen(entry_name) == 7) {
495 /* This file has no extra chunks, just a single "logic-1".
496 * Rename it to "logic-1-1" * and continue with chunk 2. */
497 if (zip_rename(archive, i, "logic-1-1") == -1) {
498 sr_err("Failed to rename 'logic-1' to 'logic-1-1'.");
d2cd06e7 499 unlink(tmpname);
f438e0c9
BV
500 return SR_ERR;
501 }
502 next_chunk_num = 2;
503 break;
504 } else if (strlen(entry_name) > 8 && entry_name[7] == '-') {
505 chunk_num = strtoull(entry_name + 8, NULL, 10);
506 if (chunk_num >= next_chunk_num)
507 next_chunk_num = chunk_num + 1;
508 }
509 }
510 snprintf(chunkname, 15, "logic-1-%d", next_chunk_num);
d2cd06e7
BV
511 if (!(logicsrc = zip_source_buffer(archive, buf, units * unitsize, FALSE))) {
512 unlink(tmpname);
f438e0c9 513 return SR_ERR;
d2cd06e7
BV
514 }
515 if (zip_add(archive, chunkname, logicsrc) == -1) {
516 unlink(tmpname);
f438e0c9 517 return SR_ERR;
d2cd06e7 518 }
f438e0c9
BV
519 if ((ret = zip_close(archive)) == -1) {
520 sr_info("error saving session file: %s", zip_strerror(archive));
d2cd06e7 521 unlink(tmpname);
f438e0c9
BV
522 return SR_ERR;
523 }
d2cd06e7 524 unlink(tmpname);
f438e0c9
BV
525
526 return SR_OK;
527}
528
7b870c38 529/** @} */