/[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 90 by dpavlin, Sun Jul 13 13:22:50 2003 UTC trunk2/all2all.pl revision 429 by dpavlin, Sun Sep 12 17:21:47 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 {  
                 return 0 if (! $config->{indexer}->{$a}->{order});  
                 return 0 if (! $config->{indexer}->{$b}->{order});  
   
                 return $config->{indexer}->{$a}->{order} <=>  
                         $config->{indexer}->{$b}->{order} ;  
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  
   
                         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");  
   
                         # what will separate last line from this one?  
                         if ($display_data && $x->{append} && $x->{append} eq "1") {  
                                 $line_delimiter = ' ';  
                         } elsif ($display_data) {  
                                 $line_delimiter = '<br/>';  
                         }  
   
                         # init vars so that we go into while...  
                         ($swish,$display) = (1,1);  
   
                         # 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';  
                                                 $display_data .= join($delimiter,&$filter($display));  
                                         } else {  
                                                 if ($display_data) {  
                                                         $display_data .= $delimiter.$display;  
                                                 } else {  
                                                         $display_data .= $display;  
                                                 }  
                                         }  
                                 }  
                                                   
                                 # type="index" ; insert into index  
                                 if ($i && $display) {  
                                         my $index_data = $display;  
                                         if ($filter) {  
                                                 no strict 'refs';  
                                                 foreach my $d (&$filter($index_data)) {  
                                                         $index->insert($field, $d, $path);  
                                                 }  
                                         } else {  
                                                 $index->insert($field, $index_data, $path);  
                                         }  
                                 }  
                         }  
                 }  
   
                 # now try to parse variables from configuration file  
                 foreach my $x (@{$config->{indexer}->{$field}->{'config'}}) {  
71    
72                          my $delimiter = x($x->{delimiter}) || ' ';          my $filename = $webpac->{'current_filename'} || $log->logdie("no current_filename in webpac object");
                         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);  
                         }  
   
                 }  
73    
74            if ($filename) {
75                    $webpac->output_file(
76                            file => $filename,
77                            template => 'html.tt',
78                            data => \@ds,
79                            headline => $webpac->{'headline'},
80                    );
81            } else {
82                    print $webpac->output(
83                            template => 'text.tt',
84                            data => \@ds,
85                            headline => $webpac->{'headline'},
86                    );
87            }
88    
89                  if ($display_data) {          my $headline = $webpac->{'headline'};
90    
91                          if ($field eq "headline") {          my $f = $filename;
92                                  $xml .= xmlify("headline", $display_data);          $f =~ s!out/!!;
                         } else {  
93    
94                                  # find field name (signular, plural)          # save into index
95                                  my $field_name = "";          foreach my $ds (@ds) {
96                                  if ($config->{indexer}->{$field}->{name_singular} && $field_usage{$field} == 1) {                  next if (! $ds->{'swish'});
97                                          $field_name = $config->{indexer}->{$field}->{name_singular}."#-#";  
98                                  } elsif ($config->{indexer}->{$field}->{name_plural}) {                  $index->insert(
99                                          $field_name = $config->{indexer}->{$field}->{name_plural}."#-#";                          index_name => $ds->{'tag'},
100                                  } elsif ($config->{indexer}->{$field}->{name}) {                          path => $f,
101                                          $field_name = $config->{indexer}->{$field}->{name}."#-#";                          headline => $headline,
102                                  } else {                          words => join(" ",@{$ds->{'swish'}})
103                                          print STDERR "WARNING: field '$field' doesn't have 'name' attribute!";                  );
104                                  }          }
                                 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;  
105    
106                          $xml .= xmlify($field."_swish", unac_string($codepage,$swish_data));          # save into sorted index (thesaurus)
107            foreach my $ds (@ds) {
108                    next if (! $ds->{'index'});
109    
110                    $thes->{$ds->{'tag'}} ||= new WebPAC::Index;
111    
112                    foreach my $h (@{$ds->{'index'}}) {
113                            $thes->{$ds->{'tag'}}->insert(
114                                    path => $f,
115                                    headline => $h,
116                            );
117                  }                  }
   
   
118          }          }
119    
120          # dump formatted output in <html>  #       print Dumper(\@ds);
121          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";  
         } else {  
                 return;  
         }  
