/[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 138 by dpavlin, Wed Oct 29 23:10:51 2003 UTC trunk2/all2all.pl revision 427 by dpavlin, Sun Sep 12 01:34:32 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;  
   
 $|=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);  
4    
5  my $path;       # this is name of database  all2all.pl - basic script for all WebPAC needs
6    
7  Text::Iconv->raise_error(0);     # Conversion errors don't raise exceptions  =cut
8    
9  # this is encoding of all files on disk, including import_xml/*.xml file and  use strict;
10  # filter/*.pm files! It will be used to store strings in perl internally!  use Data::Dumper;
11  my $codepage = 'ISO-8859-2';  use Carp;
12    
13  my $utf2cp = Text::Iconv->new('UTF-8',$codepage);  use lib './lib';
14  # this function will convert data from XML files to local encoding  use WebPAC;
15  sub x {  use WebPAC::jsFind;
16          return $utf2cp->convert($_[0]);  use WebPAC::Index;
17  }  
18    my $webpac = new WebPAC(
19            code_page => 'ISO-8859-2',
20            limit_mfn => 500,
21    #       debug => 1,
22    #       low_mem => 1,
23    ) || die;
24    
25    my $log = $webpac->_get_logger() || die "can't get logger";
26    
27    $log->debug("creating WebPAC::jsFind object");
28    
29    my $index = new WebPAC::jsFind(
30            index_path => './out/index',
31            keys => 10,
32    ) || die;
33    
34  # decode isis/excel or other import codepage  my $thes;
 my $import2cp;  
35    
36  # outgoing xml must be in UTF-8  $|=1;
 my $cp2utf = Text::Iconv->new($codepage,'UTF-8');  
