/[webpac]/trunk/index_DBI_filter.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_filter.pm

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

trunk/index_DBI_tag.pm revision 641 by dpavlin, Sun Jan 23 02:02:10 2005 UTC trunk/index_DBI_filter.pm revision 643 by dpavlin, Sun Jan 23 15:18:03 2005 UTC
# Line 68  sub delete_and_create { Line 68  sub delete_and_create {
68          my $sql_delete = "delete from $index";          my $sql_delete = "delete from $index";
69          my $sth = $self->{dbh}->prepare($sql_delete) || confess "can't prepare: $sql_delete";          my $sth = $self->{dbh}->prepare($sql_delete) || confess "can't prepare: $sql_delete";
70    
71          unless ($sth->execute()) {          if ($sth->execute()) {
72                    print STDERR "## deleted rows from table $index\n" if ($debug);
73            } else {
74                  # can't delete from table, assume it doesn't exists!                  # can't delete from table, assume it doesn't exists!
75                  $self->{dbh}->rollback;                  $self->{dbh}->rollback;
76                  $self->{dbh}->do($sql) || confess "SQL: $sql ".$self->{dbh}->errstr();                  $self->{dbh}->do($sql) || confess "SQL: $sql ".$self->{dbh}->errstr();
# Line 83  sub insert { Line 85  sub insert {
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 $display = shift || $index_data;          my $display = shift || $index_data;
88          my $tag = shift;          my $filter = shift;
89    
90          if (! $index_data) {          if (! $index_data) {
91                  print STDERR "\$index->insert() -- no value to insert\n";                  print STDERR "\$index->insert() -- no value to insert\n";
# Line 106  sub insert { Line 108  sub insert {
108          }          }
109    
110          $self->{c}->{$uc}->{$field}->{count}++;          $self->{c}->{$uc}->{$field}->{count}++;
111          $self->{c}->{$uc}->{$field}->{tag}->{$tag}++ if ($tag);          $self->{c}->{$uc}->{$field}->{filter}->{$filter}++ if ($filter);
112  }  }
113    
114  sub count {  sub count {
# Line 115  sub count { Line 117  sub count {
117          my $field = shift;          my $field = shift;
118          my $where = shift;          my $where = shift;
119    
120          my $sql = "select count(*) from index where name = ? and upper(item) like upper(?)||'%'";          my $filter = shift;
121    
122          my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();          my $tables_sql = 'index';
123          $sth->execute($field,$where) || die "sql: $sql; ".$self->{dbh}->errstr();          my $where_sql = '';
124            my @sql_args = ( $field, $where );
125    
126            if ($filter) {
127                    $tables_sql .= ",filters";
128                    $where_sql .= "
129                            and index.ord = filters.ord
130                            and filter = ?
131                    ";
132                    push @sql_args, $filter;
133            }
134    
135            my $sql = qq{
136                    select count(*)
137                    from $tables_sql
138                    where name = ? and upper(item) like upper(?)||'%'
139                    $where_sql
140            };
141    
142            my $sth = $self->{dbh}->prepare($sql) || confess $self->{dbh}->errstr();
143            $sth->execute(@sql_args) || confess "sql: $sql; ".$self->{dbh}->errstr();
144    
145          my ($total) = $sth->fetchrow_array();          my ($total) = $sth->fetchrow_array();
146    
147          # no results, count all          # no results, count all
148          if (! $total) {          if (! $total) {
149                  my $sql = "select count(*) from index wheere name = ?";                  my $sql = qq{
150                            select count(*)
151                            from $tables_sql
152                            where index.name = ?
153                            $where_sql
154                    };
155    
156                  my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();                  @sql_args = ( $field );
157                  $sth->execute($field) || die "sql: $sql; ".$self->{dbh}->errstr();                  push @sql_args, $filter if ($filter);
158    
159                    my $sth = $self->{dbh}->prepare($sql) || confess $self->{dbh}->errstr();
160                    $sth->execute(@sql_args) || confess "sql: $sql; ".$self->{dbh}->errstr();
161                  $total = $sth->fetchrow_array();                  $total = $sth->fetchrow_array();
162    
163          }          }
164    
165          return $total || 1;          return $total || '0';
166  }  }
167    
168    
# Line 144  sub fetch { Line 174  sub fetch {
174    
175          my $offset = shift || 0;          my $offset = shift || 0;
176          my $rows = shift || 10;          my $rows = shift || 10;
177            my $filter = shift;
178    
179          my $from_ord = 0;          my $from_ord = 0;
180    
181          my @sql_args;          my $tables_sql = 'index';
182            my $where_sql = '';
183    
184          my $sql = qq{          my @sql_args = ( $field, $where );
185                  select item,display,count  
186                  from index          if ($filter) {
187                  where name = ?                  $tables_sql .= ",filters";
188                  and ord > ?                  $where_sql .= "
189                  order by ord                          and index.ord = filters.ord
190                  limit ? offset ?                          and filter = ?
191          };                  ";
192                    push @sql_args, $filter;
193            }
194    
195          if ($where) {          if ($where) {
196                  my $sql2 = "select ord from index where name = ? and upper(item) like upper(?)||'%'";                  my $sql2 = qq{
197                  my $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();                          select index.ord as ord
198                            from $tables_sql
199                            where name = ? and upper(item) like upper(?)||'%'
200                            $where_sql
201                    };
202                    my $sth = $self->{dbh}->prepare($sql2) || confess "sql2: $sql2; ".$self->{dbh}->errstr();
203    
204                  $sth->execute($field, $where) || die "sql2: $sql2; ".$self->{dbh}->errstr();                  $sth->execute(@sql_args) || confess "sql2: $sql2; ".$self->{dbh}->errstr();
205                  if (my $row = $sth->fetchrow_hashref) {                  if (my $row = $sth->fetchrow_hashref) {
206                          $from_ord += $row->{ord} - 1;                          $from_ord += $row->{ord} - 1;
207                  } else {                  } else {
208                          # if no match is found when searching from beginning                          # if no match is found when searching from beginning
209                          # of word in index, try substring match anywhere                          # of word in index, try substring match anywhere
210                          $sql2 = "select ord from index where name = ? and upper(item) like '% '||upper(?)||'%'";                          $sql2 = qq{
211                          $sth = $self->{dbh}->prepare($sql2) || die "sql2: $sql2; ".$self->{dbh}->errstr();                                  select index.ord as ord
212                          $sth->execute($field, $where) || die "sql2: $sql2; ".$self->{dbh}->errstr();                                  from $tables_sql
213                                    where name = ? and upper(item) like '% '||upper(?)||'%'
214                                    $where_sql
215                            };
216            
217                            $sth = $self->{dbh}->prepare($sql2) || confess "sql2: $sql2; ".$self->{dbh}->errstr();
218                            $sth->execute(@sql_args) || confess "sql2: $sql2; ".$self->{dbh}->errstr();
219    
220                          if (my $row = $sth->fetchrow_hashref) {                          if (my $row = $sth->fetchrow_hashref) {
221                                  $from_ord += $row->{ord} - 1;                                  $from_ord += $row->{ord} - 1;
222                          }                          }
223                  }                  }
224          }          }
225    
226          my $sth = $self->{dbh}->prepare($sql) || die "prepare: $sql; ".$self->{dbh}->errstr();          @sql_args = ( $field, $from_ord );
227          $sth->execute($field,$from_ord,$rows,$offset) || die "execute: $sql; ".$self->{dbh}->errstr();          push @sql_args, $filter if ($filter);
228            push @sql_args, ( $rows, $offset );
229    
230            my $sql = qq{
231                    select item,display,index.count as count
232                    from $tables_sql
233                    where name = ?
234                            and index.ord > ?
235                    $where_sql
236                            order by index.ord
237                            limit ? offset ?
238            };
239    
240            my $sth = $self->{dbh}->prepare($sql) || confess "prepare: $sql; ".$self->{dbh}->errstr();
241            $sth->execute(@sql_args) || confess "execute: $sql; ".$self->{dbh}->errstr();
242          my @arr;          my @arr;
243          while (my $row = $sth->fetchrow_hashref) {          while (my $row = $sth->fetchrow_hashref) {
244                  $row->{item} = HTML::Entities::encode($row->{item},' <>&"');                  $row->{item} = HTML::Entities::encode($row->{item},' <>&"');
# Line 194  sub close { Line 255  sub close {
255    
256          return if (! $self->{dbh});          return if (! $self->{dbh});
257    
258          $self->{dbh}->begin_work || die $self->{dbh}->errstr();          $self->{dbh}->begin_work || confess $self->{dbh}->errstr();
259    
260          $self->delete_and_create('index', qq{          $self->delete_and_create('index', qq{
261                  create table index (                  create table index (
# Line 207  sub close { Line 268  sub close {
268                  );                  );
269          });          });
270    
271          $self->delete_and_create('tags', qq{          $self->delete_and_create('filters', qq{
272                  create table tags (                  create table filters (
273                          tag varchar(255),                          filter varchar(255),
274                          ord int,                          ord int,
275                          count int,                          count int,
276                          primary key (tag,ord)                          primary key (filter,ord)
277                  );                  );
278          });          });
279    
# Line 224  sub close { Line 285  sub close {
285          my $sql = "insert into index  (name,ord,item,display,count) values (?,?,?,?,?)";          my $sql = "insert into index  (name,ord,item,display,count) values (?,?,?,?,?)";
286          my $sth_index = $self->{dbh}->prepare($sql) || confess "$sql: ".$self->{dbh}->errstr();          my $sth_index = $self->{dbh}->prepare($sql) || confess "$sql: ".$self->{dbh}->errstr();
287    
288          $sql = "insert into tags (tag, ord, count) values (?,?,?)";          $sql = "insert into filters (filter, ord, count) values (?,?,?)";
289          my $sth_tag = $self->{dbh}->prepare($sql) || confess "$sql: ".$self->{dbh}->errstr();          my $sth_filter = $self->{dbh}->prepare($sql) || confess "$sql: ".$self->{dbh}->errstr();
290    
291          my $ord = 0;          my $ord = 0;
292          foreach my $key (@items) {          foreach my $key (@items) {
# Line 240  sub close { Line 301  sub close {
301                                  $self->{c}->{$key}->{$field}->{count},                                  $self->{c}->{$key}->{$field}->{count},
302                          );                          );
303    
304                          # store tags                          # store filters
305                          next unless ($self->{c}->{$key}->{$field}->{tag});                          next unless ($self->{c}->{$key}->{$field}->{filter});
306    
307                          foreach my $tag (keys %{$self->{c}->{$key}->{$field}->{tag}}) {                          foreach my $filter (keys %{$self->{c}->{$key}->{$field}->{filter}}) {
308                                  $sth_tag->execute( $tag, $ord, $self->{c}->{$key}->{$field}->{tag}->{$tag} );                                  $sth_filter->execute( $filter, $ord, $self->{c}->{$key}->{$field}->{filter}->{$filter} );
309                          }                          }
310                  }                  }
311    
312    
313          }          }
314    
315          $self->{dbh}->commit || die $self->{dbh}->errstr();          $self->{dbh}->commit || confess $self->{dbh}->errstr();
316    
317          $self->bench("vacuuming");          $self->bench("vacuuming");
318    

Legend:
Removed from v.641  
changed lines
  Added in v.643

  ViewVC Help
Powered by ViewVC 1.1.26