/[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 259 by dpavlin, Thu Mar 11 18:23:59 2004 UTC trunk2/all2all.pl revision 562 by dpavlin, Sat Oct 30 23:56:57 2004 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  =head1 NAME
 use OpenIsis;  
 use Getopt::Std;  
 use Data::Dumper;  
 use XML::Simple;  
 use Text::Unaccent 1.02;        # 1.01 won't compile on my platform,  
 use Text::Iconv;  
 use Config::IniFiles;  
 use Encode;  
 #use GDBM_File;  
 use Fcntl;      # for O_RDWR  
 use TDB_File;  
   
 $|=1;  
   
 my $config_file = $0;  
 $config_file =~ s/\.pl$/.conf/;  
 die "FATAL: can't find configuration file '$config_file'" if (! -e $config_file);  
   
 my $config;  
   
 #use index_DBI;         # default DBI module for index  
 use index_DBI_cache;    # faster DBI module using memory cache  
 my $index;  
   
 my %opts;  
   
 # usage:  
 #       -d directory name  
 #       -m multiple directories  
 #       -q quiet  
 #       -s run swish  
   
 getopts('d:m:qs', \%opts);  
   
 my $path;       # this is name of database  
   
 Text::Iconv->raise_error(0);     # Conversion errors don't raise exceptions  
   
 # this is encoding of all files on disk, including import_xml/*.xml file and  
 # filter/*.pm files! It will be used to store strings in perl internally!  
 my $codepage = 'ISO-8859-2';  
   
 my $utf2cp = Text::Iconv->new('UTF-8',$codepage);  
 # this function will convert data from XML files to local encoding  
 sub x {  
         return $utf2cp->convert($_[0]);  
 }  
4    
5  # decode isis/excel or other import codepage  all2all.pl - basic script for all WebPAC needs
 my $import2cp;  
6    
7  # outgoing xml must be in UTF-8  =cut
 my $cp2utf = Text::Iconv->new($codepage,'UTF-8');  
8    
9  # mapping between data type and tag which specify  use strict;
10  # format in XML file  use locale;
11  my %type2tag = (  use YAML;
12          'isis' => 'isis',  use Carp;
13          'excel' => 'column',  use Getopt::Long;
14          'marc' => 'marc',  use Text::Unaccent 1.02;
15          'feed' => 'feed'  
16    use lib './lib';
17    use WebPAC;
18    use WebPAC::jsFind;
19    use WebPAC::Index;
20    use WebPAC::Tree;
21    
22    # options which can be changed via command line
23    #
24    my $code_page = 'ISO-8859-2';
25    my ($limit_mfn, $start_mfn, $debug, $low_mem);
26    my $index_path = './out/index';
27    
28    my $result = GetOptions(
29            "code_page=s"   => \$code_page,
30            "limit_mfn=i"   => \$limit_mfn,
31            "start_mfn=i"   => \$start_mfn,
32            "debug!"        => \$debug,
33            "low_mem!"      => \$low_mem,
34  );  );
35    
36  my $cache;      # for cacheing  my $filter = {
37            'CROVOC' => sub {
38                    my $tmp = shift || return;
39                    return undef unless ($tmp =~ s/\s*CROVOC.*$/ #C#/);
40                    # remove repeating stars
41                    # FIXME this should be fixed at right place, not here!
42                    $tmp =~ s/(\s*#C#)+/ #C#/g;
43                    return $tmp;
44            },
45            'CROVOC_tree' => sub {
46                    my $tmp = shift || return;
47                    $tmp =~ s/\s*CROVOC.*$/ <img src="img\/crovoc.png" border="0">/;
48                    $tmp =~ s/\s*EUROVOC.*//;
49                    return $tmp;
50            },
51            # TT filter
52            'CROVOC_img' => sub {
53                    my $tmp = shift;
54                    $tmp =~ s/\s*#C#\s*/ <img src="..\/img\/crovoc.png" border="0">/gis;
55                    $tmp =~ s/"img\/crovoc.png"/"..\/img\/crovoc.png"/gis;
56                    return $tmp;
57            }
58    };
59    
60    ## remove accented characters
61    #
62    sub unac {
63            my $string = shift || return;
64            $string = unac_string($code_page,$string);
65            $string =~ tr/ðÐ/dD/;
66            $string = unac_entities($string);
67            return $string;
68    }
69    sub unac_2 {
70            my $string = shift || return;
71            if (length($string) > 2) {
72                    my $pr = substr($string,0,2);
73                    $string = unac_string($code_page,substr($string,2));
74                    $string =~ tr/ðÐ/dD/;
75                    $string = $pr . $string;
76            }
77            $string = unac_entities($string);
78            return lc($string);
79    }
80    
81  # lookup hash (tied to file)  sub unac_entities {
82  my %lhash;          my $ent = shift || return;
 # this option will cache all lookup entries in memory.  
 # if you are tight on memory, turn this off  
 my $use_lhash_cache = 1;  
83    
84  my $last_field_name;    # cache to prevent repeated fields          $ent =~ s/&(\w)(acute|cedil|circ|grave|ring|slash|tilde|uml);/$1/gi;
85            $ent =~ s/&eth;/d/g;
86            $ent =~ s/&E[tT][hH];/D/g;
87            $ent =~ s/&(\w\w)lig;/$1/gi;
88    
89  sub data2xml {          return $ent;
90    }
91    
92          use xmlify;  # create WebPAC object
93    #
94    my $webpac = new WebPAC(
95            code_page => $code_page,
96            limit_mfn => $limit_mfn,
97            start_mfn => $start_mfn,
98            debug => $debug,
99            low_mem => $low_mem,
100            filter => $filter,
101    ) || die;
102    
103    my $log = $webpac->_get_logger() || die "can't get logger";
104    
105    $log->debug("creating WebPAC::jsFind object");
106    
107    my $index = new WebPAC::jsFind(
108            index_path => $index_path,
109            keys => 62,
110    ) || die;
111    
112          my $type = shift @_;  my $thes;
         my $row = shift @_;  
         my $add_xml = shift @_;  
         # needed to read values from configuration file  
         my $cfg = shift @_;  
         my $database = shift @_;  
113    
114          my $xml;  $|=1;
115    
116          use parse_format;  my $maxmfn = $webpac->open_isis(
117            filename => shift @ARGV || '/data/hidra/THS/THS',
118            lookup => [
119            { 'key' => 'd:v900', 'val' => 'filter{CROVOC_tree}v250^a v800' },
120    #       { 'eval' => '"v901^a" eq "Podruèje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
121    #       { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
122    #       { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
123            { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
124            { 'key' => '900_mfn:v900', 'val' => 'v000' },
125            # tree structure
126            { 'eval' => 'length("v251") == 2 && "v800" =~ m/EUROVOC/ || "v800" =~ m/CROVOC/ && "v251" =~ m/^(H|HD|L|Z|P)$/', 'key' => 'root:v251', 'val' => 'v900' },
127            { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },
128            { 'eval' => '"v561^4" && "v562^4"', 'key' => 'code:v900', 'val' => 'v561^4:v562^4' },
129            ],
130    );
131    
132          my $html = "";          # html formatted display output  $log->debug("isis file ",$webpac->{'isis_filename'}," opened");
133    
134          my %field_usage;        # counter for usage of each field  $log->info("rows: $maxmfn");
135    
136          # sort subrouting using order="" attribute  $webpac->open_import_xml(type => 'isis_hidra_ths');
         sub by_order {  
                 my $va = $config->{indexer}->{$a}->{order} ||  
                         $config->{indexer}->{$a};  
                 my $vb = $config->{indexer}->{$b}->{order} ||  
                         $config->{indexer}->{$b};  
137    
138                  return $va <=> $vb;  if(1) { # XXX
         }  
139    
140          my @sorted_tags;  while (my $rec = $webpac->fetch_rec) {
         if ($cache->{tags_by_order}) {  
                 @sorted_tags = @{$cache->{tags_by_order}};  
         } else {  
                 @sorted_tags = sort by_order keys %{$config->{indexer}};  
                 $cache->{tags_by_order} = \@sorted_tags;  
         }  
141    
142          # lookup key          my @ds = $webpac->data_structure($rec);
         my $lookup_key;  
143    
144          # cache for field in pages          if (0 && $log->is_debug) {
145          delete $cache->{display_data};                  $log->debug("rec = ",Dump($rec));
146          delete $cache->{swish_data};                  $log->debug("ds = ",Dump(\@ds));
         delete $cache->{swish_exact_data};  
         delete $cache->{index_data};  
         delete $cache->{index_delimiter};  
         my @page_fields;        # names of fields  
   
   
         # subs used to produce output  
   
         sub get_field_name($$$) {  
                 my ($config,$field,$field_usage) = @_;  
   
                 # find field name (signular, plural)  
                 my $field_name = "";  
                 if ($config->{indexer}->{$field}->{name_singular} && $field_usage == 1) {  
                         $field_name = $config->{indexer}->{$field}->{name_singular};  
                 } elsif ($config->{indexer}->{$field}->{name_plural}) {  
                         $field_name = $config->{indexer}->{$field}->{name_plural};  
                 } elsif ($config->{indexer}->{$field}->{name}) {  
                         $field_name = $config->{indexer}->{$field}->{name};  
                 } else {  
                         print STDERR "WARNING: field '$field' doesn't have 'name' attribute!";  
                 }  
                 if ($field_name) {  
                         if (! $last_field_name) {  
                                 $last_field_name = x($field_name);  
                                 return $last_field_name;  
                         } elsif ($field_name ne $last_field_name) {  
                                 $last_field_name = x($field_name);  
                                 return $last_field_name;  
                         }  
                 }  
147          }          }
148    
149            next if (! @ds);
150    
151          # begin real work: go field by field          my $filename = $webpac->{'current_filename'} || $log->logdie("no current_filename in webpac object");
         foreach my $field (@sorted_tags) {  
152    
153                  $field=x($field);          if ($filename) {
154                  $field_usage{$field}++;                  $webpac->output_file(
155                            file => $filename,
156                  my $swish_data = "";                          template => 'html.tt',
157                  my $swish_exact_data = "";                          data => \@ds,
158                  my $display_data = "";                          headline => $webpac->{'headline'},
159                  my @index_data;                  );
                 my $line_delimiter;  
   
                 my ($swish,$display);  
   
                 my $tag = $type2tag{$type} || die "can't find which tag to use for type $type";  
   
                 # is this field page-by-page?  
                 my $iterate_by_page = $config->{indexer}->{$field}->{iterate_by_page};  
                 push @page_fields,$field if ($iterate_by_page);  
                 my %page_max = ();  
                 # default line_delimiter if using  
                 my $page_line_delimiter = $config->{indexer}->{$field}->{page_line_delimiter} || '<br/>';  
                 $cache->{index_delimiter}->{$field} = $config->{indexer}->{$field}->{index_delimiter};  
   
                 my $format_name = $config->{indexer}->{$field}->{format_name};  
                 my $format_delimiter = $config->{indexer}->{$field}->{format_delimiter};  
                 if ($format_name && $format_delimiter) {  
                         $cache->{format}->{$field}->{format_name} = $format_name;  
                         $cache->{format}->{$field}->{format_delimiter} = $format_delimiter;  
                 }  
   
                 foreach my $x (@{$config->{indexer}->{$field}->{$tag}}) {  
   
                         my $format = x($x->{content});  
                         my $delimiter = x($x->{delimiter}) || ' ';  
   
                         my $repeat_off = 0;     # init repeatable offset  
   
                         # swish, swish_exact, display, index, index_lookup  
                         # swish and display defaults  
                         my ($s,$se,$d,$i,$il) = (1,0,1,0,0);  
                         $s = 0 if (lc($x->{type}) eq "display");  
                         $d = 0 if (lc($x->{type}) eq "swish");  
                         ($s,$se,$d,$i) = (0,1,0,1) if (lc($x->{type}) eq "index");  
                         ($s,$se,$d,$i) = (0,1,0,0) if (lc($x->{type}) eq "swish_exact");  
                         ($s,$se,$d,$i,$il) = (0,1,0,0,1) if (lc($x->{type}) =~ /^lookup/);  
   
                         # what will separate last line from this one?  
                         if ($display_data && $x->{append}) {  
                                 $line_delimiter = ' ';  
                         } elsif ($display_data) {  
                                 $line_delimiter = '<br/>';  
                         }  
   
                         # init vars so that we go into while...  
                         ($swish,$display) = (1,1);  
   
                         # placeholder for all repeatable entries for index  
   
                         sub chk_eval($) {  
                                 my $data = shift;  
                                 return if (! defined($data));  
                                 if ($data && $data =~ s/\s*eval{([^}]+)}\s*//) {  
                                         if (eval "$1") {  
                                                 return $data;  
                                         } else {  
                                                 return undef;  
                                         }  
                                 } else {  
                                         return $data;  
                                 }  
                         }  
   
                         sub mkformat($$) {  
                                 my $x = shift || die "mkformat needs tag reference";  
                                 my $data = shift || return;  
                                 my $format_name = x($x->{format_name}) || return chk_eval($data);  
                                 my $fmt = x($config->{format}->{$format_name}->{content}) || die "<format name=\"$format_name\"> is not defined!";  
                                 my $format_delimiter = x($x->{format_delimiter});  
                                 my @data;  
                                 if ($format_delimiter) {  
                                         @data = split(/$format_delimiter/,$data);  
                                 } else {  
                                         push @data,$data;  
                                 }  
   
                                 if ($fmt) {  
                                         my $nr = scalar $fmt =~ s/%s/%s/g;  
                                         if (($#data+1) == $nr) {  
                                                 return chk_eval(sprintf($fmt,@data));  
                                         } else {  
                                                 #print STDERR "mkformat: [$data] can't be split on [$format_delimiter] to $nr fields!\n";  
                                                 return chk_eval($data);  
                                         }  
                                 } else {  
                                         print STDERR "usage of link '$format_name' without defined format (<link> tag)\n";  
                                 }  
                         }  
   
                         # while because of repeatable fields  
                         while ($swish || $display) {  
                                 my $page = $repeat_off;  
                                 $page_max{$field} = $page if ($iterate_by_page && $page > ($page_max{$field} || 0));  
                                 ($swish,$display) = parse_format($type, $format,$row,$repeat_off++,$import2cp);  
                                 if ($repeat_off > 1000) {  
                                         print STDERR "loop (more than 1000 repeatable fields) deteced in $row, $format\n";  
                                         last;  
                                 }  
   
                                 # is this field is lookup?  
                                 if ($display && $x->{lookup}) {  
                                         my $null = "<!-- null -->";  
                                         if ($use_lhash_cache) {  
                                                 if (!defined($cache->{lhash}->{$display})) {  
                                                         my $new_display = $lhash{$display};  
                                                         if (defined($new_display)) {  
 #print STDERR "lookup cache store '$display' = '$new_display'\n";  
                                                                 $display = $new_display;  
                                                                 $cache->{lhash}->{$display} = $new_display;  
                                                         } else {  
 #                                                               print STDERR "WARNING: lookup for '$display' didn't find anything.\n";  
                                                                 $display = "";  
                                                                 $cache->{lhash}->{$display} = $null;  
                                                         }  
                                                 } else {  
                                                         $display = $cache->{lhash}->{$display};  
                                                 }  
                                         } else {  
                                                 $display = $lhash{$display} || $null;  
                                         }  
                                 }  
   
                                 # filter="name" ; filter this field through  
                                 # filter/[name].pm  
                                 my $filter = $x->{filter};  
                                 if ($filter && !$cache->{filter_loaded}->{$filter}) {  
                                         require "filter/".$filter.".pm";  
                                         $cache->{filter_loaded}->{$filter}++;  
                                 }  
                                 # type="swish" ; field for swish  
                                 if ($swish) {  
                                         my $tmp = $swish;  
                                         if ($filter && ($s || $se)) {  
                                                 no strict 'refs';  
                                                 $tmp = join(" ",&$filter($tmp)) if ($s || $se);  
                                         }  
   
                                         $tmp = chk_eval($tmp);  
                                         $swish_data .= $tmp if ($s && $tmp);  
                                         $swish_exact_data .= "xxbxx $tmp xxexx " if ($tmp && $tmp ne "" && $se);  
                                 }  
   
                                 # type="display" ; field for display  
                                 if ($d && $display) {  
                                         my $ldel = $delimiter;  
                                         if ($line_delimiter && $display_data) {  
                                                 $ldel = $line_delimiter;  
                                         }  
                                         if ($filter) {  
                                                 no strict 'refs';  
                                                 my @arr;  
                                                 foreach my $tmp (&$filter($display)) {  
                                                         my $tmp2 = mkformat($x,$tmp);  
                                                         push @arr,$tmp2 if ($tmp2);  
                                                 }  
                                                 $display_data .= $ldel if ($display_data && @arr);  
                                                 $display_data .= join($delimiter,@arr);  
                                         } else {  
                                                 $display_data .= $ldel if ($display_data);  
                                                 my $tmp = mkformat($x,$display);  
                                                 $display_data .= $tmp if ($tmp);  
                                         }  
                                 }  
                                                   
                                 # type="index" ; insert into index  
                                 my $idisplay;  
                                 if ($i && $display) {  
                                         $idisplay = $display;  
                                         if ($filter) {  
                                                 no strict 'refs';  
                                                 $idisplay = &$filter($idisplay);  
                                         }  
                                         $idisplay = chk_eval($idisplay);  
                                         push @index_data, $idisplay if ($idisplay && !$iterate_by_page);  
                                 }  
   
                                 # store fields in lookup  
                                 if ($il && $display) {  
                                         if (lc($x->{type}) eq "lookup_key") {  
                                                 if ($lookup_key) {  
                                                         print STDERR "WARNING: try to redefine lookup_key (keys shouldn't be repeatable fields!)";  
                                                 } else {  
                                                         if ($filter) {  
                                                                 no strict 'refs';  
                                                                 $lookup_key = &$filter($display);  
                                                         } else {  
                                                                 $lookup_key = $display;  
                                                         }  
                                                 }  
                                         } elsif (lc($x->{type}) eq "lookup_val") {  
                                                 if ($lookup_key) {  
                                                         if ($filter) {  
                                                                 no strict 'refs';  
                                                                 $lhash{$lookup_key} = &$filter($display);  
                                                         } else {  
                                                                 $lhash{$lookup_key} = $display;  
                                                         }  
                                                 } else {  
                                                         print STDERR "WARNING: no lookup_key defined for  '$display'?";  
                                                 }  
                                         }  
   
                                 }  
   
                                 # store data for page-by-page repeatable fields  
                                 if ($iterate_by_page) {  
                                         sub iterate_fld($$$$$$) {  
                                                 my ($cache,$what,$field,$page,$data,$append) = @_;  
                                                 return if (!$data);  
   
                                                 my $ldel = $page_line_delimiter;  
                                                 $ldel = " " if ($append);  
 #print STDERR "line delimiter: ",Dumper($ldel) if ($ldel);  
                                                 if (! $cache->{$what}->{$field}->[$page]) {  
                                                         $cache->{$what}->{$field}->[$page] = $data;  
                                                 } else {  
                                                         $cache->{$what}->{$field}->[$page] .= $ldel.$data;  
                                                 }  
                                         }  
   
                                         if ($display_data) {  
                                                 iterate_fld($cache,'display_data',$field,$page,$display_data,$x->{append});  
                                         }  
                                                 $display_data = "";  
                                         if ($swish_data) {  
                                                 iterate_fld($cache,'swish_data',$field,$page,$swish_data,$x->{append});  
                                                 $swish_data = "";  
                                         }  
                                         if ($swish_exact_data) {  
                                                 iterate_fld($cache,'swish_exact_data',$field,$page,$swish_exact_data,$x->{append});  
                                                 $swish_exact_data = "";  
                                         }  
   
                                         if ($idisplay) {  
                                                 my $ldel=$page_line_delimiter;  
                                                 my @index_data;  
                                                 if ($cache->{index_data}->{$field}->[$page]) {  
   
                                                         @index_data = @{$cache->{index_data}->{$field}->[$page]};  
                                                 }  
                                                 if ($x->{append}) {  
                                                         if (@index_data) {  
                                                                 $index_data[$#index_data] .= $idisplay;  
                                                         } else {  
                                                                 push @index_data, $idisplay;  
                                                         }  
                                                 } else {  
                                                         push @index_data, $idisplay;  
                                                 }  
                                                 $idisplay = "";  
                                                 @{$cache->{index_data}->{$field}->[$page]} = @index_data;  
                                         }  
                                 }  
                         }  
   
                         if (! $iterate_by_page) {  
                                 my $idel = $x->{index_delimiter};  
                                 # fill data in index  
                                 foreach my $tmp (@index_data) {  
                                         my $i = $d = $tmp;  
                                         if ($idel && $tmp =~ m/$idel/) {  
                                                 ($i,$d) = split(/$idel/,$tmp);  
                                         }  
                                         $index->insert($field, $i, $d, $path);  
                                 }  
                                 @index_data = ();  
                         }  
                 }  
   
                 # now try to parse variables from configuration file  
                 foreach my $x (@{$config->{indexer}->{$field}->{'config'}}) {  
   
                         my $delimiter = x($x->{delimiter}) || ' ';  
                         my $val = $cfg->val($database, x($x->{content}));  
   
                         my ($s,$d,$i) = (1,1,0);        # swish, display default  
                         $s = 0 if (lc($x->{type}) eq "display");  
                         $d = 0 if (lc($x->{type}) eq "swish");  
                         # no support for swish exact in config.  
                         # IMHO, it's useless  
                         ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");  
   
                         if ($val) {  
                                 $display_data .= $delimiter.$val if ($d);  
                                 $swish_data .= $val if ($s);  
                                 $index->insert($field, $val, $path) if ($i);  
                         }  
   
                         if ($iterate_by_page) {  
                                 # FIXME data from config tag will appear just  
                                 # on first page!!!  
                                 my $page = 0;  
                                 if ($display_data) {  
                                         $cache->{display_data}->{$field}->[$page] = $display_data;  
                                         $display_data = "";  
                                 }  
                                 if ($swish_data) {  
                                         $cache->{swish_data}->{$field}->[$page] = $swish_data;  
                                         $swish_data = "";  
                                 }  
                                 if ($swish_exact_data) {  
                                         $cache->{swish_exact_data}->{$field}->[$page] = $swish_exact_data;  
                                         $swish_exact_data = "";  
                                 }  
                         }  
                 }  
   
                 # save data page-by-page  
                 foreach my $field (@page_fields) {  
                         my $nr_pages = $page_max{$field} || next;  
 #print STDERR "field '$field' iterate over ",($nr_pages || 0)," pages...\n";  
 #print STDERR Dumper($cache->{display_data});  
                         for (my $page=0; $page <= $nr_pages; $page++) {  
                                 my $display_data;  
                                 if ($cache->{format}->{$field}) {  
                                         my $tmp = mkformat($cache->{format}->{$field},$cache->{display_data}->{$field}->[$page]);  
                                         $display_data=$tmp if ($tmp);  
                                 } else {  
                                         $display_data = $cache->{display_data}->{$field}->[$page];  
                                 }  
                                 if ($display_data) { # default  
                                         if ($field eq "headline") {  
                                                 $xml .= xmlify("headline", $display_data);  
                                         } else {  
   
                                                 # fallback to empty field name if needed  
                                                 $html .= get_field_name($config,$field,$field_usage{$field}) || '';  
                                                 $html .= "#-#".$display_data."###\n";  
                                         }  
                                 }  
                                   
                                 my $swish_data = $cache->{swish_data}->{$field}->[$page];  
                                 if ($swish_data) {  
                                         # remove extra spaces  
                                         $swish_data =~ s/ +/ /g;  
                                         $swish_data =~ s/ +$//g;  
   
                                         $xml .= xmlify($field."_swish", unac_string($codepage,$swish_data));  
                                 }  
   
                                 my $swish_exact_data = $cache->{swish_exact_data}->{$field}->[$page];  
                                 if ($swish_exact_data) {  
                                         $swish_exact_data =~ s/ +/ /g;  
                                         $swish_exact_data =~ s/ +$//g;  
   
                                         # add delimiters before and after word.  
                                         # That is required to produce exact match  
                                         $xml .= xmlify($field."_swish_exact", unac_string($codepage,$swish_exact_data));  
                                 }  
                                   
                                 my $idel = $cache->{index_delimiter}->{$field};  
                                 foreach my $tmp (@{$cache->{index_data}->{$field}->[$page]}) {  
                                         my $i = $tmp;  
                                         my $d = $tmp;  
                                         if ($idel && $tmp =~ m/$idel/) {  
                                                 ($i,$d) = split(/$idel/,$tmp);  
                                         }  
                                         $index->insert($field, $i, $d, $path);  
 #print STDERR "index [$idel] $field: $i --> $d [$path]\n";  
                                 }  
                         }  
           
                 }  
                   
                 if (! $iterate_by_page) {  
                         if ($display_data) {  
                                 if ($field eq "headline") {  
                                         $xml .= xmlify("headline", $display_data);  
                                 } else {  
   
                                         # fallback to empty field name if needed  
                                         $html .= get_field_name($config,$field,$field_usage{$field}) || '';  
                                         $html .= "#-#".$display_data."###\n";  
                                 }  
                         }  
                         if ($swish_data) {  
                                 # remove extra spaces  
                                 $swish_data =~ s/ +/ /g;  
                                 $swish_data =~ s/ +$//g;  
   
                                 $xml .= xmlify($field."_swish", unac_string($codepage,$swish_data));  
                         }  
   
                         if ($swish_exact_data) {  
                                 $swish_exact_data =~ s/ +/ /g;  
                                 $swish_exact_data =~ s/ +$//g;  
   
                                 # add delimiters before and after word.  
                                 # That is required to produce exact match  
                                 $xml .= xmlify($field."_swish_exact", unac_string($codepage,$swish_exact_data));  
                         }  
                 }  
         }  
   
         # dump formatted output in <html>  
         if ($html) {  
                 #$xml .= xmlify("html",$html);  
                 $xml .= "<html><![CDATA[ $html ]]></html>";  
         }  
           
         if ($xml) {  
                 $xml .= $add_xml if ($add_xml);  
                 return "<xml>\n$xml</xml>\n";  
160          } else {          } else {
161                  return;                  print $webpac->output(
162                            template => 'text.tt',
163                            data => \@ds,
164                            headline => $webpac->{'headline'},
165                    );
166          }          }
 }  
167    
168  ##########################################################################          my $headline = $webpac->{'headline'};
169    
170  # read configuration for this script          my $f = $filename;
171  my $cfg = new Config::IniFiles( -file => $config_file );          $f =~ s!out/!!;
172    
173  # read global.conf configuration          # save into index
174  my $cfg_global = new Config::IniFiles( -file => 'global.conf' );          foreach my $ds (@ds) {
175                    next if (! $ds->{'swish'});
176    
177  # open index                  # strip all non word characters from beginning or end
178  $index = new index_DBI(                  # of word
179                  $cfg_global->val('global', 'dbi_dbd'),                  my $words = join(" ",@{$ds->{'swish'}});
180                  $cfg_global->val('global', 'dbi_dsn'),                  $words =~ s/^\W+//;
181                  $cfg_global->val('global', 'dbi_user'),                  $words =~ s/\W*\s+\W*/ /g;
182                  $cfg_global->val('global', 'dbi_passwd') || '',                  $words =~ s/\W+$//;
         );  
   
 my $show_progress = $cfg_global->val('global', 'show_progress');  
183    
184  my $unac_filter = $cfg_global->val('global', 'unac_filter');                  # first try to generate headline for this entry from index
185  if ($unac_filter) {                  my $h = $ds->{'index'}->[0];
186          require $unac_filter;                  # then, from display
187  }                  $h ||= $ds->{'display'}->[0];
188                    # and as last resport, fallback to headline
189                    $h ||= $headline;
190    
191  foreach my $database ($cfg->Sections) {                  $index->insert(
192                            index_name => $ds->{'tag'},
193          my $type = lc($cfg -> val($database, 'type')) || die "$database doesn't have 'type' defined";                          #path => $f,
194          my $add_xml = $cfg -> val($database, 'xml');    # optional                          path => $webpac->mfn,
195                            headline => $h,
196          # create new lookup file                          words => unac($words),
197          my $lookup_file = $cfg -> val($database, 'lookup_newfile'); # optional                  );
         if ($lookup_file) {  
                 #tie %lhash, 'GDBM_File', $lookup_file, &GDBM_NEWDB, 0644;  
                 tie %lhash, 'TDB_File', $lookup_file, TDB_CLEAR_IF_FIRST, O_RDWR, 0644;  
                 print STDERR "creating lookup file '$lookup_file'\n";  
                 # delete memory cache for lookup file  
                 delete $cache->{lhash};  
         }  
   
         # open existing lookup file  
         $lookup_file = $cfg -> val($database, 'lookup_open'); # optional  
         if ($lookup_file) {  
                 #tie %lhash, 'GDBM_File', $lookup_file, &GDBM_READER, 0644;  
                 tie %lhash, 'TDB_File', $lookup_file, TDB_DEFAULT, O_RDWR, 0644;  
                 print STDERR "opening lookup file '$lookup_file'\n";  
198          }          }
199    
200  print STDERR "reading ./import_xml/$type.xml\n";          # save into sorted index (thesaurus)
201            foreach my $ds (@ds) {
202                    next if (! $ds->{'index'});
203    
204          # extract just type basic                  $thes->{$ds->{'tag'}} ||= new WebPAC::Index( name => $ds->{'tag'} );
         my $type_base = $type;  
         $type_base =~ s/_.+$//g;  
   
         $config=XMLin("./import_xml/$type.xml", forcearray => [ $type2tag{$type_base}, 'config', 'format' ], forcecontent => 1);  
   
         # output current progress indicator  
         my $last_p = 0;  
         sub progress {  
                 return if (! $show_progress);  
                 my $current = shift;  
                 my $total = shift || 1;  
                 my $p = int($current * 100 / $total);  
                 if ($p != $last_p) {  
                         printf STDERR ("%5d / %5d [%-51s] %-2d %% \r",$current,$total,"=" x ($p/2).">", $p );  
                         $last_p = $p;  
                 }  
         }  
205    
206          my $fake_dir = 1;                  foreach my $h (@{$ds->{'index'}}) {
207          sub fakeprogress {                          $thes->{$ds->{'tag'}}->insert(
208                  return if (! $show_progress);                                  sort_by => unac_2($h),
209                  my $current = shift @_;                                  mfn => $webpac->mfn,
210                                    headline => $h,
211                  my @ind = ('-','\\','|','/','-','\\','|','/', '-');                          );
   
                 $last_p += $fake_dir;  
                 $fake_dir = -$fake_dir if ($last_p > 1000 || $last_p < 0);  
                 if ($last_p % 10 == 0) {  
                         printf STDERR ("%5d / %5s [%-51s]\r",$current,"?"," " x ($last_p/20).$ind[($last_p/20) % $#ind]);  
212                  }                  }
213          }          }
214    
215          # now read database  #       print Dump(\@ds);
 print STDERR "using: $type...\n";  
216    
217          # erase cache for tags by order in this database  }
         delete $cache->{tags_by_order};  
   
         if ($type_base eq "isis") {  
   
                 my $isis_db = $cfg -> val($database, 'isis_db') || die "$database doesn't have 'isis_db' defined!";  
   
                 $import2cp = Text::Iconv->new($config->{isis_codepage},$codepage);  
                 my $db = OpenIsis::open( $isis_db );  
   
                 # check if .txt database for OpenIsis is zero length,  
                 # if so, erase it and re-open database  
                 sub check_txt_db {  
                         my $isis_db = shift || die "need isis database name";  
                         my $reopen = 0;  
   
                         if (-e $isis_db.".TXT") {  
                                 print STDERR "WARNING: removing $isis_db.TXT OpenIsis database...\n";  
                                 unlink $isis_db.".TXT" || warn "FATAL: unlink error on '$isis_db.TXT': $!";  
                                 $reopen++;  
                         }  
                         if (-e $isis_db.".PTR") {  
                                 print STDERR "WARNING: removing $isis_db.PTR OpenIsis database...\n";  
                                 unlink $isis_db.".PTR" || warn "FATAL: unlink error on '$isis_db.PTR': $!";  
                                 $reopen++;  
                         }  
                         return OpenIsis::open( $isis_db ) if ($reopen);  
                 }  
   
                 # EOF error  
                 if ($db == -1) {  
                         $db = check_txt_db($isis_db);  
                         if ($db == -1) {  
                                 print STDERR "FATAL: OpenIsis can't open zero size file $isis_db\n";  
                                 next;  
                         }  
                 }  
   
                 # OpenIsis::ERR_BADF  
                 if ($db == -4) {  
                         print STDERR "FATAL: OpenIsis can't find file $isis_db\n";  
                         next;  
                 # OpenIsis::ERR_IO  
                 } elsif ($db == -5) {  
                         print STDERR "FATAL: OpenIsis can't access file $isis_db\n";  
                         next;  
                 } elsif ($db < 0) {  
                         print STDERR "FATAL: OpenIsis unknown error $db with file $isis_db\n";  
                         next;  
                 }  
   
                 my $max_rowid = OpenIsis::maxRowid( $db );  
   
                 # if 0 records, try to rease isis .txt database  
                 if ($max_rowid == 0) {  
                         # force removal of database  
                         $db = check_txt_db($isis_db);  
                         $max_rowid = OpenIsis::maxRowid( $db );  
                 }  
   
                 print STDERR "Reading database: $isis_db [$max_rowid rows]\n";  
   
                 my $path = $database;  
   
                 for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {  
                         my $row = OpenIsis::read( $db, $row_id );  
                         if ($row && $row->{mfn}) {  
           
                                 progress($row->{mfn}, $max_rowid);  
   
                                 my $swishpath = $path."#".int($row->{mfn});  
   
                                 if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {  
                                         $xml = $cp2utf->convert($xml);  
                                         use bytes;      # as opposed to chars  
                                         print "Path-Name: $swishpath\n";  
                                         print "Content-Length: ".(length($xml)+1)."\n";  
                                         print "Document-Type: XML\n\n$xml\n";  
                                 }  
                         }  
                 }  
                 # for this to work with current version of OpenIsis (0.9.0)  
                 # you might need my patch from  
                 # http://www.rot13.org/~dpavlin/projects/openisis-0.9.0-perl_close.diff  
                 OpenIsis::close($db);  
                 print STDERR "\n";  
   
         } elsif ($type_base eq "excel") {  
                 require Spreadsheet::ParseExcel;  
                 require Spreadsheet::ParseExcel::Utility;  
                 import Spreadsheet::ParseExcel::Utility qw(int2col);  
                   
                 $import2cp = Text::Iconv->new($config->{excel_codepage},$codepage);  
                 my $excel_file = $cfg -> val($database, 'excel_file') || die "$database doesn't have 'excel_file' defined!";  
   
                 my $sheet = x($config->{sheet}) || die "no sheet in $type.xml";  
                 my $start_row = x($config->{start_row}) - 1 || die "no start_row in $type.xml";  
   
                 my $oBook = Spreadsheet::ParseExcel::Workbook->Parse($excel_file) || die "can't open Excel file '$excel_file'";  
   
                 my $sheet_nr = 0;  
                 foreach my $oWks (@{$oBook->{Worksheet}}) {  
                         #print STDERR "-- SHEET $sheet_nr:", $oWks->{Name}, "\n";  
                         last if ($oWks->{Name} eq $sheet);  
                         $sheet_nr++;  
                 }  
   
                 my $oWorksheet = $oBook->{Worksheet}[$sheet_nr];  
           
                 print STDERR "using sheet: ",$oWorksheet->{Name},"\n";  
                 defined ($oWorksheet) || die "can't find sheet '$sheet' in $excel_file";  
                 my $end_row = x($config->{end_row}) || $oWorksheet->{MaxRow};  
   
                 for(my $iR = $start_row ; defined $end_row && $iR <= $end_row ; $iR++) {  
                         my $row;  
                         for(my $iC = $oWorksheet->{MinCol} ; defined $oWorksheet->{MaxCol} && $iC <= $oWorksheet->{MaxCol} ; $iC++) {  
                                 my $cell = $oWorksheet->{Cells}[$iR][$iC];  
                                 if ($cell) {  
                                         $row->{int2col($iC)} = $cell->Value;  
                                 }  
                         }  
   
                         progress($iR, $end_row);  
   
 #                       print "row[$iR/$end_row] ";  
 #                       foreach (keys %{$row}) {  
 #                               print "$_: ",$row->{$_},"\t";  
 #                       }  
 #                       print "\n";  
   
                         my $swishpath = $database."#".$iR;  
   
                         next if (! $row);  
   
                         if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {  
                                 $xml = $cp2utf->convert($xml);  
                                 use bytes;      # as opposed to chars  
                                 print "Path-Name: $swishpath\n";  
                                 print "Content-Length: ".(length($xml)+1)."\n";  
                                 print "Document-Type: XML\n\n$xml\n";  
                         }  
                 }  
         } elsif ($type_base eq "marc") {  
   
                 require MARC;  
                   
                 $import2cp = Text::Iconv->new($config->{marc_codepage},$codepage);  
                 my $marc_file = $cfg -> val($database, 'marc_file') || die "$database doesn't have 'marc_file' defined!";  
   
                 # optional argument is format  
                 my $format = x($config->{marc_format}) || 'usmarc';  
   
                 print STDERR "Reading MARC file '$marc_file'\n";  
   
                 my $marc = new MARC;  
                 my $nr = $marc->openmarc({  
                                 file=>$marc_file, format=>$format  
                         }) || die "Can't open MARC file '$marc_file' with format '$format'";  
   
                 # read MARC file in memory  
                 $marc->nextmarc(-1);  
   
                 my $max_rec = $marc->marc_count();  
   
                 for(my $i=1; $i<=$max_rec; $i++) {  
   
                         progress($i,$max_rec);  
   
                         # store value for marc_sf.pm  
                         $main::cache->{marc_record} = $i;  
   
                         my $swishpath = $database."#".$i;  
   
                         if (my $xml = data2xml($type_base,$marc,$add_xml,$cfg,$database)) {  
                                 $xml = $cp2utf->convert($xml);  
                                 use bytes;      # as opposed to chars  
                                 print "Path-Name: $swishpath\n";  
                                 print "Content-Length: ".(length($xml)+1)."\n";  
                                 print "Document-Type: XML\n\n$xml\n";  
                         }  
                 }  
   
                 print STDERR "\n";  
   
         } elsif ($type_base eq "feed") {  
   
                 $import2cp = Text::Iconv->new($config->{feed_codepage},$codepage);  
                 my $prog = x($config->{prog}) || die "$database doesn't have 'prog' defined!";  
   
                 print STDERR "Reading feed from program '$prog'\n";  
   
                 open(FEED,"feeds/$prog |") || die "can't start $prog: $!";  
   
                 my $i=1;        # record nr.  
   
                 my $data;  
                 my $line=1;  
   
                 while (<FEED>) {  
                         chomp;  
   
                         if (/^$/) {  
                                 my $swishpath = $database."#".$i++;  
   
                                 if (my $xml = data2xml($type_base,$data,$add_xml,$cfg,$database)) {  
                                         $xml = $cp2utf->convert($xml);  
                                         use bytes;      # as opposed to chars  
                                         print "Path-Name: $swishpath\n";  
                                         print "Content-Length: ".(length($xml)+1)."\n";  
                                         print "Document-Type: XML\n\n$xml\n";  
                                 }  
                                 $line = 1;  
                                 $data = {};  
                                 next;  
                         }  
218    
219                          $line = $1 if (s/^(\d+):\s*//);  foreach my $t (keys %{$thes}) {
                         $data->{$line++} = $_;  
220    
221                          fakeprogress($i);          my @e = $thes->{$t}->elements;
222            if (! @e) {
223                    $log->logwarn("no elements in sorted index $t?");
224                    next;
225            }
226    
227            my $file = "./out/bfilter/$t.txt";
228            $log->info("saving sorted index $t to '$file' [".scalar(@e)." elements]");
229    
230            $webpac->output_file(
231                    file => $file,
232                    template => 'index.tt',
233                    data => \@e,
234                    index_name => $t,
235            );
236    }
237    
238                  }  if (0 && $log->is_debug) {
239                  # close lookup          $log->debug("lookup hash: ",Dump($webpac->{'lookup'}));
240                  untie %lhash if (%lhash);          $log->debug("data hash: ",Dump($webpac->{'data'}));
241            foreach my $t (keys %{$thes}) {
242                    $log->debug("thesaurus $t hash: ",Dump($thes->{$t}));
243          }          }
244  }  }
245    
246  # call this to commit index  } # XXX if(0)
 $index->close;  
   
 1;  
 __END__  
 ##########################################################################  
   
 =head1 NAME  
   
 all2xml.pl - read various file formats and dump XML for SWISH-E  
   
 =head1 DESCRIPTION  
247    
248  This command will read ISIS data file using OpenIsis perl module, MARC  #$log->debug("lookup hash: ",Dump($webpac->{'lookup'}));
 records using MARC module and optionally Micro$oft Excel files to  
 create one XML file for usage with I<SWISH-E> 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.  
249    
250  =head1 BUGS  $log->info("creating tree");
251    
252  Documentation is really lacking. However, in true Open Source spirit, source  #
253  is best documentation. I even made considerable effort to comment parts  # define tree structure
254  which are not intuitively clear, so...  #
255    
256    my $l = $webpac->{'lookup'} || $log->logconfess("can't find lookup");
257    
258    my @tree = ({
259            # level 0
260            code_arr        => sub { sort keys %{$l} },
261            filter_code     => sub {
262                                            my $t = shift;
263                                            return $t if ($t =~ s/root://);
264                                    },
265            lookup_v900     => sub { shift @{$l->{"root:".$_[0]}} },
266            lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },
267            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
268            have_children   => sub { return $l->{"a:".$_[0]."::"} },
269            have_children_at_level => sub {
270                                    return unless (defined($l->{"code:".$_[1]}));
271                                    my $code = shift @{$l->{"code:".$_[1]}};
272                                    print STDERR "## $_[1] -> $code\n";
273                                    return undef unless($code);
274                                    return(9, $l->{"a:$code:"} ) if (defined($l->{"a:$code:"}));
275                            },
276            style           => 'display: none',
277            },{
278            # 1
279            code_arr        => sub { @{$_[0]} },
280            filter_code     => sub { shift },       # nop
281            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
282            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
283            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
284            have_children   => sub { return $l->{"a:".$_[1].":"} },
285            style           => 'display: none',
286            },{
287            # 2
288            code_arr        => sub { @{$_[0]} },
289            filter_code     => sub { shift },
290            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
291            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
292            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
293            have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
294            #style          => 'display: none',
295            },{
296            # 3 u¾i pojam
297            code_arr        => sub { @{$_[0]} },
298            filter_code     => sub { shift },
299            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
300            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
301            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
302            have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
303            },{
304            # 4
305            code_arr        => sub { @{$_[0]} },
306            filter_code     => sub { shift },
307            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
308            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
309            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
310            have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
311            },{
312            # 5
313            code_arr        => sub { @{$_[0]} },
314            filter_code     => sub { shift },
315            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
316            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
317            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
318            have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
319            },{
320            # 6
321            code_arr        => sub { @{$_[0]} },
322            filter_code     => sub { shift },
323            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
324            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
325            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
326            have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
327            },{
328            # 7
329            code_arr        => sub { @{$_[0]} },
330            filter_code     => sub { shift },
331            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
332            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
333            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
334            have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
335            },{
336            # 8
337            code_arr        => sub { @{$_[0]} },
338            filter_code     => sub { shift },
339            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
340            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
341            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
342    #       have_children   => sub { return $l->{"a:".$_[1].":".$_[0]} },
343            have_children   => sub { 0 },
344            },{
345            # 9 - level which is never reached except explicitly
346            code_arr        => sub { @{$_[0]} },
347            filter_code     => sub { shift },
348            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
349            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
350            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
351            have_children   => sub { 0 },
352            have_children_at_level => sub { defined($l->{"a:".$_[1].":".$_[0]}) && return (9,$l->{"a:".$_[1].":".$_[0]}) },
353            },{
354    });
355    
356  =head1 AUTHOR  my $tree = new WebPAC::Tree(
357            tree => \@tree,
358  Dobrica Pavlinusic <dpavlin@rot13.org>  );
359    
360  =head1 COPYRIGHT  $tree->output(
361            dir => './out',
362            html => 'browse.html',
363            template => './output_template/tree.tt',
364            js => 'tree-ids.js',
365    );
366    
367  GNU Public License (GPL) v2 or later  $tree->output(
368            dir => './eurovoc',
369            html => 'hijerarhija.html',
370            template => './output_template/hijerarhija.tt',
371            js => 'tree-ids.js',
372    );
373    
 =head1 SEE ALSO  
374    
375  SWISH-E web site at http://www.swish-e.org  $log->info("closing index");
376    $index->close;
377    
378  =cut  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));

Legend:
Removed from v.259  
changed lines
  Added in v.562

  ViewVC Help
Powered by ViewVC 1.1.26