/[webpac]/trunk/index_DBI_cache.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/index_DBI_cache.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 93 by dpavlin, Sun Jul 13 14:44:03 2003 UTC revision 226 by dpavlin, Wed Feb 11 08:33:51 2004 UTC
# Line 2  Line 2 
2  # this file implements index functions using DBI  # this file implements index functions using DBI
3  # and huge amounts of memory for cache speedup  # and huge amounts of memory for cache speedup
4  #  #
5    # this version doesn't support ident (which sould be location in
6    # library). But, that functionality is not used anyway...
7    #
8    
9  package index_DBI;  package index_DBI;
10  use strict qw(vars);  use strict qw(vars);
11  use vars qw($Count);  use vars qw($Count);
12  use HTML::Entities;  use HTML::Entities;
13    use URI::Escape;
14    use locale;
15    
16  use DBI;  use DBI;
17    
# Line 18  my $c_table; Line 23  my $c_table;
23  my $c_count;  my $c_count;
24    
25  # bench time  # bench time
26  my $t = time();  my $bench_time = time();
27    
28    sub bench {
29            my $self = shift;
30            my $msg = shift;
31    
32            print STDERR "last operation took ",time()-$bench_time," seconds...\n";
33            $bench_time=time();
34            print STDERR "$msg\n";
35    }
36    
37  sub new {  sub new {
38          my $class = shift;          my $class = shift;
# Line 30  sub new { Line 44  sub new {
44          my $user = shift || die "need dbi_user= in [global] section of configuration file";          my $user = shift || die "need dbi_user= in [global] section of configuration file";
45          my $passwd = shift || die "need dbi_passwd= in [global] section of configuration file";          my $passwd = shift || die "need dbi_passwd= in [global] section of configuration file";
46    
47          $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr;          $self->{dbd} = $dbd;
         # begin transaction  
         $self->{dbh}->begin_work || die $self->{dbh}->errstr();  
48    
49            $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr;
50          $Count++;          $Count++;
51    
52            $self->bench("connected to $dbd as $user");
53    
54            # force SQLite to support binary 0 in data (which shouldn't
55            # happend, but it did to me)
56            eval {
57                    no warnings 'all';
58                    $self->{dbh}->{sqlite_handle_binary_nulls} = 1;
59            };
60    
61          return $self;          return $self;
62  }  }
63    
# Line 46  sub delete_and_create { Line 68  sub delete_and_create {
68    
69  #print "#### delete_and_create($field)\n";  #print "#### delete_and_create($field)\n";
70    
         $self->{dbh}->commit;  
   
71          my $sql = "select count(*) from $field";          my $sql = "select count(*) from $field";
72          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();
73  # FIX: this is not a good way to check if table exists!  # FIX: this is not a good way to check if table exists!
74          if ($sth->execute() && $sth->fetchrow_hashref) {          if ($sth->execute() && $sth->fetchrow_hashref) {
75                  my $sql = "drop table $field";                  my $sql = "drop table $field";
76                  $self->{dbh}->begin_work;                  my $sth = $self->{dbh}->do($sql) || warn "SQL: $sql - ".$sth->errstr();
                 my $sth = $self->{dbh}->do($sql) || die "SQL: $sql ".$self->{dbh}->errstr();  
                 $self->{dbh}->commit;  
77          }          }
78          $sql = "create table $field (          $sql = "create table $field (
79                          item varchar(255),                          item varchar(255),
80                          ident varchar(255),                          display text,
81                          count int,                          count int,
82                          ord int,                          ord int,
83                          primary key (item,ident)                          primary key (item)
84                  )";                  )";
85    
86          $self->{dbh}->begin_work;          $sth = $self->{dbh}->do($sql) || warn "SQL: $sql ".$self->{dbh}->errstr();
         $sth = $self->{dbh}->do($sql); # || warn "SQL: $sql ".$self->{dbh}->errstr();  
         $self->{dbh}->commit;  
   
         $self->{dbh}->begin_work;  
