2011-01-31 21:34:14 +00:00
|
|
|
/*
|
2013-04-23 20:24:30 +00:00
|
|
|
* This file is part of the libsigrok project.
|
2011-01-31 21:34:14 +00:00
|
|
|
*
|
2013-03-24 10:21:00 +00:00
|
|
|
* Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
|
2011-01-31 21:34:14 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <zip.h>
|
|
|
|
#include <glib.h>
|
2011-02-06 01:14:57 +00:00
|
|
|
#include <glib/gstdio.h>
|
2012-10-23 22:41:21 +00:00
|
|
|
#include "config.h" /* Needed for PACKAGE_VERSION and others. */
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "libsigrok.h"
|
|
|
|
#include "libsigrok-internal.h"
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-11-11 11:44:16 +00:00
|
|
|
/* Message logging helpers with driver-specific prefix string. */
|
|
|
|
#define DRIVER_LOG_DOMAIN "session-file: "
|
|
|
|
#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
|
2012-10-21 22:30:12 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* Loading and saving libsigrok session files.
|
|
|
|
*/
|
|
|
|
|
2012-10-21 14:13:36 +00:00
|
|
|
/**
|
2012-10-21 21:43:41 +00:00
|
|
|
* @addtogroup grp_session
|
2012-10-21 14:13:36 +00:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2011-02-08 16:50:29 +00:00
|
|
|
extern struct sr_session *session;
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver session_driver;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-01-02 13:15:25 +00:00
|
|
|
/**
|
|
|
|
* Load the session from the specified filename.
|
|
|
|
*
|
|
|
|
* @param filename The name of the session file to load. Must not be NULL.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, SR_ERR_ARG upon invalid arguments,
|
|
|
|
* SR_ERR_MALLOC upon memory allocation errors, or SR_ERR upon
|
|
|
|
* other errors.
|
|
|
|
*/
|
2012-02-01 22:40:35 +00:00
|
|
|
SR_API int sr_session_load(const char *filename)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
|
|
|
GKeyFile *kf;
|
|
|
|
GPtrArray *capturefiles;
|
|
|
|
struct zip *archive;
|
|
|
|
struct zip_file *zf;
|
|
|
|
struct zip_stat zs;
|
2012-07-22 10:18:34 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2011-02-08 16:47:38 +00:00
|
|
|
struct sr_probe *probe;
|
2012-07-23 13:08:44 +00:00
|
|
|
int ret, probenum, devcnt, version, i, j;
|
2011-01-31 21:34:14 +00:00
|
|
|
uint64_t tmp_u64, total_probes, enabled_probes, p;
|
2012-07-23 13:08:44 +00:00
|
|
|
char **sections, **keys, *metafile, *val, s[11];
|
2011-12-29 18:50:14 +00:00
|
|
|
char probename[SR_MAX_PROBENAME_LEN + 1];
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-01-02 13:15:25 +00:00
|
|
|
if (!filename) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_err("%s: filename was NULL", __func__);
|
2012-01-02 13:15:25 +00:00
|
|
|
return SR_ERR_ARG;
|
|
|
|
}
|
|
|
|
|
2012-03-20 16:51:18 +00:00
|
|
|
if (!(archive = zip_open(filename, 0, &ret))) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_dbg("Failed to open session file: zip error %d", ret);
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check "version" */
|
2012-07-23 13:08:44 +00:00
|
|
|
version = 0;
|
2011-01-31 21:34:14 +00:00
|
|
|
if (!(zf = zip_fopen(archive, "version", 0))) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_dbg("Not a sigrok session file.");
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-07-23 13:08:44 +00:00
|
|
|
if ((ret = zip_fread(zf, s, 10)) == -1) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_dbg("Not a valid sigrok session file.");
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
zip_fclose(zf);
|
2012-07-23 13:08:44 +00:00
|
|
|
s[ret] = 0;
|
|
|
|
version = strtoull(s, NULL, 10);
|
|
|
|
if (version != 1) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_dbg("Not a valid sigrok session file version.");
|
2012-07-23 13:08:44 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2011-01-31 21:34:14 +00:00
|
|
|
|
|
|
|
/* read "metadata" */
|
|
|
|
if (zip_stat(archive, "metadata", 0, &zs) == -1) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_dbg("Not a valid sigrok session file.");
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2011-04-16 12:17:51 +00:00
|
|
|
|
|
|
|
if (!(metafile = g_try_malloc(zs.size))) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_err("%s: metafile malloc failed", __func__);
|
2011-04-16 12:17:51 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
|
2011-01-31 21:34:14 +00:00
|
|
|
zf = zip_fopen_index(archive, zs.index, 0);
|
|
|
|
zip_fread(zf, metafile, zs.size);
|
|
|
|
zip_fclose(zf);
|
|
|
|
|
|
|
|
kf = g_key_file_new();
|
|
|
|
if (!g_key_file_load_from_data(kf, metafile, zs.size, 0, NULL)) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_dbg("Failed to parse metadata.");
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-02-28 16:47:02 +00:00
|
|
|
sr_session_new();
|
2011-01-31 21:34:14 +00:00
|
|
|
|
|
|
|
devcnt = 0;
|
|
|
|
capturefiles = g_ptr_array_new_with_free_func(g_free);
|
|
|
|
sections = g_key_file_get_groups(kf, NULL);
|
|
|
|
for (i = 0; sections[i]; i++) {
|
|
|
|
if (!strcmp(sections[i], "global"))
|
|
|
|
/* nothing really interesting in here yet */
|
|
|
|
continue;
|
|
|
|
if (!strncmp(sections[i], "device ", 7)) {
|
|
|
|
/* device section */
|
2012-07-22 10:18:34 +00:00
|
|
|
sdi = NULL;
|
2013-03-25 19:21:10 +00:00
|
|
|
enabled_probes = total_probes = 0;
|
2011-01-31 21:34:14 +00:00
|
|
|
keys = g_key_file_get_keys(kf, sections[i], NULL, NULL);
|
|
|
|
for (j = 0; keys[j]; j++) {
|
|
|
|
val = g_key_file_get_string(kf, sections[i], keys[j], NULL);
|
|
|
|
if (!strcmp(keys[j], "capturefile")) {
|
2012-07-22 10:18:34 +00:00
|
|
|
sdi = sr_dev_inst_new(devcnt, SR_ST_ACTIVE, NULL, NULL, NULL);
|
|
|
|
sdi->driver = &session_driver;
|
2011-01-31 21:34:14 +00:00
|
|
|
if (devcnt == 0)
|
2012-02-28 22:52:30 +00:00
|
|
|
/* first device, init the driver */
|
2012-12-03 01:42:57 +00:00
|
|
|
sdi->driver->init(NULL);
|
2013-04-24 21:06:50 +00:00
|
|
|
sr_dev_open(sdi);
|
2012-07-22 10:18:34 +00:00
|
|
|
sr_session_dev_add(sdi);
|
2013-03-25 19:21:10 +00:00
|
|
|
sdi->driver->config_set(SR_CONF_SESSIONFILE,
|
|
|
|
g_variant_new_string(filename), sdi);
|
|
|
|
sdi->driver->config_set(SR_CONF_CAPTUREFILE,
|
|
|
|
g_variant_new_string(val), sdi);
|
2011-01-31 21:34:14 +00:00
|
|
|
g_ptr_array_add(capturefiles, val);
|
|
|
|
} else if (!strcmp(keys[j], "samplerate")) {
|
2011-11-27 18:31:25 +00:00
|
|
|
sr_parse_sizestring(val, &tmp_u64);
|
2013-03-25 19:21:10 +00:00
|
|
|
sdi->driver->config_set(SR_CONF_SAMPLERATE,
|
|
|
|
g_variant_new_uint64(tmp_u64), sdi);
|
2011-01-31 21:34:14 +00:00
|
|
|
} else if (!strcmp(keys[j], "unitsize")) {
|
|
|
|
tmp_u64 = strtoull(val, NULL, 10);
|
2013-03-25 19:21:10 +00:00
|
|
|
sdi->driver->config_set(SR_CONF_CAPTURE_UNITSIZE,
|
|
|
|
g_variant_new_uint64(tmp_u64), sdi);
|
2011-01-31 21:34:14 +00:00
|
|
|
} else if (!strcmp(keys[j], "total probes")) {
|
|
|
|
total_probes = strtoull(val, NULL, 10);
|
2013-03-25 19:21:10 +00:00
|
|
|
sdi->driver->config_set(SR_CONF_CAPTURE_NUM_PROBES,
|
|
|
|
g_variant_new_uint64(total_probes), sdi);
|
2011-12-29 16:04:31 +00:00
|
|
|
for (p = 0; p < total_probes; p++) {
|
|
|
|
snprintf(probename, SR_MAX_PROBENAME_LEN, "%" PRIu64, p);
|
2012-07-23 12:55:43 +00:00
|
|
|
if (!(probe = sr_probe_new(p, SR_PROBE_LOGIC, TRUE,
|
2012-07-22 10:18:34 +00:00
|
|
|
probename)))
|
|
|
|
return SR_ERR;
|
|
|
|
sdi->probes = g_slist_append(sdi->probes, probe);
|
2011-12-29 16:04:31 +00:00
|
|
|
}
|
2011-01-31 21:34:14 +00:00
|
|
|
} else if (!strncmp(keys[j], "probe", 5)) {
|
2012-07-22 10:18:34 +00:00
|
|
|
if (!sdi)
|
2011-01-31 21:34:14 +00:00
|
|
|
continue;
|
|
|
|
enabled_probes++;
|
|
|
|
tmp_u64 = strtoul(keys[j]+5, NULL, 10);
|
2012-07-23 12:55:43 +00:00
|
|
|
/* sr_session_save() */
|
|
|
|
sr_dev_probe_name_set(sdi, tmp_u64 - 1, val);
|
2011-01-31 21:34:14 +00:00
|
|
|
} else if (!strncmp(keys[j], "trigger", 7)) {
|
|
|
|
probenum = strtoul(keys[j]+7, NULL, 10);
|
2012-07-22 10:18:34 +00:00
|
|
|
sr_dev_trigger_set(sdi, probenum, val);
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev(keys);
|
2012-07-23 12:55:43 +00:00
|
|
|
/* Disable probes not specifically listed. */
|
2013-03-25 19:21:10 +00:00
|
|
|
if (total_probes)
|
|
|
|
for (p = enabled_probes; p < total_probes; p++)
|
|
|
|
sr_dev_probe_enable(sdi, p, FALSE);
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
2012-07-22 10:18:34 +00:00
|
|
|
devcnt++;
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
|
|
|
g_strfreev(sections);
|
|
|
|
g_key_file_free(kf);
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-01-02 13:15:25 +00:00
|
|
|
/**
|
|
|
|
* Save the current session to the specified file.
|
|
|
|
*
|
2013-01-08 01:51:03 +00:00
|
|
|
* @param filename The name of the filename to save the current session as.
|
2012-01-02 13:15:25 +00:00
|
|
|
* Must not be NULL.
|
2012-07-23 13:06:49 +00:00
|
|
|
* @param sdi The device instance from which the data was captured.
|
2013-01-08 01:51:03 +00:00
|
|
|
* @param buf The data to be saved.
|
|
|
|
* @param unitsize The number of bytes per sample.
|
|
|
|
* @param units The number of samples.
|
2012-01-02 13:15:25 +00:00
|
|
|
*
|
|
|
|
* @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
|
|
|
|
* upon other errors.
|
|
|
|
*/
|
2013-01-08 01:51:03 +00:00
|
|
|
SR_API int sr_session_save(const char *filename, const struct sr_dev_inst *sdi,
|
|
|
|
unsigned char *buf, int unitsize, int units)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
2013-01-08 01:51:03 +00:00
|
|
|
GSList *l;
|
2013-03-25 19:21:10 +00:00
|
|
|
GVariant *gvar;
|
2011-01-31 21:34:14 +00:00
|
|
|
FILE *meta;
|
2011-02-08 16:47:38 +00:00
|
|
|
struct sr_probe *probe;
|
2011-01-31 21:34:14 +00:00
|
|
|
struct zip *zipfile;
|
|
|
|
struct zip_source *versrc, *metasrc, *logicsrc;
|
2013-01-08 01:51:03 +00:00
|
|
|
int tmpfile, ret, probecnt;
|
2013-03-25 19:21:10 +00:00
|
|
|
uint64_t samplerate;
|
2013-01-08 01:51:03 +00:00
|
|
|
char version[1], rawname[16], metafile[32], *s;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-01-02 13:15:25 +00:00
|
|
|
if (!filename) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_err("%s: filename was NULL", __func__);
|
2012-01-02 13:15:25 +00:00
|
|
|
return SR_ERR_ARG;
|
|
|
|
}
|
|
|
|
|
2011-01-31 21:34:14 +00:00
|
|
|
/* Quietly delete it first, libzip wants replace ops otherwise. */
|
2011-02-01 00:41:33 +00:00
|
|
|
unlink(filename);
|
2012-03-20 16:51:18 +00:00
|
|
|
if (!(zipfile = zip_open(filename, ZIP_CREATE, &ret)))
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
/* "version" */
|
|
|
|
version[0] = '1';
|
|
|
|
if (!(versrc = zip_source_buffer(zipfile, version, 1, 0)))
|
|
|
|
return SR_ERR;
|
|
|
|
if (zip_add(zipfile, "version", versrc) == -1) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_info("error saving version into zipfile: %s",
|
2011-04-14 07:46:53 +00:00
|
|
|
zip_strerror(zipfile));
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* init "metadata" */
|
|
|
|
strcpy(metafile, "sigrok-meta-XXXXXX");
|
|
|
|
if ((tmpfile = g_mkstemp(metafile)) == -1)
|
|
|
|
return SR_ERR;
|
|
|
|
close(tmpfile);
|
2011-02-05 19:03:17 +00:00
|
|
|
meta = g_fopen(metafile, "wb");
|
2011-01-31 21:34:14 +00:00
|
|
|
fprintf(meta, "[global]\n");
|
|
|
|
fprintf(meta, "sigrok version = %s\n", PACKAGE_VERSION);
|
|
|
|
|
2012-07-23 13:06:49 +00:00
|
|
|
/* metadata */
|
|
|
|
fprintf(meta, "[device 1]\n");
|
|
|
|
if (sdi->driver)
|
|
|
|
fprintf(meta, "driver = %s\n", sdi->driver->name);
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-23 13:06:49 +00:00
|
|
|
/* metadata */
|
|
|
|
fprintf(meta, "capturefile = logic-1\n");
|
2013-01-08 01:51:03 +00:00
|
|
|
fprintf(meta, "unitsize = %d\n", unitsize);
|
2012-07-23 13:06:49 +00:00
|
|
|
fprintf(meta, "total probes = %d\n", g_slist_length(sdi->probes));
|
2013-01-25 15:20:40 +00:00
|
|
|
if (sr_dev_has_option(sdi, SR_CONF_SAMPLERATE)) {
|
2013-01-25 14:48:44 +00:00
|
|
|
if (sr_config_get(sdi->driver, SR_CONF_SAMPLERATE,
|
2013-03-25 19:21:10 +00:00
|
|
|
&gvar, sdi) == SR_OK) {
|
|
|
|
samplerate = g_variant_get_uint64(gvar);
|
|
|
|
s = sr_samplerate_string(samplerate);
|
2012-07-23 13:06:49 +00:00
|
|
|
fprintf(meta, "samplerate = %s\n", s);
|
|
|
|
g_free(s);
|
2013-03-25 19:21:10 +00:00
|
|
|
g_variant_unref(gvar);
|
2012-07-23 13:06:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
probecnt = 1;
|
|
|
|
for (l = sdi->probes; l; l = l->next) {
|
|
|
|
probe = l->data;
|
|
|
|
if (probe->enabled) {
|
|
|
|
if (probe->name)
|
|
|
|
fprintf(meta, "probe%d = %s\n", probecnt, probe->name);
|
|
|
|
if (probe->trigger)
|
|
|
|
fprintf(meta, " trigger%d = %s\n", probecnt, probe->trigger);
|
|
|
|
probecnt++;
|
|
|
|
}
|
|
|
|
}
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-23 13:06:49 +00:00
|
|
|
if (!(logicsrc = zip_source_buffer(zipfile, buf,
|
2013-01-08 01:51:03 +00:00
|
|
|
units * unitsize, FALSE)))
|
2012-07-23 13:06:49 +00:00
|
|
|
return SR_ERR;
|
|
|
|
snprintf(rawname, 15, "logic-1");
|
|
|
|
if (zip_add(zipfile, rawname, logicsrc) == -1)
|
|
|
|
return SR_ERR;
|
2011-01-31 21:34:14 +00:00
|
|
|
fclose(meta);
|
|
|
|
|
|
|
|
if (!(metasrc = zip_source_file(zipfile, metafile, 0, -1)))
|
|
|
|
return SR_ERR;
|
|
|
|
if (zip_add(zipfile, "metadata", metasrc) == -1)
|
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
if ((ret = zip_close(zipfile)) == -1) {
|
2012-11-11 11:44:16 +00:00
|
|
|
sr_info("error saving zipfile: %s", zip_strerror(zipfile));
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink(metafile);
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
2012-10-21 14:13:36 +00:00
|
|
|
|
|
|
|
/** @} */
|