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