adaa46c8ca95aa2e3f1f9732803e809b4cfcc259
[perl-pqf.git] / lib / Net / Z3950 / PQF / Node.pm
1 # $Id: Node.pm,v 1.3 2004-12-20 09:46:58 mike Exp $
2
3 package Net::Z3950::PQF::Node;
4
5 use strict;
6 use warnings;
7
8
9 =head1 NAME
10
11 Net::Z3950::PQF::Node - Abstract class for nodes in a PQF parse tree
12
13 =head1 SYNOPSIS
14
15  $node = new Net::Z3950::PQF::TermNode('unix');
16  $node->isa("Net::Z3950::PQF::Node") or die "oops";
17
18 =head1 DESCRIPTION
19
20 This module implements the types for the nodes that make up a PQF
21 parse tree.  Each such concrete type is a subclass of the abstract
22 base class
23 C<Net::Z3950::Node>,
24 and has a type whose name is of the form
25 C<Net::Z3950::PQF::>I<somethingNode>.
26
27 The following node types are defined:
28
29 =over 4
30
31 =item C<TermNode>
32
33 Represents an actual query term such as
34 C<brian>,
35 C<"brian">
36 or
37 C<"Brian W. Kernighan">.
38
39 The term is accompanied by zero or more 
40 I<attributes>,
41 each of which is a triple represented by a reference to a
42 three-element array.  Each such array consists of an 
43 I<attribute set identifier>
44 which may be either an OID or a short descriptive string,
45 an integer
46 I<type>,
47 and a
48 I<value>
49 which may be either an integer or a string.
50
51 =item C<RsetNode>
52
53 Represents a result-set node, a reference to the name of a prior
54 result set.  The result-set name is accompanied by zero or more
55 attributes as above.
56
57 =item C<AndNode>
58
59 Represents an AND node with two sub-nodes.
60
61 =item C<OrNode>
62
63 Represents an OR node with two sub-nodes.
64
65 =item C<NotNode>
66
67 Represents a NOT node with two sub-nodes.  In the Z39.50 Type-1 query,
68 and hence in PQF, NOT is a binary AND-NOT operator rather than than a
69 unary negation operator.
70
71 =item C<ProxNode>
72
73 Represents a proximity node with two subnodes and five parameters:
74
75 I<exclusion>:
76 a boolean indicating whether the condition indicated by the other
77 parameters should be inverted.
78
79 I<distance>:
80 an integer indicating the number of units that may separate the
81 fragments identified by the subnodes.
82
83 I<ordered>:
84 a boolean indicating whether the elements indicated by the subnodes
85 are constrained to be in the same order as the subnodes themselves.
86
87 I<relation>:
88 indicates the relation required on the specified distance in order
89 for the condition to be satisfied.
90
91 I<unit>:
92 a short string indicating the units of proximity (C<word>,
93 C<sentence>, etc.)
94
95 =back
96
97 Except where noted, the methods described below are defined for all of
98 the concrete node types.
99
100
101 =head1 METHODS
102
103 =head2 new()
104
105  $term1 = new Net::Z3950::PQF::TermNode('brian', [ "bib-1", 1, 1003 ]);
106  $term2 = new Net::Z3950::PQF::TermNode('unix', [ "bib-1", 1, 4 ]);
107  $and = new Net::Z3950::PQF::AndNode($term1, $term2);
108
109 Creates a new node object of the appropriate type.  It is not possible
110 to instantiate the abstract node type, C<Net::Z3950::PQF::Node>, only its
111 concrete subclasses.
112
113 The parameters required are different for different node types:
114
115 =over 4
116
117 =item C<TermNode>
118
119 The first parameter is the actual term, and the remainder are
120 attributes, each represented by a triple of
121 [ I<attribute-set>, I<type>, I<value> ].
122
123 =item C<AndNode>, C<OrNode>, C<NotNode>
124
125 The two parameters are nodes representing the subtrees.
126
127 =item C<ProxNode>
128
129 The seven parameters are, in order: the two nodes representing the
130 subtrees, and the five parameters exclusion, distance, ordered,
131 relation and unit.
132
133 =back
134
135 =cut
136
137 sub new {
138     my $class = shift();
139     die "can't create an abstract $class";
140 }
141
142
143 =head2 render()
144
145  $node->render(0);
146
147 Renders the contents of the tree rooted at the specified node,
148 indented to a level indicated by the parameter.  This output is in a
149 human-readable form that is useful for debugging but probably not much
150 else.
151
152 =cut
153
154 sub render {
155     my $class = shift();
156     die "can't render an abstract $class";
157 }
158
159
160
161 # PRIVATE base class, used as base by TermNode and RsetNode
162 package Net::Z3950::PQF::LeafNode;
163 our @ISA = qw(Net::Z3950::PQF::Node);
164
165 sub new {
166     my $class = shift();
167     my($value, @attrs) = @_;
168
169     return bless {
170         value => $value,
171         attrs => [ @attrs ],
172     }, $class;
173 }
174
175 sub render {
176     my $this = shift();
177     my($level) = @_;
178
179     die "render() called with no level" if !defined $level;
180     my $text = ("\t" x $level) . $this->_name() . ": " . $this->{value} . "\n";
181     foreach my $attr (@{ $this->{attrs} }) {
182         my($set, $type, $val) = @$attr;
183         $text .= ("\t" x ($level+1)) . "attr: $set $type=$val\n";
184     }
185
186     return $text;
187 }
188
189
190
191 package Net::Z3950::PQF::TermNode;
192 our @ISA = qw(Net::Z3950::PQF::LeafNode);
193
194 sub _name { "term" }
195
196
197
198 package Net::Z3950::PQF::RsetNode;
199 our @ISA = qw(Net::Z3950::PQF::LeafNode);
200
201 sub _name { "rset" }
202
203
204
205 # PRIVATE class, used as base by AndNode, OrNode and NotNode
206 package Net::Z3950::PQF::BooleanNode;
207 our @ISA = qw(Net::Z3950::PQF::Node);
208
209 sub new {
210     my $class = shift();
211     my(@sub) = @_;
212
213     return bless {
214         sub => [ @sub ],
215     }, $class;
216 }
217
218 sub render {
219     my $this = shift();
220     my($level) = @_;
221
222     die "render() called with no level" if !defined $level;
223     my $text = ("\t" x $level) . $this->_op() . "\n";
224     foreach my $sub (@{ $this->{sub} }) {
225         $text .= $sub->render($level+1);
226     }
227
228     return $text;
229 }
230
231
232
233 package Net::Z3950::PQF::AndNode;
234 our @ISA = qw(Net::Z3950::PQF::BooleanNode);
235
236 sub _op { "and" }
237
238
239
240 package Net::Z3950::PQF::OrNode;
241 our @ISA = qw(Net::Z3950::PQF::BooleanNode);
242
243 sub _op { "or" }
244
245
246
247 package Net::Z3950::PQF::NotNode;
248 our @ISA = qw(Net::Z3950::PQF::BooleanNode);
249
250 sub _op { "not" }
251
252
253
254 package Net::Z3950::PQF::ProxNode;
255
256 sub new {
257     my $class = shift();
258     die "### class $class not yet implemented";
259 }
260
261 sub render {
262     my $this = shift();
263     die "you shouldn't have been able to make $this";
264 }
265
266
267
268
269 =head1 PROVENANCE
270
271 This module is part of the Net::Z3950::PQF distribution.  The
272 copyright, authorship and licence are all as for the distribution.
273
274 =cut
275
276
277 1;