/[webpac]/trunk2/all2all.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 /trunk2/all2all.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 352 by dpavlin, Tue Jun 15 22:40:07 2004 UTC revision 362 by dpavlin, Wed Jun 16 16:50:30 2004 UTC
# Line 2  Line 2 
2    
3  =head1 NAME  =head1 NAME
4    
5  all2all.pl - basic script for all WebPac needs  all2all.pl - basic script for all WebPAC needs
6    
7  =cut  =cut
8    
9  use strict;  use strict;
 use OpenIsis;  
 use Text::Iconv;  
10  use Data::Dumper;  use Data::Dumper;
11  use Carp;  use Carp;
12    
13  use lib './lib';  use lib './lib';
14  use WebPac;  use WebPAC;
15    
16  my $webpac = new WebPac(  my $webpac = new WebPAC(
17          code_page => 'ISO-8859-2',          code_page => 'ISO-8859-2',
18            limit_mfn => 500,
19  ) || die;  ) || die;
20    
21  $|=1;  $|=1;
22    
23  print "reading database\n";  print "reading database\n";
24  my $maxmfn = $webpac->open_isis(  my $maxmfn = $webpac->open_isis(
25          filename => shift @ARGV || '/data/hidra/THS-500/THS',          filename => shift @ARGV || '/data/hidra/THS/THS',
26          lookup => [          lookup => [
27          { 'key' => 'd:v900', 'val' => 'v250^a' },          { 'key' => 'd:v900', 'val' => 'v250^a' },
28  #       { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },  #       { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
# Line 35  my $maxmfn = $webpac->open_isis( Line 34  my $maxmfn = $webpac->open_isis(
34    
35  print "rows: $maxmfn\n\n";  print "rows: $maxmfn\n\n";
36    
37  for (my $mfn = 1; $mfn <= $maxmfn; $mfn++) {  while (my $rec = $webpac->fetch_rec) {
         my $rec = $webpac->{'data'}->{$mfn} || die "no record with mfn $mfn";  
38    
39          print "-- ",$webpac->fill_in($rec,'v250^a (v901^a)'),"\n";          print "-- ",$webpac->parse($rec,'v250^a / [v562^4] v562^a'),"\n";
40    
41            print " ",
42                    $webpac->parse($rec,'eval{v901^a eq "Deskriptor"}v250^a / [v562^4] v562^a'),
43                    $webpac->parse($rec,'eval{v901^a ne "Deskriptor"}250a [251]'),
44                    "\n";
45    
46          my @t = $webpac->fill_in($rec,'v553^1;;v553^a');          my @t = $webpac->fill_in($rec,'v553^1;;v553^a');
47          print " Uži pojam: ",join("\t\n",@t),"\n" if (@t);          print " Uži pojam: ",join("\t\n",@t),"\n" if (@t);
48    
49          @t = $webpac->fill_in($rec,'[a:v251::];;[d:[a:v251::]]');          @t = $webpac->fill_in($rec,'eval{v901^a eq "Područje"}[a:v251::];;[d:[a:v251::]]');
         @t = map { $webpac->lookup($_) => $_ } @t;  
50          print " Područje: ",join("\t\n",@t),"\n" if (@t);          print " Područje: ",join("\t\n",@t),"\n" if (@t);
51    
52          @t = $webpac->fill_in($rec,'[a:v561^4:v251:];;[d:[a:v561^4:v251:]]');          @t = $webpac->fill_in($rec,'eval{v901^a eq "Mikrotezaurus"}[a:v561^4:v251:];;[d:[a:v561^4:v251:]]');
53          print " Mikrotezaurus: ",join("\t\n",@t),"\n" if (@t);          print " Mikrotezaurus: ",join("\t\n",@t),"\n" if (@t);
54    
55          @t = $webpac->fill_in($rec,'[a:v561^4:v562^4:v900];;[d:[a:v561^4:v562^4:v900]]');          @t = $webpac->fill_in($rec,'eval{v901^a eq "Deskriptor"}[a:v561^4:v562^4:v900];;[d:[a:v561^4:v562^4:v900]]');
56          print " Deskriptor: ",join("\t\n",@t),"\n" if (@t);          print " Deskriptor: ",join("\t\n",@t),"\n" if (@t);
57  }  }
58    

Legend:
Removed from v.352  
changed lines
  Added in v.362

  ViewVC Help
Powered by ViewVC 1.1.26