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

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

revision 706 by dpavlin, Mon Sep 25 14:06:49 2006 UTC revision 720 by dpavlin, Fri Sep 29 12:27:36 2006 UTC
# Line 17  WebPAC::Parser - parse perl normalizatio Line 17  WebPAC::Parser - parse perl normalizatio
17    
18  =head1 VERSION  =head1 VERSION
19    
20  Version 0.05  Version 0.06
21    
22  =cut  =cut
23    
24  our $VERSION = '0.05';  our $VERSION = '0.06';
25    
26  =head1 SYNOPSIS  =head1 SYNOPSIS
27    
# Line 148  sub lookup_create_rules { Line 148  sub lookup_create_rules {
148          return $self->{_lookup_create}->{ _q($database) }->{ _q($input) };          return $self->{_lookup_create}->{ _q($database) }->{ _q($input) };
149  }  }
150    
151    =head2 normalize_rules
152    
153      my $source = $parser->normalize_rules($database, $input);
154    
155    =cut
156    
157    sub normalize_rules {
158            my $self = shift;
159            my ($database,$input) = @_;
160            $input = _input_name($input);
161            return unless (
162                    defined( $self->{_normalize_source}->{ _q($database) } ) &&
163                    defined( $self->{_normalize_source}->{ _q($database) }->{ _q($input) } )
164            );
165            return $self->{_normalize_source}->{ _q($database) }->{ _q($input) };
166    }
167    
168  =head1 PRIVATE  =head1 PRIVATE
169    
170  =head2 _read_sources  =head2 _read_sources
# Line 208  sub _read_sources { Line 225  sub _read_sources {
225    
226    $parser->_parse_lookups($database,$input,$path,$source);    $parser->_parse_lookups($database,$input,$path,$source);
227    
228  Called for each normalize source (rules) in each input by L</read_sources>  Called for each normalize source (rules) in each input by L</_read_sources>
229    
230  It will report invalid databases and inputs in error log after parsing.  It will report invalid databases and inputs in error log after parsing.
231    
# Line 296  sub _parse_lookups { Line 313  sub _parse_lookups {
313    
314                          $log->debug("key = $key");                          $log->debug("key = $key");
315    
                         my $create = '  
                                 $coderef = ' . $e[7] . $e[8] . ';  
                                 foreach my $v ($coderef->()) {  
                                         next unless (defined($v) && $v ne \'\');  
                                         push @{ $lookup->{\'' . $key . '\'}->{$v} }, $mfn;  
                                 }  
                         ';  
   
                         $log->debug("create: $create");  
   
316                          return $self->_lookup_error("invalid database $e[3] in $path" ) unless $self->valid_database( $e[3] );                          return $self->_lookup_error("invalid database $e[3] in $path" ) unless $self->valid_database( $e[3] );
317                          return $self->_lookup_error("invalid input $e[5] of database $e[3] in $path", ) unless $self->valid_database_input( $e[3], $e[5] );                          return $self->_lookup_error("invalid input $e[5] of database $e[3] in $path", ) unless $self->valid_database_input( $e[3], $e[5] );
318    
319                            my $create = qq{
320                                    save_into_lookup($e[3],$e[5],'$key', $e[7] $e[8] );
321                            };
322    
323                            $log->debug("create: $create");
324    
325                          # save code to create this lookup                          # save code to create this lookup
326                          $self->{_lookup_create}->{ _q($e[3]) }->{ _q($e[5]) } .= $create;                          $self->{_lookup_create}->{ _q($e[3]) }->{ _q($e[5]) } .= $create;
327                          $self->{_lookup_create_key}->{ _q($e[3]) }->{ _q($e[5]) }->{ _q($key) }++;                          $self->{_lookup_create_key}->{ _q($e[3]) }->{ _q($e[5]) }->{ _q($key) }++;
# Line 339  sub _parse_lookups { Line 352  sub _parse_lookups {
352          $log->debug("create: ", dump($self->{_lookup_create}) );          $log->debug("create: ", dump($self->{_lookup_create}) );
353          $log->debug("normalize: $normalize_source");          $log->debug("normalize: $normalize_source");
354    
355          $self->{_normalize_source}->{$database}->{$input} = $normalize_source;          $self->{_normalize_source}->{$database}->{$input} .= $normalize_source;
356    
357          if ($self->{debug}) {          if ($self->{debug}) {
358                  my $Dumper = PPI::Dumper->new( $Document );                  my $Dumper = PPI::Dumper->new( $Document );

Legend:
Removed from v.706  
changed lines
  Added in v.720

  ViewVC Help
Powered by ViewVC 1.1.26