Query(3pm) | User Contributed Perl Documentation | Query(3pm) |
Term::Query - Table-driven query routine.
"$result = query $prompt, $flags, [ $optional_args ];"
"$ok = query_table \@array;"
"query_table_set_defaults \@array;"
"$ok = query_table_process \@array, \&flagsub, \&querysub;"
The query subroutine fulfills the need for a generalized question-response subroutine, with programmatic defaulting, validation, condition and error checking.
Given $prompt and $flags, and possibly additional arguments, depending upon the characters in $flags, query issues a prompt to STDOUT and solicits input from STDIN. The input is validated against a set of test criteria as configured by the characters in $flags; if any of the tests fail, an error message is noted, and the query is reattempted.
When STDIN is not a tty (not interactive), prompts are not issued, and errors cause a return rather than attempting to obtain more input. This non-interactive behaviour can be disabled by setting the variable $Foce_Interactive as below:
$Term::Query::Force_Interactive = 1;
When $Force_Interactive is a non-null, non-zero value, query will issue prompts, error messages, and ask for additional input even when the input is not interactive.
The query_table subroutine performs multiple queries, by invoking query, setting associated variables with the results of each query. Prompts, flags, and other arguments for each query are given in an array, called a query table, which is passed to the query_table subroutine by reference.
The query_table_set_defaults subroutine causes any variables named in the given query table array to be assigned their corresponding default values, if any. This is a non-interactive subroutine.
A general interface to processing a query table is available with the query_table_process subroutine. It accepts a query table array, and two subroutine references, a &flagsub and a &querysub. The &flagsub is invoked on each each flag character given in the $flags argument of the query table (see below). The &querysub is invoked for each query in the query table.
The query_table and query_table_set_defaults subroutines both use query_table_process to perform their functions.
The format of the query table array passed to query_table, query_table_set_defaults, and query_table_process subroutines is:
@array = ( $prompt1, $flags1, [ $arglist1, ... ], $prompt2, $flags2, [ $arglist2, ... ], ... $promptN, $flagsN, [ $arglistN, ... ] );
In English, there are three items per query: a prompt string, a flags string, and an array of arguments. Note that the syntax used above uses "[ ... ]" to denote a Perl 5 anonymous array, not an optional set of arguments. Of course, if there are no arguments for a particular query, the corresponding anonymous array can be the null string or zero.
The query table design is such that a query table can be created with a set of variables, their defaults, value constraints, and help strings, and it can be used to both initialize the variables' values and to interactively set their new values. The query_table_set_defaults subroutine performs the former, while query_table does the latter.
With typical usage, given $prompt and $flags, query prints $prompt and then waits for input from the user. The handling of the response depends upon the flag characters given in the $flags string.
The flag characters indicate the type of input, how to process it, acceptable values, etc. Some flags simply indicate the type or processing of the input, and do not require additional arguments. Other flags require that subsequent arguments to the query subroutine be given. The arguments must be given in the same order as their corresponding flag characters.
The ordering of the flags in the $flags argument is important -- it determines the ordering of the tests. For example, if both the a and m flags are given as "am", then this indicates that an after subroutine call should be performed first, followed by a regular expression match test.
All tests are applied in the order given in the $flags until a particular test fails. When a test fails, an error message is generated and the input is reattempted, except in the case of the I flag.
The following flag characters indicate the presence of an argument to query. The arguments must occur in the same order as their corresponding flag characters. For example, if both the V and h flags are given as "Vh", then the first argument must be the variable name, and the next the help string, in that order.
&$after( \$input );
If the after sub returns an "undef", then query processing stops with an immediate "undef" return value.
If the after sub returns a null or zero value, then the input is rejected and resolicted. No error messages are displayed except the "Please try again." message.
Since the after sub has the reference to the $input variable, it is free to change the value of input indirectly; ie:
$$input = $some_new_value;
This feature, used in a query table, allows for selective queries to be programmed by using before subs on the optional queries. For example, using the following anonymous sub as the b flag argument:
sub { $> == 0; }
will cause the corresponding query to only be issued for the "root" user.
The ordering of the b flag in the $flags argument is unimportant, since, by definition, this test is always performed before attempting any input.
The matching can be made case-sensitive by setting the following variable prior to the invocation of query:
$Query::Case_sensitive = 1;
By default, this variable is null.
The k option is useful for soliciting new, unique keywords to a growing list. Adding new fields to a database, for example.
The matching can be made case-sensitive by setting the $Query::Case_sensitive variable (see above).
If the input returned by the reference does not match other constraints, additional input is not attempted. An error message is noted, and an "undef" return is taken.
This option is handy for applications which have already acquired the input, and wish to use the validation features of "query".
It is also useful to embed a query definition in a query table which does not actually perform a query, but instead does a variable assignment dynamically, using the I reference value.
The value can either be a string representing the variable name, or a reference to a variable, eg: "\$some_var".
The query processing proceeds basically in the same order as defined by the flags argument, with some exceptions. For example, the before subroutine is always performed prior to input.
There are implicit precedences in the ordering of some of the flag tests. Generally, flags have their corresponding tests performed in the same order as the given flags. Some flag tests, however, require that other flags' tests be performed beforehand in order to be effective. For example, when given the k flag and an s flag, stripping the input would only be effective if the strip were done on the input before testing the input against the keyword table. In other words, the s flag has precedence over the k flag. If the user supplies the flags string as "ks", the effective ordering would still be "sk".
The table below indicates the precedences of the flag tests:
Given Flag Flags With Higher Precedence ========== ================================ i (int) s (strip), d (default), h (help) k (key) s (strip), d (default), h (help) K (nonkey) s (strip), d (default), h (help) l (maxlen) d (default), h (help) m (match) d (default), h (help) n (numeric) s (strip), d (default), h (help) N (no) s (strip), d (default), h (help) r (required) d (default), h (help) s (strip) d (default), h (help) Y (yes) s (strip), d (default), h (help)
Except for the implied precedence indicated in the table above, the ordering of the flag tests proceeds in the same order as given in the flags argument.
Excepting the precedences above, query processing proceeds generally as described below.
You are being asked "$prompt"
is displayed. Also, some information about the expected response, according to any given flag characters, is displayed. Finally, the user is returned to the prompt, and given another opportunity to enter a response.
/^(y(es?)?|no?)$/i
If the match fails, print an error message, and query again. When the match succeeds, replace the input with the complete word "yes" or "no";
The matching is case-insensitive or not, according to the value of the variable $Query::Case_sensitive, which is nil, by default. The variable may be set by the user to change the matching from case-insensitive to case-sensitive.
The matching is case-insensitive by default. Set the variable $Query::Case_sensitive to a non-null, non-zero value to make the keyword matching case-sensitive.
If the variable is a string name and not qualified with a package name (ie: $foo::variable), then the variable is qualified at the level outside of the Query.pm module.
The following are typical usage samples:
$ans = &query("Do you wish to quit? (yn)",'N');
query "Do you wish to quit? (yn)", 'NV', \$ans;
$ans = &query("Do you wish to quit? (yn)",'Nh',<<'EOF'); You are being asked if you wish to quit. If you answer "yes", then all changes will be lost. An answer of "no", will allow you to return to continue making changes. EOF
$mode = &query("Please enter the file mode:",'idh','644',<<'EOF'); Please enter the 3 digit numeric file mode; if you are unsure of how the file mode is used, please see the man page for "chmod". EOF
@keys = split(' ','SGI DEC IBM Sun HP Apple'); $vendor = &query('Please enter a vendor:','rkd',\@keys,'SGI');
@fields = split(' ','Index Vendor Title'); # existing fields $newfield = &query('New field name:','rKm',\@fields,'^\w+$');
None.
Copyright (C) 1995 Alan K. Stebbens <aks@hub.ucsb.edu>
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2022-06-17 | perl v5.34.0 |