122  }  }
123    
124  ##########################################################################  foreach my $t (keys %{$thes}) {
125    
126  # read configuration for this script          my @e = $thes->{$t}->elements;
127  my $cfg = new Config::IniFiles( -file => $config_file );          if (! @e) {
128                    $log->logwarn("no elements in sorted index $t?");
129                    next;
130            }
131    
132  # read global.conf configuration          my $file = "./out/bfilter/$t.txt";
133  my $cfg_global = new Config::IniFiles( -file => 'global.conf' );          $log->info("saving sorted index $t to '$file' [".scalar(@e)." elements]");
134    
135  # open index          $webpac->output_file(
136  $index = new index_DBI(                  file => $file,
137                  $cfg_global->val('global', 'dbi_dbd'),                  template => 'index.tt',
138                  $cfg_global->val('global', 'dbi_dsn'),                  data => \@e,
139                  $cfg_global->val('global', 'dbi_user'),                  index_name => $t,
                 $cfg_global->val('global', 'dbi_passwd') || '',  
140          );          );
141    }
142    
143  foreach my $database ($cfg->Sections) {  if (0 && $log->is_debug) {
144            $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
145          my $type = lc($cfg -> val($database, 'type')) || die "$database doesn't have 'type' defined";          $log->debug("data hash: ",Dumper($webpac->{'data'}));
146          my $add_xml = $cfg -> val($database, 'xml');    # optional          foreach my $t (keys %{$thes}) {
147                    $log->debug("thesaurus $t hash: ",Dumper($thes->{$t}));
 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 (! $opts{q});        # FIXME  
                 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;  
                 }  
         }  
   
         my $fake_dir = 1;  
         sub fakeprogress {  
                 my $current = shift @_;  
   
                 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]);  
                 }  
148          }          }
149    }
150    
151          # now read database  } # XXX if(0)
 print STDERR "using: $type...\n";  
   
         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 );  
   
                 my $max_rowid = OpenIsis::maxRowid( $db );  
