]> sigrok.org Git - libsigrok.git/blame - session_file.c
sr/cli/gtk/qt: s/get_dev_info/dev_info_get/.
[libsigrok.git] / session_file.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 <string.h>
21#include <stdlib.h>
22#include <unistd.h>
23#include <zip.h>
24#include <glib.h>
3bbd9849 25#include <glib/gstdio.h>
1a081ca6 26#include "config.h"
b7f09cf8
UH
27#include "sigrok.h"
28#include "sigrok-internal.h"
7d658874 29
2872d21e 30extern struct sr_session *session;
bb7ef793 31extern SR_PRIV struct sr_dev_plugin session_driver;
7d658874 32
9f45fb3a
UH
33/**
34 * Load the session from the specified filename.
35 *
36 * @param filename The name of the session file to load. Must not be NULL.
37 *
38 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments,
39 * SR_ERR_MALLOC upon memory allocation errors, or SR_ERR upon
40 * other errors.
41 */
1a081ca6 42SR_API int sr_session_load(const char *filename)
7d658874
BV
43{
44 GKeyFile *kf;
45 GPtrArray *capturefiles;
46 struct zip *archive;
47 struct zip_file *zf;
48 struct zip_stat zs;
2872d21e 49 struct sr_session *session;
bb7ef793 50 struct sr_dev *dev;
1afe8989 51 struct sr_probe *probe;
7d658874
BV
52 int ret, err, probenum, devcnt, i, j;
53 uint64_t tmp_u64, total_probes, enabled_probes, p;
54 char **sections, **keys, *metafile, *val, c;
c37d2b1b 55 char probename[SR_MAX_PROBENAME_LEN + 1];
7d658874 56
9f45fb3a
UH
57 if (!filename) {
58 sr_err("session file: %s: filename was NULL", __func__);
59 return SR_ERR_ARG;
60 }
61
7d658874 62 if (!(archive = zip_open(filename, 0, &err))) {
7b48d6e1
UH
63 sr_dbg("session file: Failed to open session file: zip "
64 "error %d", err);
7d658874
BV
65 return SR_ERR;
66 }
67
68 /* check "version" */
69 if (!(zf = zip_fopen(archive, "version", 0))) {
7b48d6e1 70 sr_dbg("session file: Not a sigrok session file.");
7d658874
BV
71 return SR_ERR;
72 }
73 ret = zip_fread(zf, &c, 1);
74 if (ret != 1 || c != '1') {
7b48d6e1 75 sr_dbg("session file: Not a valid sigrok session file.");
7d658874
BV
76 return SR_ERR;
77 }
78 zip_fclose(zf);
79
80 /* read "metadata" */
81 if (zip_stat(archive, "metadata", 0, &zs) == -1) {
7b48d6e1 82 sr_dbg("session file: Not a valid sigrok session file.");
7d658874
BV
83 return SR_ERR;
84 }
b53738ba
UH
85
86 if (!(metafile = g_try_malloc(zs.size))) {
87 sr_err("session file: %s: metafile malloc failed", __func__);
88 return SR_ERR_MALLOC;
89 }
90
7d658874
BV
91 zf = zip_fopen_index(archive, zs.index, 0);
92 zip_fread(zf, metafile, zs.size);
93 zip_fclose(zf);
94
95 kf = g_key_file_new();
96 if (!g_key_file_load_from_data(kf, metafile, zs.size, 0, NULL)) {
7b48d6e1 97 sr_dbg("session file: Failed to parse metadata.");
7d658874
BV
98 return SR_ERR;
99 }
100
8a2efef2 101 session = sr_session_new();
7d658874
BV
102
103 devcnt = 0;
104 capturefiles = g_ptr_array_new_with_free_func(g_free);
105 sections = g_key_file_get_groups(kf, NULL);
106 for (i = 0; sections[i]; i++) {
107 if (!strcmp(sections[i], "global"))
108 /* nothing really interesting in here yet */
109 continue;
110 if (!strncmp(sections[i], "device ", 7)) {
111 /* device section */
bb7ef793 112 dev = NULL;
7d658874
BV
113 enabled_probes = 0;
114 keys = g_key_file_get_keys(kf, sections[i], NULL, NULL);
115 for (j = 0; keys[j]; j++) {
116 val = g_key_file_get_string(kf, sections[i], keys[j], NULL);
117 if (!strcmp(keys[j], "capturefile")) {
bb7ef793 118 dev = sr_dev_new(&session_driver, devcnt);
7d658874
BV
119 if (devcnt == 0)
120 /* first device, init the plugin */
bb7ef793
UH
121 dev->plugin->init((char *)filename);
122 sr_session_dev_add(dev);
a7d05fcb 123 dev->plugin->config_set(devcnt, SR_HWCAP_CAPTUREFILE, val);
7d658874
BV
124 g_ptr_array_add(capturefiles, val);
125 } else if (!strcmp(keys[j], "samplerate")) {
f64c1414 126 sr_parse_sizestring(val, &tmp_u64);
a7d05fcb 127 dev->plugin->config_set(devcnt, SR_HWCAP_SAMPLERATE, &tmp_u64);
7d658874
BV
128 } else if (!strcmp(keys[j], "unitsize")) {
129 tmp_u64 = strtoull(val, NULL, 10);
a7d05fcb 130 dev->plugin->config_set(devcnt, SR_HWCAP_CAPTURE_UNITSIZE, &tmp_u64);
7d658874
BV
131 } else if (!strcmp(keys[j], "total probes")) {
132 total_probes = strtoull(val, NULL, 10);
a7d05fcb 133 dev->plugin->config_set(devcnt, SR_HWCAP_CAPTURE_NUM_PROBES, &total_probes);
464d12c7
KS
134 for (p = 0; p < total_probes; p++) {
135 snprintf(probename, SR_MAX_PROBENAME_LEN, "%" PRIu64, p);
bb7ef793 136 sr_dev_probe_add(dev, probename);
464d12c7 137 }
7d658874 138 } else if (!strncmp(keys[j], "probe", 5)) {
bb7ef793 139 if (!dev)
7d658874
BV
140 continue;
141 enabled_probes++;
142 tmp_u64 = strtoul(keys[j]+5, NULL, 10);
bb7ef793 143 sr_dev_probe_name(dev, tmp_u64, val);
7d658874
BV
144 } else if (!strncmp(keys[j], "trigger", 7)) {
145 probenum = strtoul(keys[j]+7, NULL, 10);
bb7ef793 146 sr_dev_trigger_set(dev, probenum, val);
7d658874
BV
147 }
148 }
149 g_strfreev(keys);
150 for (p = enabled_probes; p < total_probes; p++) {
bb7ef793 151 probe = g_slist_nth_data(dev->probes, p);
7d658874
BV
152 probe->enabled = FALSE;
153 }
154 }
155 }
156 g_strfreev(sections);
157 g_key_file_free(kf);
158
159 return SR_OK;
160}
161
9f45fb3a
UH
162/**
163 * Save the current session to the specified file.
164 *
165 * @param filename The name of the file where to save the current session.
166 * Must not be NULL.
167 *
168 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
169 * upon other errors.
170 */
8225e921 171int sr_session_save(const char *filename)
7d658874
BV
172{
173 GSList *l, *p, *d;
174 FILE *meta;
bb7ef793 175 struct sr_dev *dev;
1afe8989 176 struct sr_probe *probe;
c4911129 177 struct sr_datastore *ds;
7d658874
BV
178 struct zip *zipfile;
179 struct zip_source *versrc, *metasrc, *logicsrc;
180 int bufcnt, devcnt, tmpfile, ret, error, probecnt;
181 uint64_t samplerate;
4a1b18f8 182 char version[1], rawname[16], metafile[32], *buf, *s;
7d658874 183
9f45fb3a
UH
184 if (!filename) {
185 sr_err("session file: %s: filename was NULL", __func__);
186 return SR_ERR_ARG;
187 }
188
7d658874 189 /* Quietly delete it first, libzip wants replace ops otherwise. */
4a1b18f8
BV
190 unlink(filename);
191 if (!(zipfile = zip_open(filename, ZIP_CREATE, &error)))
7d658874 192 return SR_ERR;
7d658874
BV
193
194 /* "version" */
195 version[0] = '1';
196 if (!(versrc = zip_source_buffer(zipfile, version, 1, 0)))
197 return SR_ERR;
198 if (zip_add(zipfile, "version", versrc) == -1) {
7b48d6e1 199 sr_info("session file: error saving version into zipfile: %s",
b08024a8 200 zip_strerror(zipfile));
7d658874
BV
201 return SR_ERR;
202 }
203
204 /* init "metadata" */
205 strcpy(metafile, "sigrok-meta-XXXXXX");
206 if ((tmpfile = g_mkstemp(metafile)) == -1)
207 return SR_ERR;
208 close(tmpfile);
868d8cef 209 meta = g_fopen(metafile, "wb");
7d658874
BV
210 fprintf(meta, "[global]\n");
211 fprintf(meta, "sigrok version = %s\n", PACKAGE_VERSION);
212 /* TODO: save protocol decoders used */
213
214 /* all datastores in all devices */
215 devcnt = 1;
bb7ef793
UH
216 for (l = session->devs; l; l = l->next) {
217 dev = l->data;
7d658874
BV
218 /* metadata */
219 fprintf(meta, "[device %d]\n", devcnt);
bb7ef793
UH
220 if (dev->plugin)
221 fprintf(meta, "driver = %s\n", dev->plugin->name);
7d658874 222
bb7ef793 223 ds = dev->datastore;
7d658874
BV
224 if (ds) {
225 /* metadata */
226 fprintf(meta, "capturefile = logic-%d\n", devcnt);
227 fprintf(meta, "unitsize = %d\n", ds->ds_unitsize);
bb7ef793
UH
228 fprintf(meta, "total probes = %d\n", g_slist_length(dev->probes));
229 if (sr_dev_has_hwcap(dev, SR_HWCAP_SAMPLERATE)) {
5097b0d0 230 samplerate = *((uint64_t *) dev->plugin->dev_info_get(
bb7ef793 231 dev->plugin_index, SR_DI_CUR_SAMPLERATE));
7d658874
BV
232 s = sr_samplerate_string(samplerate);
233 fprintf(meta, "samplerate = %s\n", s);
133a37bf 234 g_free(s);
7d658874
BV
235 }
236 probecnt = 1;
bb7ef793 237 for (p = dev->probes; p; p = p->next) {
7d658874
BV
238 probe = p->data;
239 if (probe->enabled) {
240 if (probe->name)
241 fprintf(meta, "probe%d = %s\n", probecnt, probe->name);
242 if (probe->trigger)
243 fprintf(meta, " trigger%d = %s\n", probecnt, probe->trigger);
244 probecnt++;
245 }
246 }
247
248 /* dump datastore into logic-n */
133a37bf 249 buf = g_try_malloc(ds->num_units * ds->ds_unitsize +
7d658874 250 DATASTORE_CHUNKSIZE);
133a37bf
UH
251 if (!buf) {
252 sr_err("session file: %s: buf malloc failed",
253 __func__);
254 return SR_ERR_MALLOC;
255 }
256
7d658874
BV
257 bufcnt = 0;
258 for (d = ds->chunklist; d; d = d->next) {
259 memcpy(buf + bufcnt, d->data,
260 DATASTORE_CHUNKSIZE);
261 bufcnt += DATASTORE_CHUNKSIZE;
262 }
263 if (!(logicsrc = zip_source_buffer(zipfile, buf,
264 ds->num_units * ds->ds_unitsize, TRUE)))
265 return SR_ERR;
266 snprintf(rawname, 15, "logic-%d", devcnt);
267 if (zip_add(zipfile, rawname, logicsrc) == -1)
268 return SR_ERR;
269 }
270 devcnt++;
271 }
272 fclose(meta);
273
274 if (!(metasrc = zip_source_file(zipfile, metafile, 0, -1)))
275 return SR_ERR;
276 if (zip_add(zipfile, "metadata", metasrc) == -1)
277 return SR_ERR;
278
279 if ((ret = zip_close(zipfile)) == -1) {
7b48d6e1
UH
280 sr_info("session file: error saving zipfile: %s",
281 zip_strerror(zipfile));
7d658874
BV
282 return SR_ERR;
283 }
284
285 unlink(metafile);
286
287 return SR_OK;
288}