/[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 135 by dpavlin, Wed Oct 29 21:27:00 2003 UTC trunk2/all2all.pl revision 437 by dpavlin, Mon Sep 13 15:32:55 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  
4    
5  getopts('d:m:qs', \%opts);  all2all.pl - basic script for all WebPAC needs
6    
7  my $path;       # this is name of database  =cut
8    
9  Text::Iconv->raise_error(0);     # Conversion errors don't raise exceptions  use strict;
10    use Data::Dumper;
11    use Carp;
12    use Getopt::Long;
13    
14  # this is encoding of all files on disk, including import_xml/*.xml file and  use lib './lib';
15  # filter/*.pm files! It will be used to store strings in perl internally!  use WebPAC;
16  my $codepage = 'ISO-8859-2';  use WebPAC::jsFind;
17    use WebPAC::Index;
18    
19    # options which can be changed via command line
20    #
21    my $code_page = 'ISO-8859-2';
22    my ($limit_mfn, $start_mfn, $debug, $low_mem);
23    my $index_path = './out/index';
24    
25    my $result = GetOptions(
26            "code_page=s"   => \$code_page,
27            "limit_mfn=i"   => \$limit_mfn,
28            "start_mfn=i"   => \$start_mfn,
29            "debug!"        => \$debug,
30            "low_mem!"      => \$low_mem,
31    );
32    
33  my $utf2cp = Text::Iconv->new('UTF-8',$codepage);  # create WebPAC object
34  # this function will convert data from XML files to local encoding  #
35  sub x {  my $webpac = new WebPAC(
36          return $utf2cp->convert($_[0]);          code_page => $code_page,
37  }          limit_mfn => $limit_mfn,
38            start_mfn => $start_mfn,
39            debug => $debug,
40            low_mem => $low_mem,
41    ) || die;
42    
43    my $log = $webpac->_get_logger() || die "can't get logger";
44    
45    $log->debug("creating WebPAC::jsFind object");
46    
47    my $index = new WebPAC::jsFind(
48            index_path => $index_path,
49            keys => 10,
50    ) || die;
51    
52  # decode isis/excel or other import codepage  my $thes;
 my $import2cp;  
53    
54  # outgoing xml must be in UTF-8  $|=1;
 my $cp2utf = Text::Iconv->new($codepage,'UTF-8');  
55    
56  # mapping between data type and tag which specify  my $maxmfn = $webpac->open_isis(
57  # format in XML file          filename => shift @ARGV || '/data/hidra/THS/THS',
58  my %type2tag = (          lookup => [
59          'isis' => 'isis',          { 'key' => 'd:v900', 'val' => 'v250^a' },
60          'excel' => 'column',  #       { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
61          'marc' => 'marc',  #       { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
62          'feed' => 'feed'  #       { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
63            { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
64            { 'key' => '900_mfn:v900', 'val' => 'v000' },
65            # tree structure
66            { 'eval' => 'length("v251") == 2', 'key' => 'root:v251', 'val' => 'v900' },
67            { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },
68            ],
69  );  );
70    
71  sub data2xml {  $log->debug("isis file ",$webpac->{'isis_filename'}," opened");
   
         use xmlify;  
   
         my $type = shift @_;  
         my $row = shift @_;  
         my $add_xml = shift @_;  
         # needed to read values from configuration file  
         my $cfg = shift @_;  
         my $database = shift @_;  
72    
73          my $xml;  $log->info("rows: $maxmfn");
74    
75          use parse_format;  $webpac->open_import_xml(type => 'isis_hidra_ths');
76    
77          my $html = "";          # html formatted display output  if(1) { # XXX
78    
79          my %field_usage;        # counter for usage of each field  while (my $rec = $webpac->fetch_rec) {
80    
81          # sort subrouting using order="" attribute          my @ds = $webpac->data_structure($rec);
         sub by_order {  
                 my $va = $config->{indexer}->{$a}->{order} ||  
                         $config->{indexer}->{$a};  
                 my $vb = $config->{indexer}->{$b}->{order} ||  
                         $config->{indexer}->{$b};  
82    
83                  return $va <=> $vb;          if (0 && $log->is_debug) {
84                    $log->debug("rec = ",Dumper($rec));
85                    $log->debug("ds = ",Dumper(\@ds));
86          }          }
87    
88          foreach my $field (sort by_order keys %{$config->{indexer}}) {          next if (! @ds);
89    
90                  $field=x($field);          my $filename = $webpac->{'current_filename'} || $log->logdie("no current_filename in webpac object");
                 $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);  
   
                         # 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';  
                                                 $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) {  
                                         push @index_data, $display;  
                                         $index_filter = $filter if ($filter);  
                                 }  
                         }  
