]> sigrok.org Git - libsigrok.git/blame - output/gnuplot.c
rigol-ds1xx2: fix bitrot in device cleanup code
[libsigrok.git] / output / gnuplot.c
CommitLineData
e2ad47b5 1/*
50985c20 2 * This file is part of the libsigrok project.
e2ad47b5
UH
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdlib.h>
22#include <string.h>
23#include <glib.h>
545f9786 24#include "config.h" /* Needed for PACKAGE_STRING and others. */
45c59c8b
BV
25#include "libsigrok.h"
26#include "libsigrok-internal.h"
e2ad47b5 27
29a27196
UH
28/* Message logging helpers with subsystem-specific prefix string. */
29#define LOG_PREFIX "output/gnuplot: "
30#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
31#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
32#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
33#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
34#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
35#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
a944a84b 36
e2ad47b5 37struct context {
afc8e4de
UH
38 unsigned int num_enabled_probes;
39 unsigned int unitsize;
e2ad47b5 40 char *header;
9c178ffa 41 uint8_t *old_sample;
e2ad47b5
UH
42};
43
d078d2e5 44static const char *gnuplot_header = "\
e2ad47b5
UH
45# Sample data in space-separated columns format usable by gnuplot\n\
46#\n\
5cca9adb 47# Generated by: %s on %s%s\
d4ae8eaa 48# Period: %s\n\
114fb93f
UH
49#\n\
50# Column\tProbe\n\
51# -------------------------------------\
52----------------------------------------\n\
53# 0\t\tSample counter (for internal gnuplot purposes)\n%s\n";
e2ad47b5 54
d078d2e5 55static const char *gnuplot_header_comment = "\
7aae7462
BV
56# Comment: Acquisition with %d/%d probes at %s\n";
57
f50f3f40 58static int init(struct sr_output *o)
e2ad47b5 59{
e2ad47b5 60 struct context *ctx;
1afe8989 61 struct sr_probe *probe;
e2ad47b5 62 GSList *l;
ec4063b8
BV
63 GVariant *gvar;
64 uint64_t samplerate;
afc8e4de 65 unsigned int i;
90f680ff 66 int num_probes;
d4ae8eaa 67 char *c, *frequency_s;
7aae7462 68 char wbuf[1000], comment[128];
5cca9adb 69 time_t t;
e2ad47b5 70
20ebd1fe 71 if (!o) {
a944a84b 72 sr_err("%s: o was NULL", __func__);
20ebd1fe
UH
73 return SR_ERR_ARG;
74 }
75
5c3c1241 76 if (!o->sdi) {
a944a84b 77 sr_err("%s: o->sdi was NULL", __func__);
20ebd1fe
UH
78 return SR_ERR_ARG;
79 }
80
133a37bf 81 if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
a944a84b 82 sr_err("%s: ctx malloc failed", __func__);
e46b8fb1 83 return SR_ERR_MALLOC;
20ebd1fe 84 }
a821069b 85
e2ad47b5
UH
86 o->internal = ctx;
87 ctx->num_enabled_probes = 0;
5c3c1241 88 for (l = o->sdi->probes; l; l = l->next) {
ec4063b8 89 probe = l->data;
deb09083
ML
90 if (probe->enabled)
91 ctx->num_enabled_probes++;
e2ad47b5 92 }
e2ad47b5
UH
93 ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
94
5c3c1241 95 num_probes = g_slist_length(o->sdi->probes);
a821069b 96 comment[0] = '\0';
ec4063b8 97 samplerate = 0;
af51a771
BV
98 if (sr_config_get(o->sdi->driver, SR_CONF_SAMPLERATE, &gvar,
99 o->sdi) == SR_OK) {
ec4063b8 100 samplerate = g_variant_get_uint64(gvar);
af51a771 101 g_variant_unref(gvar);
ec4063b8 102 if (!(frequency_s = sr_samplerate_string(samplerate))) {
a944a84b 103 sr_err("%s: sr_samplerate_string failed", __func__);
133a37bf 104 g_free(ctx);
e46b8fb1 105 return SR_ERR;
a821069b
UH
106 }
107 snprintf(comment, 127, gnuplot_header_comment,
d4ae8eaa 108 ctx->num_enabled_probes, num_probes, frequency_s);
133a37bf 109 g_free(frequency_s);
7aae7462 110 }
e2ad47b5
UH
111
112 /* Columns / channels */
113 wbuf[0] = '\0';
deb09083
ML
114 for (i = 0, l = o->sdi->probes; l; l = l->next, i++) {
115 probe = l->data;
116 if (!probe->enabled)
117 continue;
054e6709 118 c = (char *)&wbuf + strlen((const char *)&wbuf);
deb09083 119 sprintf(c, "# %d\t\t%s\n", i + 1, probe->name);
e2ad47b5
UH
120 }
121
ec4063b8 122 if (!(frequency_s = sr_period_string(samplerate))) {
a944a84b 123 sr_err("%s: sr_period_string failed", __func__);
133a37bf 124 g_free(ctx);
e46b8fb1 125 return SR_ERR;
d4ae8eaa 126 }
20ebd1fe 127
5cca9adb 128 t = time(NULL);
90f680ff
ML
129 ctx->header = g_strdup_printf(gnuplot_header, PACKAGE_STRING,
130 ctime(&t), comment, frequency_s, (char *)&wbuf);
133a37bf 131 g_free(frequency_s);
e2ad47b5 132
9c178ffa
ML
133 if (!(ctx->old_sample = g_try_malloc0(ctx->unitsize))) {
134 sr_err("%s: ctx->old_sample malloc failed", __func__);
135 g_free(ctx->header);
136 g_free(ctx);
137 return SR_ERR_MALLOC;
138 }
139
e2ad47b5
UH
140 return 0;
141}
142
054e6709 143static int event(struct sr_output *o, int event_type, uint8_t **data_out,
e2ad47b5
UH
144 uint64_t *length_out)
145{
20ebd1fe 146 if (!o) {
a944a84b 147 sr_err("%s: o was NULL", __func__);
20ebd1fe
UH
148 return SR_ERR_ARG;
149 }
150
151 if (!data_out) {
a944a84b 152 sr_err("%s: data_out was NULL", __func__);
20ebd1fe
UH
153 return SR_ERR_ARG;
154 }
155
156 if (!length_out) {
a944a84b 157 sr_err("%s: length_out was NULL", __func__);
20ebd1fe
UH
158 return SR_ERR_ARG;
159 }
160
99c1fc59 161 switch (event_type) {
5a2326a7 162 case SR_DF_TRIGGER:
20ebd1fe 163 /* TODO: Can a trigger mark be in a gnuplot data file? */
e2ad47b5 164 break;
5a2326a7 165 case SR_DF_END:
133a37bf 166 g_free(o->internal);
e2ad47b5
UH
167 o->internal = NULL;
168 break;
20ebd1fe 169 default:
a944a84b 170 sr_err("%s: unsupported event type: %d", __func__, event_type);
20ebd1fe 171 break;
e2ad47b5
UH
172 }
173
9ab95e54
BV
174 *data_out = NULL;
175 *length_out = 0;
176
e46b8fb1 177 return SR_OK;
e2ad47b5
UH
178}
179
054e6709
UH
180static int data(struct sr_output *o, const uint8_t *data_in,
181 uint64_t length_in, uint8_t **data_out, uint64_t *length_out)
e2ad47b5
UH
182{
183 struct context *ctx;
d4ae8eaa 184 unsigned int max_linelen, outsize, p, curbit, i;
9c178ffa
ML
185 const uint8_t *sample;
186 static uint64_t samplecount = 0;
054e6709 187 uint8_t *outbuf, *c;
e2ad47b5 188
20ebd1fe 189 if (!o) {
a944a84b 190 sr_err("%s: o was NULL", __func__);
20ebd1fe
UH
191 return SR_ERR_ARG;
192 }
193
194 if (!o->internal) {
a944a84b 195 sr_err("%s: o->internal was NULL", __func__);
20ebd1fe
UH
196 return SR_ERR_ARG;
197 }
198
199 if (!data_in) {
a944a84b 200 sr_err("%s: data_in was NULL", __func__);
20ebd1fe
UH
201 return SR_ERR_ARG;
202 }
203
204 if (!data_out) {
a944a84b 205 sr_err("%s: data_out was NULL", __func__);
20ebd1fe
UH
206 return SR_ERR_ARG;
207 }
208
209 if (!length_out) {
a944a84b 210 sr_err("%s: length_out was NULL", __func__);
20ebd1fe
UH
211 return SR_ERR_ARG;
212 }
213
e2ad47b5 214 ctx = o->internal;
d4ae8eaa
BV
215 max_linelen = 16 + ctx->num_enabled_probes * 2;
216 outsize = length_in / ctx->unitsize * max_linelen;
e273a904 217 if (ctx->header)
d4ae8eaa 218 outsize += strlen(ctx->header);
a821069b 219
133a37bf 220 if (!(outbuf = g_try_malloc0(outsize))) {
a944a84b 221 sr_err("%s: outbuf malloc failed", __func__);
e46b8fb1 222 return SR_ERR_MALLOC;
20ebd1fe 223 }
a821069b
UH
224
225 outbuf[0] = '\0';
e2ad47b5
UH
226 if (ctx->header) {
227 /* The header is still here, this must be the first packet. */
054e6709 228 strncpy((char *)outbuf, ctx->header, outsize);
133a37bf 229 g_free(ctx->header);
e2ad47b5 230 ctx->header = NULL;
e2ad47b5
UH
231 }
232
607b58de 233 for (i = 0; i <= length_in - ctx->unitsize; i += ctx->unitsize) {
50959ddc 234
9c178ffa 235 sample = data_in + i;
e2ad47b5 236
50959ddc
UH
237 /*
238 * Don't output the same samples multiple times. However, make
239 * sure to output at least the first and last sample.
240 */
9c178ffa
ML
241 if (samplecount++ != 0 &&
242 !memcmp(sample, ctx->old_sample, ctx->unitsize)) {
50959ddc
UH
243 if (i != (length_in - ctx->unitsize))
244 continue;
245 }
9c178ffa 246 memcpy(ctx->old_sample, sample, ctx->unitsize);
50959ddc 247
e2ad47b5 248 /* The first column is a counter (needed for gnuplot). */
054e6709
UH
249 c = outbuf + strlen((const char *)outbuf);
250 sprintf((char *)c, "%" PRIu64 "\t", samplecount++);
e2ad47b5
UH
251
252 /* The next columns are the values of all channels. */
253 for (p = 0; p < ctx->num_enabled_probes; p++) {
9c178ffa 254 curbit = (sample[p / 8] & ((uint8_t) (1 << (p % 8)))) >> (p % 8);
054e6709
UH
255 c = outbuf + strlen((const char *)outbuf);
256 sprintf((char *)c, "%d ", curbit);
e2ad47b5
UH
257 }
258
054e6709
UH
259 c = outbuf + strlen((const char *)outbuf);
260 sprintf((char *)c, "\n");
e2ad47b5
UH
261 }
262
263 *data_out = outbuf;
054e6709 264 *length_out = strlen((const char *)outbuf);
e2ad47b5 265
e46b8fb1 266 return SR_OK;
e2ad47b5
UH
267}
268
7c1d391c 269SR_PRIV struct sr_output_format output_gnuplot = {
cdb3573c 270 .id = "gnuplot",
d494a4aa
UH
271 .description = "Gnuplot",
272 .df_type = SR_DF_LOGIC,
273 .init = init,
274 .data = data,
275 .event = event,
77b45442 276};