/[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 214 by dpavlin, Mon Dec 5 17:47:29 2005 UTC revision 391 by dpavlin, Sun Jan 22 14:27:50 2006 UTC
# Line 7  use File::Temp qw/tempdir/; Line 7  use File::Temp qw/tempdir/;
7  use Data::Dumper;  use Data::Dumper;
8  use lib './lib';  use lib './lib';
9    
10    use WebPAC::Common 0.02;
11  use WebPAC::Lookup;  use WebPAC::Lookup;
12  use WebPAC::Input::ISIS;  use WebPAC::Input 0.03;
13  use WebPAC::Store 0.03;  use WebPAC::Store 0.03;
14  use WebPAC::Normalize::XML;  use WebPAC::Normalize::XML;
15  use WebPAC::Output::TT;  use WebPAC::Output::TT;
16  use WebPAC::Output::Estraier 0.02;  use WebPAC::Output::Estraier 0.08;
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    
22  my $limit = shift @ARGV;  =head1 NAME
23    
24  my $config = LoadFile('conf/config.yml');  run.pl - start WebPAC indexing
25    
26  print "config = ",Dumper($config);  B<this command will probably go away. Don't get used to it!>
27    
28    Options:
29    
30    =over 4
31    
32    =item --offset 42
33    
34    start loading (all) databases at offset 42
35    
36    =item --limit 100
37    
38    limit loading to 100 records
39    
40    =item --clean
41    
42    remove database and Hyper Estraier index before indexing
43    
44    =item --one=database_name
45    
46    reindex just single database
47    
48    =item --config conf/config.yml
49    
50    path to YAML configuration file
51    
52    =back
53    
54    =cut
55    
56    my $offset;
57    my $limit;
58    
59    my $clean = 0;
60    my $config = 'conf/config.yml';
61    my $debug = 0;
62    my $one_db_name;
63    
64    GetOptions(
65            "limit=i" => \$limit,
66            "offset=i" => \$offset,
67            "clean" => \$clean,
68            "one=s" => \$one_db_name,
69            "config" => \$config,
70            "debug" => \$debug,
71    );
72    
73    $config = LoadFile($config);
74    
75    print "config = ",Dumper($config) if ($debug);
76    
77  die "no databases in config file!\n" unless ($config->{databases});  die "no databases in config file!\n" unless ($config->{databases});
78    
79  my $total_rows = 0;  my $total_rows = 0;
80    my $start_t = time();
81    
82  while (my ($database, $db_config) = each %{ $config->{databases} }) {  while (my ($database, $db_config) = each %{ $config->{databases} }) {
83    
84          my $type = lc($db_config->{input}->{type});          next if ($one_db_name && $database !~ m/$one_db_name/i);
85    
86            my $log = _new WebPAC::Common()->_get_logger();
87    
88          die "I know only how to handle input type isis, not '$type'!\n" unless ($type eq 'isis');          #
89            # open Hyper Estraier database
90            #
91    
92            my $est_config = $config->{hyperestraier} || $log->logdie("can't find 'hyperestraier' part in confguration");
93            $est_config->{database} = $database;
94            $est_config->{clean} = $clean;
95    
96            my $est = new WebPAC::Output::Estraier( %{ $est_config } );
97    
98            #
99            # now WebPAC::Store
100            #
101          my $abs_path = abs_path($0);          my $abs_path = abs_path($0);
102          $abs_path =~ s#/[^/]*$#/#;          $abs_path =~ s#/[^/]*$#/#;
103    
         my $lookup = new WebPAC::Lookup(  
                 lookup_file => $db_config->{input}->{lookup},  
         );  
   
104          my $db_path = $config->{webpac}->{db_path} . '/' . $database;          my $db_path = $config->{webpac}->{db_path} . '/' . $database;
105    
106            if ($clean) {
107          my $log = $lookup->_get_logger;                  $log->info("creating new database $database in $db_path");
108          $log->info("working on $database in $db_path");                  rmtree( $db_path ) || $log->warn("can't remove $db_path: $!");
109            } else {
110                    $log->debug("working on $database in $db_path");
111            }
112    
113          my $db = new WebPAC::Store(          my $db = new WebPAC::Store(
114                  path => $db_path,                  path => $db_path,
115                    database => $database,
116                    debug => $debug,
117          );          );
118    
         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 },  
         );  
119    
120          #          #
121          # now, iterate through input formats          # now, iterate through input formats
# Line 65  while (my ($database, $db_config) = each Line 124  while (my ($database, $db_config) = each
124          my @inputs;          my @inputs;
125          if (ref($db_config->{input}) eq 'ARRAY') {          if (ref($db_config->{input}) eq 'ARRAY') {
126                  @inputs = @{ $db_config->{input} };                  @inputs = @{ $db_config->{input} };
127          } else {          } elsif ($db_config->{input}) {
128                  push @inputs, $db_config->{input};                  push @inputs, $db_config->{input};
129            } else {
130                    $log->info("database $database doesn't have inputs defined");
131          }          }
132    
133            my @supported_inputs = keys %{ $config->{webpac}->{inputs} };
134    
135          foreach my $input (@inputs) {          foreach my $input (@inputs) {
                 $log->info("working on input $input->{path} [$input->{type}]");  
136    
137                  my $isis = new WebPAC::Input::ISIS(                  my $type = lc($input->{type});
138    
139                    die "I know only how to handle input types ", join(",", @supported_inputs), " not '$type'!\n" unless (grep(/$type/, @supported_inputs));
140    
141                    my $lookup = new WebPAC::Lookup(
142                            lookup_file => $input->{lookup},
143                    );
144    
145                    my $input_module = $config->{webpac}->{inputs}->{$type};
146    
147                    $log->info("working on input '$input->{path}' [$input->{type}] using $input_module lookup '$input->{lookup}'");
148    
149                    my $input_db = new WebPAC::Input(
150                            module => $input_module,
151                          code_page => $config->{webpac}->{webpac_encoding},                          code_page => $config->{webpac}->{webpac_encoding},
152                          limit_mfn => $input->{limit},                          limit => $limit || $input->{limit},
153                            offset => $offset,
154                            lookup => $lookup,
155                  );                  );
156                    $log->logdie("can't create input using $input_module") unless ($input);
157    
158                  my $maxmfn = $isis->open(                  my $maxmfn = $input_db->open(
159                          filename => $input->{path},                          path => $input->{path},
160                          code_page => $input->{encoding},        # database encoding                          code_page => $input->{encoding},        # database encoding
161                  );                  );
162    
# Line 87  while (my ($database, $db_config) = each Line 165  while (my ($database, $db_config) = each
165                          db => $db,                          db => $db,
166                          lookup_regex => $lookup->regex,                          lookup_regex => $lookup->regex,
167                          lookup => $lookup,                          lookup => $lookup,
168                            prefix => $input->{name},
169                  );                  );
170    
171                  $n->open(                  my $normalize_path = $input->{normalize}->{path};
172                          tag => $input->{normalize}->{tag},  
173                          xml_file => $input->{normalize}->{path},                  if ($normalize_path =~ m/\.xml$/i) {
174                  );                          $n->open(
175                                    tag => $input->{normalize}->{tag},
176                                    xml_file => $input->{normalize}->{path},
177                            );
178                    } elsif ($normalize_path =~ m/\.(?:yml|yaml)$/i) {
179                            $n->open_yaml(
180                                    path => $normalize_path,
181                                    tag => $input->{normalize}->{tag},
182                            );
183                    }
184    
185                  for ( 0 ... $isis->size ) {                  foreach my $pos ( 0 ... $input_db->size ) {
186    
187                          my $row = $isis->fetch || next;                          my $row = $input_db->fetch || next;
188    
189                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";                          my $mfn = $row->{'000'}->[0];
190    
191                            if (! $mfn || $mfn !~ m#^\d+$#) {
192                                    $log->warn("record $pos doesn't have valid MFN but '$mfn', using $pos");
193                                    $mfn = $pos;
194                                    push @{ $row->{'000'} }, $pos;
195                            }
196    
197                          my $ds = $n->data_structure($row);                          my $ds = $n->data_structure($row);
198    
199                          $est->add(                          $est->add(
200                                  id => $input->{name} . "#" . $mfn,                                  id => $input->{name} . "/" . $mfn,
201                                  ds => $ds,                                  ds => $ds,
202                                  type => $config->{hyperestraier}->{type},                                  type => $config->{hyperestraier}->{type},
203                          );                          );
# Line 113  while (my ($database, $db_config) = each Line 207  while (my ($database, $db_config) = each
207    
208          };          };
209    
210          $log->info("$total_rows records indexed");          my $dt = time() - $start_t;
211            $log->info("$total_rows records indexed in " .
212                    sprintf("%.2f sec [%.2f rec/sec]",
213                            $dt, ($total_rows / $dt)
214                    )
215            );
216    
217            #
218            # add Hyper Estraier links to other databases
219            #
220            if (ref($db_config->{links}) eq 'ARRAY') {
221                    foreach my $link (@{ $db_config->{links} }) {
222                            $log->info("adding link $database -> $link->{to} [$link->{credit}]");
223                            $est->add_link(
224                                    from => $database,
225                                    to => $link->{to},
226                                    credit => $link->{credit},
227                            );
228                    }
229            }
230    
231  }  }
232    

Legend:
Removed from v.214  
changed lines
  Added in v.391

  ViewVC Help
Powered by ViewVC 1.1.26