]> sigrok.org Git - libsigrok.git/blob - src/output/analog.c
Reorganize project tree.
[libsigrok.git] / src / output / analog.c
1 /*
2  * This file is part of the libsigrok project.
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
20 #include <stdlib.h>
21 #include <string.h>
22 #include <math.h>
23 #include <glib.h>
24 #include "libsigrok.h"
25 #include "libsigrok-internal.h"
26
27 #define LOG_PREFIX "output/analog"
28
29 struct context {
30         int num_enabled_channels;
31         GPtrArray *channellist;
32 };
33
34 static int init(struct sr_output *o)
35 {
36         struct context *ctx;
37         struct sr_channel *ch;
38         GSList *l;
39
40         sr_spew("Initializing output module.");
41
42         if (!o || !o->sdi)
43                 return SR_ERR_ARG;
44
45         if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
46                 sr_err("Output module context malloc failed.");
47                 return SR_ERR_MALLOC;
48         }
49         o->internal = ctx;
50
51         /* Get the number of channels and their names. */
52         ctx->channellist = g_ptr_array_new();
53         for (l = o->sdi->channels; l; l = l->next) {
54                 ch = l->data;
55                 if (!ch || !ch->enabled)
56                         continue;
57                 g_ptr_array_add(ctx->channellist, ch->name);
58                 ctx->num_enabled_channels++;
59         }
60
61         return SR_OK;
62 }
63
64 static void si_printf(float value, GString *out, char *unitstr)
65 {
66         float v;
67
68         if (signbit(value))
69                 v = -(value);
70         else
71                 v = value;
72
73         if (v < 1e-12 || v > 1e+12)
74                 g_string_append_printf(out, "%f %s", value, unitstr);
75         else if (v > 1e+9)
76                 g_string_append_printf(out, "%f G%s", value / 1e+9, unitstr);
77         else if (v > 1e+6)
78                 g_string_append_printf(out, "%f M%s", value / 1e+6, unitstr);
79         else if (v > 1e+3)
80                 g_string_append_printf(out, "%f k%s", value / 1e+3, unitstr);
81         else if (v < 1e-9)
82                 g_string_append_printf(out, "%f n%s", value * 1e+9, unitstr);
83         else if (v < 1e-6)
84                 g_string_append_printf(out, "%f u%s", value * 1e+6, unitstr);
85         else if (v < 1e-3)
86                 g_string_append_printf(out, "%f m%s", value * 1e+3, unitstr);
87         else
88                 g_string_append_printf(out, "%f %s", value, unitstr);
89
90 }
91
92 static void fancyprint(int unit, int mqflags, float value, GString *out)
93 {
94         switch (unit) {
95         case SR_UNIT_VOLT:
96                 si_printf(value, out, "V");
97                 break;
98         case SR_UNIT_AMPERE:
99                 si_printf(value, out, "A");
100                 break;
101         case SR_UNIT_OHM:
102                 si_printf(value, out, "");
103                 g_string_append_unichar(out, 0x2126);
104                 break;
105         case SR_UNIT_FARAD:
106                 si_printf(value, out, "F");
107                 break;
108         case SR_UNIT_KELVIN:
109                 si_printf(value, out, "K");
110                 break;
111         case SR_UNIT_CELSIUS:
112                 si_printf(value, out, "");
113                 g_string_append_unichar(out, 0x00b0);
114                 g_string_append_c(out, 'C');
115                 break;
116         case SR_UNIT_FAHRENHEIT:
117                 si_printf(value, out, "");
118                 g_string_append_unichar(out, 0x00b0);
119                 g_string_append_c(out, 'F');
120                 break;
121         case SR_UNIT_HERTZ:
122                 si_printf(value, out, "Hz");
123                 break;
124         case SR_UNIT_PERCENTAGE:
125                 g_string_append_printf(out, "%f %%", value);
126                 break;
127         case SR_UNIT_BOOLEAN:
128                 if (value > 0)
129                         g_string_append_printf(out, "TRUE");
130                 else
131                         g_string_append_printf(out, "FALSE");
132                 break;
133         case SR_UNIT_SECOND:
134                 si_printf(value, out, "s");
135                 break;
136         case SR_UNIT_SIEMENS:
137                 si_printf(value, out, "S");
138                 break;
139         case SR_UNIT_DECIBEL_MW:
140                 si_printf(value, out, "dBu");
141                 break;
142         case SR_UNIT_DECIBEL_VOLT:
143                 si_printf(value, out, "dBV");
144                 break;
145         case SR_UNIT_DECIBEL_SPL:
146                 if (mqflags & SR_MQFLAG_SPL_FREQ_WEIGHT_A)
147                         si_printf(value, out, "dB(A)");
148                 else if (mqflags & SR_MQFLAG_SPL_FREQ_WEIGHT_C)
149                         si_printf(value, out, "dB(C)");
150                 else if (mqflags & SR_MQFLAG_SPL_FREQ_WEIGHT_Z)
151                         si_printf(value, out, "dB(Z)");
152                 else
153                         /* No frequency weighting, or non-standard "flat" */
154                         si_printf(value, out, "dB(SPL)");
155                 if (mqflags & SR_MQFLAG_SPL_TIME_WEIGHT_S)
156                         g_string_append(out, " S");
157                 else if (mqflags & SR_MQFLAG_SPL_TIME_WEIGHT_F)
158                         g_string_append(out, " F");
159                 if (mqflags & SR_MQFLAG_SPL_LAT)
160                         g_string_append(out, " LAT");
161                 else if (mqflags & SR_MQFLAG_SPL_PCT_OVER_ALARM)
162                         /* Not a standard function for SLMs, so this is
163                          * a made-up notation. */
164                         g_string_append(out, " %oA");
165                 break;
166         case SR_UNIT_CONCENTRATION:
167                 g_string_append_printf(out, "%f ppm", value * 1000000);
168                 break;
169         case SR_UNIT_REVOLUTIONS_PER_MINUTE:
170                 si_printf(value, out, "RPM");
171                 break;
172         case SR_UNIT_VOLT_AMPERE:
173                 si_printf(value, out, "VA");
174                 break;
175         case SR_UNIT_WATT:
176                 si_printf(value, out, "W");
177                 break;
178         case SR_UNIT_WATT_HOUR:
179                 si_printf(value, out, "Wh");
180                 break;
181         case SR_UNIT_METER_SECOND:
182                 si_printf(value, out, "m/s");
183                 break;
184         case SR_UNIT_HECTOPASCAL:
185                 si_printf(value, out, "hPa");
186                 break;
187         case SR_UNIT_HUMIDITY_293K:
188                 si_printf(value, out, "%rF");
189                 break;
190         default:
191                 si_printf(value, out, "");
192                 break;
193         }
194
195         if (mqflags & SR_MQFLAG_AC)
196                 g_string_append_printf(out, " AC");
197         if (mqflags & SR_MQFLAG_DC)
198                 g_string_append_printf(out, " DC");
199         if (mqflags & SR_MQFLAG_RMS)
200                 g_string_append_printf(out, " RMS");
201         if (mqflags & SR_MQFLAG_DIODE)
202                 g_string_append_printf(out, " DIODE");
203         if (mqflags & SR_MQFLAG_HOLD)
204                 g_string_append_printf(out, " HOLD");
205         if (mqflags & SR_MQFLAG_MAX)
206                 g_string_append_printf(out, " MAX");
207         if (mqflags & SR_MQFLAG_MIN)
208                 g_string_append_printf(out, " MIN");
209         if (mqflags & SR_MQFLAG_AUTORANGE)
210                 g_string_append_printf(out, " AUTO");
211         if (mqflags & SR_MQFLAG_RELATIVE)
212                 g_string_append_printf(out, " REL");
213         if (mqflags & SR_MQFLAG_AVG)
214                 g_string_append_printf(out, " AVG");
215         g_string_append_c(out, '\n');
216 }
217
218 static int receive(struct sr_output *o, const struct sr_datafeed_packet *packet,
219                 GString **out)
220 {
221         const struct sr_datafeed_analog *analog;
222         struct sr_channel *ch;
223         GSList *l;
224         const float *fdata;
225         int i, p;
226
227         *out = NULL;
228         if (!o || !o->sdi)
229                 return SR_ERR_ARG;
230
231         switch (packet->type) {
232         case SR_DF_FRAME_BEGIN:
233                 *out = g_string_new("FRAME-BEGIN\n");
234                 break;
235         case SR_DF_FRAME_END:
236                 *out = g_string_new("FRAME-END\n");
237                 break;
238         case SR_DF_ANALOG:
239                 analog = packet->payload;
240                 fdata = (const float *)analog->data;
241                 *out = g_string_sized_new(512);
242                 for (i = 0; i < analog->num_samples; i++) {
243                         for (l = analog->channels, p = 0; l; l = l->next, p++) {
244                                 ch = l->data;
245                                 g_string_append_printf(*out, "%s: ", ch->name);
246                                 fancyprint(analog->unit, analog->mqflags,
247                                                 fdata[i + p], *out);
248                         }
249                 }
250                 break;
251         }
252
253         return SR_OK;
254 }
255
256 static int cleanup(struct sr_output *o)
257 {
258         struct context *ctx;
259
260         if (!o || !o->sdi)
261                 return SR_ERR_ARG;
262         ctx = o->internal;
263
264         g_ptr_array_free(ctx->channellist, 1);
265         g_free(ctx);
266         o->internal = NULL;
267
268         return SR_OK;
269 }
270
271 SR_PRIV struct sr_output_format output_analog = {
272         .id = "analog",
273         .description = "Analog data",
274         .init = init,
275         .receive = receive,
276         .cleanup = cleanup
277 };