91    
92                          # fill data in index          if ($filename) {
93                          if (@index_data) {                  $webpac->output_file(
94                                  if ($index_filter) {                          file => $filename,
95                                          no strict 'refs';                          template => 'html.tt',
96                                          foreach my $d (@index_data) {                          data => \@ds,
97                                                  $index->insert($field, &$index_filter($d), $path);                          headline => $webpac->{'headline'},
98                                          }                  );
                                 } 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";  
99          } else {          } else {
100                  return;                  print $webpac->output(
101                            template => 'text.tt',
102                            data => \@ds,
103                            headline => $webpac->{'headline'},
104                    );
105          }          }
 }  
   
 ##########################################################################  
   
 # read configuration for this script  
 my $cfg = new Config::IniFiles( -file => $config_file );  
   
 # read global.conf configuration  
 my $cfg_global = new Config::IniFiles( -file => 'global.conf' );  
   
 # open index  
 $index = new index_DBI(  
                 $cfg_global->val('global', 'dbi_dbd'),  
                 $cfg_global->val('global', 'dbi_dsn'),  
                 $cfg_global->val('global', 'dbi_user'),  
                 $cfg_global->val('global', 'dbi_passwd') || '',  
         );  
106    
107  my $show_progress = $cfg_global->val('global', 'show_progress');          my $headline = $webpac->{'headline'};
108    
109  foreach my $database ($cfg->Sections) {          my $f = $filename;
110            $f =~ s!out/!!;
111    
112          my $type = lc($cfg -> val($database, 'type')) || die "$database doesn't have 'type' defined";          # save into index
113          my $add_xml = $cfg -> val($database, 'xml');    # optional          foreach my $ds (@ds) {
114                    next if (! $ds->{'swish'});
115  print STDERR "reading ./import_xml/$type.xml\n";  
116                    $index->insert(
117          # extract just type basic                          index_name => $ds->{'tag'},
118          my $type_base = $type;                          path => $f,
119          $type_base =~ s/_.+$//g;                          headline => $headline,
120                            words => join(" ",@{$ds->{'swish'}})
121          $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;  
                 }  
122          }          }
123    
124          my $fake_dir = 1;          # save into sorted index (thesaurus)
125          sub fakeprogress {          foreach my $ds (@ds) {
126                  return if (! $show_progress);                  next if (! $ds->{'index'});
127                  my $current = shift @_;  
128                    $thes->{$ds->{'tag'}} ||= new WebPAC::Index;
129                  my @ind = ('-','\\','|','/','-','\\','|','/', '-');  
130                    foreach my $h (@{$ds->{'index'}}) {
131                  $last_p += $fake_dir;                          $thes->{$ds->{'tag'}}->insert(
132                  $fake_dir = -$fake_dir if ($last_p > 1000 || $last_p < 0);                                  path => $f,
133                  if ($last_p % 10 == 0) {                                  headline => $h,
134                          printf STDERR ("%5d / %5s [%-51s]\r",$current,"?"," " x ($last_p/20).$ind[($last_p/20) % $#ind]);                          );
135                  }                  }
136          }          }
137    
138          # now read database  #       print Dumper(\@ds);
 print STDERR "using: $type...\n";  
139    
140          if ($type_base eq "isis") {  }
141    
142                  my $isis_db = $cfg -> val($database, 'isis_db') || die "$database doesn't have 'isis_db' defined!";  foreach my $t (keys %{$thes}) {
143    
144                  $import2cp = Text::Iconv->new($config->{isis_codepage},$codepage);          my @e = $thes->{$t}->elements;
145                  my $db = OpenIsis::open( $isis_db );          if (! @e) {
146                    $log->logwarn("no elements in sorted index $t?");
147                  # check if .txt database for OpenIsis is zero length,                  next;
148                  # 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);  
                 }  
149    
150                  # EOF error          my $file = "./out/bfilter/$t.txt";
151                  if ($db == -1) {          $log->info("saving sorted index $t to '$file' [".scalar(@e)." elements]");
                         $db = check_txt_db($isis_db);  
                         if ($db == -1) {  
                                 print STDERR "FATAL: OpenIsis can't open zero size file $isis_db\n";  
                                 next;  
                         }  
                 }  
152    
153                  # OpenIsis::ERR_BADF          $webpac->output_file(
154                  if ($db == -4) {                  file => $file,
155                          print STDERR "FATAL: OpenIsis can't find file $isis_db\n";                  template => 'index.tt',
156                          next;                  data => \@e,
157                  # OpenIsis::ERR_IO                  index_name => $t,
158                  } elsif ($db == -5) {          );
159                          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;  
                 }  
160    
161                  my $max_rowid = OpenIsis::maxRowid( $db );  if (0 && $log->is_debug) {
162            $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
163            $log->debug("data hash: ",Dumper($webpac->{'data'}));
164            foreach my $t (keys %{$thes}) {
165                    $log->debug("thesaurus $t hash: ",Dumper($thes->{$t}));
166            }
167    }
168    
169                  # if 0 records, try to rease isis .txt database  } # XXX if(0)
                 if ($max_rowid == 0) {  
                         # force removal of database  
                         $db = check_txt_db($isis_db);  
                         $max_rowid = OpenIsis::maxRowid( $db );  
                 }  
170    
171                  print STDERR "Reading database: $isis_db [$max_rowid rows]\n";  $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
172    
173                  my $path = $database;  #
174    # tree dump implementation which shouldn't be here :-)
175    #
176    
177    
178    my $file = 'out/browse.html';
179    my $js_url = 'tree-ids.js';
180    
181    $log->info("creating '$file' for tree html");
182    open(HTML, "> $file") || $log->logdie("can't open '$file'");
183    
184    print HTML qq{
185    <html>
186    <head>
187     <title>Browse</title>
188     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>
189     <script type="text/javascript" src="bfilter/hide.js"></script>
190     <script type="text/javascript" src="$js_url"></script>
191    </head>
192    
193    <!--
194    <body onLoad="show_hide_display(show,hide);">
195    -->
196    <body>
197    
198    <span style="background: #e0e0e0;">
199        <a href="search.html">search</a> |
200        <a href="thesaurus.html">thesarus</a> |
201        <a href="browse.html"><b>browse</b></a>
202    </span>
203    
204    <div style="float: right; width: 10em; text-align: center; margin: 0.5m; background: #e0e0e0; border: 1px dashed #c0c0c0; z-index: 1;">
205    Folding:
206    <br/>
207    <a href="#" onClick="back_display();">&laquo;</a>&nbsp;<a href="#" onClick="default_display();">default</a>&nbsp;<a href="#" onClick="forward_display();">&raquo;</a>
208    <br/>
209    <a href="#" onClick="show_hide_display(show,hide);">reset</a>
210    <a href="#" onClick="show_display(show); show_display(hide);">all</a>
211    <a href="#" onClick="hide_display(hide); hide_display(show);">none</a>
212    <br/>
213    <a href="#" onClick="alert('show: '+show.length+', hide: '+hide.length+', changed:'+changed_display_ids.length+', positin: '+changed_display_pos);">debug</a>
214    
215    <a href="#" onClick="outline_display('mfn6030');">outline</a>
216    </div>
217    
218    <ul>
219    };
220    
221    my $l = $webpac->{'lookup'} || $log->logconfess("can't find lookup");
222    
223    my @tree = ({
224            # level 0
225            code_arr        => sub { sort keys %{$l} },
226            filter_code     => sub {
227                                            my $t = shift;
228                                            return $t if ($t =~ s/root://);
229                                    },
230            lookup_v900     => sub { shift @{$l->{"root:".$_[0]}} },
231            lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },
232            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
233            have_children   => sub { defined($l->{"a:".$_[0]."::"}) },
234            child_code      => sub { return $_[0] },
235            style           => 'display: none',
236            },{
237            # 1
238            code_arr        => sub { @{$l->{"a:".$_[0]."::"}} },
239            filter_code     => sub { shift },       # nop
240            lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
241            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
242            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
243            have_children   => sub { defined($l->{"a:".$_[1].":"}) },
244            child_code      => sub { return $_[1] },
245            style           => 'display: none',
246            },{
247            # 2
248            code_arr        => sub { @{$l->{"a:".$_[0].":"}} },
249            filter_code     => sub { shift },
250            lookup_v900     => sub { shift },
251            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
252            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
253            have_children   => sub { defined($l->{"a:".$_[2].":".$_[1]}) },
254            child_code      => sub { return "a:".$_[2].":".$_[1] },
255            style           => 'display: none',
256            },{
257            # 3 uľi pojam
258            code_arr        => sub { @{$l->{$_[0]}} },
259            filter_code     => sub { shift },
260            lookup_v900     => sub {
261                                    my ($c,$p) = @_;
262                                    $p =~ s/^a:(..:....):.*$/$1/;
263                                    return "a:".$p.":".$c;
264                            },
265            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
266            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
267            have_children   => sub { defined($l->{$_[1]}) },
268            child_code      => sub { return $_[1] },
269            },{
270            # 4
271            code_arr        => sub { @{$l->{$_[0]}} },
272            filter_code     => sub { shift },
273            lookup_v900     => sub {
274                                    my ($c,$p) = @_;
275                                    $p =~ s/^a:(..:....):.*$/$1/;
276                                    return "a:".$p.":".$c;
277                            },
278            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
279            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
280            have_children   => sub { defined($l->{$_[1]}) },
281            child_code      => sub { return $_[1] },
282            },{
283            # 5
284            code_arr        => sub { @{$l->{$_[0]}} },
285            filter_code     => sub { shift },
286            lookup_v900     => sub {
287                                    my ($c,$p) = @_;
288                                    $p =~ s/^a:(..:....):.*$/$1/;
289                                    return "a:".$p.":".$c;
290                            },
291            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
292            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
293            have_children   => sub { defined($l->{$_[1]}) },
294            child_code      => sub { return $_[1] },
295            },{
296            # 6
297            code_arr        => sub { @{$l->{$_[0]}} },
298            filter_code     => sub { shift },
299            lookup_v900     => sub {
300                                    my ($c,$p) = @_;
301                                    $p =~ s/^a:(..:....):.*$/$1/;
302                                    return "a:".$p.":".$c;
303                            },
304            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
305            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
306            have_children   => sub { defined($l->{$_[1]}) },
307            child_code      => sub { return $_[1] },
308            },{
309            # 7
310            code_arr        => sub { @{$l->{$_[0]}} },
311            filter_code     => sub { shift },
312            lookup_v900     => sub {
313                                    my ($c,$p) = @_;
314                                    $p =~ s/^a:(..:....):.*$/$1/;
315                                    return "a:".$p.":".$c;
316                            },
317            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
318            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
319            have_children   => sub { defined($l->{$_[1]}) },
320            child_code      => sub { return $_[1] },
321            },{
322            # 8
323            code_arr        => sub { @{$l->{$_[0]}} },
324            filter_code     => sub { shift },
325            lookup_v900     => sub {
326                                    my ($c,$p) = @_;
327                                    $p =~ s/^a:(..:....):.*$/$1/;
328                                    return "a:".$p.":".$c;
329                            },
330            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
331            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
332    #       have_children   => sub { defined($l->{$_[1]}) },
333    #       child_code      => sub { return $_[1] },
334            have_children   => sub { 0 },
335            child_code      => sub { 0 },
336    });
337    
338    my @show_ids;
339    my @hide_ids;
340    
341    unroll(0,'');
342    
343    $log->debug("test filter: ",$tree[0]->{'filter_code'}->("root:99"));
344    
345    sub unroll {
346            my ($level,$start_code) = @_;
347    
348            $log->logconfess("need level") unless (defined($level));
349    
350                  for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {          # all levels passed?
351                          my $row = OpenIsis::read( $db, $row_id );          return if (! defined($tree[$level]));
                         if ($row && $row->{mfn}) {  
           
                                 progress($row->{mfn}, $max_rowid);  
352    
353                                  my $swishpath = $path."#".int($row->{mfn});          $log->debug("unroll level $level, start code $start_code");
354    
355                                  if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {          foreach my $code ($tree[$level]->{'code_arr'}->($start_code)) {
356                                          $xml = $cp2utf->convert($xml);  
357                                          use bytes;      # as opposed to chars                  if ($code = $tree[$level]->{'filter_code'}->($code)) {
                                         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);  
358                                    
359                  $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!";  
360    
361                  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)");
362                  my $start_row = x($config->{start_row}) - 1 || die "no start_row in $type.xml";                          $log->debug("# $level lookup_v900($code,$start_code) = $v900");
363    
364                  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)");
365                            $log->debug("# $level lookup_term($code,$v900) = $term");
366    
367                  my $sheet_nr = 0;                          my $mfn  = $tree[$level]->{'lookup_mfn'}->($code,$v900)  || $log->warn("can't lookup_mfn($code,$v900)");
368                  foreach my $oWks (@{$oBook->{Worksheet}}) {                          $log->debug("# $level lookup_mfn($code,$v900) = $mfn");
369                          #print STDERR "-- SHEET $sheet_nr:", $oWks->{Name}, "\n";  
370                          last if ($oWks->{Name} eq $sheet);                          $log->debug("$code -> $v900 : $term [$mfn]");
                         $sheet_nr++;  
                 }  
371    
372                  my $oWorksheet = $oBook->{Worksheet}[$sheet_nr];                          my ($link_start,$link_end) = ('','');
373                    
374                  print STDERR "using sheet: ",$oWorksheet->{Name},"\n";                          my $have_children = $tree[$level]->{'have_children'}->($code,$v900,$start_code);
375                  defined ($oWorksheet) || die "can't find sheet '$sheet' in $excel_file";                          if ($have_children) {
376                  my $end_row = x($config->{end_row}) || $oWorksheet->{MaxRow};                                  ($link_start,$link_end) = (qq{<a href="#mfn$mfn" onClick="return toggle_display('id$mfn');">},qq{</a>});
377                            } else {
378                  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;  
                                 }  
379                          }                          }
380    
381                          progress($iR, $end_row);                          my $mfn_link = "thes/$mfn.html";
382                            if (-e "out/$mfn_link") {
383  #                       print "row[$iR/$end_row] ";                                  print HTML " " x $level .
384  #                       foreach (keys %{$row}) {                                          qq{<li>${link_start}${term}${link_end}}.
385  #                               print "$_: ",$row->{$_},"\t";                                          qq{&nbsp;<a href="$mfn_link">&raquo;</a></li>\n};
386  #                       }                          } else {
387  #                       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";  
388                          }                          }
                 }  
         } 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'";  
