/[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 217 by dpavlin, Mon Dec 5 17:47:51 2005 UTC revision 585 by dpavlin, Wed Jul 5 19:52:45 2006 UTC
# Line 4  use strict; Line 4  use strict;
4    
5  use Cwd qw/abs_path/;  use Cwd qw/abs_path/;
6  use File::Temp qw/tempdir/;  use File::Temp qw/tempdir/;
 use Data::Dumper;  
7  use lib './lib';  use lib './lib';
8    
9    use WebPAC::Common 0.02;
10  use WebPAC::Lookup;  use WebPAC::Lookup;
11  use WebPAC::Input::ISIS;  use WebPAC::Input 0.07;
12  use WebPAC::Store 0.03;  use WebPAC::Store 0.03;
13  use WebPAC::Normalize::XML;  use WebPAC::Normalize 0.11;
14  use WebPAC::Output::TT;  use WebPAC::Output::TT;
15  use WebPAC::Output::Estraier 0.02;  use WebPAC::Validate;
16    use WebPAC::Output::MARC;
17  use YAML qw/LoadFile/;  use YAML qw/LoadFile/;
18  use LWP::Simple;  use Getopt::Long;
19    use File::Path;
20    use Time::HiRes qw/time/;
21    use File::Slurp;
22    use Data::Dump qw/dump/;
23    
24  my $limit = shift @ARGV;  =head1 NAME
25    
26  my $config = LoadFile('conf/config.yml');  run.pl - start WebPAC indexing
27    
28  print "config = ",Dumper($config);  B<this command will probably go away. Don't get used to it!>
29    
30    Options:
31    
32    =over 4
33    
34    =item --offset 42
35    
36    start loading (all) databases at offset 42
37    
38    =item --limit 100
39    
40    limit loading to 100 records
41    
42    =item --clean
43    
44    remove database and Hyper Estraier index before indexing
45    
46    =item --only=database_name/input_filter
47    
48    reindex just single database (legacy name is --one)
49    
50    C</input_filter> is optional part which can be C<name>
51    or C<type> from input
52    
53    =item --config conf/config.yml
54    
55    path to YAML configuration file
56    
57    =item --stats
58    
59    disable indexing and dump statistics about field and subfield
60    usage for each input
61    
62    =item --validate path/to/validation_file
63    
64    turn on extra validation of imput records, see L<WebPAC::Validation>
65    
66    =item --marc-normalize conf/normalize/mapping.pl
67    
68    This option specifies normalisation file for MARC creation
69    
70    =item --marc-output out/marc/test.marc
71    
72    Optional path to output file
73    
74    =item --marc-lint
75    
76    By default turned on if C<--marc-normalize> is used. You can disable lint
77    messages with C<--no-marc-lint>.
78    
79    =item --marc-dump
80    
81    Force dump or input and marc record for debugging.
82    
83    =back
84    
85    =cut
86    
87    my $offset;
88    my $limit;
89    
90    my $clean = 0;
91    my $config = 'conf/config.yml';
92    my $debug = 0;
93    my $only_filter;
94    my $stats = 0;
95    my $validate_path;
96    my ($marc_normalize, $marc_output);
97    my $marc_lint = 1;
98    my $marc_dump = 0;
99    
100    GetOptions(
101            "limit=i" => \$limit,
102            "offset=i" => \$offset,
103            "clean" => \$clean,
104            "one=s" => \$only_filter,
105            "only=s" => \$only_filter,
106            "config" => \$config,
107            "debug+" => \$debug,
108            "stats" => \$stats,
109            "validate=s" => \$validate_path,
110            "marc-normalize=s" => \$marc_normalize,
111            "marc-output=s" => \$marc_output,
112            "marc-lint!" => \$marc_lint,
113            "marc-dump!" => \$marc_dump,
114    );
115    
116    $config = LoadFile($config);
117    
118    print "config = ",dump($config) if ($debug);
119    
120  die "no databases in config file!\n" unless ($config->{databases});  die "no databases in config file!\n" unless ($config->{databases});
121    
122    my $log = _new WebPAC::Common()->_get_logger();
123    $log->info( "-" x 79 );
124    
125    my $validate;
126    $validate = new WebPAC::Validate(
127            path => $validate_path,
128    ) if ($validate_path);
129    
130    my $use_indexer = $config->{use_indexer} || 'hyperestraier';
131    if ($stats) {
132            $log->debug("option --stats disables update of indexing engine...");
133            $use_indexer = undef;
134    } else {
135            $log->info("using $use_indexer indexing engine...");
136    }
137    
138    # disable indexing when creating marc
139    $use_indexer = undef if ($marc_normalize);
140    
141  my $total_rows = 0;  my $total_rows = 0;
142    my $start_t = time();
143    
144    my @links;
145    my $indexer;
146    
147  while (my ($database, $db_config) = each %{ $config->{databases} }) {  while (my ($database, $db_config) = each %{ $config->{databases} }) {
148    
149          my $type = lc($db_config->{input}->{type});          my ($only_database,$only_input) = split(m#/#, $only_filter) if ($only_filter);
150            next if ($only_database && $database !~ m/$only_database/i);
151    
152            if ($use_indexer) {
153                    my $indexer_config = $config->{$use_indexer} || $log->logdie("can't find '$use_indexer' part in confguration");
154                    $indexer_config->{database} = $database;
155                    $indexer_config->{clean} = $clean;
156                    $indexer_config->{label} = $db_config->{name};
157    
158                    if ($use_indexer eq 'hyperestraier') {
159    
160                            # open Hyper Estraier database
161                            use WebPAC::Output::Estraier '0.10';
162                            $indexer = new WebPAC::Output::Estraier( %{ $indexer_config } );
163                    
164                    } elsif ($use_indexer eq 'kinosearch') {
165    
166                            # open KinoSearch
167                            use WebPAC::Output::KinoSearch;
168                            $indexer_config->{clean} = 1 unless (-e $indexer_config->{index_path});
169                            $indexer = new WebPAC::Output::KinoSearch( %{ $indexer_config } );
170    
171          die "I know only how to handle input type isis, not '$type'!\n" unless ($type eq 'isis');                  } else {
172                            $log->logdie("unknown use_indexer: $use_indexer");
173                    }
174    
175                    $log->logide("can't continue without valid indexer") unless ($indexer);
176            }
177    
178    
179            #
180            # now WebPAC::Store
181            #
182          my $abs_path = abs_path($0);          my $abs_path = abs_path($0);
183          $abs_path =~ s#/[^/]*$#/#;          $abs_path =~ s#/[^/]*$#/#;
184    
         my $lookup = new WebPAC::Lookup(  
                 lookup_file => $db_config->{input}->{lookup},  
         );  
   
185          my $db_path = $config->{webpac}->{db_path} . '/' . $database;          my $db_path = $config->{webpac}->{db_path} . '/' . $database;
186    
187            if ($clean) {
188          my $log = $lookup->_get_logger;                  $log->info("creating new database '$database' in $db_path");
189          $log->info("working on $database in $db_path");                  rmtree( $db_path ) || $log->warn("can't remove $db_path: $!");
190            } else {
191                    $log->info("working on database '$database' in $db_path");
192            }
193    
194          my $db = new WebPAC::Store(          my $db = new WebPAC::Store(
195                  path => $db_path,                  path => $db_path,
196                  database => $database,                  database => $database,
197                    debug => $debug,
198          );          );
199    
         my $est_config = $config->{hyperestraier} || $log->logdie("can't find 'hyperestraier' part in confguration");  
         $est_config->{database} = $database;  
   
         $log->info("using HyperEstraier URL $est_config->{masterurl}");  
   
         my $est = new WebPAC::Output::Estraier(  
                 %{ $est_config },  
         );  
200    
201          #          #
202          # now, iterate through input formats          # now, iterate through input formats
# Line 66  while (my ($database, $db_config) = each Line 205  while (my ($database, $db_config) = each
205          my @inputs;          my @inputs;
206          if (ref($db_config->{input}) eq 'ARRAY') {          if (ref($db_config->{input}) eq 'ARRAY') {
207                  @inputs = @{ $db_config->{input} };                  @inputs = @{ $db_config->{input} };
208          } else {          } elsif ($db_config->{input}) {
209                  push @inputs, $db_config->{input};                  push @inputs, $db_config->{input};
210            } else {
211                    $log->info("database $database doesn't have inputs defined");
212          }          }
213    
214            my @supported_inputs = keys %{ $config->{webpac}->{inputs} };
215    
216          foreach my $input (@inputs) {          foreach my $input (@inputs) {
                 $log->info("working on input $input->{path} [$input->{type}]");  
217    
218                  my $isis = new WebPAC::Input::ISIS(                  next if ($only_input && ($input->{name} !~ m#$only_input#i && $input->{type} !~ m#$only_input#i));
                         code_page => $config->{webpac}->{webpac_encoding},  
                         limit_mfn => $input->{limit},  
                 );  
219    
220                  my $maxmfn = $isis->open(                  my $type = lc($input->{type});
221                          filename => $input->{path},  
222                          code_page => $input->{encoding},        # database encoding                  die "I know only how to handle input types ", join(",", @supported_inputs), " not '$type'!\n" unless (grep(/$type/, @supported_inputs));
223    
224                    my $lookup = new WebPAC::Lookup(
225                            lookup_file => $input->{lookup},
226                    ) if ($input->{lookup});
227    
228                    my $input_module = $config->{webpac}->{inputs}->{$type};
229    
230                    $log->info("working on input '$input->{name}' in $input->{path} [type: $input->{type}] using $input_module",
231                            $input->{lookup} ? "lookup '$input->{lookup}'" : ""
232                  );                  );
233    
234                  my $n = new WebPAC::Normalize::XML(                  my $input_db = new WebPAC::Input(
235                  #       filter => { 'foo' => sub { shift } },                          module => $input_module,
236                          db => $db,                          encoding => $config->{webpac}->{webpac_encoding},
237                          lookup_regex => $lookup->regex,                          limit => $limit || $input->{limit},
238                          lookup => $lookup,                          offset => $offset,
239                            lookup_coderef => sub {
240                                    my $rec = shift || return;
241                                    $lookup->add( $rec );
242                            },
243                            recode => $input->{recode},
244                            stats => $stats,
245                  );                  );
246                    $log->logdie("can't create input using $input_module") unless ($input);
247    
248                  $n->open(                  my $maxmfn = $input_db->open(
249                          tag => $input->{normalize}->{tag},                          path => $input->{path},
250                          xml_file => $input->{normalize}->{path},                          code_page => $input->{encoding},        # database encoding
251                            %{ $input },
252                  );                  );
253    
254                  for ( 0 ... $isis->size ) {                  my @norm_array = ref($input->{normalize}) eq 'ARRAY' ?
255                            @{ $input->{normalize} } : ( $input->{normalize} );
256    
257                    if ($marc_normalize) {
258                            @norm_array = ( {
259                                    path => $marc_normalize,
260                                    output => $marc_output || 'out/marc/' . $database . '-' . $input->{name} . '.marc',
261                            } );
262                    }
263    
264                    foreach my $normalize (@norm_array) {
265    
266                            my $normalize_path = $normalize->{path} || $log->logdie("can't find normalize path in config");
267    
268                            $log->logdie("Found '$normalize_path' as normalization file which isn't supported any more!") unless ( $normalize_path =~ m!\.pl$!i );
269    
270                            my $rules = read_file( $normalize_path ) or die "can't open $normalize_path: $!";
271    
272                            $log->info("Using $normalize_path for normalization...");
273    
274                          my $row = $isis->fetch || next;                          my $marc = new WebPAC::Output::MARC(
275                                    path => $normalize->{output},
276                                    lint => $marc_lint,
277                                    dump => $marc_dump,
278                            ) if ($normalize->{output});
279    
280                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";                          # reset position in database
281                            $input_db->seek(1);
282    
283                          my $ds = $n->data_structure($row);                          foreach my $pos ( 0 ... $input_db->size ) {
284    
285                          $est->add(                                  my $row = $input_db->fetch || next;
286                                  id => $input->{name} . "#" . $mfn,  
287                                  ds => $ds,                                  my $mfn = $row->{'000'}->[0];
288                                  type => $config->{hyperestraier}->{type},  
289                          );                                  if (! $mfn || $mfn !~ m#^\d+$#) {
290                                            $log->warn("record $pos doesn't have valid MFN but '$mfn', using $pos");
291                                            $mfn = $pos;
292                                            push @{ $row->{'000'} }, $pos;
293                                    }
294    
295    
296                                    if ($validate) {
297                                            my @errors = $validate->validate_errors( $row );
298                                            $log->error( "MFN $mfn validation errors:\n", join("\n", @errors) ) if (@errors);
299                                    }
300    
301                                    my $ds = WebPAC::Normalize::data_structure(
302                                            row => $row,
303                                            rules => $rules,
304                                            lookup => $lookup ? $lookup->lookup_hash : undef,
305                                            marc_encoding => 'utf-8',
306                                    );
307    
308                                    $db->save_ds(
309                                            id => $mfn,
310                                            ds => $ds,
311                                            prefix => $input->{name},
312                                    ) if ($ds && !$stats);
313    
314                                    $indexer->add(
315                                            id => $input->{name} . "/" . $mfn,
316                                            ds => $ds,
317                                            type => $config->{$use_indexer}->{type},
318                                    ) if ($indexer && $ds);
319    
320                                    if ($marc) {
321                                            my $i = 0;
322    
323                                            while (my $fields = WebPAC::Normalize::_get_marc_fields( fetch_next => 1 ) ) {
324                                                    $marc->add(
325                                                            id => $mfn . ( $i ? "/$i" : '' ),
326                                                            fields => $fields,
327                                                            leader => WebPAC::Normalize::marc_leader(),
328                                                            row => $row,
329                                                    );
330                                                    $i++;
331                                            }
332    
333                                            $log->info("Created $i instances of MFN $mfn\n") if ($i > 1);
334                                    }
335    
336                                    $total_rows++;
337                            }
338    
339                            $log->info("statistics of fields usage:\n", $input_db->stats) if ($stats);
340    
341                            # close MARC file
342                            $marc->finish if ($marc);
343    
                         $total_rows++;  
344                  }                  }
345    
346          };          }
347    
348            eval { $indexer->finish } if ($indexer && $indexer->can('finish'));
349    
350            my $dt = time() - $start_t;
351            $log->info("$total_rows records ", $indexer ? "indexed " : "",
352                    sprintf("in %.2f sec [%.2f rec/sec]",
353                            $dt, ($total_rows / $dt)
354                    )
355            );
356    
357            #
358            # add Hyper Estraier links to other databases
359            #
360            if (ref($db_config->{links}) eq 'ARRAY' && $use_indexer) {
361                    foreach my $link (@{ $db_config->{links} }) {
362                            if ($use_indexer eq 'hyperestraier') {
363                                    $log->info("saving link $database -> $link->{to} [$link->{credit}]");
364                                    push @links, {
365                                            from => $database,
366                                            to => $link->{to},
367                                            credit => $link->{credit},
368                                    };
369                            } else {
370                                    $log->warn("NOT IMPLEMENTED WITH $use_indexer: adding link $database -> $link->{to} [$link->{credit}]");
371                            }
372                    }
373            }
374    
         $log->info("$total_rows records indexed");  
375  }  }
376    
377    foreach my $link (@links) {
378            $log->info("adding link $link->{from} -> $link->{to} [$link->{credit}]");
379            $indexer->add_link( %{ $link } );
380    }

Legend:
Removed from v.217  
changed lines
  Added in v.585

  ViewVC Help
Powered by ViewVC 1.1.26