/[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 941 by dpavlin, Wed Oct 31 13:31:12 2007 UTC revision 1067 by dpavlin, Tue Nov 27 23:45:26 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 311  foreach my $database ( sort keys %{ $con Line 318  foreach my $database ( sort keys %{ $con
318    
319          foreach my $output ( @outputs ) {          foreach my $output ( @outputs ) {
320    
321  warn '## output = ',dump( $output );  #warn '## output = ',dump( $output );
322    
323                  my $module = $output->{module} || $log->logdie("need module in output section of $database");                  my $module = $output->{module} || $log->logdie("need module in output section of $database");
324                  $module = 'WebPAC::Output::' . $module unless $module =~ m/::/;                  $module = 'WebPAC::Output::' . $module unless $module =~ m/::/;
# Line 324  warn '## output = ',dump( $output ); Line 331  warn '## output = ',dump( $output );
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 347  warn '## output = ',dump( $output ); Line 356  warn '## output = ',dump( $output );
356    
357                  my $type = lc($input->{type});                  my $type = lc($input->{type});
358    
359                  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
360                    my $input_module = $input->{module};
361    
362                  my $input_module = $config->webpac('inputs')->{$type};                  if ( ! $input_module ) {
363                            if ( grep(/$type/, $config->webpac('inputs')) ) {
364                                    $input_module = $config->webpac('inputs')->{$type};
365                            } else {
366                                    $log->logdie("I know only how to handle input types ", join(",", $config->webpac('inputs') ), " not '$type'!" );
367                            }
368                    }
369    
370                  my @lookups = $parser->have_lookup_create($database, $input);                  my @lookups = $parser->have_lookup_create($database, $input);
371    
# Line 551  warn '## output = ',dump( $output ); Line 567  warn '## output = ',dump( $output );
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,
# Line 559  warn '## output = ',dump( $output ); Line 576  warn '## output = ',dump( $output );
576                                  },                                  },
577                          );                          );
578    
579                          $log->debug("ds = ", sub { dump($ds) }) if ($ds);                          $log->debug("ds = ", sub { dump($ds) });
580    
581                          $store->save_ds(                          if ( $ds ) {
582                                  database => $database,  
583                                  input => $input_name,                                  $store->save_ds(
584                                  id => $mfn,                                          database => $database,
585                                  ds => $ds,                                          input => $input_name,
586                          ) if ($ds && !$stats);                                          id => $mfn,
587                                            ds => $ds,
588                          $indexer->add(                                  ) if !$stats;
589                                  id => "${input_name}/${mfn}",  
590                                  ds => $ds,                                  $indexer->add(
591                                  type => $config->get($indexer_config)->{type},                                          id => "${input_name}/${mfn}",
592                          ) if ($indexer && $ds);                                          ds => $ds,
593                                            type => $config->get($indexer_config)->{type},
594                                    ) if $indexer;
595    
596                                    foreach my $out ( @output_modules ) {
597                                            $out->add( $mfn, $ds ) if $out->can('add');
598                                    }
599    
600                            } else {
601                                    $log->warn("record $pos didn't produce any output after normalization rules!") unless $marc;
602                            }
603    
604                          if ($marc) {                          if ($marc) {
605                                  my $i = 0;                                  my $i = 0;
606    
607                                  while (my $fields = WebPAC::Normalize::_get_marc_fields( fetch_next => 1 ) ) {                                  while (my $fields = WebPAC::Normalize::MARC::_get_marc_fields( fetch_next => 1 ) ) {
608                                          $marc->add(                                          $marc->add(
609                                                  id => $mfn . ( $i ? "/$i" : '' ),                                                  id => $mfn . ( $i ? "/$i" : '' ),
610                                                  fields => $fields,                                                  fields => $fields,
611                                                  leader => WebPAC::Normalize::_get_marc_leader(),                                                  leader => WebPAC::Normalize::MARC::_get_marc_leader(),
612                                                  row => $row,                                                  row => $row,
613                                          );                                          );
614                                          $i++;                                          $i++;
# Line 590  warn '## output = ',dump( $output ); Line 617  warn '## output = ',dump( $output );
617                                  $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);                                  $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);
618                          }                          }
619    
                         foreach my $out ( @output_modules ) {  
                                 $out->add( $mfn, $ds ) if $out->can('add');  
                         }  
   
620                  }                  }
621    
622                  if ($validate) {                  if ($validate) {

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

  ViewVC Help
Powered by ViewVC 1.1.26