]> sigrok.org Git - libsigrok.git/blob - src/transform/scale.c
6d3769b35c604cdb7ec4610309d6ba248e08c8f9
[libsigrok.git] / src / transform / scale.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2015 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 <string.h>
22 #include "libsigrok.h"
23 #include "libsigrok-internal.h"
24
25 #define LOG_PREFIX "transform/scale"
26
27 struct context {
28         double factor;
29 };
30
31 static int init(struct sr_transform *t, GHashTable *options)
32 {
33         struct context *ctx;
34
35         if (!t || !t->sdi || !options)
36                 return SR_ERR_ARG;
37
38         t->priv = ctx = g_malloc0(sizeof(struct context));
39
40         ctx->factor = g_variant_get_double(g_hash_table_lookup(options, "factor"));
41
42         return SR_OK;
43 }
44
45 static int receive(const struct sr_transform *t,
46                 struct sr_datafeed_packet *packet_in,
47                 struct sr_datafeed_packet **packet_out)
48 {
49         struct context *ctx;
50         const struct sr_datafeed_analog *analog;
51         struct sr_channel *ch;
52         GSList *l;
53         float *fdata;
54         int i, num_channels, c;
55
56         if (!t || !t->sdi || !packet_in || !packet_out)
57                 return SR_ERR_ARG;
58         ctx = t->priv;
59
60         switch (packet_in->type) {
61         case SR_DF_ANALOG:
62                 analog = packet_in->payload;
63                 fdata = (float *)analog->data;
64                 num_channels = g_slist_length(analog->channels);
65                 for (i = 0; i < analog->num_samples; i++) {
66                         /* For now scale all values in all channels. */
67                         for (l = analog->channels, c = 0; l; l = l->next, c++) {
68                                 ch = l->data;
69                                 (void)ch;
70                                 fdata[i * num_channels + c] *= ctx->factor;
71                         }
72                 }
73                 break;
74         default:
75                 sr_spew("Unsupported packet type %d, ignoring.", packet_in->type);
76                 break;
77         }
78
79         /* Return the in-place-modified packet. */
80         *packet_out = packet_in;
81
82         return SR_OK;
83 }
84
85 static int cleanup(struct sr_transform *t)
86 {
87         struct context *ctx;
88
89         if (!t || !t->sdi)
90                 return SR_ERR_ARG;
91         ctx = t->priv;
92
93         g_free(ctx);
94         t->priv = NULL;
95
96         return SR_OK;
97 }
98
99 static struct sr_option options[] = {
100         { "factor", "Factor", "Factor by which to scale the analog values", NULL, NULL },
101         ALL_ZERO
102 };
103
104 static const struct sr_option *get_options(void)
105 {
106         /* Default to a scaling factor of 1.0. */
107         if (!options[0].def)
108                 options[0].def = g_variant_ref_sink(g_variant_new_double(1.0));
109
110         return options;
111 }
112
113 SR_PRIV struct sr_transform_module transform_scale = {
114         .id = "scale",
115         .name = "Scale",
116         .desc = "Scale analog values by a specified factor",
117         .options = get_options,
118         .init = init,
119         .receive = receive,
120         .cleanup = cleanup,
121 };