37    
38  # mapping between data type and tag which specify  my $maxmfn = $webpac->open_isis(
39  # format in XML file          filename => shift @ARGV || '/data/hidra/THS/THS',
40  my %type2tag = (          lookup => [
41          'isis' => 'isis',          { 'key' => 'd:v900', 'val' => 'v250^a' },
42          'excel' => 'column',  #       { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
43          'marc' => 'marc',  #       { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
44          'feed' => 'feed'  #       { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
45            { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
46            { 'key' => '900_mfn:v900', 'val' => 'v000' },
47            # tree structure
48            { 'eval' => 'length("v251") == 2', 'key' => 'root:v251', 'val' => 'v900' },
49            { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },
50            ],
51  );  );
52    
53  sub data2xml {  $log->debug("isis file ",$webpac->{'isis_filename'}," opened");
54    
55          use xmlify;  $log->info("rows: $maxmfn");
56    
57          my $type = shift @_;  $webpac->open_import_xml(type => 'isis_hidra_ths');
         my $row = shift @_;  
         my $add_xml = shift @_;  
         # needed to read values from configuration file  
         my $cfg = shift @_;  
         my $database = shift @_;  
58    
59          my $xml;  if(1) { # XXX
60    
61          use parse_format;  while (my $rec = $webpac->fetch_rec) {
62    
63          my $html = "";          # html formatted display output          my @ds = $webpac->data_structure($rec);
64    
65          my %field_usage;        # counter for usage of each field          if (0 && $log->is_debug) {
66                    $log->debug("rec = ",Dumper($rec));
67          # sort subrouting using order="" attribute                  $log->debug("ds = ",Dumper(\@ds));
         sub by_order {  
                 my $va = $config->{indexer}->{$a}->{order} ||  
                         $config->{indexer}->{$a};  
                 my $vb = $config->{indexer}->{$b}->{order} ||  
                         $config->{indexer}->{$b};  
   
                 return $va <=> $vb;  
68          }          }
69    
70          foreach my $field (sort by_order keys %{$config->{indexer}}) {          next if (! @ds);
   
                 $field=x($field);  
                 $field_usage{$field}++;  
   
                 my $swish_data = "";  
                 my $display_data = "";  
                 my $line_delimiter;  
   
                 my ($swish,$display);  
   
                 my $tag = $type2tag{$type} || die "can't find which tag to use for type $type";  
                 foreach my $x (@{$config->{indexer}->{$field}->{$tag}}) {  
   
                         my $format = x($x->{content});  
                         my $delimiter = x($x->{delimiter}) || ' ';  
   
                         my $repeat_off = 0;             # repeatable offset  
71    
72                          my ($s,$d,$i) = (1,1,0);        # swish, display default          my $filename = $webpac->{'current_filename'} || $log->logdie("no current_filename in webpac object");
                         $s = 0 if (lc($x->{type}) eq "display");  
                         $d = 0 if (lc($x->{type}) eq "swish");  
                         ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");  
73    
74                          # what will separate last line from this one?          if ($filename) {
75                          if ($display_data && $x->{append} && $x->{append} eq "1") {                  $webpac->output_file(
76                                  $line_delimiter = ' ';                          file => $filename,
77                          } elsif ($display_data) {                          template => 'html.tt',
78                                  $line_delimiter = '<br/>';                          data => \@ds,
79                          }                          headline => $webpac->{'headline'},
80                    );
                         # init vars so that we go into while...  
                         ($swish,$display) = (1,1);  
   
                         # placeholder for all repeatable entries for index  
                         my @index_data;  
                         my $index_filter;  
   
                         # while because of repeatable fields  
                         while ($swish || $display) {  
                                 ($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;  
                                 }  
                                   
                                 # filter="name" ; filter this field through  
                                 # filter/[name].pm  
                                 my $filter = $x->{filter};  
                                 if ($filter) {  
                                         require "filter/".$filter.".pm";  
                                 }  
                                 # type="swish" ; field for swish  
                                 if ($s && $swish) {  
                                         if ($filter) {  
                                                 no strict 'refs';  
                                                 $swish_data .= join(" ",&$filter($swish));  
                                         } else {  
                                                 $swish_data .= $swish;  
                                         }  
                                 }  
   
                                 # type="display" ; field for display  
                                 if ($d && $display) {  
                                         if ($line_delimiter && $display_data) {  
                                                 $display_data .= $line_delimiter;  
                                                 undef $line_delimiter;  
                                         }  
                                         if ($filter) {  
                                                 no strict 'refs';  
                                                 if ($display_data) {  
                                                         $display_data .= $delimiter.&$filter($display);  
                                                 } else {  
                                                         $display_data = &$filter($display);  
                                                 }  
                                         } else {  
                                                 if ($display_data) {  
                                                         $display_data .= $delimiter.$display;  
                                                 } else {  
                                                         $display_data = $display;  
                                                 }  
                                         }  
                                 }  
                                                   
                                 # type="index" ; insert into index  
                                 if ($i && $display) {  
                                         push @index_data, $display;  
                                         $index_filter = $filter if ($filter);  
                                 }  
                         }  
   
                         # fill data in index  
                         if (@index_data) {  
                                 if ($index_filter) {  
                                         no strict 'refs';  
                                         foreach my $d (@index_data) {  
                                                 $index->insert($field, &$index_filter($d), $path);  
                                         }  
                                 } else {  
                                         foreach my $d (@index_data) {  
                                                 $index->insert($field, $d, $path);  
                                         }  
                                 }  
                         }  
                 }  
   
                 # 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");  
                         ($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 ($display_data) {  
   
                         if ($field eq "headline") {  
                                 $xml .= xmlify("headline", $display_data);  
                         } else {  
   
                                 # find field name (signular, plural)  
                                 my $field_name = "";  
                                 if ($config->{indexer}->{$field}->{name_singular} && $field_usage{$field} == 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) {  
                                         $html .= x($field_name);  
                                 }  
                                 $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));  
                 }  
   
   
         }  
   
         # 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";  
81          } else {          } else {
82                  return;                  print $webpac->output(
83                            template => 'text.tt',
84                            data => \@ds,
85                            headline => $webpac->{'headline'},
86                    );
87          }          }
 }  
   
 ##########################################################################  
