X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=index_DBI_cache.pm;h=b3741fa7e9eabafa102af94f15fabd889955e40e;hb=59ace2b4b24a63980678c794091a17f6acfb64cb;hp=eb143bef08dc385e545a62ca263d8495e74493f3;hpb=10a956f5f3b5c82fc68507cd44c70d7d30dd2d86;p=webpac diff --git a/index_DBI_cache.pm b/index_DBI_cache.pm index eb143be..b3741fa 100644 --- a/index_DBI_cache.pm +++ b/index_DBI_cache.pm @@ -44,11 +44,20 @@ sub new { my $user = shift || die "need dbi_user= in [global] section of configuration file"; my $passwd = shift || die "need dbi_passwd= in [global] section of configuration file"; + $self->{dbd} = $dbd; + $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr; $Count++; $self->bench("connected to $dbd as $user"); + # force SQLite to support binary 0 in data (which shouldn't + # happend, but it did to me) + eval { + no warnings 'all'; + $self->{dbh}->{sqlite_handle_binary_nulls} = 1; + }; + return $self; } @@ -60,11 +69,11 @@ sub delete_and_create { #print "#### delete_and_create($field)\n"; my $sql = "select count(*) from $field"; - my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr(); + my $sth = $self->{dbh}->prepare($sql); # FIX: this is not a good way to check if table exists! - if ($sth->execute() && $sth->fetchrow_hashref) { + if ($sth && $sth->execute() && $sth->fetchrow_hashref) { my $sql = "drop table $field"; - my $sth = $self->{dbh}->do($sql) || die "SQL: $sql ".$self->{dbh}->errstr(); + my $sth = $self->{dbh}->do($sql) || warn "SQL: $sql - ".$sth->errstr(); } $sql = "create table $field ( item varchar(255), @@ -93,12 +102,7 @@ sub insert { #$sth_cache{$field."select"}->execute($index_data) || die "cache: $field select; ".$self->{dbh}->errstr(); - # XXX for some strange reason, it seems that some entries in my - # database produce strings which start with null byte. I suspect - # this to be bug in OpenIsis 0.9.0. - # This should fix it.. - $index_data =~ s/^[^\w]+//; - $index_data = substr($index_data,0,255); + $index_data =~ s#&(\w)(acute|cedil|circ|grave|ring|slash|tilde|uml);#$1#gi; my $uc = uc($index_data); if (! $c_table->{$field}->{$uc}) { @@ -161,7 +165,7 @@ sub fetch { } else { # if no match is found when searching from beginning # of word in index, try substring match anywhere - $sql2 = "select ord from $field where upper(item) like '%'||upper(?)||'%'"; + $sql2 = "select ord from $field where upper(item) like '% '||upper(?)||'%'"; $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr(); $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr(); if (my $row = $sth->fetchrow_hashref) { @@ -177,6 +181,8 @@ sub fetch { while (my $row = $sth->fetchrow_hashref) { $row->{item} = HTML::Entities::encode($row->{item},' <>&"'); $row->{display} = HTML::Entities::encode($row->{display},'<>&"'); + $row->{item} =~ s#&(\w)(acute|cedil|circ|grave|ring|slash|tilde|uml);#$1#gi; + $row->{display} =~ s#&(\w)(acute|cedil|circ|grave|ring|slash|tilde|uml);#&$1$2;#gi; push @arr,$row; } return @arr; @@ -193,10 +199,10 @@ sub close { $self->{dbh}->begin_work || die $self->{dbh}->errstr(); - $self->bench("Sorting ".$Table{$table}." items in $table"); + $self->bench("Sorting ".$Table{$table}." (with duplicates) items in $table"); my @keys = sort keys %{$c_table->{$table}}; - $self->bench("Dumping data into $table"); + $self->bench("Dumping ".($#keys+1)." items into $table"); my $sql = "insert into $table (ord,item,display,count) values (?,?,?,?)"; my $sth = $self->{dbh}->prepare($sql) || die "sql: $sql; ".$self->{dbh}->errstr(); @@ -211,6 +217,11 @@ sub close { $self->{dbh}->commit || die $self->{dbh}->errstr(); } + + if ($self->{dbd} =~ m/(Pg|SQLite)/) { + $self->{dbh}->do(qq{vacuum}) || warn "vacumming failed. It shouldn't if you are using PostgreSQL or SQLite: ".$self->{dbh}->errstr(); + } + $self->bench("disconnecting from database"); $self->{dbh}->disconnect;