/[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 921 by dpavlin, Tue Oct 30 23:32:58 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 299  foreach my $database ( sort keys %{ $con Line 306  foreach my $database ( sort keys %{ $con
306                  debug => $debug,                  debug => $debug,
307          });          });
308    
         sub iterate_over {  
                 my ( $what, $error ) = @_;  
                 my @result;  
                 if ( ref( $what ) eq 'ARRAY' ) {  
                         @result = @{ $what };  
                 } elsif ($db_config->{input}) {  
                         @result =  ( $what );  
                 } else {  
                         $error->() if ref($error) eq 'CODE';  
                 }  
                 return @result;  
         }  
309    
310          #          #
311          # prepare output          # prepare output
312          #          #
313          my @outputs = iterate_over( $db_config->{output}, sub {          my @outputs = force_array( $db_config->{output}, sub {
314                  $log->error("Database $database doesn't have any outputs defined. Do you want to remove it from configuration?" );                  $log->error("Database $database doesn't have any outputs defined. Do you want to remove it from configuration?" );
315          } );          } );
316    
# Line 323  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/::/;
325                    
326                  $log->debug("loading output module $module");                  $log->debug("loading output module $module");
327                  eval "require $module";                  eval "require $module";
328            
329                    # add database to arugemnts for output filter
330                  $output->{database} = $database;                  $output->{database} = $database;
331    
332                  $log->debug("calling $module->new(",dump( $output ),")");                  $log->debug("calling $module->new(",dump( $output ),")");
# Line 346  warn '## output = ',dump( $output ); Line 342  warn '## output = ',dump( $output );
342          #          #
343    
344    
345          my @inputs = iterate_over( $db_config->{input}, sub {          my @inputs = force_array( $db_config->{input}, sub {
346                  $log->info("database $database doesn't have inputs defined");                  $log->info("database $database doesn't have inputs defined");
347          } );          } );
348    
# Line 358  warn '## output = ',dump( $output ); Line 354  warn '## output = ',dump( $output );
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 520  warn '## output = ',dump( $output ); Line 523  warn '## output = ',dump( $output );
523                  }                  }
524    
525    
526                    # setup input name for all output filters
527                    foreach my $out ( @output_modules ) {
528                            if ( $out->can('input') ) {
529                                    $out->input( $input_name );
530                            } else {
531                                    $log->warn("output filter ",ref($out)," doesn't support input name");
532                            }
533                    }
534    
535    
536                  foreach my $pos ( 0 ... $input_db->size ) {                  foreach my $pos ( 0 ... $input_db->size ) {
537    
538                          my $row = $input_db->fetch || next;                          my $row = $input_db->fetch || next;
# Line 552  warn '## output = ',dump( $output ); Line 565  warn '## output = ',dump( $output );
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,
# Line 560  warn '## output = ',dump( $output ); Line 574  warn '## output = ',dump( $output );
574                                  },                                  },
575                          );                          );
576    
577                          $log->debug("ds = ", sub { dump($ds) }) if ($ds);                          $log->debug("ds = ", sub { dump($ds) });
578    
579                          $store->save_ds(                          if ( $ds ) {
580                                  database => $database,  
581                                  input => $input_name,                                  $store->save_ds(
582                                  id => $mfn,                                          database => $database,
583                                  ds => $ds,                                          input => $input_name,
584                          ) if ($ds && !$stats);                                          id => $mfn,
585                                            ds => $ds,
586                          $indexer->add(                                  ) if !$stats;
587                                  id => "${input_name}/${mfn}",  
588                                  ds => $ds,                                  $indexer->add(
589                                  type => $config->get($indexer_config)->{type},                                          id => "${input_name}/${mfn}",
590                          ) if ($indexer && $ds);                                          ds => $ds,
591                                            type => $config->get($indexer_config)->{type},
592                                    ) if $indexer;
593    
594                                    foreach my $out ( @output_modules ) {
595                                            $out->add( $mfn, $ds ) if $out->can('add');
596                                    }
597    
598                            } else {
599                                    $log->warn("record $pos didn't produce any output after normalization rules!") unless $marc;
600                            }
601    
602                          if ($marc) {                          if ($marc) {
603                                  my $i = 0;                                  my $i = 0;
604    
605                                  while (my $fields = WebPAC::Normalize::_get_marc_fields( fetch_next => 1 ) ) {                                  while (my $fields = WebPAC::Normalize::MARC::_get_marc_fields( fetch_next => 1 ) ) {
606                                          $marc->add(                                          $marc->add(
607                                                  id => $mfn . ( $i ? "/$i" : '' ),                                                  id => $mfn . ( $i ? "/$i" : '' ),
608                                                  fields => $fields,                                                  fields => $fields,
609                                                  leader => WebPAC::Normalize::_get_marc_leader(),                                                  leader => WebPAC::Normalize::MARC::_get_marc_leader(),
610                                                  row => $row,                                                  row => $row,
611                                          );                                          );
612                                          $i++;                                          $i++;
# Line 591  warn '## output = ',dump( $output ); Line 615  warn '## output = ',dump( $output );
615                                  $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);                                  $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);
616                          }                          }
617    
                         foreach my $out ( @output_modules ) {  
                                 $out->add( $mfn, $ds ) if $out->can('add');  
                         }  
   
618                  }                  }
619    
620                  if ($validate) {                  if ($validate) {

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

  ViewVC Help
Powered by ViewVC 1.1.26