libsigrok/output/gnuplot.c

225 lines
5.7 KiB
C
Raw Normal View History

2010-04-06 12:38:47 +00:00
/*
2013-04-23 20:24:30 +00:00
* This file is part of the libsigrok project.
2010-04-06 12:38:47 +00:00
*
* Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include "config.h" /* Needed for PACKAGE_STRING and others. */
#include "libsigrok.h"
#include "libsigrok-internal.h"
2010-04-06 12:38:47 +00:00
#define LOG_PREFIX "output/gnuplot"
2010-04-06 12:38:47 +00:00
struct context {
unsigned int num_enabled_channels;
2014-04-16 13:26:10 +00:00
uint64_t samplecount;
GString *header;
uint8_t *prevsample;
int *channel_index;
2010-04-06 12:38:47 +00:00
};
2011-02-22 22:12:41 +00:00
static const char *gnuplot_header = "\
2010-04-06 12:38:47 +00:00
# Sample data in space-separated columns format usable by gnuplot\n\
#\n\
# Generated by: %s on %s%s\
2011-01-08 14:48:39 +00:00
# Period: %s\n\
2010-05-09 18:27:11 +00:00
#\n\
# Column\tChannel\n\
2010-05-09 18:27:11 +00:00
# -------------------------------------\
----------------------------------------\n\
# 0\t\tSample counter (for internal gnuplot purposes)\n%s\n";
2010-04-06 12:38:47 +00:00
2011-02-22 22:12:41 +00:00
static const char *gnuplot_header_comment = "\
# Comment: Acquisition with %d/%d channels at %s\n";
static int init(struct sr_output *o)
2010-04-06 12:38:47 +00:00
{
struct context *ctx;
struct sr_channel *ch;
2010-04-06 12:38:47 +00:00
GSList *l;
GVariant *gvar;
uint64_t samplerate;
2014-04-16 13:26:10 +00:00
unsigned int i, j;
int num_channels;
2011-01-08 14:48:39 +00:00
char *c, *frequency_s;
char wbuf[1000], comment[128];
time_t t;
2010-04-06 12:38:47 +00:00
2014-04-16 13:26:10 +00:00
if (!o)
2011-04-10 14:46:05 +00:00
return SR_ERR_ARG;
2014-04-16 13:26:10 +00:00
if (!o->sdi)
2011-04-10 14:46:05 +00:00
return SR_ERR_ARG;
2014-04-16 13:26:10 +00:00
if (!(ctx = g_malloc0(sizeof(struct context))))
2011-01-29 15:23:12 +00:00
return SR_ERR_MALLOC;
2010-05-09 12:35:02 +00:00
2010-04-06 12:38:47 +00:00
o->internal = ctx;
ctx->num_enabled_channels = 0;
for (l = o->sdi->channels; l; l = l->next) {
ch = l->data;
if (ch->type != SR_CHANNEL_LOGIC)
continue;
if (!ch->enabled)
continue;
ctx->num_enabled_channels++;
2010-04-06 12:38:47 +00:00
}
if (ctx->num_enabled_channels <= 0) {
2014-04-16 13:26:10 +00:00
sr_err("No logic channel enabled.");
return SR_ERR;
}
2014-04-16 13:26:10 +00:00
ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
2010-04-06 12:38:47 +00:00
num_channels = g_slist_length(o->sdi->channels);
2010-05-09 12:35:02 +00:00
comment[0] = '\0';
samplerate = 0;
if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
&gvar) == SR_OK) {
samplerate = g_variant_get_uint64(gvar);
g_variant_unref(gvar);
if (!(frequency_s = sr_samplerate_string(samplerate))) {
sr_err("%s: sr_samplerate_string failed", __func__);
g_free(ctx);
2011-01-29 15:23:12 +00:00
return SR_ERR;
2010-05-09 12:35:02 +00:00
}
snprintf(comment, 127, gnuplot_header_comment,
ctx->num_enabled_channels, num_channels, frequency_s);
g_free(frequency_s);
}
2010-04-06 12:38:47 +00:00
/* Columns / channels */
wbuf[0] = '\0';
2014-04-16 13:26:10 +00:00
for (i = 0, j = 0, l = o->sdi->channels; l; l = l->next, i++) {
ch = l->data;
if (ch->type != SR_CHANNEL_LOGIC)
continue;
if (!ch->enabled)
continue;
c = (char *)&wbuf + strlen((const char *)&wbuf);
sprintf(c, "# %d\t\t%s\n", i + 1, ch->name);
2014-04-16 13:26:10 +00:00
/* Remember the enabled channel's index while we're at it. */
ctx->channel_index[j++] = i;
2010-04-06 12:38:47 +00:00
}
if (!(frequency_s = sr_period_string(samplerate))) {
sr_err("%s: sr_period_string failed", __func__);
g_free(ctx);
2011-01-29 15:23:12 +00:00
return SR_ERR;
2011-01-08 14:48:39 +00:00
}
2011-04-10 14:46:05 +00:00
t = time(NULL);
2014-04-16 13:26:10 +00:00
ctx->header = g_string_sized_new(512);
g_string_printf(ctx->header, gnuplot_header, PACKAGE_STRING,
ctime(&t), comment, frequency_s, (char *)&wbuf);
g_free(frequency_s);
2010-04-06 12:38:47 +00:00
return 0;
}
2014-04-16 13:26:10 +00:00
static int receive(struct sr_output *o, const struct sr_dev_inst *sdi,
const struct sr_datafeed_packet *packet, GString **out)
2010-04-06 12:38:47 +00:00
{
2014-04-16 13:26:10 +00:00
const struct sr_datafeed_logic *logic;
2010-04-06 12:38:47 +00:00
struct context *ctx;
const uint8_t *sample;
2014-04-16 13:26:10 +00:00
unsigned int curbit, p, idx, i;
2010-04-06 12:38:47 +00:00
2014-04-16 13:26:10 +00:00
(void)sdi;
2011-04-10 14:46:05 +00:00
2014-04-16 13:26:10 +00:00
*out = NULL;
if (!o || !o->internal)
return SR_ERR_BUG;
2010-04-06 12:38:47 +00:00
ctx = o->internal;
2010-05-09 12:35:02 +00:00
2014-04-16 13:26:10 +00:00
if (packet->type != SR_DF_LOGIC)
return SR_OK;
logic = packet->payload;
if (!ctx->prevsample) {
/* Can't allocate this until we know the stream's unitsize. */
if (!(ctx->prevsample = g_malloc0(logic->unitsize))) {
g_free(ctx);
sr_err("%s: ctx->prevsample malloc failed", __func__);
return SR_ERR_MALLOC;
}
2011-04-10 14:46:05 +00:00
}
2010-05-09 12:35:02 +00:00
2010-04-06 12:38:47 +00:00
if (ctx->header) {
/* The header is still here, this must be the first packet. */
2014-04-16 13:26:10 +00:00
*out = ctx->header;
2010-04-06 12:38:47 +00:00
ctx->header = NULL;
2014-04-16 13:26:10 +00:00
ctx->samplecount = 0;
} else {
*out = g_string_sized_new(512);
2010-04-06 12:38:47 +00:00
}
2014-04-16 13:26:10 +00:00
for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
sample = logic->data + i;
ctx->samplecount++;
2010-04-06 12:38:47 +00:00
/*
2014-04-16 13:26:10 +00:00
* Don't output the same sample multiple times, but make
* sure to output at least the first and last sample.
*/
2014-04-16 13:26:10 +00:00
if (i > 0 && i < logic->length - logic->unitsize) {
if (!memcmp(sample, ctx->prevsample, logic->unitsize))
continue;
}
2014-04-16 13:26:10 +00:00
memcpy(ctx->prevsample, sample, logic->unitsize);
2010-04-06 12:38:47 +00:00
/* The first column is a counter (needed for gnuplot). */
2014-04-16 13:26:10 +00:00
g_string_append_printf(*out, "%" PRIu64 "\t", ctx->samplecount);
2010-04-06 12:38:47 +00:00
/* The next columns are the values of all channels. */
for (p = 0; p < ctx->num_enabled_channels; p++) {
2014-04-16 13:26:10 +00:00
idx = ctx->channel_index[p];
curbit = (sample[idx / 8] & ((uint8_t) (1 << (idx % 8)))) >> (idx % 8);
g_string_append_printf(*out, "%d ", curbit);
2010-04-06 12:38:47 +00:00
}
2014-04-16 13:26:10 +00:00
g_string_append_printf(*out, "\n");
2010-04-06 12:38:47 +00:00
}
2014-04-16 13:26:10 +00:00
return SR_OK;
}
static int cleanup(struct sr_output *o)
{
struct context *ctx;
if (!o || !o->internal)
return SR_ERR_BUG;
ctx = o->internal;
g_free(ctx->channel_index);
g_free(ctx->prevsample);
if (ctx->header)
g_string_free(ctx->header, TRUE);
g_free(ctx);
2010-04-06 12:38:47 +00:00
2011-01-29 15:23:12 +00:00
return SR_OK;
2010-04-06 12:38:47 +00:00
}
SR_PRIV struct sr_output_format output_gnuplot = {
.id = "gnuplot",
.description = "Gnuplot",
.init = init,
2014-04-16 13:26:10 +00:00
.receive = receive,
.cleanup = cleanup,
};