1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
#
# Copyright (C) 2000 Benjamin Drieu
#
# 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, 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, 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
# $Header: /cvsroot/TextQuery/Text-Query-SQL/lib/Text/Query/BuildSQLPg.pm,v 1.1 2000/03/21 14:10:48 benj2 Exp $
#
package Text::Query::BuildSQLPg;
use strict;
use vars qw(@ISA $VERSION);
use Text::Query::BuildSQL;
use Carp;
@ISA = qw(Text::Query::BuildSQL);
sub build_near {
my($self, $l, $r) = @_;
if($$l[0] ne 'literal' || $$r[0] ne 'literal') {
croak("cannot use near on non literal");
} elsif($$l[1] ne $$r[1]) {
croak("cannot use near with literals that does not belong to the same scope");
} else {
my($t);
# if(!$self->{parseopts}{-encoding} =~ /^big5$/io) {
# $t = "$$l[2]%$$r[2]";
# } else {
my($max) = $self->{parseopts}{-near};
my($op) = "[^a-z0-9]{0,$max}";
$t = "$$l[2]$op$$r[2]";
# }
return [ 'literal', $$l[1], $t ];
}
}
sub resolve {
my($self, $scope, $t) = @_;
#
# If the scope is not the scope of the enclosing
# expression, the field must be explicitly specified.
#
my($fill_fields) = ( @{$scope} > 0 ) ? $$t[1] ne $scope->[0] : 1;
if(!ref($$t[2]) || $$t[0] eq 'true') {
return $self->resolve_literal($t, $fill_fields);
} else {
my(@operands);
unshift(@{$scope}, $$t[1]);
foreach (@{$t}[2..$#{$t}]) {
push(@operands, $self->resolve($scope, $_));
}
shift(@{$scope});
my(%opmap) = (
'and' => 'and',
'or' => 'or'
);
my($expr);
#
# If there is an homogenous scope, use compact form
#
if($$t[1]) {
if($opmap{$$t[0]}) {
$expr = " ( " . join(" $opmap{$$t[0]} ", @operands) . " ) ";
} elsif($$t[0] eq 'not') {
$expr = "not (@operands)";
} elsif($$t[0] eq 'near') {
my($max) = $self->{parseopts}{-near};
$expr = "( " . join(" & ", @operands ) . " ) ";
}
#
# If this expression is not enclosed in an homogenous form
# resolve to explicit syntax
#
if($fill_fields) {
return $self->fill_fields($expr, $$t[1]);
} else {
#
# Otherwise just return the compact form
#
return $expr;
}
} else {
#
# We are not in homogenous scope, use explicit form
#
if($$t[0] eq 'or' or $$t[0] eq 'and') {
return " ( " . join(" $$t[0] ", @operands) . " ) ";
} elsif($$t[0] eq 'not') {
return "not (@operands) ";
}
}
}
}
sub has_relevance {
shift->SUPER::has_relevance();
return 1;
}
sub resolve_literal {
my($self, $t, $fill_fields) = @_;
my($true_value) = $$t[0] eq 'true';
my($weight) = '';
if($self->relevance_needed()) {
#
# At present relevance ranking is only needed for simple requests
#
if($true_value) {
#
# The 'true' value term has default weight (1)
#
$t = $$t[2];
} else {
#
# All search terms have a 10 weight
#
# $weight = ' weight 10';
}
}
my($value) = "'[[:<:]]" . $self->quote($$t[2]) . "[[:>:]]'";
# if($fill_fields) {
return $self->fill_fields("__FIELD__ ~* $value", $$t[1]);
# } else {
#
# If the enclosing expression has the same scope, the distribution
# is delayed.
#
# return $value;
# }
}
sub fill_fields {
my($self, $t, $fields) = @_;
return $t if($t !~ /__FIELD__/o);
my(@t);
my($scope);
foreach $scope (split(',', $fields)) {
my($tmp) = $t;
$tmp =~ s/__FIELD__/$scope/g;
push(@t, $tmp);
}
return @t == 1 ? $t[0] : "( ( " . join(" ) or ( ", @t) . " ) )";
}
1;
__END__
=head1 NAME
Text::Query::BuildSQLPg - Builder for Postgres
=head1 SYNOPSIS
use Text::Query;
my $q=new Text::Query('hello and world',
-parse => 'Text::Query::ParseAdvanced',
-solve => 'Text::Query::SolveSQL',
-build => 'Text::Query::BuildSQLPg');
=head1 DESCRIPTION
Generates a well formed C<where> clause for Text::Query::ParseAdvanced or
Text::Query::ParseSimple suitable for query with Postgres.
Code is mainly based on Text:Query::BuildSQLMySQL.
=head1 SEE ALSO
Text::Query(3)
Text::Query::BuildSQL(3)
=head1 AUTHORS
Benjamin Drieu (bdrieu@april.org)
Loic Dachary (loic@senga.org)
=cut
# Local Variables: ***
# mode: perl ***
# End: ***
|