/[webpac2]/trunk/lib/WebPAC/Validate.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/lib/WebPAC/Validate.pm

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

revision 677 by dpavlin, Wed Sep 13 17:44:57 2006 UTC revision 836 by dpavlin, Thu May 24 12:44:43 2007 UTC
# Line 18  WebPAC::Validate - provide simple valida Line 18  WebPAC::Validate - provide simple valida
18    
19  =head1 VERSION  =head1 VERSION
20    
21  Version 0.09  Version 0.11
22    
23  =cut  =cut
24    
25  our $VERSION = '0.09';  our $VERSION = '0.11';
26    
27  =head1 SYNOPSIS  =head1 SYNOPSIS
28    
# Line 52  Create new validation object Line 52  Create new validation object
52    
53    my $validate = new WebPAC::Validate(    my $validate = new WebPAC::Validate(
54          path => 'conf/validate/file',          path => 'conf/validate/file',
55            delimiters => [ ' : ', ' / ', ' ; ', ' , ' ],
56    );    );
57    
58    Optional parametar C<delimiters> will turn on validating of delimiters. Be
59    careful here, those delimiters are just stuck into regex, so they can
60    contain L<perlre> regexpes.
61    
62  =cut  =cut
63    
64  sub new {  sub new {
# Line 114  sub new { Line 119  sub new {
119    
120          $log->info("validation uses rules from $self->{path}");          $log->info("validation uses rules from $self->{path}");
121    
122            if ( $self->{delimiters} ) {
123                    $self->{delimiters_regex} = '(\^[a-z0-9]|' . join('|', @{ $self->{delimiters} }) . ')';
124                    $log->info("validation check delimiters with regex $self->{delimiters_regex}");
125            }
126    
127          $self ? return $self : return undef;          $self ? return $self : return undef;
128  }  }
129    
130  =head2 validate_errors  =head2 validate_rec
131    
132  Validate record and return errors  Validate record and return errors
133    
134    my @errors = $validate->validate_errors( $rec, $rec_dump );    my @errors = $validate->validate_rec( $rec, $rec_dump );
135    
136  =cut  =cut
137    
138  sub validate_errors {  sub validate_rec {
139          my $self = shift;          my $self = shift;
140    
141          my $log = $self->_get_logger();          my $log = $self->_get_logger();
142    
143          my $rec = shift || $log->logdie("validate_errors need record");          my $rec = shift || $log->logdie("validate_rec need record");
144          my $rec_dump = shift;          my $rec_dump = shift;
145    
146          $log->logdie("rec isn't HASH") unless (ref($rec) eq 'HASH');          $log->logdie("rec isn't HASH") unless (ref($rec) eq 'HASH');
# Line 146  sub validate_errors { Line 156  sub validate_errors {
156    
157                  next if (!defined($f) || $f eq '' || $f eq '000');                  next if (!defined($f) || $f eq '' || $f eq '000');
158    
159                    # first check delimiters
160                    if ( my $regex = $self->{delimiters_regex} ) {
161    
162                            foreach my $v (@{ $rec->{$f} }) {
163                                    my $l = _pack_subfields_hash( $v, 1 );
164                                    my $subfield_dump = $l;
165                                    my $template = '';
166                                    $l =~ s/$regex/$template.=$1/eg;
167                                    #warn "## template: $template\n";
168    
169                                    if ( $template ) {
170                                            $self->{_delimiters_templates}->{$f}->{$template}++;
171    
172                                            if ( my $v = $self->{_validate_delimiters_templates} ) {
173                                                    if ( ! defined( $v->{$template} ) ) {
174                                                            $errors->{$f}->{invalid_delimiters_combination} = $template;
175                                                            $errors->{$f}->{dump} = $subfield_dump;
176                                                    } else {
177                                                            warn "## $f $template ok\n";
178                                                    }
179                                            }
180                                    }
181                            }
182                    }
183    
184                  next if (defined( $self->{dont_validate}->{$f} ));                  next if (defined( $self->{dont_validate}->{$f} ));
185    
186                  # track field usage                  # track field usage
# Line 222  sub validate_errors { Line 257  sub validate_errors {
257                  }                  }
258          }          }
259    
260            $log->debug("_delimiters_templates = ", dump( $self->{_delimiters_templates} ) );
261    
262          foreach my $must (sort keys %{ $self->{must_exist} }) {          foreach my $must (sort keys %{ $self->{must_exist} }) {
263                  next if ($fields->{$must});                  next if ($fields->{$must});
264                  $errors->{$must}->{missing}++;                  $errors->{$must}->{missing}++;
# Line 301  sub report_error { Line 338  sub report_error {
338    
339                          if ($k eq 'dump') {                          if ($k eq 'dump') {
340                                  $dump = $tree->{dump};                                  $dump = $tree->{dump};
341  #                               warn "## dump: ",dump($dump),"\n";                                  #warn "## dump ",dump($dump),"\n";
342                                  next;                                  next;
343                          }                          }
344    
# Line 335  sub report_error { Line 372  sub report_error {
372          sub _reformat {          sub _reformat {
373                  my $l = shift;                  my $l = shift;
374                  $l =~ s/\t/ /g;                  $l =~ s/\t/ /g;
375                  $l =~ s/_/ /;                  $l =~ s/_/ /g;
376                  return $l;                  return $l;
377          }          }
378    
# Line 380  sub report { Line 417  sub report {
417    
418  }  }
419    
420    =head2 delimiters_templates
421    
422    Generate report of delimiter tamplates
423    
424      my $report = $validate->delimiter_teplates(
425            report => 1,
426      );
427    
428    Options:
429    
430    =over 4
431    
432    =item report
433    
434    Generate humanly readable report with single fields
435    
436    =back
437    
438    =cut
439    
440    sub delimiters_templates {
441            my $self = shift;
442    
443            my $args = {@_};
444    
445            my $t = $self->{_delimiters_templates};
446    
447            my $log = $self->_get_logger;
448    
449            unless ($t) {
450                    $log->error("called without delimiters");
451                    return;
452            }
453    
454            my $out;
455    
456            foreach my $f (sort { $a <=> $b } keys %$t) {
457                    $out .= "$f\n" if ( $args->{report} );
458                    foreach my $template (sort { $a cmp $b } keys %{ $t->{$f} }) {
459                            my $count = $t->{$f}->{$template};
460                            $out .=
461                                    ( $count ? "" : "# " ) .
462                                    ( $args->{report} ? "" : "$f" ) .
463                                    "\t$count\t$template\n";
464                    }
465            }
466    
467            return $out;
468    }
469    
470  =head1 AUTHOR  =head1 AUTHOR
471    
472  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>

Legend:
Removed from v.677  
changed lines
  Added in v.836

  ViewVC Help
Powered by ViewVC 1.1.26