/[webpac2]/trunk/run.pl
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/run.pl

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

revision 969 by dpavlin, Fri Nov 2 14:28:43 2007 UTC revision 1067 by dpavlin, Tue Nov 27 23:45:26 2007 UTC
# Line 153  pod2usage(-verbose => 2) if ($help); Line 153  pod2usage(-verbose => 2) if ($help);
153    
154  my $config = new WebPAC::Config( path => $config_path );  my $config = new WebPAC::Config( path => $config_path );
155    
156    WebPAC::Normalize::_debug( $debug - 1 ) if $debug > 1;
157    
158  #print "config = ",dump($config) if ($debug);  #print "config = ",dump($config) if ($debug);
159    
160  die "no databases in config file!\n" unless ($config->databases);  die "no databases in config file!\n" unless ($config->databases);
# Line 191  if ($stats) { Line 193  if ($stats) {
193    
194  # parse normalize files and create source files for lookup and normalization  # parse normalize files and create source files for lookup and normalization
195    
196  my $parser = new WebPAC::Parser( config => $config );  my ($only_database,$only_input) = split(m#/#, $only_filter) if $only_filter;
197    
198    my $parser = new WebPAC::Parser(
199            config => $config,
200            only_database => $only_database,
201            only_input => $only_input,
202    );
203    
204  my $total_rows = 0;  my $total_rows = 0;
205  my $start_t = time();  my $start_t = time();
# Line 215  sub create_ds_config { Line 223  sub create_ds_config {
223  foreach my $database ( sort keys %{ $config->databases } ) {  foreach my $database ( sort keys %{ $config->databases } ) {
224          my $db_config = $config->databases->{$database};          my $db_config = $config->databases->{$database};
225    
         my ($only_database,$only_input) = split(m#/#, $only_filter) if ($only_filter);  
226          next if ($only_database && $database !~ m/$only_database/i);          next if ($only_database && $database !~ m/$only_database/i);
227    
228          if ($parallel) {          if ($parallel) {
# Line 324  foreach my $database ( sort keys %{ $con Line 331  foreach my $database ( sort keys %{ $con
331    
332                  $log->debug("calling $module->new(",dump( $output ),")");                  $log->debug("calling $module->new(",dump( $output ),")");
333                  my $out = new $module->new( $output );                  my $out = new $module->new( $output );
334                  $out->init;                  if ( $out->init ) {
335                            push @output_modules, $out;
336                  push @output_modules, $out;                  } else {
337                            $log->warn("SKIPPED $module");
338                    }
339          }          }
340    
341    
# Line 550  foreach my $database ( sort keys %{ $con Line 559  foreach my $database ( sort keys %{ $con
559                                  next;   # validation doesn't create any output                                  next;   # validation doesn't create any output
560                          }                          }
561    
562                          if ( my $ds = WebPAC::Normalize::data_structure(                          my $ds = WebPAC::Normalize::data_structure(
563                                  row => $row,                                  row => $row,
564                                  rules => $rules,                                  rules => $rules,
565                                  lookup => $lookup_hash,                                  lookup => $lookup_hash,
# Line 558  foreach my $database ( sort keys %{ $con Line 567  foreach my $database ( sort keys %{ $con
567                                  marc_encoding => 'utf-8',                                  marc_encoding => 'utf-8',
568                                  load_row_coderef => sub {                                  load_row_coderef => sub {
569                                          my ($database,$input,$mfn) = @_;                                          my ($database,$input,$mfn) = @_;
570    #warn "### load_row($database,$input,$mfn) from data_structure\n";
571                                          return $store->load_row(                                          return $store->load_row(
572                                                  database => $database,                                                  database => $database,
573                                                  input => $input,                                                  input => $input,
574                                                  id => $mfn,                                                  id => $mfn,
575                                          );                                          );
576                                  },                                  },
577                          ) ) { # if                          );
578    
579                            $log->debug("ds = ", sub { dump($ds) });
580    
581                                  $log->debug("ds = ", sub { dump($ds) });                          if ( $ds ) {
582    
583                                  $store->save_ds(                                  $store->save_ds(
584                                          database => $database,                                          database => $database,
# Line 581  foreach my $database ( sort keys %{ $con Line 593  foreach my $database ( sort keys %{ $con
593                                          type => $config->get($indexer_config)->{type},                                          type => $config->get($indexer_config)->{type},
594                                  ) if $indexer;                                  ) if $indexer;
595    
                                 if ($marc) {  
                                         my $i = 0;  
   
                                         while (my $fields = WebPAC::Normalize::_get_marc_fields( fetch_next => 1 ) ) {  
                                                 $marc->add(  
                                                         id => $mfn . ( $i ? "/$i" : '' ),  
                                                         fields => $fields,  
                                                         leader => WebPAC::Normalize::_get_marc_leader(),  
                                                         row => $row,  
                                                 );  
                                                 $i++;  
                                         }  
   
                                         $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);  
                                 }  
   
596                                  foreach my $out ( @output_modules ) {                                  foreach my $out ( @output_modules ) {
597                                          $out->add( $mfn, $ds ) if $out->can('add');                                          $out->add( $mfn, $ds ) if $out->can('add');
598                                  }                                  }
599    
600                          } else {                          } else {
601                                  $log->warn("record $pos didn't produce any output after normalization rules!");                                  $log->warn("record $pos didn't produce any output after normalization rules!") unless $marc;
602                            }
603    
604                            if ($marc) {
605                                    my $i = 0;
606    
607                                    while (my $fields = WebPAC::Normalize::MARC::_get_marc_fields( fetch_next => 1 ) ) {
608                                            $marc->add(
609                                                    id => $mfn . ( $i ? "/$i" : '' ),
610                                                    fields => $fields,
611                                                    leader => WebPAC::Normalize::MARC::_get_marc_leader(),
612                                                    row => $row,
613                                            );
614                                            $i++;
615                                    }
616    
617                                    $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);
618                          }                          }
619    
620                  }                  }

Legend:
Removed from v.969  
changed lines
  Added in v.1067

  ViewVC Help
Powered by ViewVC 1.1.26