--- trunk/run.pl 2007/08/23 20:57:00 884 +++ trunk/run.pl 2007/10/31 12:14:03 936 @@ -9,7 +9,7 @@ use WebPAC::Common 0.02; use WebPAC::Parser 0.08; use WebPAC::Input 0.16; -use WebPAC::Store 0.14; +use WebPAC::Store 0.15; use WebPAC::Normalize 0.22; use WebPAC::Output::TT; use WebPAC::Validate 0.11; @@ -255,10 +255,7 @@ } elsif ($use_indexer eq 'kinosearch') { - # open KinoSearch - require WebPAC::Output::KinoSearch; - $indexer_config->{clean} = 1 unless (-e $indexer_config->{index_path}); - $indexer = new WebPAC::Output::KinoSearch( %{ $indexer_config } ); + die "no longer supported"; } else { $log->logdie("unknown use_indexer: $use_indexer"); @@ -298,35 +295,38 @@ # # now WebPAC::Store # - my $abs_path = abs_path($0); - $abs_path =~ s#/[^/]*$#/#; # - - my $db_path = $config->webpac('db_path'); - - if ($clean) { - $log->info("creating new database '$database' in $db_path"); - rmtree( $db_path ) || $log->warn("can't remove $db_path: $!"); - } else { - $log->info("working on database '$database' in $db_path"); - } - - my $store = new WebPAC::Store( - path => $db_path, + my $store = new WebPAC::Store({ debug => $debug, - ); + }); + # # prepare output # - my @outputs; - if (defined( $db_config->{output} )) { - my $module = $db_config->{output}->{module} || $log->logdie("need module in output section of $database"); + my @outputs = force_array( $db_config->{output}, sub { + $log->error("Database $database doesn't have any outputs defined. Do you want to remove it from configuration?" ); + } ); + + my @output_modules; + + foreach my $output ( @outputs ) { + +warn '## output = ',dump( $output ); + + my $module = $output->{module} || $log->logdie("need module in output section of $database"); $module = 'WebPAC::Output::' . $module unless $module =~ m/::/; + $log->debug("loading output module $module"); eval "require $module"; - my $out = new $module->new( $db_config->{output} ); + + # add database to arugemnts for output filter + $output->{database} = $database; + + $log->debug("calling $module->new(",dump( $output ),")"); + my $out = new $module->new( $output ); $out->init; - push @outputs, $out; + + push @output_modules, $out; } @@ -334,14 +334,10 @@ # now, iterate through input formats # - my @inputs; - if (ref($db_config->{input}) eq 'ARRAY') { - @inputs = @{ $db_config->{input} }; - } elsif ($db_config->{input}) { - push @inputs, $db_config->{input}; - } else { + + my @inputs = force_array( $db_config->{input}, sub { $log->info("database $database doesn't have inputs defined"); - } + } ); foreach my $input (@inputs) { @@ -513,6 +509,16 @@ } + # setup input name for all output filters + foreach my $out ( @output_modules ) { + if ( $out->can('input') ) { + $out->input( $input_name ); + } else { + $log->warn("output filter $out doesn't support input name"); + } + } + + foreach my $pos ( 0 ... $input_db->size ) { my $row = $input_db->fetch || next; @@ -584,7 +590,7 @@ $log->info("Created $i instances of MFN $mfn\n") if ($i > 1); } - foreach my $out ( @outputs ) { + foreach my $out ( @output_modules ) { $out->add( $mfn, $ds ) if $out->can('add'); } @@ -618,7 +624,7 @@ eval { $indexer->finish } if ($indexer && $indexer->can('finish')); - foreach my $out ( @outputs ) { + foreach my $out ( @output_modules ) { $out->finish if $out->can('finish'); }