/[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 916 by dpavlin, Tue Oct 30 20:32:16 2007 UTC revision 921 by dpavlin, Tue Oct 30 23:32:58 2007 UTC
# Line 299  foreach my $database ( sort keys %{ $con Line 299  foreach my $database ( sort keys %{ $con
299                  debug => $debug,                  debug => $debug,
300          });          });
301    
302            sub iterate_over {
303                    my ( $what, $error ) = @_;
304                    my @result;
305                    if ( ref( $what ) eq 'ARRAY' ) {
306                            @result = @{ $what };
307                    } elsif ($db_config->{input}) {
308                            @result =  ( $what );
309                    } else {
310                            $error->() if ref($error) eq 'CODE';
311                    }
312                    return @result;
313            }
314    
315          #          #
316          # prepare output          # prepare output
317          #          #
318          my @outputs;          my @outputs = iterate_over( $db_config->{output}, sub {
319          if (defined( $db_config->{output} )) {                  $log->error("Database $database doesn't have any outputs defined. Do you want to remove it from configuration?" );
320                  my $module = $db_config->{output}->{module} || $log->logdie("need module in output section of $database");          } );
321    
322            my @output_modules;
323    
324            foreach my $output ( @outputs ) {
325    
326    warn '## output = ',dump( $output );
327    
328                    my $module = $output->{module} || $log->logdie("need module in output section of $database");
329                  $module = 'WebPAC::Output::' . $module unless $module =~ m/::/;                  $module = 'WebPAC::Output::' . $module unless $module =~ m/::/;
330            
331                  $log->debug("loading output module $module");                  $log->debug("loading output module $module");
332                  eval "require $module";                  eval "require $module";
333                  $db_config->{output}->{database} = $database;          
334                  $log->debug("calling $module->new(",dump( $db_config->{output} ),")");                  $output->{database} = $database;
335                  my $out = new $module->new( $db_config->{output} );  
336                    $log->debug("calling $module->new(",dump( $output ),")");
337                    my $out = new $module->new( $output );
338                  $out->init;                  $out->init;
339                  push @outputs, $out;  
340                    push @output_modules, $out;
341          }          }
342    
343    
# Line 320  foreach my $database ( sort keys %{ $con Line 345  foreach my $database ( sort keys %{ $con
345          # now, iterate through input formats          # now, iterate through input formats
346          #          #
347    
348          my @inputs;  
349          if (ref($db_config->{input}) eq 'ARRAY') {          my @inputs = iterate_over( $db_config->{input}, sub {
                 @inputs = @{ $db_config->{input} };  
         } elsif ($db_config->{input}) {  
                 push @inputs, $db_config->{input};  
         } else {  
350                  $log->info("database $database doesn't have inputs defined");                  $log->info("database $database doesn't have inputs defined");
351          }          } );
352    
353          foreach my $input (@inputs) {          foreach my $input (@inputs) {
354    
# Line 570  foreach my $database ( sort keys %{ $con Line 591  foreach my $database ( sort keys %{ $con
591                                  $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);                                  $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);
592                          }                          }
593    
594                          foreach my $out ( @outputs ) {                          foreach my $out ( @output_modules ) {
595                                  $out->add( $mfn, $ds ) if $out->can('add');                                  $out->add( $mfn, $ds ) if $out->can('add');
596                          }                          }
597    
# Line 604  foreach my $database ( sort keys %{ $con Line 625  foreach my $database ( sort keys %{ $con
625    
626          eval { $indexer->finish } if ($indexer && $indexer->can('finish'));          eval { $indexer->finish } if ($indexer && $indexer->can('finish'));
627    
628          foreach my $out ( @outputs ) {          foreach my $out ( @output_modules ) {
629                  $out->finish if $out->can('finish');                  $out->finish if $out->can('finish');
630          }          }
631    

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

  ViewVC Help
Powered by ViewVC 1.1.26