389    
390                  my $i=0;        # record nr.                          unless ($have_children) {
391                                    next;
                 my $rec;  
   
                 while ($marc->nextmarc(1)) {  
   
                         # XXX  
                         fakeprogress($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";  
392                          }                          }
393                  }                          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";  
394    
395                  open(FEED,"feeds/$prog |") || die "can't start $prog: $!";                          print HTML " " x $level .
396                                    qq{<a name="mfn$mfn"></a>\n <ul id="id$mfn"}.
397                  my $i=1;        # record nr.                                  ($style ? ' style="'.$style.'"' : '').
398                                    qq{>\n};
399                  my $data;  
400                  my $line=1;                          if ($style) {
401                                    if ($style =~ m/display\s*:\s*none/i) {
402                  while (<FEED>) {                                          push @hide_ids, "id$mfn";
403                          chomp;                                  } else {
404                                            push @show_ids, "id$mfn";
                         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";  
405                                  }                                  }
406                                  $line = 1;                          } else {
407                                  $data = {};                                  # default: show
408                                  next;                                  push @show_ids, "id$mfn";
409                          }                          }
410    
411                          $line = $1 if (s/^(\d+):\s*//);                          unroll($level+1, $tree[$level]->{'child_code'}->($code,$v900,$start_code));
412                          $data->{$line++} = $_;                          
413                            print HTML " " x $level . qq{</ul>\n};
                         fakeprogress($i);  
414    
415                  }                  }
416          }          }
417  }  }
418    
419  # call this to commit index  print HTML qq{
420  $index->close;  </ul>
421    </body>
422  1;  </html>
423  __END__  };
424  ##########################################################################  
425    close(HTML);
426  =head1 NAME  
427    
428  all2xml.pl - read various file formats and dump XML for SWISH-E  my $js_file = "out/$js_url";
429    $log->info("creating '$js_file' with arrays of shown and hidden ids");
430  =head1 DESCRIPTION  open(JS, ">", $js_file) || $log->logdie("can't open '$js_file': $!");
431    print JS "var show = ['",join("','",@show_ids),"'];\n";
432  This command will read ISIS data file using OpenIsis perl module, MARC  print JS "var hide = ['",join("','",@hide_ids),"'];\n";
433  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  
434    
435  Documentation is really lacking. However, in true Open Source spirit, source  $log->info("closing index");
436  is best documentation. I even made considerable effort to comment parts  $index->close;
 which are not intuitively clear, so...  
   
 =head1 AUTHOR  
   
 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  
437    
438  =cut  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));

Legend:
Removed from v.135  
changed lines
  Added in v.437

  ViewVC Help
Powered by ViewVC 1.1.26