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

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

revision 372 by dpavlin, Sat Jun 19 18:16:20 2004 UTC revision 412 by dpavlin, Tue Sep 7 18:01:36 2004 UTC
# Line 12  use Log::Log4perl qw(get_logger :levels) Line 12  use Log::Log4perl qw(get_logger :levels)
12    
13  use Data::Dumper;  use Data::Dumper;
14    
15    #my $LOOKUP_REGEX = '\[[^\[\]]+\]';
16    #my $LOOKUP_REGEX_SAVE = '\[([^\[\]]+)\]';
17    my $LOOKUP_REGEX = 'lookup{[^\{\}]+}';
18    my $LOOKUP_REGEX_SAVE = 'lookup{([^\{\}]+)}';
19    
20  =head1 NAME  =head1 NAME
21    
22  WebPAC - base class for WebPAC  WebPAC - base class for WebPAC
# Line 183  sub open_isis { Line 188  sub open_isis {
188    
189                                          push @{$self->{'data'}->{$mfn}->{$k}}, $val;                                          push @{$self->{'data'}->{$mfn}->{$k}}, $val;
190                                  }                                  }
191                            } else {
192                                    push @{$self->{'data'}->{$mfn}->{'000'}}, $mfn;
193                          }                          }
194    
195                  }                  }
# Line 191  sub open_isis { Line 198  sub open_isis {
198                  my $rec = $self->{'data'}->{$mfn};                  my $rec = $self->{'data'}->{$mfn};
199                  $self->create_lookup($rec, @{$arg->{'lookup'}});                  $self->create_lookup($rec, @{$arg->{'lookup'}});
200    
201                    $self->progress_bar($mfn,$maxmfn);
202    
203          }          }
204    
205          $self->{'current_mfn'} = 1;          $self->{'current_mfn'} = 1;
206            $self->{'last_pcnt'} = 0;
207    
208          # store max mfn and return it.          # store max mfn and return it.
209          return $self->{'max_mfn'} = $maxmfn;          return $self->{'max_mfn'} = $maxmfn;
# Line 217  sub fetch_rec { Line 227  sub fetch_rec {
227    
228          if ($mfn > $self->{'max_mfn'}) {          if ($mfn > $self->{'max_mfn'}) {
229                  $self->{'current_mfn'} = $self->{'max_mfn'};                  $self->{'current_mfn'} = $self->{'max_mfn'};
230                    $log->debug("at EOF");
231                  return;                  return;
232          }          }
233    
234            $self->progress_bar($mfn,$self->{'max_mfn'});
235    
236          return $self->{'data'}->{$mfn};          return $self->{'data'}->{$mfn};
237  }  }
238    
239    =head2 progress_bar
240    
241    Draw progress bar on STDERR.
242    
243     $webpac->progress_bar($current, $max);
244    
245    =cut
246    
247    sub progress_bar {
248            my $self = shift;
249    
250            my ($curr,$max) = @_;
251    
252            my $log = $self->_get_logger();
253    
254            $log->logconfess("no current value!") if (! $curr);
255            $log->logconfess("no maximum value!") if (! $max);
256    
257            if ($curr > $max) {
258                    $max = $curr;
259                    $log->debug("overflow to $curr");
260            }
261    
262            $self->{'last_pcnt'} ||= 1;
263    
264            $self->{'last_pcnt'} = $curr if ($curr < $self->{'last_pcnt'});
265    
266            my $p = int($curr * 100 / $max);
267            if ($p != $self->{'last_pcnt'}) {
268                    printf STDERR ("%5d / %5d [%-51s] %-2d %% \r",$curr,$max,"=" x ($p/2).">", $p );
269                    $self->{'last_pcnt'} = $p;
270            }
271            print STDERR "\n" if ($p == 100);
272    }
273    
274  =head2 open_import_xml  =head2 open_import_xml
275    
276  Read file from C<import_xml/> directory and parse it.  Read file from C<import_xml/> directory and parse it.
# Line 246  sub open_import_xml { Line 294  sub open_import_xml {
294    
295          $self->{'tag'} = $type2tag{$type_base};          $self->{'tag'} = $type2tag{$type_base};
296    
297          $log->debug("using type '",$self->{'type'},"' tag <",$self->{'tag'},">") if ($self->{'debug'});          $log->info("using type '",$self->{'type'},"' tag <",$self->{'tag'},">");
298    
299          my $f = "./import_xml/".$self->{'type'}.".xml";          my $f = "./import_xml/".$self->{'type'}.".xml";
300          $log->logconfess("import_xml file '$f' doesn't exist!") if (! -e "$f");          $log->logconfess("import_xml file '$f' doesn't exist!") if (! -e "$f");
301    
302          $log->debug("reading '$f'") if ($self->{'debug'});          $log->info("reading '$f'");
303    
304            $self->{'import_xml_file'} = $f;
305    
306          $self->{'import_xml'} = XMLin($f,          $self->{'import_xml'} = XMLin($f,
307                  ForceArray => [ $self->{'tag'}, 'config', 'format' ],                  ForceArray => [ $self->{'tag'}, 'config', 'format' ],
                 ForceContent => 1  
308          );          );
309    
310            $log->debug("import xml is ",sub { Dumper($self->{'import_xml'}) });
311    
312  }  }
313    
314  =head2 create_lookup  =head2 create_lookup
# Line 284  sub create_lookup { Line 335  sub create_lookup {
335                          my $key = $self->fill_in($rec,$i->{'key'});                          my $key = $self->fill_in($rec,$i->{'key'});
336                          my @val = $self->fill_in($rec,$i->{'val'});                          my @val = $self->fill_in($rec,$i->{'val'});
337                          if ($key && @val && eval $eval) {                          if ($key && @val && eval $eval) {
338                                    $log->debug("stored $key = ",sub { join(" | ",@val) });
339                                  push @{$self->{'lookup'}->{$key}}, @val;                                  push @{$self->{'lookup'}->{$key}}, @val;
340                          }                          }
341                  } else {                  } else {
342                          my $key = $self->fill_in($rec,$i->{'key'});                          my $key = $self->fill_in($rec,$i->{'key'});
343                          my @val = $self->fill_in($rec,$i->{'val'});                          my @val = $self->fill_in($rec,$i->{'val'});
344                          if ($key && @val) {                          if ($key && @val) {
345                                    $log->debug("stored $key = ",sub { join(" | ",@val) });
346                                  push @{$self->{'lookup'}->{$key}}, @val;                                  push @{$self->{'lookup'}->{$key}}, @val;
347                          }                          }
348                  }                  }
# Line 322  sub get_data { Line 375  sub get_data {
375    
376          if ($$rec->{$f}) {          if ($$rec->{$f}) {
377                  return '' if (! $$rec->{$f}->[$i]);                  return '' if (! $$rec->{$f}->[$i]);
378                    no strict 'refs';
379                  if ($sf && $$rec->{$f}->[$i]->{$sf}) {                  if ($sf && $$rec->{$f}->[$i]->{$sf}) {
380                          $$found++ if (defined($$found));                          $$found++ if (defined($$found));
381                          return $$rec->{$f}->[$i]->{$sf};                          return $$rec->{$f}->[$i]->{$sf};
# Line 362  Following example will read second value Line 416  Following example will read second value
416  This function B<does not> perform parsing of format to inteligenty skip  This function B<does not> perform parsing of format to inteligenty skip
417  delimiters before fields which aren't used.  delimiters before fields which aren't used.
418    
419    This method will automatically decode UTF-8 string to local code page
420    if needed.
421    
422  =cut  =cut
423    
424  sub fill_in {  sub fill_in {
# Line 377  sub fill_in { Line 434  sub fill_in {
434          # FIXME remove for speedup?          # FIXME remove for speedup?
435          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);
436    
437            if (utf8::is_utf8($format)) {
438                    $format = $self->_x($format);
439            }
440    
441          my $found = 0;          my $found = 0;
442    
443          my $eval_code;          my $eval_code;
# Line 384  sub fill_in { Line 445  sub fill_in {
445          $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);          $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);
446    
447          # do actual replacement of placeholders          # do actual replacement of placeholders
448          $format =~ s/v(\d+)(?:\^(\w))*/$self->get_data(\$rec,$1,$2,$i,\$found)/ges;          $format =~ s/v(\d+)(?:\^(\w))?/$self->get_data(\$rec,$1,$2,$i,\$found)/ges;
449    
450          if ($found) {          if ($found) {
451                    $log->debug("format: $format");
452                  if ($eval_code) {                  if ($eval_code) {
453                          my $eval = $self->fill_in($rec,$eval_code,$i);                          my $eval = $self->fill_in($rec,$eval_code,$i);
454                          return if (! $self->_eval($eval));                          return if (! $self->_eval($eval));
455                  }                  }
456                  # do we have lookups?                  # do we have lookups?
457                  $log->debug("test format '$format' for lookups");                  if ($format =~ /$LOOKUP_REGEX/o) {
458                  if ($format =~ /\[[^\[\]]+\]/o) {                          $log->debug("format '$format' has lookup");
459                          return $self->lookup($format);                          return $self->lookup($format);
460                  } else {                  } else {
461                          return $format;                          return $format;
# Line 420  sub lookup { Line 482  sub lookup {
482    
483          my $tmp = shift || $log->logconfess("need format");          my $tmp = shift || $log->logconfess("need format");
484    
485          if ($tmp =~ /\[[^\[\]]+\]/o) {          if ($tmp =~ /$LOOKUP_REGEX/o) {
486                  my @in = ( $tmp );                  my @in = ( $tmp );
487    
488                  $log->debug("lookup for: ",$tmp);                  $log->debug("lookup for: ",$tmp);
489    
490                  my @out;                  my @out;
491                  while (my $f = shift @in) {                  while (my $f = shift @in) {
492                          if ($f =~ /\[([^\[\]]+)\]/) {                          if ($f =~ /$LOOKUP_REGEX_SAVE/o) {
493                                  my $k = $1;                                  my $k = $1;
494                                  if ($self->{'lookup'}->{$k}) {                                  if ($self->{'lookup'}->{$k}) {
495                                          foreach my $nv (@{$self->{'lookup'}->{$k}}) {                                          foreach my $nv (@{$self->{'lookup'}->{$k}}) {
496                                                  my $tmp2 = $f;                                                  my $tmp2 = $f;
497                                                  $tmp2 =~ s/\[$k\]/$nv/g;                                                  $tmp2 =~ s/lookup{$k}/$nv/g;
498                                                  push @in, $tmp2;                                                  push @in, $tmp2;
499                                          }                                          }
500                                  } else {                                  } else {
# Line 442  sub lookup { Line 504  sub lookup {
504                                  push @out, $f;                                  push @out, $f;
505                          }                          }
506                  }                  }
507                    $log->logconfess("return is array and it's not expected!") unless wantarray;
508                  return @out;                  return @out;
509          } else {          } else {
510                  return $tmp;                  return $tmp;
# Line 472  sub parse { Line 535  sub parse {
535    
536          $i = 0 if (! $i);          $i = 0 if (! $i);
537    
538          my $format = $self->{'utf2cp'}->convert($format_utf8) || $log->logconfess("can't convert '$format_utf8' from UTF-8 to ",$self->{'code_page'});          my $format = $self->_x($format_utf8) || $log->logconfess("can't convert '$format_utf8' from UTF-8 to ",$self->{'code_page'});
539    
540          my @out;          my @out;
541    
542            $log->debug("format: $format");
543    
544          my $eval_code;          my $eval_code;
545          # remove eval{...} from beginning          # remove eval{...} from beginning
546          $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);          $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);
# Line 483  sub parse { Line 548  sub parse {
548          my $prefix;          my $prefix;
549          my $all_found=0;          my $all_found=0;
550    
551          while ($format =~ s/^(.*?)v(\d+)(?:\^(\w))*//s) {          while ($format =~ s/^(.*?)v(\d+)(?:\^(\w))?//s) {
552    
553                  my $del = $1 || '';                  my $del = $1 || '';
554                  $prefix ||= $del if ($all_found == 0);                  $prefix ||= $del if ($all_found == 0);
# Line 500  sub parse { Line 565  sub parse {
565    
566          return if (! $all_found);          return if (! $all_found);
567    
568          my $out = join('',@out) . $format;          my $out = join('',@out);
569    
570          # add prefix if not there          if ($out) {
571          $out = $prefix . $out if ($out !~ m/^\Q$prefix\E/);                  # add rest of format (suffix)
572                    $out .= $format;
573    
574                    # add prefix if not there
575                    $out = $prefix . $out if ($out !~ m/^\Q$prefix\E/);
576    
577                    $log->debug("result: $out");
578            }
579    
580          if ($eval_code) {          if ($eval_code) {
581                  my $eval = $self->fill_in($rec,$eval_code,$i);                  my $eval = $self->fill_in($rec,$eval_code,$i);
582                  $log->debug("about to eval ",$eval," [$out]");                  $log->debug("about to eval{",$eval,"} format: $out");
583                  return if (! $self->_eval($eval));                  return if (! $self->_eval($eval));
584          }          }
585    
# Line 539  sub parse_to_arr { Line 611  sub parse_to_arr {
611                  push @arr, $v;                  push @arr, $v;
612          }          }
613    
614            $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);
615    
616          return @arr;          return @arr;
617  }  }
618    
619    =head2 fill_in_to_arr
620    
621    Similar to C<fill_in>, but returns array of all repeatable fields. Usable
622    for fields which have lookups, so they shouldn't be parsed but rather
623    C<fill_id>ed.
624    
625     my @arr = $webpac->fill_in_to_arr($rec,'[v900];;[v250^a]');
626    
627    =cut
628    
629    sub fill_in_to_arr {
630            my $self = shift;
631    
632            my ($rec, $format_utf8) = @_;
633    
634            my $log = $self->_get_logger();
635    
636            $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);
637            return if (! $format_utf8);
638    
639            my $i = 0;
640            my @arr;
641    
642            while (my @v = $self->fill_in($rec,$format_utf8,$i++)) {
643                    push @arr, @v;
644            }
645    
646            $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);
647    
648            return @arr;
649    }
650    
651    
652  =head2 data_structure  =head2 data_structure
653    
654  Create in-memory data structure which represents layout from C<import_xml>.  Create in-memory data structure which represents layout from C<import_xml>.
# Line 549  It is used later to produce output. Line 656  It is used later to produce output.
656    
657   my @ds = $webpac->data_structure($rec);   my @ds = $webpac->data_structure($rec);
658    
659    This method will also set C<$webpac->{'currnet_filename'}> if there is
660    <filename> tag in C<import_xml> and C<$webpac->{'headline'}> if there is
661    <headline> tag.
662    
663  =cut  =cut
664    
665  sub data_structure {  sub data_structure {
# Line 559  sub data_structure { Line 670  sub data_structure {
670          my $rec = shift;          my $rec = shift;
671          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);
672    
673            undef $self->{'currnet_filename'};
674            undef $self->{'headline'};
675    
676          my @sorted_tags;          my @sorted_tags;
677          if ($self->{tags_by_order}) {          if ($self->{tags_by_order}) {
678                  @sorted_tags = @{$self->{tags_by_order}};                  @sorted_tags = @{$self->{tags_by_order}};
# Line 569  sub data_structure { Line 683  sub data_structure {
683    
684          my @ds;          my @ds;
685    
686            $log->debug("tags: ",sub { join(", ",@sorted_tags) });
687    
688          foreach my $field (@sorted_tags) {          foreach my $field (@sorted_tags) {
689    
690                  my $row;                  my $row;
# Line 576  sub data_structure { Line 692  sub data_structure {
692  #print "field $field [",$self->{'tag'},"] = ",Dumper($self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}});  #print "field $field [",$self->{'tag'},"] = ",Dumper($self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}});
693    
694                  foreach my $tag (@{$self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}}}) {                  foreach my $tag (@{$self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}}}) {
695                          my @v = $self->parse_to_arr($rec,$tag->{'content'});                          my $format = $tag->{'value'} || $tag->{'content'};
696    
697                            $log->debug("format: $format");
698    
699                            my @v;
700                            if ($format =~ /$LOOKUP_REGEX/o) {
701                                    @v = $self->fill_in_to_arr($rec,$format);
702                            } else {
703                                    @v = $self->parse_to_arr($rec,$format);
704                            }
705                          next if (! @v);                          next if (! @v);
706    
707                            # use format?
708                            if ($tag->{'format_name'}) {
709                                    @v = map { $self->apply_format($tag->{'format_name'},$tag->{'format_delimiter'},$_) } @v;
710                            }
711    
712                            if ($field eq 'filename') {
713                                    $self->{'current_filename'} = join('',@v);
714                                    $log->debug("filename: ",$self->{'current_filename'});
715                            } elsif ($field eq 'headline') {
716                                    $self->{'headline'} .= join('',@v);
717                                    $log->debug("headline: ",$self->{'headline'});
718                                    next; # don't return headline in data_structure!
719                            }
720    
721                          # does tag have type?                          # does tag have type?
722                          if ($tag->{'type'}) {                          if ($tag->{'type'}) {
723                                  push @{$row->{$tag->{'type'}}}, @v;                                  push @{$row->{$tag->{'type'}}}, @v;
# Line 587  sub data_structure { Line 725  sub data_structure {
725                                  push @{$row->{'display'}}, @v;                                  push @{$row->{'display'}}, @v;
726                                  push @{$row->{'swish'}}, @v;                                  push @{$row->{'swish'}}, @v;
727                          }                          }
728    
729    
730                  }                  }
731    
732                  if ($row) {                  if ($row) {
733                          $row->{'tag'} = $field;                          $row->{'tag'} = $field;
734    
735                            # TODO: name_sigular, name_plural
736                            my $name = $self->{'import_xml'}->{'indexer'}->{$field}->{'name'};
737                            $row->{'name'} = $name ? $self->_x($name) : $field;
738    
739                          push @ds, $row;                          push @ds, $row;
740    
741                            $log->debug("row $field: ",sub { Dumper($row) });
742                  }                  }
743    
744          }          }
# Line 629  sub output { Line 776  sub output {
776          return $out;          return $out;
777  }  }
778    
779    =head2 output_file
780    
781    Create output from in-memory data structure using Template Toolkit template
782    to a file.
783    
784     $webpac->output_file(
785            file => 'out.txt',
786            template => 'text.tt',
787            data => @ds
788     );
789    
790    =cut
791    
792    sub output_file {
793            my $self = shift;
794    
795            my $args = {@_};
796    
797            my $log = $self->_get_logger();
798    
799            $log->logconfess("need file name") if (! $args->{'file'});
800    
801            $log->debug("creating file ",$args->{'file'});
802    
803            open(my $fh, ">", $args->{'file'}) || $log->logdie("can't open output file '$self->{'file'}': $!");
804            print $fh $self->output(
805                    template => $args->{'template'},
806                    data => $args->{'data'},
807            ) || $log->logdie("print: $!");
808            close($fh) || $log->logdie("close: $!");
809    }
810    
811    =head2 apply_format
812    
813    Apply format specified in tag with C<format_name="name"> and
814    C<format_delimiter=";;">.
815    
816     my $text = $webpac->apply_format($format_name,$format_delimiter,$data);
817    
818    Formats can contain C<lookup{...}> if you need them.
819    
820    =cut
821    
822    sub apply_format {
823            my $self = shift;
824    
825            my ($name,$delimiter,$data) = @_;
826    
827            my $log = $self->_get_logger();
828    
829            if (! $self->{'import_xml'}->{'format'}->{$name}) {
830                    $log->warn("<format name=\"$name\"> is not defined in ",$self->{'import_xml_file'});
831                    return $data;
832            }
833    
834            $log->warn("no delimiter for format $name") if (! $delimiter);
835    
836            my $format = $self->_x($self->{'import_xml'}->{'format'}->{$name}->{'content'}) || $log->logdie("can't find format '$name'");
837    
838            my @data = split(/\Q$delimiter\E/, $data);
839    
840            my $out = sprintf($format, @data);
841            $log->debug("using format $name [$format] on $data to produce: $out");
842    
843            if ($out =~ m/$LOOKUP_REGEX/o) {
844                    return $self->lookup($out);
845            } else {
846                    return $out;
847            }
848    
849    }
850    
851    
852  #  #
853  #  #
854  #  #
# Line 681  sub _sort_by_order { Line 901  sub _sort_by_order {
901          return $va <=> $vb;          return $va <=> $vb;
902  }  }
903    
904    =head2 _get_logger
905    
906    Get C<Log::Log4perl> object with a twist: domains are defined for each
907    method
908    
909     my $log = $webpac->_get_logger();
910    
911    =cut
912    
913  sub _get_logger {  sub _get_logger {
914          my $self = shift;          my $self = shift;
915    
916          my @c = caller(1);          my $name = (caller(1))[3] || caller;
917          return get_logger($c[3]);          return get_logger($name);
918    }
919    
920    =head2 _x
921    
922    Convert string from UTF-8 to code page defined in C<import_xml>.
923    
924     my $text = $webpac->_x('utf8 text');
925    
926    =cut
927    
928    sub _x {
929            my $self = shift;
930            my $utf8 = shift || return;
931    
932            return $self->{'utf2cp'}->convert($utf8) ||
933                    $self->_get_logger()->logwarn("can't convert '$utf8'");
934  }  }
935    
936  #  #

Legend:
Removed from v.372  
changed lines
  Added in v.412

  ViewVC Help
Powered by ViewVC 1.1.26