/[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 127 by dpavlin, Thu Nov 24 11:47:29 2005 UTC revision 255 by dpavlin, Fri Dec 16 01:04:20 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::ISIS;
13  use WebPAC::DB 0.02;  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;  use WebPAC::Output::Estraier 0.05;
17    use YAML qw/LoadFile/;
18    use LWP::Simple;
19    
20  my $limit = shift @ARGV;  my $limit = shift @ARGV;
21    
22  my $abs_path = abs_path($0);  my $config = LoadFile('conf/config.yml');
 $abs_path =~ s#/[^/]*$#/#;  
23    
24  my $isis_file = '/data/isis_data/ps/LIBRI/LIBRI';  print "config = ",Dumper($config);
25    
26  my $lookup = new WebPAC::Lookup(  die "no databases in config file!\n" unless ($config->{databases});
         lookup_file => "$abs_path/conf/lookup/isis.pm",  
 );  
   
 my $isis = new WebPAC::Input::ISIS(  
         code_page => 'ISO-8859-2',      # application encoding  
         limit_mfn => $limit,  
 );  
   
 my $maxmfn = $isis->open(  
         filename => $isis_file,  
         code_page => '852',             # database encoding  
 );  
   
 my $path = './db/';  
   
 my $db = new WebPAC::DB(  
         path => $path,  
 );  
   
 my $n = new WebPAC::Normalize::XML(  
 #       filter => { 'foo' => sub { shift } },  
         db => $db,  
         lookup_regex => $lookup->regex,  
         lookup => $lookup,  
 );  
   
 $n->open(  
         tag => 'isis',  
         xml_file => "$abs_path/conf/normalize/isis_ffzg.xml",  
 );  
   
 my $out = new WebPAC::Output::TT(  
         include_path => "$abs_path/conf/output/tt",  
         filters => { foo => sub { shift } },  
 );  
   
 my $est = new WebPAC::Output::Estraier(  
         url => 'http://localhost:1978/node/webpac2',  
         user => 'admin',  
         passwd => 'admin',  
         database => 'ps',  
 );  
27    
28  my $total_rows = 0;  my $total_rows = 0;
29    
30  for ( 0 ... $isis->size ) {  while (my ($database, $db_config) = each %{ $config->{databases} }) {
31    
32          my $row = $isis->fetch || next;          my $log = _new WebPAC::Common()->_get_logger();
33    
34          my $mfn = $row->{'000'}->[0] || die "can't find MFN";          #
35            # open Hyper Estraier database
36            #
37    
38          my $ds = $n->data_structure($row);          my $est_config = $config->{hyperestraier} || $log->logdie("can't find 'hyperestraier' part in confguration");
39            $est_config->{database} = $database;
40    
41  #       print STDERR Dumper($row, $ds);          $log->info("using HyperEstraier URL $est_config->{masterurl}");
42    
43  #       my $html = $out->apply(          my $est = new WebPAC::Output::Estraier(
44  #               template => 'html_ffzg.tt',                  %{ $est_config },
45  #               data => $ds,          );
46  #       );  
47  #          #
48  #       # create test output          # now WebPAC::Store
49  #          #
50  #       my $file = sprintf('out/%02d.html', $mfn );          my $abs_path = abs_path($0);
51  #       open(my $fh, '>', $file) or die "can't open $file: $!";          $abs_path =~ s#/[^/]*$#/#;
52  #       print $fh $html;  
53  #       close($fh);          my $db_path = $config->{webpac}->{db_path} . '/' . $database;
54  #  
55  #       $html =~ s#\s*[\n\r]+\s*##gs;          $log->info("working on $database in $db_path");
56  #  
57  #       print STDERR $html;          my $db = new WebPAC::Store(
58                    path => $db_path,
59          $est->add(                  database => $database,
60                  id => $mfn,                  debug => 1,
                 ds => $ds,  
                 type => 'search',  
61          );          );
62    
         $total_rows++;  
63    
64  };          #
65            # now, iterate through input formats
66            #
67    
68            my @inputs;
69            if (ref($db_config->{input}) eq 'ARRAY') {
70                    @inputs = @{ $db_config->{input} };
71            } elsif ($db_config->{input}) {
72                    push @inputs, $db_config->{input};
73            } else {
74                    $log->info("database $database doesn't have inputs defined");
75            }
76    
77            foreach my $input (@inputs) {
78    
79    print Dumper($input);
80    
81                    my $type = lc($input->{type});
82    
83                    die "I know only how to handle input type isis, not '$type'!\n" unless ($type eq 'isis');
84    
85                    my $lookup = new WebPAC::Lookup(
86                            lookup_file => $input->{lookup},
87                    );
88    
89                    $log->info("working on input $input->{path} [$input->{type}]");
90    
91                    my $isis = new WebPAC::Input::ISIS(
92                            code_page => $config->{webpac}->{webpac_encoding},
93                            limit_mfn => $input->{limit},
94                            lookup => $lookup,
95                    );
96    
97                    my $maxmfn = $isis->open(
98                            filename => $input->{path},
99                            code_page => $input->{encoding},        # database encoding
100                    );
101    
102                    my $n = new WebPAC::Normalize::XML(
103                    #       filter => { 'foo' => sub { shift } },
104                            db => $db,
105                            lookup_regex => $lookup->regex,
106                            lookup => $lookup,
107                            prefix => $input->{name},
108                    );
109    
110                    $n->open(
111                            tag => $input->{normalize}->{tag},
112                            xml_file => $input->{normalize}->{path},
113                    );
114    
115                    for ( 0 ... $isis->size ) {
116    
117                            my $row = $isis->fetch || next;
118    
119                            my $mfn = $row->{'000'}->[0] || die "can't find MFN";
120    
121                            my $ds = $n->data_structure($row);
122    
123                            $est->add(
124                                    id => $input->{name} . "#" . $mfn,
125                                    ds => $ds,
126                                    type => $config->{hyperestraier}->{type},
127                            );
128    
129                            $total_rows++;
130                    }
131    
132            };
133    
134            $log->info("$total_rows records indexed");
135    
136            #
137            # add Hyper Estraier links to other databases
138            #
139            if (ref($db_config->{links}) eq 'ARRAY') {
140                    foreach my $link (@{ $db_config->{links} }) {
141                            $log->info("adding link $database -> $link->{to} [$link->{credit}]");
142                            $est->add_link(
143                                    from => $database,
144                                    to => $link->{to},
145                                    credit => $link->{credit},
146                            );
147                    }
148            }
149    
150  my $log = $lookup->_get_logger;  }
151    
 $log->info("$total_rows records indexed");  

Legend:
Removed from v.127  
changed lines
  Added in v.255

  ViewVC Help
Powered by ViewVC 1.1.26