/[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

trunk/all2xml.pl revision 10 by dpavlin, Thu Jan 16 17:35:54 2003 UTC trunk2/all2all.pl revision 348 by dpavlin, Sun Jun 13 20:20:29 2004 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3    =head1 NAME
4    
5    webpac.pl - basic script for all WebPac needs
6    
7    =cut
8    
9  use strict;  use strict;
10  use OpenIsis;  use OpenIsis;
 use Getopt::Std;  
 use Data::Dumper;  
 use XML::Simple;  
 use Text::Unaccent 1.02;        # 1.01 won't compile on my platform,  
11  use Text::Iconv;  use Text::Iconv;
12    use Data::Dumper;
13    
14    my $cp = Text::Iconv->new("852", "iso-8859-2");
15    
16  $|=1;  $|=1;
17    
18  my $config;  my $db = OpenIsis::open( shift @ARGV || '/data/hidra/THS-500/THS' );
19    my $maxmfn = OpenIsis::maxRowid( $db ) || 1;
 $config=XMLin(undef, forcearray => [ 'isis' ], forcecontent => 1);  
   
 use index_DBI;  # there is no other, right now ;-)  
   
 my $index = new index_DBI();    # open index  
   
 my %opts;  
   
 # usage:  
 #       -d directory name  
 #       -m multiple directories  
 #       -q quiet  
 #       -s run swish  
   
 getopts('d:m:qs', \%opts);  
   
 my $db_dir = $opts{d} || "ps";  # FIX  
   
 #die "usage: $0 -d [database_dir] -m [database1,database2] " if (! %opts);  
   
 #print Dumper($config->{indexer});  
 #print "-" x 70,"\n";  
   
 Text::Iconv->raise_error(1);     # Conversion errors raise exceptions  
20    
21  my $isis_codepage = Text::Iconv->new($config->{isis_codepage},'UTF8');  print "rows: $maxmfn\n\n";
 my $index_codepage = Text::Iconv->new($config->{isis_codepage},$config->{index_codepage});  
 my $cludge_codepage = Text::Iconv->new('UTF8','ISO8859-1');  
22    
23  sub isis2xml {  my $data;
24    
25          use xmlify;  my @lookup = (
26            { 'key' => 'd:v900', 'val' => 'v250^a' },
27          my $row = shift @_;          { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
28            { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'ma:v561^4:v562^4:v461^1', 'val' => 'v900' },
29          my $xml;          { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'da:v561^4:v562^4:v461^1', 'val' => 'v900' },
30          $xml .= xmlify('db_dir',$db_dir);       # FIX remove?  );
31    
32          use parse_format;  sub fill_in {
33            my $tmp = shift || return;
34            my $data = shift || return;
35          foreach my $field (keys %{$config->{indexer}}) {          my $i = shift || 0;
36    
37                  my $swish_data = "";          my $found = 0;
38                  my $display_data = "";  
39                  my $index_data = "";          sub get_sf {
40                    my ($found,$data,$f,$sf,$i) = @_;
41                  foreach my $x (@{$config->{indexer}->{$field}->{isis}}) {                  if ($$data->{$f}->[$i]->{$sf}) {
42                            $$found++;
43                          my $format = $x->{content};                          return $$data->{$f}->[$i]->{$sf};
44                          my ($s,$d,$i) = (1,1,0);        # swish, display default                  } else {
45                          $s = 0 if (lc($x->{type}) eq "display");                          return '';
                         $d = 0 if (lc($x->{type}) eq "swish");  
                         ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");  
 #print STDERR "## s: $s d: $d i: $i ## $format ##\n";    
   
                         $format = $cludge_codepage->convert($format);  
                         my ($swish,$display) = parse_format($format,$row);  
 #print STDERR "s: $swish\nd: $display\n" if ($swish);  
   
 #print STDERR "swish: $swish<-- display: $display<--\n";  
                         # FIX: this is ugly, UGLY, cludge: OpenIsis return  
                         # UTF8 encoding of strings, but as if source charset  
                         # is ISO8859-1 and not some other. This breaks our  
                         # isis character encoding, so we convert it first  
                         # back to ISO8859-1 (which can actually be different  
                         # encoding in isis)  
   
                         $swish_data .= $swish if ($s && $swish);  
                         $display_data .= $display if ($d && $display);  
                         $index_data .= $display if ($i && $display);  
46                  }                  }
47            }
48    
49  #print STDERR "s_d: $swish_data\nd_d: $display_data\n" if ($swish_data);          sub get_nosf {
50                  if ($display_data) {                  my ($found,$data,$f,$i) = @_;
51                          $display_data = $isis_codepage->convert($display_data)."##" || $display_data;                  if ($$data->{$f}->[$i]) {
52                          $xml .= xmlify($field."_display", $display_data);                          $$found++;
53                  }                          return $$data->{$f}->[$i];
54                  if ($swish_data) {                  } else {
55                          my $i = Text::Iconv->new($config->{isis_codepage},'ISO8859-2');                          return '';
                         $swish_data = $i->convert($swish_data);  
                         $xml .= xmlify($field."_swish",unac_string('ISO8859-2',$swish_data));  
                         #$swish_data = $isis_codepage->convert($swish_data)."##" || $swish_data;  
                         #$xml .= xmlify($field."_swish",unac_string($config->{isis_codepage},$swish_data));  
56                  }                  }
57            }
58    
59                  # index          $tmp =~ s/v(\d+)\^(\w)/get_sf(\$found,\$data,$1,$2,$i)/ges;
60                  if ($index_data && $index_data ne "") {          $tmp =~ s/v(\d+)/get_nosf(\$found,\$data,$1,$i)/ges;
                         $index_data = $index_codepage->convert($index_data) || $index_data;  
                         $index->insert($field, $index_data, $db_dir);  
                 }  
61    
62          }          if ($found) {
63          if ($xml) {                  return $tmp;
 #print STDERR "x: $xml\n";  
                 return "<xml>\n$xml</xml>\n";  
64          } else {          } else {
65                  return;                  return;
66          }          }
67  }  }
68    
69  ##########################################################################  print "reading database...\n";
70    
71  my $last_tell=0;  for (my $mfn = 1; $mfn <= $maxmfn; $mfn++) {
72    
73  my @isis_dirs = ( '.' );        # use dirname as database name          my $row = OpenIsis::read( $db, $mfn );
74    print Dumper($row);
75  if ($opts{m}) {          foreach my $k (keys %{$row}) {
76          @isis_dirs = split(/,/,$opts{m});                  if ($k ne "mfn") {
77  }                          foreach my $l (@{$row->{$k}}) {
78                                    next if (! $l);
79  my @isis_dbs;                                  $l = $cp->convert($l);
80                                    # has subfields?
81  foreach (@isis_dirs) {                                  my $val;
82          if (-e $config->{isis_data}."/$db_dir/$_/LIBRI") {                                  if ($l =~ m/\^/) {
83                  push @isis_dbs,$config->{isis_data}."/$db_dir/$_/LIBRI/LIBRI";                                          foreach my $t (split(/\^/,$l)) {
84          }                                                  next if (! $t);
85          if (-e $config->{isis_data}."/$db_dir/$_/PERI") {                                                  $val->{substr($t,0,1)} = substr($t,1);
86                  push @isis_dbs,$config->{isis_data}."/$db_dir/$_/PERI/PERI";                                          }
87          }                                  } else {
88          if (-e $config->{isis_data}."/$db_dir/$_/AMS") {                                          $val = $l;
89                  push @isis_dbs,$config->{isis_data}."/$db_dir/$_/AMS/AMS";                                  }
         }  
         if (-e $config->{isis_data}."/$db_dir/$_/ARTI") {  
 #               push @isis_dbs,$config->{isis_data}."/$db_dir/$_/ARTI/ARTI";  
         }  
 }  
   
 print STDERR "FATAL: Can't find isis database.\nPerhaps isis_data (".$config->{isis_data}.") has wrong value?\n" if (! @isis_dbs);  
   
 my $db;  
   
 foreach my $isis_db (@isis_dbs) {  
90    
91                                    push @{$data->{$mfn}->{$k}}, $val if ($val && $val ne "");
92                            }
93                    }
94    
         my $db = OpenIsis::open( $isis_db );  
         if (0) {  
 #       # FIX  
 #       if (! $db ) {  
                 print STDERR "WARNING: can't open '$isis_db'\n";  
                 next ;  
95          }          }
96    
97          my $max_rowid = OpenIsis::maxRowid( $db );          foreach my $i (@lookup) {
98                    if ($i->{'eval'}) {
99          print STDERR "Reading database: $isis_db [$max_rowid rows]\n";                          my $eval = fill_in($i->{'eval'},$data->{$mfn});
100                            my $key = fill_in($i->{'key'}, $data->{$mfn});
101          my $path = $isis_db;                          my $val = fill_in($i->{'val'}, $data->{$mfn});
102          $path =~ s#$config->{isis_data}/*##g;                          if ($key && $val && eval $eval) {
103                                    push @{$data->{lookup}->{$key}}, $val;
         my $last_p = 0;  
   
 #       { my $row_id = 4514;  
 # FIX  
         for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {  
                 my $row = OpenIsis::read( $db, $row_id );  
                 if ($row && $row->{mfn}) {  
 #print STDERR "mfn: ",$row->{mfn},"\n";  
                         # output current process indicator  
                         my $p = int($row->{mfn} * 100 / $max_rowid);  
                         if ($p != $last_p) {  
                                 printf STDERR ("%5d / %5d [%-51s] %-2d %% \r",$row->{mfn},$max_rowid,"=" x ($p/2).">", $p ) if (! $opts{q});  
                                 $last_p = $p;  
104                          }                          }
105                    } else {
106                          if (my $xml = isis2xml($row)) {                          my $key = fill_in($i->{'key'}, $data->{$mfn});
107  #print STDERR "--ret-->$xml\n";                          my $val = fill_in($i->{'val'}, $data->{$mfn});
108                                  print "Path-Name: $path#".int($row->{mfn})."\n";                          if ($key && $val) {
109                                  print "Content-Length: ".(length($xml)+1)."\n";                                  push @{$data->{lookup}->{$key}}, $val;
                                 print "Document-Type: XML\n\n$xml\n";  
110                          }                          }
111                  }                  }
112          }          }
         print STDERR "\n";  
 }  
   
 # call this to commit index  
 $index->close;  
   
 1;  
 __END__  
 ##########################################################################  
   
 =head1 NAME  
   
 isis2xml.pl - read isis file and dump XML  
   
 =head1 DESCRIPTION  
113    
114  This command will read ISIS data file using OpenIsis perl module and  }
115  create XML file for usage with I<SWISH-E>  print "\n";
 indexer. Dispite it's name, this script B<isn't general xml generator>  
 from isis files (isis allready has something like that). Output of this  
 script is tailor-made for SWISH-E.  
   
 =head1 AUTHOR  
   
 Dobrica Pavlinusic <dpavlin@rot13.org>  
   
 =head1 COPYRIGHT  
   
 GNU Public License (GPL) v2 or later  
   
 =head1 SEE ALSO  
116    
117  SWISH-E web site at http://www.swish-e.org  for (my $mfn = 1; $mfn <= $maxmfn; $mfn++) {
118            my $d = $data->{$mfn};
119            print $d->{'250'}->[0]->{'a'},"\n";
120            my $t = fill_in('v553^1;;v553^a', $d);
121            print " Uži pojam: $t\n" if ($t);
122            $t = fill_in('[a:v251];;[d:[a:v251]]', $d);
123            print " Uži pojam: $t\n" if ($t);
124    }
125    
126  =cut  print Dumper($data);

Legend:
Removed from v.10  
changed lines
  Added in v.348

  ViewVC Help
Powered by ViewVC 1.1.26