]> sigrok.org Git - libsigrok.git/blob - src/strutil.c
Rework sr_period_string
[libsigrok.git] / src / strutil.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2010 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <config.h>
21 #include <stdint.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <strings.h>
25 #include <errno.h>
26 #include <libsigrok/libsigrok.h>
27 #include "libsigrok-internal.h"
28
29 /** @cond PRIVATE */
30 #define LOG_PREFIX "strutil"
31 /** @endcond */
32
33 /**
34  * @file
35  *
36  * Helper functions for handling or converting libsigrok-related strings.
37  */
38
39 /**
40  * @defgroup grp_strutil String utilities
41  *
42  * Helper functions for handling or converting libsigrok-related strings.
43  *
44  * @{
45  */
46
47 /**
48  * @private
49  *
50  * Convert a string representation of a numeric value (base 10) to a long integer. The
51  * conversion is strict and will fail if the complete string does not represent
52  * a valid long integer. The function sets errno according to the details of the
53  * failure.
54  *
55  * @param str The string representation to convert.
56  * @param ret Pointer to long where the result of the conversion will be stored.
57  *
58  * @retval SR_OK Conversion successful.
59  * @retval SR_ERR Failure.
60  */
61 SR_PRIV int sr_atol(const char *str, long *ret)
62 {
63         long tmp;
64         char *endptr = NULL;
65
66         errno = 0;
67         tmp = strtol(str, &endptr, 10);
68
69         if (!endptr || *endptr || errno) {
70                 if (!errno)
71                         errno = EINVAL;
72                 return SR_ERR;
73         }
74
75         *ret = tmp;
76         return SR_OK;
77 }
78
79 /**
80  * @private
81  *
82  * Convert a string representation of a numeric value (base 10) to an integer. The
83  * conversion is strict and will fail if the complete string does not represent
84  * a valid integer. The function sets errno according to the details of the
85  * failure.
86  *
87  * @param str The string representation to convert.
88  * @param ret Pointer to int where the result of the conversion will be stored.
89  *
90  * @retval SR_OK Conversion successful.
91  * @retval SR_ERR Failure.
92  */
93 SR_PRIV int sr_atoi(const char *str, int *ret)
94 {
95         long tmp;
96
97         if (sr_atol(str, &tmp) != SR_OK)
98                 return SR_ERR;
99
100         if ((int) tmp != tmp) {
101                 errno = ERANGE;
102                 return SR_ERR;
103         }
104
105         *ret = (int) tmp;
106         return SR_OK;
107 }
108
109 /**
110  * @private
111  *
112  * Convert a string representation of a numeric value to a double. The
113  * conversion is strict and will fail if the complete string does not represent
114  * a valid double. The function sets errno according to the details of the
115  * failure.
116  *
117  * @param str The string representation to convert.
118  * @param ret Pointer to double where the result of the conversion will be stored.
119  *
120  * @retval SR_OK Conversion successful.
121  * @retval SR_ERR Failure.
122  */
123 SR_PRIV int sr_atod(const char *str, double *ret)
124 {
125         double tmp;
126         char *endptr = NULL;
127
128         errno = 0;
129         tmp = strtof(str, &endptr);
130
131         if (!endptr || *endptr || errno) {
132                 if (!errno)
133                         errno = EINVAL;
134                 return SR_ERR;
135         }
136
137         *ret = tmp;
138         return SR_OK;
139 }
140
141 /**
142  * @private
143  *
144  * Convert a string representation of a numeric value to a float. The
145  * conversion is strict and will fail if the complete string does not represent
146  * a valid float. The function sets errno according to the details of the
147  * failure.
148  *
149  * @param str The string representation to convert.
150  * @param ret Pointer to float where the result of the conversion will be stored.
151  *
152  * @retval SR_OK Conversion successful.
153  * @retval SR_ERR Failure.
154  */
155 SR_PRIV int sr_atof(const char *str, float *ret)
156 {
157         double tmp;
158
159         if (sr_atod(str, &tmp) != SR_OK)
160                 return SR_ERR;
161
162         if ((float) tmp != tmp) {
163                 errno = ERANGE;
164                 return SR_ERR;
165         }
166
167         *ret = (float) tmp;
168         return SR_OK;
169 }
170
171 /**
172  * @private
173  *
174  * Convert a string representation of a numeric value to a float. The
175  * conversion is strict and will fail if the complete string does not represent
176  * a valid float. The function sets errno according to the details of the
177  * failure. This version ignores the locale.
178  *
179  * @param str The string representation to convert.
180  * @param ret Pointer to float where the result of the conversion will be stored.
181  *
182  * @retval SR_OK Conversion successful.
183  * @retval SR_ERR Failure.
184  */
185 SR_PRIV int sr_atof_ascii(const char *str, float *ret)
186 {
187         double tmp;
188         char *endptr = NULL;
189
190         errno = 0;
191         tmp = g_ascii_strtod(str, &endptr);
192
193         if (!endptr || *endptr || errno) {
194                 if (!errno)
195                         errno = EINVAL;
196                 return SR_ERR;
197         }
198
199         /* FIXME This fails unexpectedly. Some other method to safel downcast
200          * needs to be found. Checking against FLT_MAX doesn't work as well. */
201         /*
202         if ((float) tmp != tmp) {
203                 errno = ERANGE;
204                 sr_dbg("ERANGEEEE %e != %e", (float) tmp, tmp);
205                 return SR_ERR;
206         }
207         */
208
209         *ret = (float) tmp;
210         return SR_OK;
211 }
212
213 /**
214  * Convert a string representation of a numeric value to a sr_rational.
215  *
216  * The conversion is strict and will fail if the complete string does not
217  * represent a valid number. The function sets errno according to the details
218  * of the failure. This version ignores the locale.
219  *
220  * @param str The string representation to convert.
221  * @param ret Pointer to sr_rational where the result of the conversion will be stored.
222  *
223  * @retval SR_OK Conversion successful.
224  * @retval SR_ERR Failure.
225  *
226  * @since 0.5.0
227  */
228 SR_API int sr_parse_rational(const char *str, struct sr_rational *ret)
229 {
230         char *endptr = NULL;
231         int64_t integral;
232         int64_t fractional = 0;
233         int64_t denominator = 1;
234         int32_t fractional_len = 0;
235         int32_t exponent = 0;
236
237         errno = 0;
238         integral = g_ascii_strtoll(str, &endptr, 10);
239
240         if (errno)
241                 return SR_ERR;
242
243         if (*endptr == '.') {
244                 const char* start = endptr + 1;
245                 fractional = g_ascii_strtoll(start, &endptr, 10);
246                 if (errno)
247                         return SR_ERR;
248                 fractional_len = endptr - start;
249         }
250
251         if ((*endptr == 'E') || (*endptr == 'e')) {
252                 exponent = g_ascii_strtoll(endptr + 1, &endptr, 10);
253                 if (errno)
254                         return SR_ERR;
255         }
256
257         if (*endptr != '\0')
258                 return SR_ERR;
259
260         for (int i = 0; i < fractional_len; i++)
261                 integral *= 10;
262         exponent -= fractional_len;
263
264         if (integral >= 0)
265                 integral += fractional;
266         else
267                 integral -= fractional;
268
269         while (exponent > 0) {
270                 integral *= 10;
271                 exponent--;
272         }
273
274         while (exponent < 0) {
275                 denominator *= 10;
276                 exponent++;
277         }
278
279         ret->p = integral;
280         ret->q = denominator;
281
282         return SR_OK;
283 }
284
285 /**
286  * Convert a numeric value value to its "natural" string representation
287  * in SI units.
288  *
289  * E.g. a value of 3000000, with units set to "W", would be converted
290  * to "3 MW", 20000 to "20 kW", 31500 would become "31.5 kW".
291  *
292  * @param x The value to convert.
293  * @param unit The unit to append to the string, or NULL if the string
294  *             has no units.
295  *
296  * @return A newly allocated string representation of the samplerate value,
297  *         or NULL upon errors. The caller is responsible to g_free() the
298  *         memory.
299  *
300  * @since 0.2.0
301  */
302 SR_API char *sr_si_string_u64(uint64_t x, const char *unit)
303 {
304         uint8_t i;
305         uint64_t quot, divisor[] = {
306                 SR_HZ(1), SR_KHZ(1), SR_MHZ(1), SR_GHZ(1),
307                 SR_GHZ(1000), SR_GHZ(1000 * 1000), SR_GHZ(1000 * 1000 * 1000),
308         };
309         const char *p, prefix[] = "\0kMGTPE";
310         char fmt[16], fract[20] = "", *f;
311
312         if (!unit)
313                 unit = "";
314
315         for (i = 0; (quot = x / divisor[i]) >= 1000; i++);
316
317         if (i) {
318                 sprintf(fmt, ".%%0%d"PRIu64, i * 3);
319                 f = fract + sprintf(fract, fmt, x % divisor[i]) - 1;
320
321                 while (f >= fract && strchr("0.", *f))
322                         *f-- = 0;
323         }
324
325         p = prefix + i;
326
327         return g_strdup_printf("%" PRIu64 "%s %.1s%s", quot, fract, p, unit);
328 }
329
330 /**
331  * Convert a numeric samplerate value to its "natural" string representation.
332  *
333  * E.g. a value of 3000000 would be converted to "3 MHz", 20000 to "20 kHz",
334  * 31500 would become "31.5 kHz".
335  *
336  * @param samplerate The samplerate in Hz.
337  *
338  * @return A newly allocated string representation of the samplerate value,
339  *         or NULL upon errors. The caller is responsible to g_free() the
340  *         memory.
341  *
342  * @since 0.1.0
343  */
344 SR_API char *sr_samplerate_string(uint64_t samplerate)
345 {
346         return sr_si_string_u64(samplerate, "Hz");
347 }
348
349 /**
350  * Convert a numeric frequency value to the "natural" string representation
351  * of its period.
352  *
353  * E.g. a value of 3000000 would be converted to "3 us", 20000 to "50 ms".
354  *
355  * @param frequency The frequency in Hz.
356  *
357  * @return A newly allocated string representation of the frequency value,
358  *         or NULL upon errors. The caller is responsible to g_free() the
359  *         memory.
360  *
361  * @since 0.1.0
362  */
363 SR_API char *sr_period_string(uint64_t v_p, uint64_t v_q)
364 {
365         double freq, v;
366         char *o;
367         int prec, r;
368
369         freq = 1 / ((double)v_p / v_q);
370
371         o = g_malloc0(30 + 1);
372
373         if (freq > SR_GHZ(1)) {
374                 v = (double)v_p / v_q * 1000000000000.0;
375                 prec = ((v - (uint64_t)v) < FLT_MIN) ? 0 : 3;
376                 r = snprintf(o, 30, "%.*f ps", prec, v);
377         } else if (freq > SR_MHZ(1)) {
378                 v = (double)v_p / v_q * 1000000000.0;
379                 prec = ((v - (uint64_t)v) < FLT_MIN) ? 0 : 3;
380                 r = snprintf(o, 30, "%.*f ns", prec, v);
381         } else if (freq > SR_KHZ(1)) {
382                 v = (double)v_p / v_q * 1000000.0;
383                 prec = ((v - (uint64_t)v) < FLT_MIN) ? 0 : 3;
384                 r = snprintf(o, 30, "%.*f us", prec, v);
385         } else if (freq > 1) {
386                 v = (double)v_p / v_q * 1000.0;
387                 prec = ((v - (uint64_t)v) < FLT_MIN) ? 0 : 3;
388                 r = snprintf(o, 30, "%.*f ms", prec, v);
389         } else {
390                 v = (double)v_p / v_q;
391                 prec = ((v - (uint64_t)v) < FLT_MIN) ? 0 : 3;
392                 r = snprintf(o, 30, "%.*f s", prec, v);
393         }
394
395         if (r < 0) {
396                 /* Something went wrong... */
397                 g_free(o);
398                 return NULL;
399         }
400
401         return o;
402 }
403
404 /**
405  * Convert a numeric voltage value to the "natural" string representation
406  * of its voltage value. The voltage is specified as a rational number's
407  * numerator and denominator.
408  *
409  * E.g. a value of 300000 would be converted to "300mV", 2 to "2V".
410  *
411  * @param v_p The voltage numerator.
412  * @param v_q The voltage denominator.
413  *
414  * @return A newly allocated string representation of the voltage value,
415  *         or NULL upon errors. The caller is responsible to g_free() the
416  *         memory.
417  *
418  * @since 0.2.0
419  */
420 SR_API char *sr_voltage_string(uint64_t v_p, uint64_t v_q)
421 {
422         int r;
423         char *o;
424
425         o = g_malloc0(30 + 1);
426
427         if (v_q == 1000)
428                 r = snprintf(o, 30, "%" PRIu64 "mV", v_p);
429         else if (v_q == 1)
430                 r = snprintf(o, 30, "%" PRIu64 "V", v_p);
431         else
432                 r = snprintf(o, 30, "%gV", (float)v_p / (float)v_q);
433
434         if (r < 0) {
435                 /* Something went wrong... */
436                 g_free(o);
437                 return NULL;
438         }
439
440         return o;
441 }
442
443 /**
444  * Convert a "natural" string representation of a size value to uint64_t.
445  *
446  * E.g. a value of "3k" or "3 K" would be converted to 3000, a value
447  * of "15M" would be converted to 15000000.
448  *
449  * Value representations other than decimal (such as hex or octal) are not
450  * supported. Only 'k' (kilo), 'm' (mega), 'g' (giga) suffixes are supported.
451  * Spaces (but not other whitespace) between value and suffix are allowed.
452  *
453  * @param sizestring A string containing a (decimal) size value.
454  * @param size Pointer to uint64_t which will contain the string's size value.
455  *
456  * @return SR_OK upon success, SR_ERR upon errors.
457  *
458  * @since 0.1.0
459  */
460 SR_API int sr_parse_sizestring(const char *sizestring, uint64_t *size)
461 {
462         int multiplier, done;
463         double frac_part;
464         char *s;
465
466         *size = strtoull(sizestring, &s, 10);
467         multiplier = 0;
468         frac_part = 0;
469         done = FALSE;
470         while (s && *s && multiplier == 0 && !done) {
471                 switch (*s) {
472                 case ' ':
473                         break;
474                 case '.':
475                         frac_part = g_ascii_strtod(s, &s);
476                         break;
477                 case 'k':
478                 case 'K':
479                         multiplier = SR_KHZ(1);
480                         break;
481                 case 'm':
482                 case 'M':
483                         multiplier = SR_MHZ(1);
484                         break;
485                 case 'g':
486                 case 'G':
487                         multiplier = SR_GHZ(1);
488                         break;
489                 default:
490                         done = TRUE;
491                         s--;
492                 }
493                 s++;
494         }
495         if (multiplier > 0) {
496                 *size *= multiplier;
497                 *size += frac_part * multiplier;
498         } else
499                 *size += frac_part;
500
501         if (s && *s && g_ascii_strcasecmp(s, "Hz"))
502                 return SR_ERR;
503
504         return SR_OK;
505 }
506
507 /**
508  * Convert a "natural" string representation of a time value to an
509  * uint64_t value in milliseconds.
510  *
511  * E.g. a value of "3s" or "3 s" would be converted to 3000, a value
512  * of "15ms" would be converted to 15.
513  *
514  * Value representations other than decimal (such as hex or octal) are not
515  * supported. Only lower-case "s" and "ms" time suffixes are supported.
516  * Spaces (but not other whitespace) between value and suffix are allowed.
517  *
518  * @param timestring A string containing a (decimal) time value.
519  * @return The string's time value as uint64_t, in milliseconds.
520  *
521  * @todo Add support for "m" (minutes) and others.
522  * @todo Add support for picoseconds?
523  * @todo Allow both lower-case and upper-case? If no, document it.
524  *
525  * @since 0.1.0
526  */
527 SR_API uint64_t sr_parse_timestring(const char *timestring)
528 {
529         uint64_t time_msec;
530         char *s;
531
532         /* TODO: Error handling, logging. */
533
534         time_msec = strtoull(timestring, &s, 10);
535         if (time_msec == 0 && s == timestring)
536                 return 0;
537
538         if (s && *s) {
539                 while (*s == ' ')
540                         s++;
541                 if (!strcmp(s, "s"))
542                         time_msec *= 1000;
543                 else if (!strcmp(s, "ms"))
544                         ; /* redundant */
545                 else
546                         return 0;
547         }
548
549         return time_msec;
550 }
551
552 /** @since 0.1.0 */
553 SR_API gboolean sr_parse_boolstring(const char *boolstr)
554 {
555         if (!boolstr)
556                 return FALSE;
557
558         if (!g_ascii_strncasecmp(boolstr, "true", 4) ||
559             !g_ascii_strncasecmp(boolstr, "yes", 3) ||
560             !g_ascii_strncasecmp(boolstr, "on", 2) ||
561             !g_ascii_strncasecmp(boolstr, "1", 1))
562                 return TRUE;
563
564         return FALSE;
565 }
566
567 /** @since 0.2.0 */
568 SR_API int sr_parse_period(const char *periodstr, uint64_t *p, uint64_t *q)
569 {
570         char *s;
571
572         *p = strtoull(periodstr, &s, 10);
573         if (*p == 0 && s == periodstr)
574                 /* No digits found. */
575                 return SR_ERR_ARG;
576
577         if (s && *s) {
578                 while (*s == ' ')
579                         s++;
580                 if (!strcmp(s, "fs"))
581                         *q = 1000000000000000ULL;
582                 else if (!strcmp(s, "ps"))
583                         *q = 1000000000000ULL;
584                 else if (!strcmp(s, "ns"))
585                         *q = 1000000000ULL;
586                 else if (!strcmp(s, "us"))
587                         *q = 1000000;
588                 else if (!strcmp(s, "ms"))
589                         *q = 1000;
590                 else if (!strcmp(s, "s"))
591                         *q = 1;
592                 else
593                         /* Must have a time suffix. */
594                         return SR_ERR_ARG;
595         }
596
597         return SR_OK;
598 }
599
600 /** @since 0.2.0 */
601 SR_API int sr_parse_voltage(const char *voltstr, uint64_t *p, uint64_t *q)
602 {
603         char *s;
604
605         *p = strtoull(voltstr, &s, 10);
606         if (*p == 0 && s == voltstr)
607                 /* No digits found. */
608                 return SR_ERR_ARG;
609
610         if (s && *s) {
611                 while (*s == ' ')
612                         s++;
613                 if (!g_ascii_strcasecmp(s, "mv"))
614                         *q = 1000L;
615                 else if (!g_ascii_strcasecmp(s, "v"))
616                         *q = 1;
617                 else
618                         /* Must have a base suffix. */
619                         return SR_ERR_ARG;
620         }
621
622         return SR_OK;
623 }
624
625 /** @} */