/[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 251 by dpavlin, Thu Dec 15 14:12:00 2005 UTC revision 287 by dpavlin, Sun Dec 18 21:06:51 2005 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.05;
17  use YAML qw/LoadFile/;  use YAML qw/LoadFile/;
18  use LWP::Simple;  use LWP::Simple;
19    
# Line 28  my $total_rows = 0; Line 29  my $total_rows = 0;
29    
30  while (my ($database, $db_config) = each %{ $config->{databases} }) {  while (my ($database, $db_config) = each %{ $config->{databases} }) {
31    
32            my $log = _new WebPAC::Common()->_get_logger();
33    
34            #
35            # open Hyper Estraier database
36            #
37    
38            my $est_config = $config->{hyperestraier} || $log->logdie("can't find 'hyperestraier' part in confguration");
39            $est_config->{database} = $database;
40    
41            $log->info("using HyperEstraier URL $est_config->{masterurl}");
42    
43            my $est = new WebPAC::Output::Estraier(
44                    %{ $est_config },
45            );
46    
47            #
48            # now WebPAC::Store
49            #
50          my $abs_path = abs_path($0);          my $abs_path = abs_path($0);
51          $abs_path =~ s#/[^/]*$#/#;          $abs_path =~ s#/[^/]*$#/#;
52    
53          my $db_path = $config->{webpac}->{db_path} . '/' . $database;          my $db_path = $config->{webpac}->{db_path} . '/' . $database;
54    
55            $log->info("working on $database in $db_path");
56    
57          my $db = new WebPAC::Store(          my $db = new WebPAC::Store(
58                  path => $db_path,                  path => $db_path,
59                  database => $database,                  database => $database,
60                  debug => 1,                  debug => 1,
61          );          );
62    
         my $log = $db->_get_logger;  
         $log->info("working on $database in $db_path");  
   
         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 },  
         );  
63    
64          #          #
65          # now, iterate through input formats          # now, iterate through input formats
# Line 58  while (my ($database, $db_config) = each Line 68  while (my ($database, $db_config) = each
68          my @inputs;          my @inputs;
69          if (ref($db_config->{input}) eq 'ARRAY') {          if (ref($db_config->{input}) eq 'ARRAY') {
70                  @inputs = @{ $db_config->{input} };                  @inputs = @{ $db_config->{input} };
71          } else {          } elsif ($db_config->{input}) {
72                  push @inputs, $db_config->{input};                  push @inputs, $db_config->{input};
73            } else {
74                    $log->info("database $database doesn't have inputs defined");
75          }          }
76    
77            my @supported_inputs = keys %{ $config->{webpac}->{inputs} };
78    
79          foreach my $input (@inputs) {          foreach my $input (@inputs) {
80    
81                  my $type = lc($input->{type});                  my $type = lc($input->{type});
82    
83                  die "I know only how to handle input type isis, not '$type'!\n" unless ($type eq 'isis');                  die "I know only how to handle input types ", join(",", @supported_inputs), " not '$type'!\n" unless (grep(/$type/, @supported_inputs));
84    
85                  my $lookup = new WebPAC::Lookup(                  my $lookup = new WebPAC::Lookup(
86                          lookup_file => $input->{lookup},                          lookup_file => $input->{lookup},
87                  );                  );
88    
89                  $log->info("working on input $input->{path} [$input->{type}]");                  my $input_module = $config->{webpac}->{inputs}->{$type};
90    
91                    $log->info("working on input $input->{path} [$input->{type}] using $input_module");
92    
93                  my $isis = new WebPAC::Input::ISIS(                  my $input_db = new WebPAC::Input(
94                            module => $input_module,
95                          code_page => $config->{webpac}->{webpac_encoding},                          code_page => $config->{webpac}->{webpac_encoding},
96                          limit_mfn => $input->{limit},                          limit_mfn => $input->{limit},
97                          lookup => $lookup,                          lookup => $lookup,
98                  );                  );
99                    $log->logdie("can't create input using $input_module") unless ($input);
100    
101                  my $maxmfn = $isis->open(                  my $maxmfn = $input_db->open(
102                          filename => $input->{path},                          path => $input->{path},
103                          code_page => $input->{encoding},        # database encoding                          code_page => $input->{encoding},        # database encoding
104                  );                  );
105    
 $log->info( Dumper($lookup->{_lookup_data}) );  
   
106                  my $n = new WebPAC::Normalize::XML(                  my $n = new WebPAC::Normalize::XML(
107                  #       filter => { 'foo' => sub { shift } },                  #       filter => { 'foo' => sub { shift } },
108                          db => $db,                          db => $db,
# Line 95  $log->info( Dumper($lookup->{_lookup_dat Line 111  $log->info( Dumper($lookup->{_lookup_dat
111                          prefix => $input->{name},                          prefix => $input->{name},
112                  );                  );
113    
114                  $n->open(                  my $normalize_path = $input->{normalize}->{path};
                         tag => $input->{normalize}->{tag},  
                         xml_file => $input->{normalize}->{path},  
                 );  
115    
116                  for ( 0 ... $isis->size ) {                  if ($normalize_path =~ m/\.xml$/i) {
117                            $n->open(
118                                    tag => $input->{normalize}->{tag},
119                                    xml_file => $input->{normalize}->{path},
120                            );
121                    } elsif ($normalize_path =~ m/\.(?:yml|yaml)$/i) {
122                            $n->open_yaml(
123                                    path => $normalize_path,
124                                    tag => $input->{normalize}->{tag},
125                            );
126                    }
127    
128                          my $row = $isis->fetch || next;                  for ( 0 ... $input_db->size ) {
129    
130                            my $row = $input_db->fetch || next;
131    
132                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";
133    
# Line 120  $log->info( Dumper($lookup->{_lookup_dat Line 145  $log->info( Dumper($lookup->{_lookup_dat
145          };          };
146    
147          $log->info("$total_rows records indexed");          $log->info("$total_rows records indexed");
148    
149            #
150            # add Hyper Estraier links to other databases
151            #
152            if (ref($db_config->{links}) eq 'ARRAY') {
153                    foreach my $link (@{ $db_config->{links} }) {
154                            $log->info("adding link $database -> $link->{to} [$link->{credit}]");
155                            $est->add_link(
156                                    from => $database,
157                                    to => $link->{to},
158                                    credit => $link->{credit},
159                            );
160                    }
161            }
162    
163  }  }
164    

Legend:
Removed from v.251  
changed lines
  Added in v.287

  ViewVC Help
Powered by ViewVC 1.1.26