Home | History | Annotate | Line # | Download | only in common
decode.c revision 1.2
      1  1.2  gson /*	$NetBSD: decode.c,v 1.2 2024/02/27 21:05:34 gson Exp $	*/
      2  1.1   mrg 
      3  1.1   mrg /*
      4  1.1   mrg  * Copyright (c) 1999 Matthew R. Green
      5  1.1   mrg  * All rights reserved.
      6  1.1   mrg  *
      7  1.1   mrg  * Redistribution and use in source and binary forms, with or without
      8  1.1   mrg  * modification, are permitted provided that the following conditions
      9  1.1   mrg  * are met:
     10  1.1   mrg  * 1. Redistributions of source code must retain the above copyright
     11  1.1   mrg  *    notice, this list of conditions and the following disclaimer.
     12  1.1   mrg  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1   mrg  *    notice, this list of conditions and the following disclaimer in the
     14  1.1   mrg  *    documentation and/or other materials provided with the distribution.
     15  1.1   mrg  *
     16  1.1   mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.1   mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.1   mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.1   mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.1   mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  1.1   mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22  1.1   mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  1.1   mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  1.1   mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1   mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1   mrg  * SUCH DAMAGE.
     27  1.1   mrg  */
     28  1.1   mrg 
     29  1.1   mrg #include <sys/cdefs.h>
     30  1.1   mrg 
     31  1.1   mrg #ifndef lint
     32  1.2  gson __RCSID("$NetBSD: decode.c,v 1.2 2024/02/27 21:05:34 gson Exp $");
     33  1.1   mrg #endif
     34  1.1   mrg 
     35  1.1   mrg #include <sys/types.h>
     36  1.1   mrg #include <sys/time.h>
     37  1.1   mrg 
     38  1.1   mrg #include <ctype.h>
     39  1.1   mrg #include <string.h>
     40  1.1   mrg #include <stdlib.h>
     41  1.1   mrg #include <limits.h>
     42  1.1   mrg #include <err.h>
     43  1.1   mrg 
     44  1.1   mrg #include "libaudio.h"
     45  1.1   mrg 
     46  1.1   mrg void
     47  1.1   mrg decode_int(const char *arg, int *intp)
     48  1.1   mrg {
     49  1.1   mrg 	char	*ep;
     50  1.1   mrg 	int	ret;
     51  1.1   mrg 
     52  1.1   mrg 	ret = (int)strtoul(arg, &ep, 10);
     53  1.1   mrg 
     54  1.1   mrg 	if (ep[0] == '\0') {
     55  1.1   mrg 		*intp = ret;
     56  1.1   mrg 		return;
     57  1.1   mrg 	}
     58  1.1   mrg 	errx(1, "argument `%s' not a valid integer", arg);
     59  1.1   mrg }
     60  1.1   mrg 
     61  1.1   mrg void
     62  1.1   mrg decode_uint(const char *arg, unsigned *intp)
     63  1.1   mrg {
     64  1.1   mrg 	char	*ep;
     65  1.1   mrg 	unsigned	ret;
     66  1.1   mrg 
     67  1.1   mrg 	ret = (unsigned)strtoul(arg, &ep, 10);
     68  1.1   mrg 
     69  1.1   mrg 	if (ep[0] == '\0') {
     70  1.1   mrg 		*intp = ret;
     71  1.1   mrg 		return;
     72  1.1   mrg 	}
     73  1.1   mrg 	errx(1, "argument `%s' not a valid integer", arg);
     74  1.1   mrg }
     75  1.1   mrg 
     76  1.1   mrg void
     77  1.1   mrg decode_time(const char *arg, struct timeval *tvp)
     78  1.1   mrg {
     79  1.1   mrg 	char	*s, *colon, *dot;
     80  1.1   mrg 	char	*copy = strdup(arg);
     81  1.1   mrg 	int	first;
     82  1.1   mrg 
     83  1.1   mrg 	if (copy == NULL)
     84  1.1   mrg 		err(1, "could not allocate a copy of %s", arg);
     85  1.1   mrg 
     86  1.1   mrg 	tvp->tv_sec = tvp->tv_usec = 0;
     87  1.1   mrg 	s = copy;
     88  1.2  gson 
     89  1.1   mrg 	/* handle [hh:]mm:ss.dd */
     90  1.1   mrg 	if ((colon = strchr(s, ':')) != NULL) {
     91  1.1   mrg 		*colon++ = '\0';
     92  1.1   mrg 		decode_int(s, &first);
     93  1.1   mrg 		tvp->tv_sec = first * 60;	/* minutes */
     94  1.1   mrg 		s = colon;
     95  1.1   mrg 
     96  1.1   mrg 		if ((colon = strchr(s, ':')) != NULL) {
     97  1.1   mrg 			*colon++ = '\0';
     98  1.1   mrg 			decode_int(s, &first);
     99  1.1   mrg 			tvp->tv_sec += first;	/* minutes and hours */
    100  1.1   mrg 			tvp->tv_sec *= 60;
    101  1.1   mrg 			s = colon;
    102  1.1   mrg 		}
    103  1.1   mrg 	}
    104  1.1   mrg 	if ((dot = strchr(s, '.')) != NULL) {
    105  1.1   mrg 		int 	i, base = 100000;
    106  1.1   mrg 
    107  1.1   mrg 		*dot++ = '\0';
    108  1.1   mrg 
    109  1.1   mrg 		for (i = 0; i < 6; i++, base /= 10) {
    110  1.1   mrg 			if (!dot[i])
    111  1.1   mrg 				break;
    112  1.1   mrg 			if (!isdigit((unsigned char)dot[i]))
    113  1.1   mrg 				errx(1, "argument `%s' is not a value time specification", arg);
    114  1.1   mrg 			tvp->tv_usec += base * (dot[i] - '0');
    115  1.1   mrg 		}
    116  1.1   mrg 	}
    117  1.1   mrg 	decode_int(s, &first);
    118  1.1   mrg 	tvp->tv_sec += first;
    119  1.1   mrg 
    120  1.1   mrg 	free(copy);
    121  1.1   mrg }
    122