]> sigrok.org Git - libsigrok.git/blob - src/session_file.c
Enable loading of session files without the capture file defined
[libsigrok.git] / src / session_file.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 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
20 #include <config.h>
21 #include <string.h>
22 #include <stdlib.h>
23 #include <zip.h>
24 #include <errno.h>
25 #include <glib.h>
26 #include <glib/gstdio.h>
27 #include <libsigrok/libsigrok.h>
28 #include "libsigrok-internal.h"
29
30 /** @cond PRIVATE */
31 #define LOG_PREFIX "session-file"
32 /** @endcond */
33
34 /**
35  * @file
36  *
37  * Loading and saving libsigrok session files.
38  */
39
40 /**
41  * @addtogroup grp_session
42  *
43  * @{
44  */
45
46 extern SR_PRIV struct sr_dev_driver session_driver;
47 static int session_driver_initialized = 0;
48
49 #if !HAVE_ZIP_DISCARD
50 /* Replacement for zip_discard() if it isn't available.
51  */
52 SR_PRIV void sr_zip_discard(struct zip *archive)
53 {
54         if (zip_unchange_all(archive) < 0 || zip_close(archive) < 0)
55                 sr_err("Failed to discard ZIP archive: %s", zip_strerror(archive));
56 }
57 #endif
58
59 /** Read metadata entries from a session archive.
60  * @param[in] archive An open ZIP archive.
61  * @param[in] entry Stat buffer filled in for the metadata archive member.
62  * @return A new key/value store containing the session metadata.
63  */
64 SR_PRIV GKeyFile *sr_sessionfile_read_metadata(struct zip *archive,
65                         const struct zip_stat *entry)
66 {
67         GKeyFile *keyfile;
68         GError *error;
69         struct zip_file *zf;
70         char *metabuf;
71         int metalen;
72
73         if (entry->size > G_MAXINT || !(metabuf = g_try_malloc(entry->size))) {
74                 sr_err("Metadata buffer allocation failed.");
75                 return NULL;
76         }
77         zf = zip_fopen_index(archive, entry->index, 0);
78         if (!zf) {
79                 sr_err("Failed to open metadata: %s", zip_strerror(archive));
80                 g_free(metabuf);
81                 return NULL;
82         }
83         metalen = zip_fread(zf, metabuf, entry->size);
84         if (metalen < 0) {
85                 sr_err("Failed to read metadata: %s", zip_file_strerror(zf));
86                 zip_fclose(zf);
87                 g_free(metabuf);
88                 return NULL;
89         }
90         zip_fclose(zf);
91
92         keyfile = g_key_file_new();
93         error = NULL;
94         g_key_file_load_from_data(keyfile, metabuf, metalen,
95                         G_KEY_FILE_NONE, &error);
96         g_free(metabuf);
97
98         if (error) {
99                 sr_err("Failed to parse metadata: %s", error->message);
100                 g_error_free(error);
101                 g_key_file_free(keyfile);
102                 return NULL;
103         }
104         return keyfile;
105 }
106
107 /** @private */
108 SR_PRIV int sr_sessionfile_check(const char *filename)
109 {
110         struct zip *archive;
111         struct zip_file *zf;
112         struct zip_stat zs;
113         uint64_t version;
114         int ret;
115         char s[11];
116
117         if (!filename)
118                 return SR_ERR_ARG;
119
120         if (!g_file_test(filename, G_FILE_TEST_IS_REGULAR)) {
121                 sr_err("Not a regular file: %s.", filename);
122                 return SR_ERR;
123         }
124
125         if (!(archive = zip_open(filename, 0, NULL)))
126                 /* No logging: this can be used just to check if it's
127                  * a sigrok session file or not. */
128                 return SR_ERR;
129
130         /* check "version" */
131         if (!(zf = zip_fopen(archive, "version", 0))) {
132                 sr_dbg("Not a sigrok session file: no version found.");
133                 zip_discard(archive);
134                 return SR_ERR;
135         }
136         ret = zip_fread(zf, s, sizeof(s) - 1);
137         if (ret < 0) {
138                 sr_err("Failed to read version file: %s",
139                         zip_file_strerror(zf));
140                 zip_fclose(zf);
141                 zip_discard(archive);
142                 return SR_ERR;
143         }
144         zip_fclose(zf);
145         s[ret] = '\0';
146         version = g_ascii_strtoull(s, NULL, 10);
147         if (version == 0 || version > 2) {
148                 sr_dbg("Cannot handle sigrok session file version %" PRIu64 ".",
149                         version);
150                 zip_discard(archive);
151                 return SR_ERR;
152         }
153         sr_spew("Detected sigrok session file version %" PRIu64 ".", version);
154
155         /* read "metadata" */
156         if (zip_stat(archive, "metadata", 0, &zs) < 0) {
157                 sr_dbg("Not a valid sigrok session file.");
158                 zip_discard(archive);
159                 return SR_ERR;
160         }
161         zip_discard(archive);
162
163         return SR_OK;
164 }
165
166 SR_PRIV struct sr_dev_inst *sr_session_prepare_sdi(const char *filename, struct sr_session **session)
167 {
168         struct sr_dev_inst *sdi = NULL;
169
170         sdi = g_malloc0(sizeof(struct sr_dev_inst));
171         sdi->driver = &session_driver;
172         sdi->status = SR_ST_ACTIVE;
173         if (!session_driver_initialized) {
174                 /* first device, init the driver */
175                 session_driver_initialized = 1;
176                 sdi->driver->init(sdi->driver, NULL);
177         }
178         sr_dev_open(sdi);
179         sr_session_dev_add(*session, sdi);
180         (*session)->owned_devs = g_slist_append((*session)->owned_devs, sdi);
181         sr_config_set(sdi, NULL, SR_CONF_SESSIONFILE,
182                         g_variant_new_string(filename));
183
184         return sdi;
185 }
186
187 /**
188  * Load the session from the specified filename.
189  *
190  * @param ctx The context in which to load the session.
191  * @param filename The name of the session file to load.
192  * @param session The session to load the file into.
193  *
194  * @retval SR_OK Success
195  * @retval SR_ERR_MALLOC Memory allocation error
196  * @retval SR_ERR_DATA Malformed session file
197  * @retval SR_ERR This is not a session file
198  */
199 SR_API int sr_session_load(struct sr_context *ctx, const char *filename,
200                 struct sr_session **session)
201 {
202         GKeyFile *kf;
203         GError *error;
204         struct zip *archive;
205         struct zip_stat zs;
206         struct sr_dev_inst *sdi;
207         struct sr_channel *ch;
208         int ret, i, j;
209         uint64_t tmp_u64;
210         int total_channels, total_analog, k;
211         GSList *l;
212         int unitsize;
213         char **sections, **keys, *val;
214         char channelname[SR_MAX_CHANNELNAME_LEN + 1];
215
216         if ((ret = sr_sessionfile_check(filename)) != SR_OK)
217                 return ret;
218
219         if (!(archive = zip_open(filename, 0, NULL)))
220                 return SR_ERR;
221
222         if (zip_stat(archive, "metadata", 0, &zs) < 0) {
223                 zip_discard(archive);
224                 return SR_ERR;
225         }
226         kf = sr_sessionfile_read_metadata(archive, &zs);
227         zip_discard(archive);
228         if (!kf)
229                 return SR_ERR_DATA;
230
231         if ((ret = sr_session_new(ctx, session)) != SR_OK) {
232                 g_key_file_free(kf);
233                 return ret;
234         }
235
236         error = NULL;
237         ret = SR_OK;
238         sections = g_key_file_get_groups(kf, NULL);
239         for (i = 0; sections[i] && ret == SR_OK; i++) {
240                 if (!strcmp(sections[i], "global"))
241                         /* nothing really interesting in here yet */
242                         continue;
243                 if (!strncmp(sections[i], "device ", 7)) {
244                         /* device section */
245                         sdi = NULL;
246                         keys = g_key_file_get_keys(kf, sections[i], NULL, NULL);
247
248                         /* File contains analog data if there are analog channels. */
249                         total_analog = g_key_file_get_integer(kf, sections[i],
250                                         "total analog", &error);
251                         if (total_analog > 0 && !error)
252                                 sdi = sr_session_prepare_sdi(filename, session);
253                         g_clear_error(&error);
254
255                         /* File contains logic data if a capturefile is set. */
256                         val = g_key_file_get_string(kf, sections[i],
257                                 "capturefile", &error);
258                         if (val && !error) {
259                                 if (!sdi)
260                                         sdi = sr_session_prepare_sdi(filename, session);
261                                 sr_config_set(sdi, NULL, SR_CONF_CAPTUREFILE,
262                                                 g_variant_new_string(val));
263                                 g_free(val);
264                         }
265                         g_clear_error(&error);
266
267                         for (j = 0; keys[j]; j++) {
268                                 if (!strcmp(keys[j], "samplerate")) {
269                                         val = g_key_file_get_string(kf, sections[i],
270                                                         keys[j], &error);
271                                         if (!sdi || !val || sr_parse_sizestring(val,
272                                                                 &tmp_u64) != SR_OK) {
273                                                 g_free(val);
274                                                 ret = SR_ERR_DATA;
275                                                 break;
276                                         }
277                                         g_free(val);
278                                         sr_config_set(sdi, NULL, SR_CONF_SAMPLERATE,
279                                                         g_variant_new_uint64(tmp_u64));
280                                 } else if (!strcmp(keys[j], "unitsize")) {
281                                         unitsize = g_key_file_get_integer(kf, sections[i],
282                                                         keys[j], &error);
283                                         if (!sdi || unitsize <= 0 || error) {
284                                                 ret = SR_ERR_DATA;
285                                                 break;
286                                         }
287                                         sr_config_set(sdi, NULL, SR_CONF_CAPTURE_UNITSIZE,
288                                                         g_variant_new_uint64(unitsize));
289                                 } else if (!strcmp(keys[j], "total probes")) {
290                                         total_channels = g_key_file_get_integer(kf,
291                                                         sections[i], keys[j], &error);
292                                         if (!sdi || total_channels < 0 || error) {
293                                                 ret = SR_ERR_DATA;
294                                                 break;
295                                         }
296                                         sr_config_set(sdi, NULL, SR_CONF_NUM_LOGIC_CHANNELS,
297                                                         g_variant_new_int32(total_channels));
298                                         for (k = 0; k < total_channels; k++) {
299                                                 g_snprintf(channelname, sizeof(channelname),
300                                                                 "%d", k);
301                                                 sr_channel_new(sdi, k, SR_CHANNEL_LOGIC,
302                                                                 FALSE, channelname);
303                                         }
304                                 } else if (!strcmp(keys[j], "total analog")) {
305                                         total_analog = g_key_file_get_integer(kf,
306                                                         sections[i], keys[j], &error);
307                                         if (!sdi || total_analog < 0 || error) {
308                                                 ret = SR_ERR_DATA;
309                                                 break;
310                                         }
311                                         sr_config_set(sdi, NULL, SR_CONF_NUM_ANALOG_CHANNELS,
312                                                         g_variant_new_int32(total_analog));
313                                         for (k = total_channels; k < (total_channels + total_analog); k++) {
314                                                 g_snprintf(channelname, sizeof(channelname),
315                                                                 "%d", k);
316                                                 sr_channel_new(sdi, k, SR_CHANNEL_ANALOG,
317                                                                 FALSE, channelname);
318                                         }
319                                 } else if (!strncmp(keys[j], "probe", 5)) {
320                                         tmp_u64 = g_ascii_strtoull(keys[j] + 5, NULL, 10);
321                                         if (!sdi || tmp_u64 == 0 || tmp_u64 > G_MAXINT) {
322                                                 ret = SR_ERR_DATA;
323                                                 break;
324                                         }
325                                         ch = g_slist_nth_data(sdi->channels, tmp_u64 - 1);
326                                         if (!ch) {
327                                                 ret = SR_ERR_DATA;
328                                                 break;
329                                         }
330                                         val = g_key_file_get_string(kf, sections[i],
331                                                         keys[j], &error);
332                                         if (!val) {
333                                                 ret = SR_ERR_DATA;
334                                                 break;
335                                         }
336                                         /* sr_session_save() */
337                                         sr_dev_channel_name_set(ch, val);
338                                         g_free(val);
339                                         sr_dev_channel_enable(ch, TRUE);
340                                 } else if (!strncmp(keys[j], "analog", 6)) {
341                                         tmp_u64 = g_ascii_strtoull(keys[j]+6, NULL, 10);
342                                         if (!sdi || tmp_u64 == 0 || tmp_u64 > G_MAXINT) {
343                                                 ret = SR_ERR_DATA;
344                                                 break;
345                                         }
346                                         ch = NULL;
347                                         for (l = sdi->channels; l; l = l->next) {
348                                                 ch = l->data;
349                                                 if ((guint64)ch->index == tmp_u64 - 1)
350                                                         break;
351                                                 else
352                                                         ch = NULL;
353                                         }
354                                         if (!ch) {
355                                                 ret = SR_ERR_DATA;
356                                                 break;
357                                         }
358                                         val = g_key_file_get_string(kf, sections[i],
359                                                         keys[j], &error);
360                                         if (!val) {
361                                                 ret = SR_ERR_DATA;
362                                                 break;
363                                         }
364                                         /* sr_session_save() */
365                                         sr_dev_channel_name_set(ch, val);
366                                         g_free(val);
367                                         sr_dev_channel_enable(ch, TRUE);
368                                 }
369                         }
370                         g_strfreev(keys);
371                 }
372         }
373         g_strfreev(sections);
374         g_key_file_free(kf);
375
376         if (error) {
377                 sr_err("Failed to parse metadata: %s", error->message);
378                 g_error_free(error);
379         }
380         return ret;
381 }
382
383 /** @} */