152    
153                  print STDERR "Reading database: $isis_db [$max_rowid rows]\n";  $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
154    
155                  my $path = $database;  #
156    # tree dump implementation which shouldn't be here :-)
157    #
158    
159    
160    my $file = 'out/browse.html';
161    my $js_url = 'tree-ids.js';
162    
163    $log->info("creating '$file' for tree html");
164    open(HTML, "> $file") || $log->logdie("can't open '$file'");
165    
166    print HTML qq{
167    <html>
168    <head>
169     <title>Browse</title>
170     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>
171     <script type="text/javascript" src="bfilter/hide.js"></script>
172     <script type="text/javascript" src="$js_url"></script>
173    </head>
174    
175    <!--
176    <body onLoad="show_hide_display(show,hide);">
177    -->
178    <body>
179    
180    <div style="float: right; width: 10em;">
181    Folding:
182    <a href="#" onClick="show_hide_display(show,hide);">default</a>
183    <a href="#" onClick="show_display(show); show_display(hide);">all</a>
184    <a href="#" onClick="hide_display(hide); hide_display(show);">none</a>
185    <a href="#" onClick="alert('show: '+show.length+', hide: '+hide.length);">debug</a>
186    </div>
187    
188    
189    <ul>
190    };
191    
192    my $l = $webpac->{'lookup'} || $log->logconfess("can't find lookup");
193    
194    my @tree = ({
195            # level 0
196            code_arr        => sub { sort keys %{$l} },
197            filter_code     => sub {
198                                            my $t = shift;
199                                            return $t if ($t =~ s/root://);
200                                    },
201            lookup_v900     => sub { shift @{$l->{"root:".$_[0]}} },
202            lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },
203            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
204            have_children   => sub { defined($l->{"a:".$_[0]."::"}) },
205            child_code      => sub { return $_[0] },
206            style           => 'display: none',
207            },{
208            # 1
209            code_arr        => sub { @{$l->{"a:".$_[0]."::"}} },
210            filter_code     => sub { shift },       # nop
211            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
212            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
213            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
214            have_children   => sub { defined($l->{"a:".$_[1].":"}) },
215            child_code      => sub { return $_[1] },
216            style           => 'display: none',
217            },{
218            # 2
219            code_arr        => sub { @{$l->{"a:".$_[0].":"}} },
220            filter_code     => sub { shift },
221            lookup_v900     => sub { shift },
222            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
223            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
224            have_children   => sub { defined($l->{"a:".$_[2].":".$_[1]}) },
225            child_code      => sub { return "a:".$_[2].":".$_[1] },
226            style           => 'display: none',
227            },{
228            # 3 uľi pojam
229            code_arr        => sub { @{$l->{$_[0]}} },
230            filter_code     => sub { shift },
231            lookup_v900     => sub {
232                                    my ($c,$p) = @_;
233                                    $p =~ s/^a:(..:....):.*$/$1/;
234                                    return "a:".$p.":".$c;
235                            },
236            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
237            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
238            have_children   => sub { defined($l->{$_[1]}) },
239            child_code      => sub { return $_[1] },
240            },{
241            # 4
242            code_arr        => sub { @{$l->{$_[0]}} },
243            filter_code     => sub { shift },
244            lookup_v900     => sub {
245                                    my ($c,$p) = @_;
246                                    $p =~ s/^a:(..:....):.*$/$1/;
247                                    return "a:".$p.":".$c;
248                            },
249            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
250            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
251            have_children   => sub { defined($l->{$_[1]}) },
252            child_code      => sub { return $_[1] },
253            },{
254            # 5
255            code_arr        => sub { @{$l->{$_[0]}} },
256            filter_code     => sub { shift },
257            lookup_v900     => sub {
258                                    my ($c,$p) = @_;
259                                    $p =~ s/^a:(..:....):.*$/$1/;
260                                    return "a:".$p.":".$c;
261                            },
262            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
263            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
264            have_children   => sub { defined($l->{$_[1]}) },
265            child_code      => sub { return $_[1] },
266            },{
267            # 6
268            code_arr        => sub { @{$l->{$_[0]}} },
269            filter_code     => sub { shift },
270            lookup_v900     => sub {
271                                    my ($c,$p) = @_;
272                                    $p =~ s/^a:(..:....):.*$/$1/;
273                                    return "a:".$p.":".$c;
274                            },
275            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
276            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
277            have_children   => sub { defined($l->{$_[1]}) },
278            child_code      => sub { return $_[1] },
279            },{
280            # 7
281            code_arr        => sub { @{$l->{$_[0]}} },
282            filter_code     => sub { shift },
283            lookup_v900     => sub {
284                                    my ($c,$p) = @_;
285                                    $p =~ s/^a:(..:....):.*$/$1/;
286                                    return "a:".$p.":".$c;
287                            },
288            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
289            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
290            have_children   => sub { defined($l->{$_[1]}) },
291            child_code      => sub { return $_[1] },
292            },{
293            # 8
294            code_arr        => sub { @{$l->{$_[0]}} },
295            filter_code     => sub { shift },
296            lookup_v900     => sub {
297                                    my ($c,$p) = @_;
298                                    $p =~ s/^a:(..:....):.*$/$1/;
299                                    return "a:".$p.":".$c;
300                            },
301            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
302            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
303    #       have_children   => sub { defined($l->{$_[1]}) },
304    #       child_code      => sub { return $_[1] },
305            have_children   => sub { 0 },
306            child_code      => sub { 0 },
307    });
308    
309    my @show_ids;
310    my @hide_ids;
311    
312    unroll(0,'');
313    
314    $log->debug("test filter: ",$tree[0]->{'filter_code'}->("root:99"));
315    
316    sub unroll {
317            my ($level,$start_code) = @_;
318    
319            $log->logconfess("need level") unless (defined($level));
320    
321                  for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {          # all levels passed?
322                          my $row = OpenIsis::read( $db, $row_id );          return if (! defined($tree[$level]));
                         if ($row && $row->{mfn}) {  
           
                                 progress($row->{mfn}, $max_rowid);  
323    
324                                  my $swishpath = $path."#".int($row->{mfn});          $log->debug("unroll level $level, start code $start_code");
325    
326                                  if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {          foreach my $code ($tree[$level]->{'code_arr'}->($start_code)) {
                                         $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";  
327    
328          } elsif ($type_base eq "excel") {                  if ($code = $tree[$level]->{'filter_code'}->($code)) {
                 use Spreadsheet::ParseExcel;  
                 use Spreadsheet::ParseExcel::Utility qw(int2col);  
329                                    
330                  $import2cp = Text::Iconv->new($config->{excel_codepage},$codepage);                          $log->debug("# $level filter passed code $code");
                 my $excel_file = $cfg -> val($database, 'excel_file') || die "$database doesn't have 'excel_file' defined!";  
331    
332                  my $sheet = x($config->{sheet}) || die "no sheet in $type.xml";                          my $v900 = $tree[$level]->{'lookup_v900'}->($code,$start_code) || $log->warn("can't lookup_v900($code,$start_code)");
333                  my $start_row = x($config->{start_row}) - 1 || die "no start_row in $type.xml";                          $log->debug("# $level lookup_v900($code,$start_code) = $v900");
334    
335                  my $oBook = Spreadsheet::ParseExcel::Workbook->Parse($excel_file) || die "can't open Excel file '$excel_file'";                          my $term = $tree[$level]->{'lookup_term'}->($code,$v900) || $log->warn("can't lookup_term($code,$v900)");
336                            $log->debug("# $level lookup_term($code,$v900) = $term");
337    
338                  my $sheet_nr = 0;                          my $mfn  = $tree[$level]->{'lookup_mfn'}->($code,$v900)  || $log->warn("can't lookup_mfn($code,$v900)");
339                  foreach my $oWks (@{$oBook->{Worksheet}}) {                          $log->debug("# $level lookup_mfn($code,$v900) = $mfn");
                         #print STDERR "-- SHEET $sheet_nr:", $oWks->{Name}, "\n";  
                         last if ($oWks->{Name} eq $sheet);  
                         $sheet_nr++;  
                 }  
340    
341                  my $oWorksheet = $oBook->{Worksheet}[$sheet_nr];                          $log->debug("$code -> $v900 : $term [$mfn]");
342    
343                            my ($link_start,$link_end) = ('','');
344                    
345                  print STDERR "using sheet: ",$oWorksheet->{Name},"\n";                          my $have_children = $tree[$level]->{'have_children'}->($code,$v900,$start_code);
346                  defined ($oWorksheet) || die "can't find sheet '$sheet' in $excel_file";                          if ($have_children) {
347                  my $end_row = x($config->{end_row}) || $oWorksheet->{MaxRow};                                  ($link_start,$link_end) = (qq{<a href="#mfn$mfn" onClick="return toggle_display('mfn$mfn');">},qq{</a>});
348                            } else {
349                  for(my $iR = $start_row ; defined $end_row && $iR <= $end_row ; $iR++) {                                  $log->debug("# $level doesn't have_children($code,$v900,$start_code)");
                         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;  
                                 }  
350                          }                          }
351    
352                          progress($iR, $end_row);                          my $mfn_link = "thes/$mfn.html";
353                            if (-e "out/$mfn_link") {
354  #                       print "row[$iR/$end_row] ";                                  print HTML " " x $level .
355  #                       foreach (keys %{$row}) {                                          qq{<li>${link_start}${term}${link_end}}.
356  #                               print "$_: ",$row->{$_},"\t";                                          qq{&nbsp;<a href="$mfn_link">&raquo;</a></li>\n};
357  #                       }                          } else {
358  #                       print "\n";                                  $log->warn("file 'out/$mfn_link' doesn't exist, skipping");
   
                         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";  
359                          }                          }
                 }  
         } elsif ($type_base eq "marc") {  
   
                 use 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->{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'";  
   
                 my $i=0;        # record nr.  
   
                 my $rec;  
   
                 while ($marc->nextmarc(1)) {  
   
                         # XXX  
                         fakeprogress($i++);  
360    
361                          my $swishpath = $database."#".$i;                          unless ($have_children) {
362                                    next;
                         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";  
363                          }                          }
364                  }                          my $style = $tree[$level]->{'style'};
         } 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;  
365    
366                  while (<FEED>) {                          print HTML " " x $level .
367                          chomp;                                  qq{<a name="mfn$mfn"></a>\n <ul id="mfn$mfn"}.
368                                    ($style ? ' style="'.$style.'"' : '').
369                          if (/^$/) {                                  qq{>\n};
370                                  my $swishpath = $database."#".$i++;  
371                            if ($style) {
372                                  if (my $xml = data2xml($type_base,$data,$add_xml,$cfg,$database)) {                                  if ($style =~ m/display\s*:\s*none/i) {
373                                          $xml = $cp2utf->convert($xml);                                          push @hide_ids, "mfn$mfn";
374                                          use bytes;      # as opposed to chars                                  } else {
375                                          print "Path-Name: $swishpath\n";                                          push @show_ids, "mfn$mfn";
                                         print "Content-Length: ".(length($xml)+1)."\n";  
                                         print "Document-Type: XML\n\n$xml\n";  
376                                  }                                  }
377                                  $line = 1;                          } else {
378                                  $data = {};                                  # default: show
379                                  next;                                  push @show_ids, "mfn$mfn";
380                          }                          }
381    
382                          $line = $1 if (s/^(\d+):\s*//);                          unroll($level+1, $tree[$level]->{'child_code'}->($code,$v900,$start_code));
383                          $data->{$line++} = $_;                          
384                            print HTML " " x $level . qq{</ul>\n};
                         fakeprogress($i);  
385    
386                  }                  }
387          }          }
388  }  }
389    
390  # call this to commit index  print HTML qq{
391  $index->close;  </ul>
392    </body>
393  1;  </html>
394  __END__  };
395  ##########################################################################  
396    close(HTML);
397  =head1 NAME  
398    
399  all2xml.pl - read various file formats and dump XML for SWISH-E  my $js_file = "out/$js_url";
400    $log->info("creating '$js_file' with arrays of shown and hidden ids");
401  =head1 DESCRIPTION  open(JS, ">", $js_file) || $log->logdie("can't open '$js_file': $!");
402    print JS "var show = ['",join("','",@show_ids),"'];\n";
403  This command will read ISIS data file using OpenIsis perl module, MARC  print JS "var hide = ['",join("','",@hide_ids),"'];\n";
404  records using MARC module and optionally Micro$oft Excel files to  close(JS);
 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  
   
 Documentation is really lacking. However, in true Open Source spirit, source  
 is best documentation. I even made considerable effort to comment parts  
 which are not intuitively clear, so...  
405    
406  =head1 AUTHOR  $log->info("closing index");
407    $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  
408    
409  =cut  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));

Legend:
Removed from v.90  
changed lines
  Added in v.429

  ViewVC Help
Powered by ViewVC 1.1.26