.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Genders 3" .TH Genders 3 2024-03-07 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Genders \- Perl library for querying a genders file .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& use Genders; \& \& $Genders::GENDERS_DEFAULT_FILE; \& \& $obj = Genders\->new([$filename]) \& \& $obj\->debug($num) \& \& $obj\->getnodename() \& $obj\->getnodes([$attr, [$val]]) \& $obj\->getattr([$node]) \& $obj\->getattr_all() \& $obj\->getattrval($attr, [$node]) \& \& $obj\->testattr($attr, [$node]) \& $obj\->testattrval($attr, $val, [$node]) \& \& $obj\->isnode([$node]) \& $obj\->isattr($attr) \& $obj\->isattrval($attr, $val) \& \& $obj\->index_attrvals($attr) \& \& $obj\->query($query) \& $obj\->testquery($query, [$node]) .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" This package provides a perl interface for querying a genders file. .IP \fBGenders\->new([$filename])\fR 4 .IX Item "Genders->new([$filename])" Creates a Genders object and load genders data from the specified file. If the genders file is not specified, the default genders file will be used. Returns undef if file cannot be read. .ie n .IP \fR\fB$obj\fR\fB\->debug($num)\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->debug($num)\fR 4 .IX Item "$obj->debug($num)" Set the debug level in the genders object. By default, the debug level is 0 and all debugging is turned off. To turn it on, set the level to 1. .ie n .IP \fR\fB$obj\fR\fB\->getnodename()\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->getnodename()\fR 4 .IX Item "$obj->getnodename()" Returns the name of the current node. .ie n .IP "\fR\fB$obj\fR\fB\->getnodes([$attr, [$val]])\fR" 4 .el .IP "\fR\f(CB$obj\fR\fB\->getnodes([$attr, [$val]])\fR" 4 .IX Item "$obj->getnodes([$attr, [$val]])" Returns a list of nodes with the specified attribute and value. If a value is not specified only the attribute is considered. If the attribute is not specified, all nodes listed in the genders file are returned. .ie n .IP \fR\fB$obj\fR\fB\->getattr([$node])\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->getattr([$node])\fR 4 .IX Item "$obj->getattr([$node])" Returns a list of attributes for the specified node. If the node is not specified, the local node's attributes returned. .ie n .IP \fR\fB$obj\fR\fB\->getattr_all()\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->getattr_all()\fR 4 .IX Item "$obj->getattr_all()" Returns a list of all attributes listed in the genders file. .ie n .IP "\fR\fB$obj\fR\fB\->getattrval($attr, [$node])\fR" 4 .el .IP "\fR\f(CB$obj\fR\fB\->getattrval($attr, [$node])\fR" 4 .IX Item "$obj->getattrval($attr, [$node])" Returns the value of the specified attribute for the specified node. If the attribute does not exist or the attribute has no value, an empty string is returned. If the node is not specified, the local node's attribute value is returned. .ie n .IP "\fR\fB$obj\fR\fB\->testattr($attr, [$node])\fR" 4 .el .IP "\fR\f(CB$obj\fR\fB\->testattr($attr, [$node])\fR" 4 .IX Item "$obj->testattr($attr, [$node])" Returns 1 if the specified node has the specified attribute, 0 if it does not. If the node is not specified, the local node is checked. .ie n .IP "\fR\fB$obj\fR\fB\->testattrval($attr, \fR\fB$val\fR\fB, [$node])\fR" 4 .el .IP "\fR\f(CB$obj\fR\fB\->testattrval($attr, \fR\f(CB$val\fR\fB, [$node])\fR" 4 .IX Item "$obj->testattrval($attr, $val, [$node])" Returns 1 if the specified node has the specified attribute and value, 0 if it does not. If the node is not specified, the local node is checked. .ie n .IP \fR\fB$obj\fR\fB\->isnode([$node])\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->isnode([$node])\fR 4 .IX Item "$obj->isnode([$node])" Returns 1 if the specified node is listed in the genders file, 0 if it is not. If the node is not specified, the local node is checked. .ie n .IP \fR\fB$obj\fR\fB\->isattr($attr)\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->isattr($attr)\fR 4 .IX Item "$obj->isattr($attr)" Returns 1 if the specified attribute is listed in the genders file, 0 if it is not. .ie n .IP "\fR\fB$obj\fR\fB\->isattrval($attr, \fR\fB$val\fR\fB)\fR" 4 .el .IP "\fR\f(CB$obj\fR\fB\->isattrval($attr, \fR\f(CB$val\fR\fB)\fR" 4 .IX Item "$obj->isattrval($attr, $val)" Returns 1 if the specified attribute is equal to the specified value for some node in the genders file, 0 if it is not. .ie n .IP \fR\fB$obj\fR\fB\->index_attrvals($attr)\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->index_attrvals($attr)\fR 4 .IX Item "$obj->index_attrvals($attr)" Internally indexes genders attribute values for faster search times. Subsequent calls with a different attribute will overwrite earlier indexes. .ie n .IP \fR\fB$obj\fR\fB\->query($query)\fR 4 .el .IP \fR\f(CB$obj\fR\fB\->query($query)\fR 4 .IX Item "$obj->query($query)" Returns a list of nodes specified by a genders query. A genders query is based on the union, intersection, set difference, or complement between genders attributes and values. Union is represented by two pipe symbols ('||'), intersection by two ampersand symbols ('&&'), difference by two minus symbols ('\-\-'), and complement by a tilde ('~') Operations are performed from left to right. Parentheses may be used to change the order of operations. For example, the following query would retrieve all nodes other than management or login nodes: "~(mgmt||login)". If the query is not specified, all nodes listed in the genders file are returned. .ie n .IP "\fR\fB$obj\fR\fB\->testquery($query, [$node])\fR" 4 .el .IP "\fR\f(CB$obj\fR\fB\->testquery($query, [$node])\fR" 4 .IX Item "$obj->testquery($query, [$node])" Returns 1 if the specified node meets the conditions of the specified query, 0 if it does not. If the node is not specified, the local node is checked. .SH AUTHOR .IX Header "AUTHOR" Albert Chu .SH "SEE ALSO" .IX Header "SEE ALSO" Libgenders. .PP libgenders.