field_validation


HOME

field_validation

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
SEE ALSO
NOTES
PORTABILITY
AUTHORS

NAME

form_field_validation − data type validation for fields

SYNOPSIS

#include <form.h>
int set_field_type(FIELD *field, FIELDTYPE *type, ...);
FIELDTYPE *field_type(const FIELD *field);
void *field_arg(const FIELD *field);

FIELDTYPE *TYPE_ALNUM;
FIELDTYPE *TYPE_ALPHA;
FIELDTYPE *TYPE_ENUM;
FIELDTYPE *TYPE_INTEGER;
FIELDTYPE *TYPE_NUMERIC;
FIELDTYPE *TYPE_REGEXP;
FIELDTYPE *TYPE_IPV4;

DESCRIPTION

The function set_field_type declares a data type for a given form field. This is the type checked by validation functions. The predefined types are as follows:
TYPE_ALNUM

Alphanumeric data. Requires a third int argument, a minimum field width.

TYPE_ALPHA

Character data. Requires a third int argument, a minimum field width.

TYPE_ENUM

Accept one of a specified set of strings. Requires a third (char **) argument pointing to a string list; a fourth int flag argument to enable case-sensitivity; and a fifth int flag argument specifying whether a partial match must be a unique one (if this flag is off, a prefix matches the first of any set of more than one list elements with that prefix). Please notice that the string list is copied. So you may use a list that lives in automatic variables on the stack.

TYPE_INTEGER

Integer data, parsable to an integer by atoi(3). Requires a third int argument controlling the precision, a fourth long argument constraining minimum value, and a fifth long constraining maximum value. If the maximum value is less than or equal to the minimum value, the range is simply ignored. On return the field buffer is formatted according to the printf format specification ".*ld", where the ’*’ is replaced by the precision argument. For details of the precision handling see printf’s man-page.

TYPE_NUMERIC

Numeric data (may have a decimal-point part). Requires a third int argument controlling the precision, a fourth double argument constraining minimum value, and a fifth double constraining maximum value. If your system supports locales, the decimal point character to be used must be the one specified by your locale. If the maximum value is less than or equal to the minimum value, the range is simply ignored. On return the field buffer is formatted according to the printf format specification ".*f", where the ’*’ is replaced by the precision argument. For details of the precision handling see printf’s man-page.

TYPE_REGEXP

Regular expression data. Requires a regular expression (char *) third argument; the data is valid if the regular expression matches it. Regular expressions are in the format of regcomp and regexec. Please notice that the regular expression must match the whole field. If you have for example an eight character wide field, a regular expression "^[0−9]*$" always means that you have to fill all eight positions with digits. If you want to allow fewer digits, you may use for example "^[0−9]* *$" which is good for trailing spaces (up to an empty field), or "^ *[0−9]* *$" which is good for leading and trailing spaces around the digits.

TYPE_IPV4

An Internet Protocol Version 4 address. This requires no additional argument. It is checked whether or not the buffer has the form a.b.c.d, where a,b,c and d are numbers between 0 and 255. Trailing blanks in the buffer are ignored. The address itself is not validated. Please note that this is an ncurses extension. This field type may not be available in other curses implementations.

It is possible to set up new programmer-defined field types. See the fieldtype(3FORM) manual page.

RETURN VALUE

The functions field_type and field_arg return NULL on error. The function set_field_type returns one of the following:

E_OK

The routine succeeded.

E_SYSTEM_ERROR

System error occurred (see errno).

SEE ALSO

ncurses(3NCURSES), form(3FORM), form_variables(3FORM).

NOTES

The header file <form.h> automatically includes the header file <curses.h>.

PORTABILITY

These routines emulate the System V forms library. They were not supported on Version 7 or BSD versions.

AUTHORS

Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S. Raymond.




More Linux Commands

manpages/xlsclients.1.html
xlsclients(1) - list client applications running on a displa
Xlsclients is a utility for listing information about the client applications running on a display. It may be used to generate scripts representing a snapshot o

manpages/fbtest.8.html
fbtest(8) - test if a virtual console is mapped to a frame b
The program fbtest(8) is used to test if a virtual console, e.g. /dev/tty1 is mapped on a frame buffer device. OPTIONS -f, --fb=&lt;fb_device&gt; This option specifie

manpages/chown.2.html
chown(2) - change ownership of a file - Linux manual page...
These system calls change the owner and group of a file. The chown(), fchown(), and lchown() system calls differ only in how the file is specified: * chown() ch

manpages/fc-query.1.html
fc-query(1) - query font files (Commands - Linux man page)
fc-query queries font-file(s) using the normal fontconfig rules and prints out font pattern for each face found. If --index is given, only one face of each file

manpages/glConvolutionFilter2D.3gl.html
glConvolutionFilter2D(3gl) - define a two-dimensional convol
glConvolutionFilter2D builds a two-dimensional convolution filter kernel from an array of pixels. The pixel array specified by width, height, format, type, and

manpages/hsearch.3.html
hsearch(3) - hash table management - Linux manual page......
The three functions hcreate(), hsearch(), and hdestroy() allow the caller to create and manage a hash search table containing entries consisting of a key (a str

manpages/Tk_ClipboardAppend.3.html
Tk_ClipboardAppend(3) - Manage the clipboard (Man Page).....
These two procedures manage the clipboard for Tk. The clipboard is typically managed by calling Tk_ClipboardClear once, then calling Tk_ClipboardAppend to add d

manpages/read.n.html
read(n) - Read from a channel (Local - Linux man page)......
In the first form, the read command reads all of the data from channelId up to the end of the file. If the -nonewline switch is specified then the last characte

manpages/inet_net_pton.3.html
inet_net_pton(3) Internet network number conversion.........
These functions convert network numbers between presentation (i.e., printable) format and network (i.e., binary) format. For both functions, af specifies the ad

manpages/aa-logprof.8.html
aa-logprof(8) utility for updating AppArmor security profile
aa-logprof is an interactive tool used to review AppArmor generated messages and update AppArmor security profiles. Running aa-logprof will scan the log file an

manpages/clock_getcpuclockid.3.html
clock_getcpuclockid(3) - obtain ID of a process CPU-time clo
The clock_getcpuclockid() function obtains the ID of the CPU-time clock of the process whose ID is pid, and returns it in the location pointed to by clock_id. I

manpages/ppmtoapplevol.1.html
ppmtoapplevol(1) - convert a PPM into an Apple volume label
This program is part of Netpbm(1) ppmtoapplevol reads a PPM image as input and produces an Apple volume label image as output. EFI-based Apple systems use a sim





We can't live, work or learn in freedom unless the software we use is free.