/[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 209 by dpavlin, Mon Dec 5 17:46:57 2005 UTC revision 233 by dpavlin, Tue Dec 6 16:40:18 2005 UTC
# Line 12  use WebPAC::Input::ISIS; Line 12  use WebPAC::Input::ISIS;
12  use WebPAC::Store 0.03;  use WebPAC::Store 0.03;
13  use WebPAC::Normalize::XML;  use WebPAC::Normalize::XML;
14  use WebPAC::Output::TT;  use WebPAC::Output::TT;
15  use WebPAC::Output::Estraier;  use WebPAC::Output::Estraier 0.02;
16  use YAML qw/LoadFile/;  use YAML qw/LoadFile/;
17    use LWP::Simple;
18    
19  my $limit = shift @ARGV;  my $limit = shift @ARGV;
20    
# Line 21  my $config = LoadFile('conf/config.yml') Line 22  my $config = LoadFile('conf/config.yml')
22    
23  print "config = ",Dumper($config);  print "config = ",Dumper($config);
24    
25  my $type = lc($config->{input}->{type});  die "no databases in config file!\n" unless ($config->{databases});
26    
27  die "I know only how to handle input type isis, not '$type'!\n" unless ($type eq 'isis');  my $total_rows = 0;
28    
29    while (my ($database, $db_config) = each %{ $config->{databases} }) {
30    
31  my $abs_path = abs_path($0);          my $abs_path = abs_path($0);
32  $abs_path =~ s#/[^/]*$#/#;          $abs_path =~ s#/[^/]*$#/#;
33    
34  my $lookup = new WebPAC::Lookup(          my $db_path = $config->{webpac}->{db_path} . '/' . $database;
         lookup_file => $config->{input}->{lookup},  
 );  
35    
36            my $db = new WebPAC::Store(
37                    path => $db_path,
38                    database => $database,
39                    debug => 1,
40            );
41    
42            my $log = $db->_get_logger;
43            $log->info("working on $database in $db_path");
44    
45  my $isis = new WebPAC::Input::ISIS(          my $est_config = $config->{hyperestraier} || $log->logdie("can't find 'hyperestraier' part in confguration");
46          code_page => $config->{webpac}->{webpac_encoding},          $est_config->{database} = $database;
         limit_mfn => $config->{input}->{limit},  
 );  
47    
48  my $maxmfn = $isis->open(          $log->info("using HyperEstraier URL $est_config->{masterurl}");
         filename => $config->{input}->{path},  
         code_page => $config->{input}->{encoding},      # database encoding  
 );  
49    
50  my $path = './db/';          my $est = new WebPAC::Output::Estraier(
51                    %{ $est_config },
52            );
53    
54  my $db = new WebPAC::Store(          #
55          path => $config->{webpac}->{db_path},          # now, iterate through input formats
56  );          #
57    
58  my $n = new WebPAC::Normalize::XML(          my @inputs;
59  #       filter => { 'foo' => sub { shift } },          if (ref($db_config->{input}) eq 'ARRAY') {
60          db => $db,                  @inputs = @{ $db_config->{input} };
61          lookup_regex => $lookup->regex,          } else {
62          lookup => $lookup,                  push @inputs, $db_config->{input};
63  );          }
64    
65  $n->open(          foreach my $input (@inputs) {
         tag => $config->{normalize}->{tag},  
         xml_file => $config->{normalize}->{path},  
 );  
66    
67  my $out = new WebPAC::Output::TT(                  my $type = lc($input->{type});
         include_path => $config->{webpac}->{template_path},  
         filters => { foo => sub { shift } },  
 );  
68    
69  my $est = new WebPAC::Output::Estraier(                  die "I know only how to handle input type isis, not '$type'!\n" unless ($type eq 'isis');
         %{ $config->{hyperestraier} }  
 );  
70    
71  my $total_rows = 0;                  my $lookup = new WebPAC::Lookup(
72                            lookup_file => $input->{lookup},
73                    );
74    
75  for ( 0 ... $isis->size ) {                  $log->info("working on input $input->{path} [$input->{type}]");
76    
77          my $row = $isis->fetch || next;                  my $isis = new WebPAC::Input::ISIS(
78                            code_page => $config->{webpac}->{webpac_encoding},
79                            limit_mfn => $input->{limit},
80                    );
81    
82          my $mfn = $row->{'000'}->[0] || die "can't find MFN";                  my $maxmfn = $isis->open(
83                            filename => $input->{path},
84                            code_page => $input->{encoding},        # database encoding
85                    );
86    
87          my $ds = $n->data_structure($row);                  my $n = new WebPAC::Normalize::XML(
88                    #       filter => { 'foo' => sub { shift } },
89                            db => $db,
90                            lookup_regex => $lookup->regex,
91                            lookup => $lookup,
92                            prefix => $input->{name},
93                    );
94    
95  #       print STDERR Dumper($row, $ds);                  $n->open(
96                            tag => $input->{normalize}->{tag},
97  #       my $html = $out->apply(                          xml_file => $input->{normalize}->{path},
98  #               template => 'html_ffzg.tt',                  );
99  #               data => $ds,  
100  #       );                  for ( 0 ... $isis->size ) {
101  #  
102  #       # create test output                          my $row = $isis->fetch || next;
103  #  
104  #       my $file = sprintf('out/%02d.html', $mfn );                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";
105  #       open(my $fh, '>', $file) or die "can't open $file: $!";  
106  #       print $fh $html;                          my $ds = $n->data_structure($row);
107  #       close($fh);  
108  #                          $est->add(
109  #       $html =~ s#\s*[\n\r]+\s*##gs;                                  id => $input->{name} . "#" . $mfn,
110  #                                  ds => $ds,
111  #       print STDERR $html;                                  type => $config->{hyperestraier}->{type},
112                            );
         $est->add(  
                 id => $mfn,  
                 ds => $ds,  
                 type => $config->{hyperestraier}->{type},  
         );  
113    
114          $total_rows++;                          $total_rows++;
115                    }
116    
117  };          };
118    
119  my $log = $lookup->_get_logger;          $log->info("$total_rows records indexed");
120    }
121    
 $log->info("$total_rows records indexed");  

Legend:
Removed from v.209  
changed lines
  Added in v.233

  ViewVC Help
Powered by ViewVC 1.1.26