libsigrok  0.3.0
sigrok hardware access and backend library
session_file.c
Go to the documentation of this file.
00001 /*
00002  * This file is part of the libsigrok project.
00003  *
00004  * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
00005  *
00006  * This program is free software: you can redistribute it and/or modify
00007  * it under the terms of the GNU General Public License as published by
00008  * the Free Software Foundation, either version 3 of the License, or
00009  * (at your option) any later version.
00010  *
00011  * This program is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  * GNU General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU General Public License
00017  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00018  */
00019 
00020 #include <string.h>
00021 #include <stdlib.h>
00022 #include <unistd.h>
00023 #include <zip.h>
00024 #include <sys/types.h>
00025 #include <sys/stat.h>
00026 #include <errno.h>
00027 #include <glib.h>
00028 #include <glib/gstdio.h>
00029 #include "config.h" /* Needed for PACKAGE_VERSION and others. */
00030 #include "libsigrok.h"
00031 #include "libsigrok-internal.h"
00032 
00033 /** @cond PRIVATE */
00034 #define LOG_PREFIX "session-file"
00035 /** @endcond */
00036 
00037 /**
00038  * @file
00039  *
00040  * Loading and saving libsigrok session files.
00041  */
00042 
00043 /**
00044  * @addtogroup grp_session
00045  *
00046  * @{
00047  */
00048 
00049 extern struct sr_session *session;
00050 extern SR_PRIV struct sr_dev_driver session_driver;
00051 
00052 /** @private */
00053 SR_PRIV int sr_sessionfile_check(const char *filename)
00054 {
00055         struct stat st;
00056         struct zip *archive;
00057         struct zip_file *zf;
00058         struct zip_stat zs;
00059         int version, ret;
00060         char s[11];
00061 
00062         if (!filename)
00063                 return SR_ERR_ARG;
00064 
00065         if (stat(filename, &st) == -1) {
00066                 sr_err("Couldn't stat %s: %s", filename, strerror(errno));
00067                 return SR_ERR;
00068         }
00069 
00070         if (!(archive = zip_open(filename, 0, &ret)))
00071                 /* No logging: this can be used just to check if it's
00072                  * a sigrok session file or not. */
00073                 return SR_ERR;
00074 
00075         /* check "version" */
00076         version = 0;
00077         if (!(zf = zip_fopen(archive, "version", 0))) {
00078                 sr_dbg("Not a sigrok session file: no version found.");
00079                 return SR_ERR;
00080         }
00081         if ((ret = zip_fread(zf, s, 10)) == -1)
00082                 return SR_ERR;
00083         zip_fclose(zf);
00084         s[ret] = 0;
00085         version = strtoull(s, NULL, 10);
00086         if (version > 2) {
00087                 sr_dbg("Cannot handle sigrok session file version %d.", version);
00088                 return SR_ERR;
00089         }
00090         sr_spew("Detected sigrok session file version %d.", version);
00091 
00092         /* read "metadata" */
00093         if (zip_stat(archive, "metadata", 0, &zs) == -1) {
00094                 sr_dbg("Not a valid sigrok session file.");
00095                 return SR_ERR;
00096         }
00097 
00098         return SR_OK;
00099 }
00100 
00101 /**
00102  * Load the session from the specified filename.
00103  *
00104  * @param filename The name of the session file to load. Must not be NULL.
00105  *
00106  * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments,
00107  *         SR_ERR_MALLOC upon memory allocation errors, or SR_ERR upon
00108  *         other errors.
00109  */
00110 SR_API int sr_session_load(const char *filename)
00111 {
00112         GKeyFile *kf;
00113         GPtrArray *capturefiles;
00114         struct zip *archive;
00115         struct zip_file *zf;
00116         struct zip_stat zs;
00117         struct sr_dev_inst *sdi;
00118         struct sr_channel *ch;
00119         int ret, channelnum, devcnt, i, j;
00120         uint64_t tmp_u64, total_channels, enabled_channels, p;
00121         char **sections, **keys, *metafile, *val;
00122         char channelname[SR_MAX_CHANNELNAME_LEN + 1];
00123 
00124         if ((ret = sr_sessionfile_check(filename)) != SR_OK)
00125                 return ret;
00126 
00127         if (!(archive = zip_open(filename, 0, &ret)))
00128                 return SR_ERR;
00129 
00130         if (zip_stat(archive, "metadata", 0, &zs) == -1)
00131                 return SR_ERR;
00132 
00133         if (!(metafile = g_try_malloc(zs.size))) {
00134                 sr_err("%s: metafile malloc failed", __func__);
00135                 return SR_ERR_MALLOC;
00136         }
00137 
00138         zf = zip_fopen_index(archive, zs.index, 0);
00139         zip_fread(zf, metafile, zs.size);
00140         zip_fclose(zf);
00141 
00142         kf = g_key_file_new();
00143         if (!g_key_file_load_from_data(kf, metafile, zs.size, 0, NULL)) {
00144                 sr_dbg("Failed to parse metadata.");
00145                 return SR_ERR;
00146         }
00147 
00148         sr_session_new();
00149 
00150         devcnt = 0;
00151         capturefiles = g_ptr_array_new_with_free_func(g_free);
00152         sections = g_key_file_get_groups(kf, NULL);
00153         for (i = 0; sections[i]; i++) {
00154                 if (!strcmp(sections[i], "global"))
00155                         /* nothing really interesting in here yet */
00156                         continue;
00157                 if (!strncmp(sections[i], "device ", 7)) {
00158                         /* device section */
00159                         sdi = NULL;
00160                         enabled_channels = total_channels = 0;
00161                         keys = g_key_file_get_keys(kf, sections[i], NULL, NULL);
00162                         for (j = 0; keys[j]; j++) {
00163                                 val = g_key_file_get_string(kf, sections[i], keys[j], NULL);
00164                                 if (!strcmp(keys[j], "capturefile")) {
00165                                         sdi = sr_dev_inst_new(devcnt, SR_ST_ACTIVE, NULL, NULL, NULL);
00166                                         sdi->driver = &session_driver;
00167                                         if (devcnt == 0)
00168                                                 /* first device, init the driver */
00169                                                 sdi->driver->init(NULL);
00170                                         sr_dev_open(sdi);
00171                                         sr_session_dev_add(sdi);
00172                                         sdi->driver->config_set(SR_CONF_SESSIONFILE,
00173                                                         g_variant_new_string(filename), sdi, NULL);
00174                                         sdi->driver->config_set(SR_CONF_CAPTUREFILE,
00175                                                         g_variant_new_string(val), sdi, NULL);
00176                                         g_ptr_array_add(capturefiles, val);
00177                                 } else if (!strcmp(keys[j], "samplerate")) {
00178                                         sr_parse_sizestring(val, &tmp_u64);
00179                                         sdi->driver->config_set(SR_CONF_SAMPLERATE,
00180                                                         g_variant_new_uint64(tmp_u64), sdi, NULL);
00181                                 } else if (!strcmp(keys[j], "unitsize")) {
00182                                         tmp_u64 = strtoull(val, NULL, 10);
00183                                         sdi->driver->config_set(SR_CONF_CAPTURE_UNITSIZE,
00184                                                         g_variant_new_uint64(tmp_u64), sdi, NULL);
00185                                 } else if (!strcmp(keys[j], "total probes")) {
00186                                         total_channels = strtoull(val, NULL, 10);
00187                                         sdi->driver->config_set(SR_CONF_NUM_LOGIC_CHANNELS,
00188                                                         g_variant_new_uint64(total_channels), sdi, NULL);
00189                                         for (p = 0; p < total_channels; p++) {
00190                                                 snprintf(channelname, SR_MAX_CHANNELNAME_LEN, "%" PRIu64, p);
00191                                                 if (!(ch = sr_channel_new(p, SR_CHANNEL_LOGIC, TRUE,
00192                                                                 channelname)))
00193                                                         return SR_ERR;
00194                                                 sdi->channels = g_slist_append(sdi->channels, ch);
00195                                         }
00196                                 } else if (!strncmp(keys[j], "probe", 5)) {
00197                                         if (!sdi)
00198                                                 continue;
00199                                         enabled_channels++;
00200                                         tmp_u64 = strtoul(keys[j]+5, NULL, 10);
00201                                         /* sr_session_save() */
00202                                         sr_dev_channel_name_set(sdi, tmp_u64 - 1, val);
00203                                 } else if (!strncmp(keys[j], "trigger", 7)) {
00204                                         channelnum = strtoul(keys[j]+7, NULL, 10);
00205                                         sr_dev_trigger_set(sdi, channelnum, val);
00206                                 }
00207                         }
00208                         g_strfreev(keys);
00209                         /* Disable channels not specifically listed. */
00210                         if (total_channels)
00211                                 for (p = enabled_channels; p < total_channels; p++)
00212                                         sr_dev_channel_enable(sdi, p, FALSE);
00213                 }
00214                 devcnt++;
00215         }
00216         g_strfreev(sections);
00217         g_key_file_free(kf);
00218 
00219         return SR_OK;
00220 }
00221 
00222 /**
00223  * Save the current session to the specified file.
00224  *
00225  * @param filename The name of the filename to save the current session as.
00226  *                 Must not be NULL.
00227  * @param sdi The device instance from which the data was captured.
00228  * @param buf The data to be saved.
00229  * @param unitsize The number of bytes per sample.
00230  * @param units The number of samples.
00231  *
00232  * @retval SR_OK Success
00233  * @retval SR_ERR_ARG Invalid arguments
00234  * @retval SR_ERR Other errors
00235  *
00236  * @since 0.2.0
00237  */
00238 SR_API int sr_session_save(const char *filename, const struct sr_dev_inst *sdi,
00239                 unsigned char *buf, int unitsize, int units)
00240 {
00241         struct sr_channel *ch;
00242         GSList *l;
00243         GVariant *gvar;
00244         uint64_t samplerate;
00245         int cnt, ret;
00246         char **channel_names;
00247 
00248         samplerate = 0;
00249         if (sr_dev_has_option(sdi, SR_CONF_SAMPLERATE)) {
00250                 if (sr_config_get(sdi->driver, sdi, NULL,
00251                                         SR_CONF_SAMPLERATE, &gvar) == SR_OK) {
00252                         samplerate = g_variant_get_uint64(gvar);
00253                         g_variant_unref(gvar);
00254                 }
00255         }
00256 
00257         channel_names = g_malloc0(sizeof(char *) * (g_slist_length(sdi->channels) + 1));
00258         cnt = 0;
00259         for (l = sdi->channels; l; l = l->next) {
00260                 ch = l->data;
00261                 if (ch->type != SR_CHANNEL_LOGIC)
00262                         continue;
00263                 if (ch->enabled != TRUE)
00264                         continue;
00265                 if (!ch->name)
00266                         continue;
00267                 /* Just borrowing the ptr. */
00268                 channel_names[cnt++] = ch->name;
00269         }
00270 
00271         if ((ret = sr_session_save_init(filename, samplerate, channel_names)) != SR_OK)
00272                 return ret;
00273 
00274         ret = sr_session_append(filename, buf, unitsize, units);
00275 
00276         return ret;
00277 }
00278 
00279 /**
00280  * Initialize a saved session file.
00281  *
00282  * @param filename The name of the filename to save the current session as.
00283  *                 Must not be NULL.
00284  * @param samplerate The samplerate to store for this session.
00285  * @param channels A NULL-terminated array of strings containing the names
00286  * of all the channels active in this session.
00287  *
00288  * @retval SR_OK Success
00289  * @retval SR_ERR_ARG Invalid arguments
00290  * @retval SR_ERR Other errors
00291  *
00292  * @since 0.3.0
00293  */
00294 SR_API int sr_session_save_init(const char *filename, uint64_t samplerate,
00295                 char **channels)
00296 {
00297         FILE *meta;
00298         struct zip *zipfile;
00299         struct zip_source *versrc, *metasrc;
00300         int tmpfile, cnt, ret, i;
00301         char version[1], metafile[32], *s;
00302 
00303         if (!filename) {
00304                 sr_err("%s: filename was NULL", __func__);
00305                 return SR_ERR_ARG;
00306         }
00307 
00308         /* Quietly delete it first, libzip wants replace ops otherwise. */
00309         unlink(filename);
00310         if (!(zipfile = zip_open(filename, ZIP_CREATE, &ret)))
00311                 return SR_ERR;
00312 
00313         /* "version" */
00314         version[0] = '2';
00315         if (!(versrc = zip_source_buffer(zipfile, version, 1, 0)))
00316                 return SR_ERR;
00317         if (zip_add(zipfile, "version", versrc) == -1) {
00318                 sr_info("error saving version into zipfile: %s",
00319                         zip_strerror(zipfile));
00320                 return SR_ERR;
00321         }
00322 
00323         /* init "metadata" */
00324         strcpy(metafile, "sigrok-meta-XXXXXX");
00325         if ((tmpfile = g_mkstemp(metafile)) == -1)
00326                 return SR_ERR;
00327         close(tmpfile);
00328         meta = g_fopen(metafile, "wb");
00329         fprintf(meta, "[global]\n");
00330         fprintf(meta, "sigrok version = %s\n", PACKAGE_VERSION);
00331 
00332         /* metadata */
00333         fprintf(meta, "[device 1]\n");
00334 
00335         /* metadata */
00336         fprintf(meta, "capturefile = logic-1\n");
00337         cnt = 0;
00338         for (i = 0; channels[i]; i++)
00339                 cnt++;
00340         fprintf(meta, "total probes = %d\n", cnt);
00341         s = sr_samplerate_string(samplerate);
00342         fprintf(meta, "samplerate = %s\n", s);
00343         g_free(s);
00344 
00345         for (i = 0; channels[i]; i++)
00346                 fprintf(meta, "probe%d = %s\n", i + 1, channels[i]);
00347 
00348         fclose(meta);
00349 
00350         if (!(metasrc = zip_source_file(zipfile, metafile, 0, -1))) {
00351                 unlink(metafile);
00352                 return SR_ERR;
00353         }
00354         if (zip_add(zipfile, "metadata", metasrc) == -1) {
00355                 unlink(metafile);
00356                 return SR_ERR;
00357         }
00358 
00359         if ((ret = zip_close(zipfile)) == -1) {
00360                 sr_info("error saving zipfile: %s", zip_strerror(zipfile));
00361                 unlink(metafile);
00362                 return SR_ERR;
00363         }
00364 
00365         unlink(metafile);
00366 
00367         return SR_OK;
00368 }
00369 
00370 /**
00371  * Append data to an existing session file.
00372  *
00373  * The session file must have been created with sr_session_save_init()
00374  * or sr_session_save() beforehand.
00375  *
00376  * @param filename The name of the filename to append to. Must not be NULL.
00377  * @param buf The data to be appended.
00378  * @param unitsize The number of bytes per sample.
00379  * @param units The number of samples.
00380  *
00381  * @retval SR_OK Success
00382  * @retval SR_ERR_ARG Invalid arguments
00383  * @retval SR_ERR Other errors
00384  *
00385  * @since 0.3.0
00386  */
00387 SR_API int sr_session_append(const char *filename, unsigned char *buf,
00388                 int unitsize, int units)
00389 {
00390         struct zip *archive;
00391         struct zip_source *logicsrc;
00392         zip_int64_t num_files;
00393         struct zip_file *zf;
00394         struct zip_stat zs;
00395         struct zip_source *metasrc;
00396         GKeyFile *kf;
00397         GError *error;
00398         gsize len;
00399         int chunk_num, next_chunk_num, tmpfile, ret, i;
00400         const char *entry_name;
00401         char *metafile, tmpname[32], chunkname[16];
00402 
00403         if ((ret = sr_sessionfile_check(filename)) != SR_OK)
00404                 return ret;
00405 
00406         if (!(archive = zip_open(filename, 0, &ret)))
00407                 return SR_ERR;
00408 
00409         if (zip_stat(archive, "metadata", 0, &zs) == -1)
00410                 return SR_ERR;
00411 
00412         metafile = g_malloc(zs.size);
00413         zf = zip_fopen_index(archive, zs.index, 0);
00414         zip_fread(zf, metafile, zs.size);
00415         zip_fclose(zf);
00416 
00417         /*
00418          * If the file was only initialized but doesn't yet have any
00419          * data it in, it won't have a unitsize field in metadata yet.
00420          */
00421         error = NULL;
00422         kf = g_key_file_new();
00423         if (!g_key_file_load_from_data(kf, metafile, zs.size, 0, &error)) {
00424                 sr_err("Failed to parse metadata: %s.", error->message);
00425                 return SR_ERR;
00426         }
00427         g_free(metafile);
00428         tmpname[0] = '\0';
00429         if (!g_key_file_has_key(kf, "device 1", "unitsize", &error)) {
00430                 if (error && error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
00431                         sr_err("Failed to check unitsize key: %s", error ? error->message : "?");
00432                         return SR_ERR;
00433                 }
00434                 /* Add unitsize field. */
00435                 g_key_file_set_integer(kf, "device 1", "unitsize", unitsize);
00436                 metafile = g_key_file_to_data(kf, &len, &error);
00437                 strcpy(tmpname, "sigrok-meta-XXXXXX");
00438                 if ((tmpfile = g_mkstemp(tmpname)) == -1)
00439                         return SR_ERR;
00440                 if (write(tmpfile, metafile, len) < 0) {
00441                         sr_dbg("Failed to create new metadata: %s", strerror(errno));
00442                         g_free(metafile);
00443                         unlink(tmpname);
00444                         return SR_ERR;
00445                 }
00446                 close(tmpfile);
00447                 if (!(metasrc = zip_source_file(archive, tmpname, 0, -1))) {
00448                         sr_err("Failed to create zip source for metadata.");
00449                         g_free(metafile);
00450                         unlink(tmpname);
00451                         return SR_ERR;
00452                 }
00453                 if (zip_replace(archive, zs.index, metasrc) == -1) {
00454                         sr_err("Failed to replace metadata file.");
00455                         g_free(metafile);
00456                         unlink(tmpname);
00457                         return SR_ERR;
00458                 }
00459                 g_free(metafile);
00460         }
00461         g_key_file_free(kf);
00462 
00463         next_chunk_num = 1;
00464         num_files = zip_get_num_entries(archive, 0);
00465         for (i = 0; i < num_files; i++) {
00466                 entry_name = zip_get_name(archive, i, 0);
00467                 if (strncmp(entry_name, "logic-1", 7))
00468                         continue;
00469                 if (strlen(entry_name) == 7) {
00470                         /* This file has no extra chunks, just a single "logic-1".
00471                          * Rename it to "logic-1-1" * and continue with chunk 2. */
00472                         if (zip_rename(archive, i, "logic-1-1") == -1) {
00473                                 sr_err("Failed to rename 'logic-1' to 'logic-1-1'.");
00474                                 unlink(tmpname);
00475                                 return SR_ERR;
00476                         }
00477                         next_chunk_num = 2;
00478                         break;
00479                 } else if (strlen(entry_name) > 8 && entry_name[7] == '-') {
00480                         chunk_num = strtoull(entry_name + 8, NULL, 10);
00481                         if (chunk_num >= next_chunk_num)
00482                                 next_chunk_num = chunk_num + 1;
00483                 }
00484         }
00485         snprintf(chunkname, 15, "logic-1-%d", next_chunk_num);
00486         if (!(logicsrc = zip_source_buffer(archive, buf, units * unitsize, FALSE))) {
00487                 unlink(tmpname);
00488                 return SR_ERR;
00489         }
00490         if (zip_add(archive, chunkname, logicsrc) == -1) {
00491                 unlink(tmpname);
00492                 return SR_ERR;
00493         }
00494         if ((ret = zip_close(archive)) == -1) {
00495                 sr_info("error saving session file: %s", zip_strerror(archive));
00496                 unlink(tmpname);
00497                 return SR_ERR;
00498         }
00499         unlink(tmpname);
00500 
00501         return SR_OK;
00502 }
00503 
00504 /** @} */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines