]> sigrok.org Git - libsigrok.git/blame - src/analog.c
analog.c: Return SR_ERR_ARG upon invalid arguments.
[libsigrok.git] / src / analog.c
CommitLineData
fb019a0e
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 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>
c2a25ebb
BV
21#include <stdio.h>
22#include <stdint.h>
fb019a0e 23#include <string.h>
c2a25ebb 24#include <ctype.h>
c1aae900 25#include <libsigrok/libsigrok.h>
fb019a0e
BV
26#include "libsigrok-internal.h"
27
e00b3f58 28/** @cond PRIVATE */
fb019a0e 29#define LOG_PREFIX "analog"
e00b3f58
UH
30/** @endcond */
31
32/**
33 * @file
34 *
35 * Handling and converting analog data.
36 */
37
38/**
39 * @defgroup grp_analog Analog data handling
40 *
41 * Handling and converting analog data.
42 *
43 * @{
44 */
fb019a0e 45
a5892391
BV
46struct unit_mq_string {
47 uint64_t value;
48 char *str;
49};
50
ca7dbb56 51/* Please use the same order as in enum sr_unit (libsigrok.h). */
a5892391
BV
52static struct unit_mq_string unit_strings[] = {
53 { SR_UNIT_VOLT, "V" },
54 { SR_UNIT_AMPERE, "A" },
55 { SR_UNIT_OHM, "\xe2\x84\xa6" },
56 { SR_UNIT_FARAD, "F" },
a5892391
BV
57 { SR_UNIT_KELVIN, "K" },
58 { SR_UNIT_CELSIUS, "\xc2\xb0""C" },
59 { SR_UNIT_FAHRENHEIT, "\xc2\xb0""F" },
60 { SR_UNIT_HERTZ, "Hz" },
61 { SR_UNIT_PERCENTAGE, "%" },
f7bcc686 62 { SR_UNIT_BOOLEAN, "" },
a5892391
BV
63 { SR_UNIT_SECOND, "s" },
64 { SR_UNIT_SIEMENS, "S" },
65 { SR_UNIT_DECIBEL_MW, "dBu" },
66 { SR_UNIT_DECIBEL_VOLT, "dBv" },
f7bcc686 67 { SR_UNIT_UNITLESS, "" },
a5892391
BV
68 { SR_UNIT_DECIBEL_SPL, "dB" },
69 { SR_UNIT_CONCENTRATION, "ppm" },
70 { SR_UNIT_REVOLUTIONS_PER_MINUTE, "RPM" },
71 { SR_UNIT_VOLT_AMPERE, "VA" },
72 { SR_UNIT_WATT, "W" },
73 { SR_UNIT_WATT_HOUR, "Wh" },
74 { SR_UNIT_METER_SECOND, "m/s" },
75 { SR_UNIT_HECTOPASCAL, "hPa" },
76 { SR_UNIT_HUMIDITY_293K, "%rF" },
77 { SR_UNIT_DEGREE, "\xc2\xb0" },
f7bcc686
UH
78 { SR_UNIT_HENRY, "H" },
79 { SR_UNIT_GRAM, "g" },
80 { SR_UNIT_CARAT, "ct" },
81 { SR_UNIT_OUNCE, "oz" },
82 { SR_UNIT_TROY_OUNCE, "oz t" },
83 { SR_UNIT_POUND, "lb" },
84 { SR_UNIT_PENNYWEIGHT, "dwt" },
85 { SR_UNIT_GRAIN, "gr" },
86 { SR_UNIT_TAEL, "tael" },
87 { SR_UNIT_MOMME, "momme" },
88 { SR_UNIT_TOLA, "tola" },
89 { SR_UNIT_PIECE, "pcs" },
a5892391
BV
90 ALL_ZERO
91};
92
ca7dbb56 93/* Please use the same order as in enum sr_mqflag (libsigrok.h). */
a5892391 94static struct unit_mq_string mq_strings[] = {
a5892391
BV
95 { SR_MQFLAG_AC, " AC" },
96 { SR_MQFLAG_DC, " DC" },
97 { SR_MQFLAG_RMS, " RMS" },
98 { SR_MQFLAG_DIODE, " DIODE" },
99 { SR_MQFLAG_HOLD, " HOLD" },
100 { SR_MQFLAG_MAX, " MAX" },
101 { SR_MQFLAG_MIN, " MIN" },
102 { SR_MQFLAG_AUTORANGE, " AUTO" },
103 { SR_MQFLAG_RELATIVE, " REL" },
f7bcc686
UH
104 { SR_MQFLAG_SPL_FREQ_WEIGHT_A, "(A)" },
105 { SR_MQFLAG_SPL_FREQ_WEIGHT_C, "(C)" },
106 { SR_MQFLAG_SPL_FREQ_WEIGHT_Z, "(Z)" },
107 { SR_MQFLAG_SPL_FREQ_WEIGHT_FLAT, "(SPL)" },
108 { SR_MQFLAG_SPL_TIME_WEIGHT_S, " S" },
109 { SR_MQFLAG_SPL_TIME_WEIGHT_F, " F" },
110 { SR_MQFLAG_SPL_LAT, " LAT" },
111 /* Not a standard function for SLMs, so this is a made-up notation. */
112 { SR_MQFLAG_SPL_PCT_OVER_ALARM, "%oA" },
113 { SR_MQFLAG_DURATION, " DURATION" },
a5892391
BV
114 { SR_MQFLAG_AVG, " AVG" },
115 { SR_MQFLAG_REFERENCE, " REF" },
f7bcc686 116 { SR_MQFLAG_UNSTABLE, " UNSTABLE" },
a5892391
BV
117 ALL_ZERO
118};
119
edb691fc 120SR_PRIV int sr_analog_init(struct sr_datafeed_analog *analog,
41caa319
AJ
121 struct sr_analog_encoding *encoding,
122 struct sr_analog_meaning *meaning,
123 struct sr_analog_spec *spec,
124 int digits)
125{
126 memset(analog, 0, sizeof(*analog));
127 memset(encoding, 0, sizeof(*encoding));
128 memset(meaning, 0, sizeof(*meaning));
129 memset(spec, 0, sizeof(*spec));
130
131 analog->encoding = encoding;
132 analog->meaning = meaning;
133 analog->spec = spec;
134
135 encoding->unitsize = sizeof(float);
136 encoding->is_float = TRUE;
137#ifdef WORDS_BIGENDIAN
138 encoding->is_bigendian = TRUE;
139#else
140 encoding->is_bigendian = FALSE;
141#endif
142 encoding->digits = digits;
143 encoding->is_digits_decimal = TRUE;
144 encoding->scale.p = 1;
145 encoding->scale.q = 1;
146 encoding->offset.p = 0;
147 encoding->offset.q = 1;
148
149 spec->spec_digits = digits;
150
151 return SR_OK;
152}
153
edb691fc 154SR_API int sr_analog_to_float(const struct sr_datafeed_analog *analog,
4b4fdeea 155 float *outbuf)
fb019a0e
BV
156{
157 float offset;
5cee3d08 158 unsigned int b, i, count;
fb019a0e 159 gboolean bigendian;
5cee3d08
UH
160
161 if (!analog || !(analog->data) || !(analog->meaning)
162 || !(analog->encoding) || !outbuf)
163 return SR_ERR_ARG;
164
165 count = analog->num_samples * g_slist_length(analog->meaning->channels);
fb019a0e
BV
166
167#ifdef WORDS_BIGENDIAN
168 bigendian = TRUE;
169#else
170 bigendian = FALSE;
171#endif
172 if (!analog->encoding->is_float) {
173 /* TODO */
4b4fdeea 174 sr_err("Only floating-point encoding supported so far.");
fb019a0e
BV
175 return SR_ERR;
176 }
177
178 if (analog->encoding->unitsize == sizeof(float)
179 && analog->encoding->is_bigendian == bigendian
b07a1b04
ML
180 && analog->encoding->scale.p == 1
181 && analog->encoding->scale.q == 1
4b4fdeea 182 && analog->encoding->offset.p / (float)analog->encoding->offset.q == 0) {
fb019a0e 183 /* The data is already in the right format. */
7d65dd3a 184 memcpy(outbuf, analog->data, count * sizeof(float));
fb019a0e 185 } else {
7d65dd3a 186 for (i = 0; i < count; i += analog->encoding->unitsize) {
fb019a0e
BV
187 for (b = 0; b < analog->encoding->unitsize; b++) {
188 if (analog->encoding->is_bigendian == bigendian)
3e277549
ML
189 ((uint8_t *)outbuf)[i + b] =
190 ((uint8_t *)analog->data)[i * analog->encoding->unitsize + b];
fb019a0e 191 else
3e277549
ML
192 ((uint8_t *)outbuf)[i + (analog->encoding->unitsize - b)] =
193 ((uint8_t *)analog->data)[i * analog->encoding->unitsize + b];
fb019a0e 194 }
b07a1b04
ML
195 if (analog->encoding->scale.p != 1
196 || analog->encoding->scale.q != 1)
4b4fdeea
BV
197 outbuf[i] = (outbuf[i] * analog->encoding->scale.p) / analog->encoding->scale.q;
198 offset = ((float)analog->encoding->offset.p / (float)analog->encoding->offset.q);
199 outbuf[i] += offset;
fb019a0e
BV
200 }
201 }
202
203 return SR_OK;
204}
c2a25ebb
BV
205
206/*
207 * Convert a floating point value to a string, limited to the given
208 * number of decimal digits.
209 *
210 * @param value The value to convert.
211 * @param digits Number of digits after the decimal point to print.
a24da9a8
ML
212 * @param result Pointer to store result.
213 *
214 * The string is allocated by the function and must be freed by the caller
215 * after use by calling g_free().
c2a25ebb
BV
216 *
217 * @retval SR_OK
218 *
219 * @since 0.4.0
220 */
8ea0c902 221SR_API int sr_analog_float_to_string(float value, unsigned int digits, char **result)
c2a25ebb 222{
8ea0c902 223 unsigned int cnt, i;
c2a25ebb 224
5cee3d08
UH
225 if (!result)
226 return SR_ERR_ARG;
227
c2a25ebb 228 /* This produces at least one too many digits */
a24da9a8 229 *result = g_strdup_printf("%.*f", digits, value);
a9b2283f
BV
230 for (i = 0, cnt = 0; (*result)[i]; i++) {
231 if (isdigit((*result)[i++]))
c2a25ebb
BV
232 cnt++;
233 if (cnt == digits) {
a9b2283f 234 (*result)[i] = 0;
c2a25ebb
BV
235 break;
236 }
237 }
238
239 return SR_OK;
240}
241
a5892391
BV
242/*
243 * Convert the unit/MQ/MQ flags in the analog struct to a string.
244 *
245 * @param analog Struct containing the unit, MQ and MQ flags.
a24da9a8
ML
246 * @param result Pointer to store result.
247 *
248 * The string is allocated by the function and must be freed by the caller
249 * after use by calling g_free().
a5892391
BV
250 *
251 * @retval SR_OK
252 *
253 * @since 0.4.0
254 */
edb691fc 255SR_API int sr_analog_unit_to_string(const struct sr_datafeed_analog *analog,
a24da9a8 256 char **result)
a5892391 257{
a24da9a8 258 int i;
5cee3d08
UH
259 GString *buf;
260
261 if (!analog || !(analog->meaning) || !result)
262 return SR_ERR_ARG;
263
264 buf = g_string_new(NULL);
a5892391 265
a5892391
BV
266 for (i = 0; unit_strings[i].value; i++) {
267 if (analog->meaning->unit == unit_strings[i].value) {
a24da9a8 268 g_string_assign(buf, unit_strings[i].str);
a5892391
BV
269 break;
270 }
271 }
272
273 /* More than one MQ flag may apply. */
a24da9a8
ML
274 for (i = 0; mq_strings[i].value; i++)
275 if (analog->meaning->mqflags & mq_strings[i].value)
276 g_string_append(buf, mq_strings[i].str);
277
278 *result = buf->str;
279 g_string_free(buf, FALSE);
a5892391
BV
280
281 return SR_OK;
282}
283
90cefe0c
BV
284/*
285 * Set sr_rational r to the given value.
286 *
287 * @param p Numerator
288 * @param q Denominator
289 */
53e5d3d1 290SR_API void sr_rational_set(struct sr_rational *r, int64_t p, uint64_t q)
90cefe0c 291{
5cee3d08
UH
292 if (!r)
293 return;
294
90cefe0c
BV
295 r->p = p;
296 r->q = q;
297}
298
e00b3f58 299/** @} */