87  }  }
88    
89  sub insert {  sub insert {
# Line 77  sub insert { Line 91  sub insert {
91    
92          my $field = shift;          my $field = shift;
93          my $index_data = shift || print STDERR "\$index->insert($field,NULL,...)";          my $index_data = shift || print STDERR "\$index->insert($field,NULL,...)";
94          my $ident = shift || '';        # e.g. library id          my $display = shift || $index_data;
95    
96          if (! $index_data) {          if (! $index_data) {
97                  print STDERR "\$index->insert() -- no value to insert\n";                  print STDERR "\$index->insert() -- no value to insert\n";
98                  return;                  return;
99          }          }
100    
         if (! $Table{$field}) {  
                 $self->delete_and_create($field);  
   
                 my $sql = "select item from $field where upper(item)=upper(?)";  
                 $sth_cache{$field."select"} = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();  
   
                 $sql = "insert into $field (item,ident,count) values (?,?,?)";  
                 $sth_cache{$field."insert"} = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();  
   
                 $sql = "update $field set count = count + 1 where item = ? and ident = ?";  
                 $sth_cache{$field."update"} = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();  
         }  
101          $Table{$field}++;          $Table{$field}++;
102    
103          #$sth_cache{$field."select"}->execute($index_data) || die "cache: $field select; ".$self->{dbh}->errstr();          #$sth_cache{$field."select"}->execute($index_data) || die "cache: $field select; ".$self->{dbh}->errstr();
# Line 108  sub insert { Line 110  sub insert {
110          $index_data = substr($index_data,0,255);          $index_data = substr($index_data,0,255);
111    
112          my $uc = uc($index_data);          my $uc = uc($index_data);
113          if (! $c_table->{$field}->{$ident}->{$uc}) {          if (! $c_table->{$field}->{$uc}) {
                 $sth_cache{$field."insert"}->execute($index_data,$ident,0) || warn "cache: $field insert ($index_data,$ident); ".$self->{dbh}->errstr();  
114  #print stderr "in index: $index_data\n";  #print stderr "in index: $index_data\n";
115                  $c_table->{$field}->{$ident}->{$uc} = $index_data;                  $c_table->{$field}->{$uc} = $index_data;
116                  $c_count->{$field}->{$ident}->{$uc} = 1;                  $c_table->{$field}->{$uc}->{display} = $display;
117                    $c_count->{$field}->{$uc} = 1;
118          } else {          } else {
119                  $c_count->{$field}->{$ident}->{$uc}++;                  $c_count->{$field}->{$uc}++;
120          }          }
121  }  }
122    
123  sub check {  sub count {
124          my $self = shift;          my $self = shift;
125    
126          my $field = shift;          my $field = shift;
127            my $where = shift;
128    
129          my $sql = "select count(*) from $field";          my $sql = "select count(*) from $field where upper(item) like upper(?)||'%'";
130    
131          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();
132          $sth->execute() || die "sql: $sql; ".$self->{dbh}->errstr();          $sth->execute($where) || die "sql: $sql; ".$self->{dbh}->errstr();
133    
134          my ($total) = $sth->fetchrow_array();          my ($total) = $sth->fetchrow_array();
135    
136          return $total;          # no results, count all
137            if (! $total) {
138                    my $sql = "select count(*) from $field";
139    
140                    my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();
141                    $sth->execute() || die "sql: $sql; ".$self->{dbh}->errstr();
142                    $total = $sth->fetchrow_array();
143    
144            }
145    
146            return $total || 1;
147  }  }
148    
149    
# Line 138  sub fetch { Line 151  sub fetch {
151          my $self = shift;          my $self = shift;
152    
153          my $field = shift;          my $field = shift;
         my $what = shift || 'item';     # 'item,ident'  
