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