/[webpac]/trunk2/lib/WebPAC/Index.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 /trunk2/lib/WebPAC/Index.pm

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

revision 127 by dpavlin, Thu Sep 4 14:56:41 2003 UTC revision 219 by dpavlin, Thu Feb 5 10:56:55 2004 UTC
# Line 10  package index_DBI; Line 10  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 42  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->{dbd} = $dbd;
48    
49          $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr;          $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr;
50          $Count++;          $Count++;
51    
# Line 66  sub delete_and_create { Line 70  sub delete_and_create {
70          }          }
71          $sql = "create table $field (          $sql = "create table $field (
72                          item varchar(255),                          item varchar(255),
73                            display text,
74                          count int,                          count int,
75                          ord int,                          ord int,
76                          primary key (item)                          primary key (item)
# Line 79  sub insert { Line 84  sub insert {
84    
85          my $field = shift;          my $field = shift;
86          my $index_data = shift || print STDERR "\$index->insert($field,NULL,...)";          my $index_data = shift || print STDERR "\$index->insert($field,NULL,...)";
87          my $ident = shift || '';        # e.g. library id          my $display = shift || $index_data;
88    
89          if (! $index_data) {          if (! $index_data) {
90                  print STDERR "\$index->insert() -- no value to insert\n";                  print STDERR "\$index->insert() -- no value to insert\n";
# Line 101  sub insert { Line 106  sub insert {
106          if (! $c_table->{$field}->{$uc}) {          if (! $c_table->{$field}->{$uc}) {
107  #print stderr "in index: $index_data\n";  #print stderr "in index: $index_data\n";
108                  $c_table->{$field}->{$uc} = $index_data;                  $c_table->{$field}->{$uc} = $index_data;
109                    $c_table->{$field}->{$uc}->{display} = $display;
110                  $c_count->{$field}->{$uc} = 1;                  $c_count->{$field}->{$uc} = 1;
111          } else {          } else {
112                  $c_count->{$field}->{$uc}++;                  $c_count->{$field}->{$uc}++;
113          }          }
114  }  }
115    
116  sub check {  sub count {
117          my $self = shift;          my $self = shift;
118    
119          my $field = shift;          my $field = shift;
120            my $where = shift;
121    
122          my $sql = "select count(*) from $field";          my $sql = "select count(*) from $field where upper(item) like upper(?)||'%'";
123    
124          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();
125          $sth->execute() || die "sql: $sql; ".$self->{dbh}->errstr();          $sth->execute($where) || die "sql: $sql; ".$self->{dbh}->errstr();
126    
127          my ($total) = $sth->fetchrow_array();          my ($total) = $sth->fetchrow_array();
128    
129          return $total;          # no results, count all
130            if (! $total) {
131                    my $sql = "select count(*) from $field";
132    
133                    my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();
134                    $sth->execute() || die "sql: $sql; ".$self->{dbh}->errstr();
135                    $total = $sth->fetchrow_array();
136    
137            }
138    
139            return $total || 1;
140  }  }
141    
142    
# Line 127  sub fetch { Line 144  sub fetch {
144          my $self = shift;          my $self = shift;
145    
146          my $field = shift;          my $field = shift;
         my $what = shift || 'item';     # 'item,ident'  
147          my $where = shift;          my $where = shift;
148    
149          my $from_ord = shift || 0;          my $from_ord = shift || 0;
# Line 135  sub fetch { Line 151  sub fetch {
151    
152          my @sql_args;          my @sql_args;
153    
154          my $sql = "select $what,ord from $field";          my $sql = "select item,display,ord from $field";
155    
156          if ($where) {          if ($where) {
157                  my $sql2 = "select ord from $field where upper($what) like upper(?)||'%'";                  my $sql2 = "select ord from $field where upper(item) like upper(?)||'%'";
158                  my $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();                  my $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();
159    
160                  $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();                  $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();
# Line 147  sub fetch { Line 163  sub fetch {
163                  } else {                  } else {
164                          # if no match is found when searching from beginning                          # if no match is found when searching from beginning
165                          # of word in index, try substring match anywhere                          # of word in index, try substring match anywhere
166                          $sql2 = "select ord from $field where upper($what) like '%'||upper(?)||'%'";                          $sql2 = "select ord from $field where upper(item) like '% '||upper(?)||'%'";
167                          $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();                          $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();
168                          $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();                          $sth->execute($where) || die "sql2: $sql2; ".$self->{dbh}->errstr();
169                          if (my $row = $sth->fetchrow_hashref) {                          if (my $row = $sth->fetchrow_hashref) {
# Line 161  sub fetch { Line 177  sub fetch {
177          $sth->execute() || die "execute: $sql; ".$self->{dbh}->errstr();          $sth->execute() || die "execute: $sql; ".$self->{dbh}->errstr();
178          my @arr;          my @arr;
179          while (my $row = $sth->fetchrow_hashref) {          while (my $row = $sth->fetchrow_hashref) {
180                  $row->{item} = HTML::Entities::encode($row->{item},'<>&"');                  $row->{item} = HTML::Entities::encode($row->{item},' <>&"');
181                    $row->{display} = HTML::Entities::encode($row->{display},'<>&"');
182                  push @arr,$row;                  push @arr,$row;
183          }          }
184          return @arr;          return @arr;
# Line 178  sub close { Line 195  sub close {
195    
196                  $self->{dbh}->begin_work || die $self->{dbh}->errstr();                  $self->{dbh}->begin_work || die $self->{dbh}->errstr();
197    
198                  $self->bench("Sorting ".$Table{$table}." items in $table");                  $self->bench("Sorting ".$Table{$table}." (with duplicates) items in $table");
199                  my @keys = sort keys %{$c_table->{$table}};                  my @keys = sort keys %{$c_table->{$table}};
200    
201                  $self->bench("Dumping data into $table");                  $self->bench("Dumping ".($#keys+1)." items into $table");
202                  my $sql = "insert into $table (ord,item,count) values (?,?,?)";                  my $sql = "insert into $table (ord,item,display,count) values (?,?,?,?)";
203                  my $sth = $self->{dbh}->prepare($sql) || die "sql: $sql; ".$self->{dbh}->errstr();                  my $sth = $self->{dbh}->prepare($sql) || die "sql: $sql; ".$self->{dbh}->errstr();
204    
205                  my $ord = 0;                  my $ord = 0;
206                  foreach my $key (@keys) {                  foreach my $key (@keys) {
207                          $sth->execute(++$ord,                          $sth->execute(++$ord,
208                                  $c_table->{$table}->{$key},                                  $c_table->{$table}->{$key},
209                                    $c_table->{$table}->{$key}->{display},
210                                  $c_count->{$table}->{$key}                                  $c_count->{$table}->{$key}
211                          );                          );
212                  }                  }
213    
214                  $self->{dbh}->commit || die $self->{dbh}->errstr();                  $self->{dbh}->commit || die $self->{dbh}->errstr();
215          }          }
216    
217            if ($self->{dbd} =~ m/(Pg|SQLite)/) {
218                    $self->{dbh}->do(qq{vacuum}) || warn "vacumming failed. It shouldn't if you are using PostgreSQL or SQLite: ".$self->{dbh}->errstr();
219            }
220    
221          $self->bench("disconnecting from database");          $self->bench("disconnecting from database");
222    
223          $self->{dbh}->disconnect;          $self->{dbh}->disconnect;

Legend:
Removed from v.127  
changed lines
  Added in v.219

  ViewVC Help
Powered by ViewVC 1.1.26