154          my $where = shift;          my $where = shift;
155    
156          my $from_ord = shift || 0;          my $from_ord = shift || 0;
# Line 146  sub fetch { Line 158  sub fetch {
158    
159          my @sql_args;          my @sql_args;
160    
161          my $sql = "select $what,ord from $field";          my $sql = "select item,display,ord from $field";
162    
163          if ($where) {          if ($where) {
164                  my $sql2 = " select ord from $field where upper($what) like upper(?)||'%'";                  my $sql2 = "select ord from $field where upper(item) like upper(?)||'%'";
165                  my $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();                  my $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();
166    
167                  $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();                  $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();
168                  if (my $row = $sth->fetchrow_hashref) {                  if (my $row = $sth->fetchrow_hashref) {
169                          $from_ord += $row->{ord} - 1;                          $from_ord += $row->{ord} - 1;
170                    } else {
171                            # if no match is found when searching from beginning
172                            # of word in index, try substring match anywhere
173                            $sql2 = "select ord from $field where upper(item) like '% '||upper(?)||'%'";
174                            $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();
175                            $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();
176                            if (my $row = $sth->fetchrow_hashref) {
177                                    $from_ord += $row->{ord} - 1;
178                            }
179                  }                  }
180          }          }
181          $sql .= " order by ord limit $rows offset $from_ord";          $sql .= " order by ord limit $rows offset $from_ord";
# Line 163  sub fetch { Line 184  sub fetch {
184          $sth->execute() || die "execute: $sql; ".$self->{dbh}->errstr();          $sth->execute() || die "execute: $sql; ".$self->{dbh}->errstr();
185          my @arr;          my @arr;
186          while (my $row = $sth->fetchrow_hashref) {          while (my $row = $sth->fetchrow_hashref) {
187                  $row->{item} = HTML::Entities::encode($row->{item},'<>&"');                  $row->{item} = HTML::Entities::encode($row->{item},' <>&"');
188                    $row->{display} = HTML::Entities::encode($row->{display},'<>&"');
189                  push @arr,$row;                  push @arr,$row;
190          }          }
191          return @arr;          return @arr;
# Line 172  sub fetch { Line 194  sub fetch {
194  sub close {  sub close {
195          my $self = shift;          my $self = shift;
196    
197            return if (! $self->{dbh});
198    
199          # re-create ord column (sorted order) in table          foreach my $table (keys %Table) {
200          sub create_ord {                  $self->bench("Crating table $table");
201                    $self->delete_and_create($table);
                 my $table = shift;  
202    
203                  $self->{dbh}->begin_work || die $self->{dbh}->errstr();                  $self->{dbh}->begin_work || die $self->{dbh}->errstr();
204    
205                  my $sql = "select oid from $table order by upper(item)";                  $self->bench("Sorting ".$Table{$table}." (with duplicates) items in $table");
206                    my @keys = sort keys %{$c_table->{$table}};
207    
208                    $self->bench("Dumping ".($#keys+1)." items into $table");
209                    my $sql = "insert into $table (ord,item,display,count) values (?,?,?,?)";
210                  my $sth = $self->{dbh}->prepare($sql) || die "sql: $sql; ".$self->{dbh}->errstr();                  my $sth = $self->{dbh}->prepare($sql) || die "sql: $sql; ".$self->{dbh}->errstr();
211                  $sql = "update $table set ord=? where oid=?";  
212                  my $sth_update = $self->{dbh}->prepare($sql) || die "sql: $sql; ".$self->{dbh}->errstr();                  my $ord = 0;
213                  $sth->execute() || die "sql: $sql; ".$self->{dbh}->errstr();                  foreach my $key (@keys) {
214                  my $ord = 1;                          $sth->execute(++$ord,
215                  while (my $row = $sth->fetchrow_hashref) {                                  $c_table->{$table}->{$key},
216                          $sth_update->execute($ord++,$row->{oid});                                  $c_table->{$table}->{$key}->{display},
217                                    $c_count->{$table}->{$key}
218                            );
219                  }                  }
220    
221                  $self->{dbh}->commit || die $self->{dbh}->errstr();                  $self->{dbh}->commit || die $self->{dbh}->errstr();
222          }          }
         #--- end of sub  
223    
224          if ($self->{dbh}) {          if ($self->{dbd} =~ m/(Pg|SQLite)/) {
225                    $self->{dbh}->do(qq{vacuum}) || warn "vacumming failed. It shouldn't if you are using PostgreSQL or SQLite: ".$self->{dbh}->errstr();
226                  # commit          }
                 $self->{dbh}->commit || die $self->{dbh}->errstr();  
227    
228                  foreach my $table (keys %Table) {          $self->bench("disconnecting from database");
 # FIX  
 print STDERR "last operation took ",time()-$t," seconds...\n";  
 $t=time();  
 print STDERR "creating ord for $table...\n";  
                         create_ord($table);  
                         undef $sth_cache{$table."select"};  
                         undef $sth_cache{$table."insert"};  
                         undef $sth_cache{$table."update"};  
 # XXX  
 #               $sth_cache{$field."update"}->execute($index_data,$ident) || die "cache: $field update; ".$self->{dbh}->errstr();  
                 }  
229    
230                  $self->{dbh}->disconnect;          $self->{dbh}->disconnect;
231                  undef $self->{dbh};          undef $self->{dbh};
         }  
232  }  }
233    
234  END {  END {

Legend:
Removed from v.93  
changed lines
  Added in v.226

  ViewVC Help
Powered by ViewVC 1.1.26