88    
89  # read configuration for this script          my $headline = $webpac->{'headline'};
 my $cfg = new Config::IniFiles( -file => $config_file );  
90    
91  # read global.conf configuration          my $f = $filename;
92  my $cfg_global = new Config::IniFiles( -file => 'global.conf' );          $f =~ s!out/!!;
93    
94  # open index          # save into index
95  $index = new index_DBI(          foreach my $ds (@ds) {
96                  $cfg_global->val('global', 'dbi_dbd'),                  next if (! $ds->{'swish'});
97                  $cfg_global->val('global', 'dbi_dsn'),  
98                  $cfg_global->val('global', 'dbi_user'),                  $index->insert(
99                  $cfg_global->val('global', 'dbi_passwd') || '',                          index_name => $ds->{'tag'},
100          );                          path => $f,
101                            headline => $headline,
102  my $show_progress = $cfg_global->val('global', 'show_progress');                          words => join(" ",@{$ds->{'swish'}})
103                    );
 foreach my $database ($cfg->Sections) {  
   
         my $type = lc($cfg -> val($database, 'type')) || die "$database doesn't have 'type' defined";  
         my $add_xml = $cfg -> val($database, 'xml');    # optional  
   
 print STDERR "reading ./import_xml/$type.xml\n";  
   
         # extract just type basic  
         my $type_base = $type;  
         $type_base =~ s/_.+$//g;  
   
         $config=XMLin("./import_xml/$type.xml", forcearray => [ $type2tag{$type_base}, 'config' ], 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;  
                 }  
104          }          }
105    
106          my $fake_dir = 1;          # save into sorted index (thesaurus)
107          sub fakeprogress {          foreach my $ds (@ds) {
108                  return if (! $show_progress);                  next if (! $ds->{'index'});
109                  my $current = shift @_;  
110                    $thes->{$ds->{'tag'}} ||= new WebPAC::Index;
111                  my @ind = ('-','\\','|','/','-','\\','|','/', '-');  
112                    foreach my $h (@{$ds->{'index'}}) {
113                  $last_p += $fake_dir;                          $thes->{$ds->{'tag'}}->insert(
114                  $fake_dir = -$fake_dir if ($last_p > 1000 || $last_p < 0);                                  path => $f,
115                  if ($last_p % 10 == 0) {                                  headline => $h,
116                          printf STDERR ("%5d / %5s [%-51s]\r",$current,"?"," " x ($last_p/20).$ind[($last_p/20) % $#ind]);                          );
117                  }                  }
118          }          }
119    
120          # now read database  #       print Dumper(\@ds);
 print STDERR "using: $type...\n";  
121    
122          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 );  
123    
124                  # if 0 records, try to rease isis .txt database  foreach my $t (keys %{$thes}) {
                 if ($max_rowid == 0) {  
                         # force removal of database  
                         $db = check_txt_db($isis_db);  
                         $max_rowid = OpenIsis::maxRowid( $db );  
                 }  
125    
126                  print STDERR "Reading database: $isis_db [$max_rowid rows]\n";          my @e = $thes->{$t}->elements;
127            if (! @e) {
128                    $log->logwarn("no elements in sorted index $t?");
129                    next;
130            }
131    
132                  my $path = $database;          my $file = "./out/bfilter/$t.txt";
133            $log->info("saving sorted index $t to '$file' [".scalar(@e)." elements]");
134    
135                  for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {          $webpac->output_file(
136                          my $row = OpenIsis::read( $db, $row_id );                  file => $file,
137                          if ($row && $row->{mfn}) {                  template => 'index.tt',
138                            data => \@e,
139                                  progress($row->{mfn}, $max_rowid);                  index_name => $t,
140            );
141    }
142    
143                                  my $swishpath = $path."#".int($row->{mfn});  if (0 && $log->is_debug) {
144            $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
145            $log->debug("data hash: ",Dumper($webpac->{'data'}));
146            foreach my $t (keys %{$thes}) {
147                    $log->debug("thesaurus $t hash: ",Dumper($thes->{$t}));
148            }
149    }
150    
151                                  if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {  } # XXX if(0)
                                         $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") {  
                 use Spreadsheet::ParseExcel;  
                 use 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!";  
152    
153                  my $sheet = x($config->{sheet}) || die "no sheet in $type.xml";  $log->info("lookup hash: ",Dumper($webpac->{'lookup'}));
                 my $start_row = x($config->{start_row}) - 1 || die "no start_row in $type.xml";  
154    
155                  my $oBook = Spreadsheet::ParseExcel::Workbook->Parse($excel_file) || die "can't open Excel file '$excel_file'";  #
156    # tree dump implementation which shouldn't be here :-)
157    #
158    
159    my $file = 'out/browse.html';
160    open(HTML, "> $file") || $log->logdie("can't open '$file'");
161    
162    print HTML qq{
163    <html>
164    <head>
165     <title>Browse</title>
166     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>
167     <script type="text/javascript" src="bfilter/hide.js"></script>
168    </head>
169    <body>
170    <ul>
171    };
172    
173    my $l = $webpac->{'lookup'} || $log->logconfess("can't find lookup");
174    
175    my @tree = ({
176            # level 0
177            code_arr        => sub { sort keys %{$l} },
178            filter_code     => sub {
179                                            my $t = shift;
180                                            return $t if ($t =~ s/root://);
181                                    },
182            lookup_v900     => sub { shift @{$l->{"root:".$_[0]}} },
183            lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },
184            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
185            have_children   => sub { defined($l->{"a:".$_[0]."::"}) },
186            child_code      => sub { return $_[0] },
187            style           => 'display: none',
188            },{
189            # 1
190            code_arr        => sub { @{$l->{"a:".$_[0]."::"}} },
191            filter_code     => sub { shift },       # nop
192            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
193            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
194            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
195            have_children   => sub { defined($l->{"a:".$_[1].":"}) },
196            child_code      => sub { return $_[1] },
197            style           => 'display: none',
198            },{
199            # 2
200            code_arr        => sub { @{$l->{"a:".$_[0].":"}} },
201            filter_code     => sub { shift },
202            lookup_v900     => sub { shift },
203            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
204            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
205            have_children   => sub { defined($l->{"a:".$_[2].":".$_[1]}) },
206            child_code      => sub { return "a:".$_[2].":".$_[1] },
207            style           => 'display: none',
208            },{
209            # 3 uľi pojam
210            code_arr        => sub { @{$l->{$_[0]}} },
211            filter_code     => sub { shift },
212            lookup_v900     => sub {
213                                    my ($c,$p) = @_;
214                                    $p =~ s/^a:(..:....):.*$/$1/;
215                                    return "a:".$p.":".$c;
216                            },
217            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
218            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
219            have_children   => sub { defined($l->{$_[1]}) },
220            child_code      => sub { return $_[1] },
221            },{
222            # 4
223            code_arr        => sub { @{$l->{$_[0]}} },
224            filter_code     => sub { shift },
225            lookup_v900     => sub {
226                                    my ($c,$p) = @_;
227                                    $p =~ s/^a:(..:....):.*$/$1/;
228                                    return "a:".$p.":".$c;
229                            },
230            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
231            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
232            have_children   => sub { defined($l->{$_[1]}) },
233            child_code      => sub { return $_[1] },
234            },{
235            # 5
236            code_arr        => sub { @{$l->{$_[0]}} },
237            filter_code     => sub { shift },
238            lookup_v900     => sub {
239                                    my ($c,$p) = @_;
240                                    $p =~ s/^a:(..:....):.*$/$1/;
241                                    return "a:".$p.":".$c;
242                            },
243            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
244            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
245            have_children   => sub { defined($l->{$_[1]}) },
246            child_code      => sub { return $_[1] },
247            },{
248            # 6
249            code_arr        => sub { @{$l->{$_[0]}} },
250            filter_code     => sub { shift },
251            lookup_v900     => sub {
252                                    my ($c,$p) = @_;
253                                    $p =~ s/^a:(..:....):.*$/$1/;
254                                    return "a:".$p.":".$c;
255                            },
256            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
257            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
258            have_children   => sub { defined($l->{$_[1]}) },
259            child_code      => sub { return $_[1] },
260            },{
261            # 7
262            code_arr        => sub { @{$l->{$_[0]}} },
263            filter_code     => sub { shift },
264            lookup_v900     => sub {
265                                    my ($c,$p) = @_;
266                                    $p =~ s/^a:(..:....):.*$/$1/;
267                                    return "a:".$p.":".$c;
268                            },
269            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
270            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
271            have_children   => sub { defined($l->{$_[1]}) },
272            child_code      => sub { return $_[1] },
273            },{
274            # 8
275            code_arr        => sub { @{$l->{$_[0]}} },
276            filter_code     => sub { shift },
277            lookup_v900     => sub {
278                                    my ($c,$p) = @_;
279                                    $p =~ s/^a:(..:....):.*$/$1/;
280                                    return "a:".$p.":".$c;
281                            },
282            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
283            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
284    #       have_children   => sub { defined($l->{$_[1]}) },
285    #       child_code      => sub { return $_[1] },
286            have_children   => sub { 0 },
287            child_code      => sub { 0 },
288    });
289    
290    unroll(0,'');
291    
292    $log->debug("test filter: ",$tree[0]->{'filter_code'}->("root:99"));
293    
294    sub unroll {
295            my ($level,$start_code) = @_;
296    
297            $log->logconfess("need level") unless (defined($level));
298    
299                  my $sheet_nr = 0;          # all levels passed?
300                  foreach my $oWks (@{$oBook->{Worksheet}}) {          return if (! defined($tree[$level]));
                         #print STDERR "-- SHEET $sheet_nr:", $oWks->{Name}, "\n";  
                         last if ($oWks->{Name} eq $sheet);  
                         $sheet_nr++;  
                 }  
301    
302                  my $oWorksheet = $oBook->{Worksheet}[$sheet_nr];          $log->debug("unroll level $level, start code $start_code");
           
                 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;  
                                 }  
                         }  
303    
304                          progress($iR, $end_row);          foreach my $code ($tree[$level]->{'code_arr'}->($start_code)) {
305    
306  #                       print "row[$iR/$end_row] ";                  if ($code = $tree[$level]->{'filter_code'}->($code)) {
 #                       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") {  
   
                 use MARC;  
307                                    
308                  $import2cp = Text::Iconv->new($config->{marc_codepage},$codepage);                          $log->debug("# $level filter passed code $code");
                 my $marc_file = $cfg -> val($database, 'marc_file') || die "$database doesn't have 'marc_file' defined!";  
   
                 # optional argument is format  
                 my $format = x($config->{format}) || 'usmarc';  
   
                 print STDERR "Reading MARC file '$marc_file'\n";  
309    
310                  my $marc = new MARC;                          my $v900 = $tree[$level]->{'lookup_v900'}->($code,$start_code) || $log->warn("can't lookup_v900($code,$start_code)");
311                  my $nr = $marc->openmarc({                          $log->debug("# $level lookup_v900($code,$start_code) = $v900");
                                 file=>$marc_file, format=>$format  
                         }) || die "Can't open MARC file '$marc_file'";  
312    
313                  my $i=0;        # record nr.                          my $term = $tree[$level]->{'lookup_term'}->($code,$v900) || $log->warn("can't lookup_term($code,$v900)");
314                            $log->debug("# $level lookup_term($code,$v900) = $term");
315    
316                  my $rec;                          my $mfn  = $tree[$level]->{'lookup_mfn'}->($code,$v900)  || $log->warn("can't lookup_mfn($code,$v900)");
317                            $log->debug("# $level lookup_mfn($code,$v900) = $mfn");
318    
319                  while ($marc->nextmarc(1)) {                          $log->debug("$code -> $v900 : $term [$mfn]");
320    
321                          # XXX                          my ($link_start,$link_end) = ('','');
322                          fakeprogress($i++);          
323                            my $have_children = $tree[$level]->{'have_children'}->($code,$v900,$start_code);
324                          my $swishpath = $database."#".$i;                          if ($have_children) {
325                                    ($link_start,$link_end) = (qq{<a href="#mfn$mfn" onClick="return hide_show('mfn$mfn');">},qq{</a>});
326                          if (my $xml = data2xml($type_base,$marc,$add_xml,$cfg,$database)) {                          } else {
327                                  $xml = $cp2utf->convert($xml);                                  $log->debug("# $level doesn't have_children($code,$v900,$start_code)");
                                 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";  
328                          }                          }
                 }  
         } 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: $!";  
329    
330                  my $i=1;        # record nr.                          my $mfn_link = "thes/$mfn.html";
331                            if (-e "out/$mfn_link") {
332                  my $data;                                  print HTML " " x $level .
333                  my $line=1;                                          qq{<li>${link_start}${term}${link_end}}.
334                                            qq{&nbsp;<a href="$mfn_link">&raquo;</a></li>\n};
335                  while (<FEED>) {                          } else {
336                          chomp;                                  $log->warn("file 'out/$mfn_link' doesn't exist, skipping");
337                            }
                         if (/^$/) {  
                                 my $swishpath = $database."#".$i++;  
338    
339                                  if (my $xml = data2xml($type_base,$data,$add_xml,$cfg,$database)) {                          unless ($have_children) {
                                         $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 = {};  
340                                  next;                                  next;
341                          }                          }
342                            
343                          $line = $1 if (s/^(\d+):\s*//);                          print HTML " " x $level .
344                          $data->{$line++} = $_;                                  qq{<a name="mfn$mfn"></a>\n <ul id="mfn$mfn"}.
345                                    ($tree[$level]->{'style'} ? ' style="'.$tree[$level]->{'style'}.'"' : '').
346                          fakeprogress($i);                                  qq{>\n};
347    
348                            unroll($level+1, $tree[$level]->{'child_code'}->($code,$v900,$start_code));
349                            
350                            print HTML " " x $level . qq{</ul>\n};
351    
352                  }                  }
353          }          }
354  }  }
355    
356  # call this to commit index  print HTML qq{
357  $index->close;  </ul>
358    </body>
359  1;  </html>
360  __END__  };
 ##########################################################################  
   
 =head1 NAME  
   
 all2xml.pl - read various file formats and dump XML for SWISH-E  
   
 =head1 DESCRIPTION  
   
 This command will read ISIS data file using OpenIsis perl module, MARC  
 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.  
   
 =head1 BUGS  
361    
362  Documentation is really lacking. However, in true Open Source spirit, source  close(HTML);
 is best documentation. I even made considerable effort to comment parts  
 which are not intuitively clear, so...  
363    
364  =head1 AUTHOR  $index->close;
   
 Dobrica Pavlinusic <dpavlin@rot13.org>  
   
 =head1 COPYRIGHT  
   
 GNU Public License (GPL) v2 or later  
   
 =head1 SEE ALSO  
   
 SWISH-E web site at http://www.swish-e.org  
365    
366  =cut  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));

Legend:
Removed from v.138  
changed lines
  Added in v.427

  ViewVC Help
Powered by ViewVC 1.1.26