From: Jeroen van Wolffelaar Date: Thu, 2 Feb 2006 12:23:50 +0000 (+0000) Subject: Deal correctly with exact matches on substring search, and don't yield bogus X-Git-Tag: switch-to-templates~196 X-Git-Url: https://git.deb.at/?p=deb%2Fpackages.git;a=commitdiff_plain;h=de413c76fc1abbada02c3fb8174d7ac3e4cd5a0b Deal correctly with exact matches on substring search, and don't yield bogus only result when there was no match --- diff --git a/cgi-bin/search_packages.pl b/cgi-bin/search_packages.pl index d63d7e9..88f9877 100755 --- a/cgi-bin/search_packages.pl +++ b/cgi-bin/search_packages.pl @@ -236,21 +236,20 @@ sub do_names_search { my $p_obj = tie my %pref, 'DB_File', "$DBDIR/$postfix_file", O_RDONLY, 0666, $DB_BTREE or die "couldn't tie postfix db $DBDIR/$postfix_file: $!"; $p_obj->seq( $key, $prefixes, R_CURSOR ); - do { + while (index($key, $keyword) >= 0) { if ($prefixes =~ /^\001(\d+)/o) { $too_much_hits += $1; } else { - print "DEBUG: add word $key
" if $debug > 2; - $pkgs{$key}++; foreach (split /\000/o, $prefixes) { + $_ = '' if $_ eq '^'; print "DEBUG: add word $_$key
" if $debug > 2; $pkgs{$_.$key}++; } } - } while (($p_obj->seq( $key, $prefixes, R_NEXT ) == 0) - && (index($key, $keyword) >= 0) - && !$too_much_hits - && (keys %pkgs < 100)); + last if $p_obj->seq( $key, $prefixes, R_NEXT ) != 0; + last if $too_much_hits; + last if keys %pkgs < 100; + } my $no_results = keys %pkgs; if ($too_much_hits || ($no_results >= 100)) { @@ -601,3 +600,5 @@ END print $input->end_html; } + +# vim: ts=8 sw=4