xref: /illumos-gate/usr/src/lib/libeti/form/common/ty_int.c (revision 5d9d9091f564c198a760790b0bfa72c44e17912b)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*	Copyright (c) 1988 AT&T	*/
23 /*	  All Rights Reserved  	*/
24 
25 
26 /*
27  *      Copyright (c) 1997, by Sun Microsystems, Inc.
28  *      All rights reserved.
29  */
30 
31 /*LINTLIBRARY*/
32 
33 #include <sys/types.h>
34 #include <stdlib.h>
35 #include "utility.h"
36 
37 /*
38  *	TYPE_INTEGER standard type
39  *
40  *	usage:
41  *		set_field_type(f, TYPE_INTEGER, precision, vmin, vmax);
42  *
43  *		int precision;	for padding with leading zeros
44  *		double vmin;	minimum acceptable value
45  *		double vmax;	maximum acceptable value
46  */
47 static char *make_int(va_list *);
48 static char *copy_int(char *);
49 static void free_int(char *);
50 static int fcheck_int(FIELD *, char *);
51 static int ccheck_int(int, char *);
52 
53 typedef struct {
54 
55 	int	prec;
56 	long	vmin;
57 	long	vmax;
58 } INTEGER;
59 
60 static FIELDTYPE typeINTEGER =
61 {
62 				ARGS,			/* status	*/
63 				1,			/* ref		*/
64 				(FIELDTYPE *) 0,	/* left		*/
65 				(FIELDTYPE *) 0,	/* right	*/
66 				make_int,		/* makearg	*/
67 				copy_int,		/* copyarg	*/
68 				free_int,		/* freearg	*/
69 				fcheck_int,		/* fcheck	*/
70 				ccheck_int,		/* ccheck	*/
71 				(PTF_int) 0,		/* next		*/
72 				(PTF_int) 0,		/* prev		*/
73 };
74 
75 FIELDTYPE * TYPE_INTEGER = &typeINTEGER;
76 
77 static char *
78 make_int(va_list *ap)
79 {
80 	INTEGER * n;
81 
82 	if (Alloc(n, INTEGER)) {
83 		n -> prec = va_arg(*ap, int);
84 		n -> vmin = va_arg(*ap, long);
85 		n -> vmax = va_arg(*ap, long);
86 	}
87 	return ((char *) n);
88 }
89 
90 static char *
91 copy_int(char *arg)
92 {
93 	INTEGER *n;
94 
95 	if (Alloc(n, INTEGER))
96 		*n = *((INTEGER *) arg);
97 	return ((char *) n);
98 }
99 
100 static void
101 free_int(char *arg)
102 {
103 	Free(arg);
104 }
105 
106 static int
107 fcheck_int(FIELD *f, char *arg)
108 {
109 	INTEGER *	n = (INTEGER *) arg;
110 	long		vmin = n -> vmin;
111 	long		vmax = n -> vmax;
112 	int		prec = n -> prec;
113 	char *		x = field_buffer(f, 0);
114 	char		buf[80];
115 
116 	while (*x && *x == ' ')
117 		++x;
118 	if (*x) {
119 		char * t = x;
120 
121 		if (*x == '-')
122 			++x;
123 		while (*x && isdigit(*x))
124 			++x;
125 		while (*x && *x == ' ')
126 			++x;
127 		if (! *x) {
128 			long v = atol(t);
129 
130 			if (vmin >= vmax || (v >= vmin && v <= vmax)) {
131 				(void) sprintf(buf, "%.*ld", prec, v);
132 				(void) set_field_buffer(f, 0, buf);
133 				return (TRUE);
134 			}
135 		}
136 	}
137 	return (FALSE);
138 }
139 
140 #define	charok(c)	(isdigit(c) || c == '-')
141 
142 /*ARGSUSED*/
143 
144 static int
145 ccheck_int(int c, char *arg)
146 {
147 	return (charok(c));
148 }
149