/[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 285 by dpavlin, Sun Dec 18 21:06:39 2005 UTC revision 286 by dpavlin, Sun Dec 18 21:06:46 2005 UTC
# Line 74  while (my ($database, $db_config) = each Line 74  while (my ($database, $db_config) = each
74                  $log->info("database $database doesn't have inputs defined");                  $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(                  sub new_input {
94                            my $name = shift;
95                            my $args = shift;
96                            new $name->($args);
97                    }
98    
99                    my $input = new_input($input_module,{
100                          code_page => $config->{webpac}->{webpac_encoding},                          code_page => $config->{webpac}->{webpac_encoding},
101                          limit_mfn => $input->{limit},                          limit_mfn => $input->{limit},
102                          lookup => $lookup,                          lookup => $lookup,
103                  );                  });
104                    $log->logdie("can't create input using $input_module") unless ($input);
105    
106                  my $maxmfn = $isis->open(                  my $maxmfn = $input->open(
107                          path => $input->{path},                          path => $input->{path},
108                          code_page => $input->{encoding},        # database encoding                          code_page => $input->{encoding},        # database encoding
109                  );                  );
# Line 119  while (my ($database, $db_config) = each Line 130  while (my ($database, $db_config) = each
130                          );                          );
131                  }                  }
132    
133                  for ( 0 ... $isis->size ) {                  for ( 0 ... $input->size ) {
134    
135                          my $row = $isis->fetch || next;                          my $row = $input->fetch || next;
136    
137                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";                          my $mfn = $row->{'000'}->[0] || die "can't find MFN";
138    

Legend:
Removed from v.285  
changed lines
  Added in v.286

  ViewVC Help
Powered by ViewVC 1.1.26