blob: c7e3135c882b49802a7a916fe0ca6e5bbbd60bb3 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020,2021 Thomas E. Dickey *
3 * Copyright 1998-2010,2012 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/***************************************************************************
31* *
32* Author : Juergen Pfeifer *
33* *
34***************************************************************************/
35
36#include "form.priv.h"
37
micky3879b9f5e72025-07-08 18:04:53 -040038MODULE_ID("$Id: fty_int.c,v 1.33 2021/06/17 21:11:08 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053039
40#if USE_WIDEC_SUPPORT
41#define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c)))
42#else
43#define isDigit(c) isdigit(UChar(c))
44#endif
45
46#define thisARG integerARG
47
48typedef struct
49 {
50 int precision;
51 long low;
52 long high;
53 }
54thisARG;
55
Steve Kondikae271bc2015-11-15 02:50:53 +010056typedef struct
57 {
58 int precision;
59 long low;
60 long high;
61 }
62integerPARM;
63
64/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -040065| Facility : libnform
Steve Kondikae271bc2015-11-15 02:50:53 +010066| Function : static void *Generic_This_Type( void * arg )
micky3879b9f5e72025-07-08 18:04:53 -040067|
Steve Kondikae271bc2015-11-15 02:50:53 +010068| Description : Allocate structure for integer type argument.
69|
70| Return Values : Pointer to argument structure or NULL on error
71+--------------------------------------------------------------------------*/
72static void *
73Generic_This_Type(void *arg)
74{
micky3879b9f5e72025-07-08 18:04:53 -040075 thisARG *argp = (thisARG *)0;
76 thisARG *param = (thisARG *)arg;
Steve Kondikae271bc2015-11-15 02:50:53 +010077
78 if (param)
79 {
80 argp = typeMalloc(thisARG, 1);
81
82 if (argp)
83 {
84 T((T_CREATE("thisARG %p"), (void *)argp));
85 *argp = *param;
86 }
87 }
88 return (void *)argp;
89}
90
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053091/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -040092| Facility : libnform
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053093| Function : static void *Make_This_Type( va_list * ap )
micky3879b9f5e72025-07-08 18:04:53 -040094|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053095| Description : Allocate structure for integer type argument.
96|
97| Return Values : Pointer to argument structure or NULL on error
98+--------------------------------------------------------------------------*/
99static void *
100Make_This_Type(va_list *ap)
101{
Steve Kondikae271bc2015-11-15 02:50:53 +0100102 thisARG arg;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530103
Steve Kondikae271bc2015-11-15 02:50:53 +0100104 arg.precision = va_arg(*ap, int);
105 arg.low = va_arg(*ap, long);
106 arg.high = va_arg(*ap, long);
107
108 return Generic_This_Type((void *)&arg);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530109}
110
111/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400112| Facility : libnform
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530113| Function : static void *Copy_This_Type(const void * argp)
micky3879b9f5e72025-07-08 18:04:53 -0400114|
115| Description : Copy structure for integer type argument.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530116|
117| Return Values : Pointer to argument structure or NULL on error.
118+--------------------------------------------------------------------------*/
119static void *
120Copy_This_Type(const void *argp)
121{
122 const thisARG *ap = (const thisARG *)argp;
micky3879b9f5e72025-07-08 18:04:53 -0400123 thisARG *result = (thisARG *)0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530124
125 if (argp)
126 {
127 result = typeMalloc(thisARG, 1);
micky3879b9f5e72025-07-08 18:04:53 -0400128
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530129 if (result)
130 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100131 T((T_CREATE("thisARG %p"), (void *)result));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530132 *result = *ap;
133 }
134 }
135 return (void *)result;
136}
137
138/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400139| Facility : libnform
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530140| Function : static void Free_This_Type(void * argp)
micky3879b9f5e72025-07-08 18:04:53 -0400141|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530142| Description : Free structure for integer type argument.
143|
144| Return Values : -
145+--------------------------------------------------------------------------*/
146static void
147Free_This_Type(void *argp)
148{
149 if (argp)
150 free(argp);
151}
152
153/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400154| Facility : libnform
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530155| Function : static bool Check_This_Field(
156| FIELD * field,
157| const void * argp)
micky3879b9f5e72025-07-08 18:04:53 -0400158|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530159| Description : Validate buffer content to be a valid integer value
160|
161| Return Values : TRUE - field is valid
162| FALSE - field is invalid
163+--------------------------------------------------------------------------*/
164static bool
165Check_This_Field(FIELD *field, const void *argp)
166{
167 const thisARG *argi = (const thisARG *)argp;
168 long low = argi->low;
169 long high = argi->high;
170 int prec = argi->precision;
171 unsigned char *bp = (unsigned char *)field_buffer(field, 0);
172 char *s = (char *)bp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530173 bool result = FALSE;
174
micky3879b9f5e72025-07-08 18:04:53 -0400175 while (*bp == ' ')
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530176 bp++;
177 if (*bp)
178 {
179 if (*bp == '-')
180 bp++;
181#if USE_WIDEC_SUPPORT
182 if (*bp)
183 {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530184 int len;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530185 wchar_t *list = _nc_Widen_String((char *)bp, &len);
186
187 if (list != 0)
188 {
micky3879b9f5e72025-07-08 18:04:53 -0400189 bool blank = FALSE;
190 int n;
191
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530192 result = TRUE;
193 for (n = 0; n < len; ++n)
194 {
195 if (blank)
196 {
197 if (list[n] != ' ')
198 {
199 result = FALSE;
200 break;
201 }
202 }
203 else if (list[n] == ' ')
204 {
205 blank = TRUE;
206 }
207 else if (!isDigit(list[n]))
208 {
209 result = FALSE;
210 break;
211 }
212 }
213 free(list);
214 }
215 }
216#else
217 while (*bp)
218 {
219 if (!isdigit(UChar(*bp)))
220 break;
221 bp++;
222 }
223 while (*bp && *bp == ' ')
224 bp++;
225 result = (*bp == '\0');
226#endif
227 if (result)
228 {
micky3879b9f5e72025-07-08 18:04:53 -0400229 long val = atol(s);
230
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530231 if (low < high)
232 {
233 if (val < low || val > high)
234 result = FALSE;
235 }
236 if (result)
237 {
micky3879b9f5e72025-07-08 18:04:53 -0400238 char buf[100];
239
Steve Kondikae271bc2015-11-15 02:50:53 +0100240 _nc_SPRINTF(buf, _nc_SLIMIT(sizeof(buf))
241 "%.*ld", (prec > 0 ? prec : 0), val);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530242 set_field_buffer(field, 0, buf);
243 }
244 }
245 }
246 return (result);
247}
248
249/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400250| Facility : libnform
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530251| Function : static bool Check_This_Character(
252| int c,
253| const void * argp)
micky3879b9f5e72025-07-08 18:04:53 -0400254|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530255| Description : Check a character for the integer type.
256|
257| Return Values : TRUE - character is valid
258| FALSE - character is invalid
259+--------------------------------------------------------------------------*/
260static bool
261Check_This_Character(int c, const void *argp GCC_UNUSED)
262{
263 return ((isDigit(UChar(c)) || (c == '-')) ? TRUE : FALSE);
264}
265
266static FIELDTYPE typeTHIS =
267{
268 _HAS_ARGS | _RESIDENT,
269 1, /* this is mutable, so we can't be const */
270 (FIELDTYPE *)0,
271 (FIELDTYPE *)0,
272 Make_This_Type,
273 Copy_This_Type,
274 Free_This_Type,
Steve Kondikae271bc2015-11-15 02:50:53 +0100275 INIT_FT_FUNC(Check_This_Field),
276 INIT_FT_FUNC(Check_This_Character),
277 INIT_FT_FUNC(NULL),
278 INIT_FT_FUNC(NULL),
279#if NCURSES_INTEROP_FUNCS
280 Generic_This_Type
281#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530282};
283
micky3879b9f5e72025-07-08 18:04:53 -0400284FORM_EXPORT_VAR(FIELDTYPE *) TYPE_INTEGER = &typeTHIS;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530285
Steve Kondikae271bc2015-11-15 02:50:53 +0100286#if NCURSES_INTEROP_FUNCS
287/* The next routines are to simplify the use of ncurses from
micky3879b9f5e72025-07-08 18:04:53 -0400288 programming languages with restrictions on interop with C level
Steve Kondikae271bc2015-11-15 02:50:53 +0100289 constructs (e.g. variable access or va_list + ellipsis constructs)
290*/
micky3879b9f5e72025-07-08 18:04:53 -0400291FORM_EXPORT(FIELDTYPE *)
Steve Kondikae271bc2015-11-15 02:50:53 +0100292_nc_TYPE_INTEGER(void)
293{
294 return TYPE_INTEGER;
295}
296#endif
297
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530298/* fty_int.c ends here */