]> sigrok.org Git - libsigrok.git/blame - src/output/analog.c
analog: add support for negative number of digits
[libsigrok.git] / src / output / analog.c
CommitLineData
161a8a27 1/*
50985c20 2 * This file is part of the libsigrok project.
161a8a27
BV
3 *
4 * Copyright (C) 2012 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
6ec6c43b 20#include <config.h>
161a8a27
BV
21#include <stdlib.h>
22#include <string.h>
a944a84b 23#include <math.h>
161a8a27 24#include <glib.h>
c1aae900 25#include <libsigrok/libsigrok.h>
161a8a27 26#include "libsigrok-internal.h"
a944a84b 27
3544f848 28#define LOG_PREFIX "output/analog"
161a8a27
BV
29
30struct context {
ba7dd8bb
UH
31 int num_enabled_channels;
32 GPtrArray *channellist;
820c48f8 33 int digits;
2dbe445d 34 float *fdata;
820c48f8
BV
35};
36
37enum {
38 DIGITS_ALL,
39 DIGITS_SPEC,
161a8a27
BV
40};
41
a755b0e1 42static int init(struct sr_output *o, GHashTable *options)
161a8a27
BV
43{
44 struct context *ctx;
ba7dd8bb 45 struct sr_channel *ch;
161a8a27 46 GSList *l;
820c48f8 47 const char *s;
a944a84b 48
161a8a27
BV
49 if (!o || !o->sdi)
50 return SR_ERR_ARG;
51
91219afc 52 o->priv = ctx = g_malloc0(sizeof(struct context));
820c48f8
BV
53 s = g_variant_get_string(g_hash_table_lookup(options, "digits"), NULL);
54 if (!strcmp(s, "all"))
55 ctx->digits = DIGITS_ALL;
56 else
57 ctx->digits = DIGITS_SPEC;
161a8a27 58
ba7dd8bb
UH
59 /* Get the number of channels and their names. */
60 ctx->channellist = g_ptr_array_new();
61 for (l = o->sdi->channels; l; l = l->next) {
62 ch = l->data;
63 if (!ch || !ch->enabled)
161a8a27 64 continue;
ba7dd8bb
UH
65 g_ptr_array_add(ctx->channellist, ch->name);
66 ctx->num_enabled_channels++;
161a8a27 67 }
2dbe445d 68 ctx->fdata = NULL;
161a8a27 69
161a8a27
BV
70 return SR_OK;
71}
72
a755b0e1 73static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
dba3e682 74 GString **out)
161a8a27 75{
820c48f8 76 struct context *ctx;
edb691fc 77 const struct sr_datafeed_analog *analog;
ba7dd8bb 78 struct sr_channel *ch;
69e19dd7 79 GSList *l;
e02e9e6a
BV
80 float *fdata;
81 unsigned int i;
23bdb1c9 82 int num_channels, c, ret, digits;
a24da9a8 83 char *number, *suffix;
161a8a27 84
17f63de6 85 *out = NULL;
161a8a27 86 if (!o || !o->sdi)
17f63de6 87 return SR_ERR_ARG;
820c48f8 88 ctx = o->priv;
161a8a27 89
161a8a27 90 switch (packet->type) {
161a8a27 91 case SR_DF_FRAME_BEGIN:
17f63de6 92 *out = g_string_new("FRAME-BEGIN\n");
161a8a27
BV
93 break;
94 case SR_DF_FRAME_END:
17f63de6 95 *out = g_string_new("FRAME-END\n");
161a8a27 96 break;
edb691fc
UH
97 case SR_DF_ANALOG:
98 analog = packet->payload;
99 num_channels = g_slist_length(analog->meaning->channels);
2dbe445d 100 if (!(fdata = g_try_realloc(ctx->fdata,
edb691fc 101 analog->num_samples * num_channels * sizeof(float))))
e02e9e6a 102 return SR_ERR_MALLOC;
2dbe445d 103 ctx->fdata = fdata;
edb691fc 104 if ((ret = sr_analog_to_float(analog, fdata)) != SR_OK)
e02e9e6a
BV
105 return ret;
106 *out = g_string_sized_new(512);
edb691fc 107 if (analog->encoding->is_digits_decimal) {
820c48f8 108 if (ctx->digits == DIGITS_ALL)
edb691fc 109 digits = analog->encoding->digits;
820c48f8 110 else
edb691fc 111 digits = analog->spec->spec_digits;
820c48f8
BV
112 } else {
113 /* TODO we don't know how to print by number of bits yet. */
114 digits = 6;
115 }
edb691fc
UH
116 sr_analog_unit_to_string(analog, &suffix);
117 for (i = 0; i < analog->num_samples; i++) {
118 for (l = analog->meaning->channels, c = 0; l; l = l->next, c++) {
e02e9e6a
BV
119 ch = l->data;
120 g_string_append_printf(*out, "%s: ", ch->name);
28c95cc6 121 number = g_strdup_printf("%.*f", MAX(digits, 0),
222fdfd5 122 fdata[i * num_channels + c]);
820c48f8 123 g_string_append(*out, number);
a24da9a8 124 g_free(number);
820c48f8
BV
125 g_string_append(*out, " ");
126 g_string_append(*out, suffix);
127 g_string_append(*out, "\n");
161a8a27
BV
128 }
129 }
a24da9a8 130 g_free(suffix);
161a8a27
BV
131 break;
132 }
133
17f63de6 134 return SR_OK;
161a8a27
BV
135}
136
820c48f8
BV
137static struct sr_option options[] = {
138 { "digits", "Digits", "Digits to show", NULL, NULL },
139 ALL_ZERO
140};
141
142static const struct sr_option *get_options(void)
143{
144 if (!options[0].def) {
145 options[0].def = g_variant_ref_sink(g_variant_new_string("all"));
146 options[0].values = g_slist_append(options[0].values,
147 g_variant_ref_sink(g_variant_new_string("all")));
148 options[0].values = g_slist_append(options[0].values,
149 g_variant_ref_sink(g_variant_new_string("spec")));
150 }
151
152 return options;
153}
154
da3d141f
SB
155static int cleanup(struct sr_output *o)
156{
157 struct context *ctx;
158
159 if (!o || !o->sdi)
160 return SR_ERR_ARG;
161 ctx = o->priv;
162
163 g_ptr_array_free(ctx->channellist, 1);
164 g_variant_unref(options[0].def);
165 g_slist_free_full(options[0].values, (GDestroyNotify)g_variant_unref);
166 g_free(ctx->fdata);
167 g_free(ctx);
168 o->priv = NULL;
169
170 return SR_OK;
171}
172
a755b0e1 173SR_PRIV struct sr_output_module output_analog = {
161a8a27 174 .id = "analog",
a755b0e1
BV
175 .name = "Analog",
176 .desc = "Analog data and types",
8a174d23 177 .exts = NULL,
3cd4b381 178 .flags = 0,
820c48f8 179 .options = get_options,
161a8a27 180 .init = init,
17f63de6 181 .receive = receive,
161a8a27
BV
182 .cleanup = cleanup
183};