50e9ef5bb56056df49d4ebe544d1276f0e3275f3
[perl-pqf.git] / lib / Net / Z3950 / PQF / Node.pm
1 # $Id: Node.pm,v 1.1 2004-12-17 15:29:00 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::Term('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<AndNode>
52
53 Represents an AND node with two sub-nodes.
54
55 =item C<OrNode>
56
57 Represents an OR node with two sub-nodes.
58
59 =item C<NotNode>
60
61 Represents a NOT node with two sub-nodes.  In the Z39.50 Type-1 query,
62 and hence in PQF, NOT is a binary AND-NOT operator rather than than a
63 unary negation operator.
64
65 =item C<ProxNode>
66
67 Represents a proximity node with two subnodes and five parameters:
68
69 I<exclusion>:
70 a boolean indicating whether the condition indicated by the other
71 parameters should be inverted.
72
73 I<distance>:
74 an integer indicating the number of units that may separate the
75 fragments identified by the subnodes.
76
77 I<ordered>:
78 a boolean indicating whether the elements indicated by the subnodes
79 are constrained to be in the same order as the subnodes themselves.
80
81 I<relation>:
82 indicates the relation required on the specified distance in order
83 for the condition to be satisfied.
84
85 I<unit>:
86 a short string indicating the units of proximity (C<word>,
87 C<sentence>, etc.)
88
89 =back
90
91 Except where noted, the methods described below are defined for all of
92 the concrete node types.
93
94
95 =head1 METHODS
96
97 =head2 new()
98
99  $term1 = new Net::Z3950::PQF::TermNode('brian', [ "bib-1", 1, 1003 ]);
100  $term2 = new Net::Z3950::PQF::TermNode('unix', [ "bib-1", 1, 4 ]);
101  $and = new Net::Z3950::PQF::AndNode($term1, $term2);
102
103 Creates a new node object of the appropriate type.  It is not possible
104 to instantiate the abstract node type, C<Net::Z3950::PQF::Node>, only its
105 concrete subclasses.
106
107 The parameters required are different for different node types:
108
109 =over 4
110
111 =item C<TermNode>
112
113 The first parameter is the actual term, and the remainder are
114 attributes, each represented by a triple of
115 [ I<attribute-set>, I<type>, I<value> ].
116
117 =item C<AndNode>, C<OrNode>, C<NotNode>
118
119 The two parameters are nodes representing the subtrees.
120
121 =item C<ProxNode>
122
123 The seven parameters are, in order: the two nodes representing the
124 subtrees, and the five parameters exclusion, distance, ordered,
125 relation and unit.
126
127 =back
128
129 =cut
130
131 sub new {
132     my $class = shift();
133     die "can't create an abstract $class";
134 }
135
136
137 =head2 render()
138
139  $node->render(0);
140
141 Renders the contents of the tree rooted at the specified node,
142 indented to a level indicated by the parameter.  This output is in a
143 human-readable form that is useful for debugging but probably not much
144 else.
145
146 =cut
147
148 sub render {
149     my $class = shift();
150     die "can't render an abstract $class";
151 }
152
153
154
155 package Net::Z3950::PQF::TermNode;
156
157 sub new {
158     my $class = shift();
159     my($term, @attrs) = @_;
160
161     return bless {
162         term => $term,
163         attrs => [ @attrs ],
164     }, $class;
165 }
166
167 sub render {
168     my $this = shift();
169     my($level) = @_;
170
171     die "render() called with no level" if !defined $level;
172     my $text = ("\t" x $level) . "term: " . $this->{term} . "\n";
173     foreach my $attr (@{ $this->{attrs} }) {
174         my($set, $type, $val) = @$attr;
175         $text .= ("\t" x ($level+1)) . "attr: $set $type=$val\n";
176     }
177
178     return $text;
179 }
180
181
182
183 # PRIVATE class, used as base by AndNode, OrNode and NotNode
184 package Net::Z3950::PQF::BooleanNode;
185
186 sub new {
187     my $class = shift();
188     my(@sub) = @_;
189
190     return bless {
191         sub => [ @sub ],
192     }, $class;
193 }
194
195 sub render {
196     my $this = shift();
197     my($level) = @_;
198
199     die "render() called with no level" if !defined $level;
200     my $text = ("\t" x $level) . $this->_op() . "\n";
201     foreach my $sub (@{ $this->{sub} }) {
202         $text .= $sub->render($level+1);
203     }
204
205     return $text;
206 }
207
208
209
210 package Net::Z3950::PQF::AndNode;
211 use vars qw(@ISA);
212 @ISA = qw(Net::Z3950::PQF::BooleanNode);
213
214 sub _op { "and" }
215
216
217
218 package Net::Z3950::PQF::OrNode;
219 use vars qw(@ISA);
220 @ISA = qw(Net::Z3950::PQF::BooleanNode);
221
222 sub _op { "or" }
223
224
225
226 package Net::Z3950::PQF::NotNode;
227 use vars qw(@ISA);
228 @ISA = qw(Net::Z3950::PQF::BooleanNode);
229
230 sub _op { "not" }
231
232
233
234 package Net::Z3950::PQF::ProxNode;
235
236 sub new {
237     my $class = shift();
238     die "### class $class not yet implemented";
239 }
240
241 sub render {
242     my $this = shift();
243     die "you shouldn't have been able to make $this";
244 }
245
246
247
248
249 =head1 PROVENANCE
250
251 This module is part of the Net::Z3950::PQF distribution.  The
252 copyright, authorship and licence are all as for the distribution.
253
254 =cut
255
256
257 1;