/[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 957 by dpavlin, Fri Nov 2 10:54:44 2007 UTC revision 1043 by dpavlin, Mon Nov 12 12:35:32 2007 UTC
# Line 133  GetOptions( Line 133  GetOptions(
133          "clean" => \$clean,          "clean" => \$clean,
134          "one=s" => \$only_filter,          "one=s" => \$only_filter,
135          "only=s" => \$only_filter,          "only=s" => \$only_filter,
136          "config" => \$config_path,          "config=s" => \$config_path,
137          "debug+" => \$debug,          "debug+" => \$debug,
138          "stats" => \$stats,          "stats" => \$stats,
139          "validate=s" => \$validate_path,          "validate=s" => \$validate_path,
# 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 347  foreach my $database ( sort keys %{ $con Line 354  foreach my $database ( sort keys %{ $con
354    
355                  my $type = lc($input->{type});                  my $type = lc($input->{type});
356    
357                  die "I know only how to handle input types ", join(",", $config->webpac('inputs') ), " not '$type'!\n" unless (grep(/$type/, $config->webpac('inputs')));                  # FIXME check if input module exists
358                    my $input_module = $input->{module};
359    
360                  my $input_module = $config->webpac('inputs')->{$type};                  if ( ! $input_module ) {
361                            if ( grep(/$type/, $config->webpac('inputs')) ) {
362                                    $input_module = $config->webpac('inputs')->{$type};
363                            } else {
364                                    $log->logdie("I know only how to handle input types ", join(",", $config->webpac('inputs') ), " not '$type'!" );
365                            }
366                    }
367    
368                  my @lookups = $parser->have_lookup_create($database, $input);                  my @lookups = $parser->have_lookup_create($database, $input);
369    
# Line 543  foreach my $database ( sort keys %{ $con Line 557  foreach my $database ( sort keys %{ $con
557                                  next;   # validation doesn't create any output                                  next;   # validation doesn't create any output
558                          }                          }
559    
560                          if ( my $ds = WebPAC::Normalize::data_structure(                          my $ds = WebPAC::Normalize::data_structure(
561                                  row => $row,                                  row => $row,
562                                  rules => $rules,                                  rules => $rules,
563                                  lookup => $lookup_hash,                                  lookup => $lookup_hash,
# Line 551  foreach my $database ( sort keys %{ $con Line 565  foreach my $database ( sort keys %{ $con
565                                  marc_encoding => 'utf-8',                                  marc_encoding => 'utf-8',
566                                  load_row_coderef => sub {                                  load_row_coderef => sub {
567                                          my ($database,$input,$mfn) = @_;                                          my ($database,$input,$mfn) = @_;
568    #warn "### load_row($database,$input,$mfn) from data_structure\n";
569                                          return $store->load_row(                                          return $store->load_row(
570                                                  database => $database,                                                  database => $database,
571                                                  input => $input,                                                  input => $input,
572                                                  id => $mfn,                                                  id => $mfn,
573                                          );                                          );
574                                  },                                  },
575                          ) ) { # if                          );
576    
577                            $log->debug("ds = ", sub { dump($ds) });
578    
579                                  $log->debug("ds = ", sub { dump($ds) });                          if ( $ds ) {
580    
581                                  $store->save_ds(                                  $store->save_ds(
582                                          database => $database,                                          database => $database,
# Line 574  foreach my $database ( sort keys %{ $con Line 591  foreach my $database ( sort keys %{ $con
591                                          type => $config->get($indexer_config)->{type},                                          type => $config->get($indexer_config)->{type},
592                                  ) if $indexer;                                  ) if $indexer;
593    
                                 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);  
                                 }  
   
594                                  foreach my $out ( @output_modules ) {                                  foreach my $out ( @output_modules ) {
595                                          $out->add( $mfn, $ds ) if $out->can('add');                                          $out->add( $mfn, $ds ) if $out->can('add');
596                                  }                                  }
597    
598                          } else {                          } else {
599                                  $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;
600                            }
601    
602                            if ($marc) {
603                                    my $i = 0;
604    
605                                    while (my $fields = WebPAC::Normalize::MARC::_get_marc_fields( fetch_next => 1 ) ) {
606                                            $marc->add(
607                                                    id => $mfn . ( $i ? "/$i" : '' ),
608                                                    fields => $fields,
609                                                    leader => WebPAC::Normalize::MARC::_get_marc_leader(),
610                                                    row => $row,
611                                            );
612                                            $i++;
613                                    }
614    
615                                    $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);
616                          }                          }
617    
618                  }                  }

Legend:
Removed from v.957  
changed lines
  Added in v.1043

  ViewVC Help
Powered by ViewVC 1.1.26