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

revision 422 by dpavlin, Sat Sep 11 08:36:38 2004 UTC revision 440 by dpavlin, Tue Sep 14 09:23:00 2004 UTC
# Line 9  all2all.pl - basic script for all WebPAC Line 9  all2all.pl - basic script for all WebPAC
9  use strict;  use strict;
10  use Data::Dumper;  use Data::Dumper;
11  use Carp;  use Carp;
12    use Getopt::Long;
13    
14  use lib './lib';  use lib './lib';
15  use WebPAC;  use WebPAC;
16  use WebPAC::jsFind;  use WebPAC::jsFind;
17  use WebPAC::Index;  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    # create WebPAC object
34    #
35  my $webpac = new WebPAC(  my $webpac = new WebPAC(
36          code_page => 'ISO-8859-2',          code_page => $code_page,
37  #       limit_mfn => 100,          limit_mfn => $limit_mfn,
38  #       debug => 1,          start_mfn => $start_mfn,
39          low_mem => 1,          debug => $debug,
40            low_mem => $low_mem,
41  ) || die;  ) || die;
42    
43  my $log = $webpac->_get_logger() || die "can't get logger";  my $log = $webpac->_get_logger() || die "can't get logger";
# Line 27  my $log = $webpac->_get_logger() || die Line 45  my $log = $webpac->_get_logger() || die
45  $log->debug("creating WebPAC::jsFind object");  $log->debug("creating WebPAC::jsFind object");
46    
47  my $index = new WebPAC::jsFind(  my $index = new WebPAC::jsFind(
48          index_path => './out/index',          index_path => $index_path,
49          keys => 10,          keys => 10,
50  ) || die;  ) || die;
51    
# Line 56  $log->info("rows: $maxmfn"); Line 74  $log->info("rows: $maxmfn");
74    
75  $webpac->open_import_xml(type => 'isis_hidra_ths');  $webpac->open_import_xml(type => 'isis_hidra_ths');
76    
77  $log->debug("data: ",Dumper($webpac->{'data'}));  if(1) { # XXX
78    
79  while (my $rec = $webpac->fetch_rec) {  while (my $rec = $webpac->fetch_rec) {
80    
# Line 148  if (0 && $log->is_debug) { Line 166  if (0 && $log->is_debug) {
166          }          }
167  }  }
168    
169  $log->info("lookup hash: ",Dumper($webpac->{'lookup'}));  } # XXX if(0)
170    
171    $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
172    
173  #  #
174  # tree dump implementation which shouldn't be here :-)  # tree dump implementation which shouldn't be here :-)
175  #  #
176    
177    
178  my $file = 'out/browse.html';  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'");  open(HTML, "> $file") || $log->logdie("can't open '$file'");
183    
184  print HTML qq{  print HTML qq{
# Line 162  print HTML qq{ Line 186  print HTML qq{
186  <head>  <head>
187   <title>Browse</title>   <title>Browse</title>
188   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>   <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>  </head>
 <body>  
 <ul>  
 };  
   
 foreach my $code (sort keys %{$webpac->{'lookup'}}) {  
   
         my $l = $webpac->{'lookup'} || $log->logconfess("can't find lookup");  
192    
193          if ($code =~ m/^root:/) {  <!--
194                  my $v900 = shift @{ $l->{$code} } || $log->logconfess("can't lookup '$code'");  <body onLoad="show_hide_display(show,hide);">
195                  $code =~ s/^root:// || die;  -->
196    <body>
                 my $term = shift @{ $l->{"d:${v900}"} } || die;  
                 my $mfn = shift @{ $l->{"900_mfn:${v900}"} } || die;  
197    
198                  $log->debug("$code -> $v900 : $term [$mfn]");  <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                  print HTML qq{ <li><a href="thes/$mfn.html">$term</a></li>\n} if (-e "out/thes/$mfn.html");  <a href="#" onClick="outline_display('id6030');">outline</a>
216    </div>
217    
218                  unless ($l->{"a:${code}::"}) {  <ul>
219                          $log->warn("can't find 'a:${code}::'");  };
                         next;  
                 }  
220    
221                  print HTML qq{ <ul>\n};  my $l = $webpac->{'lookup'} || $log->logconfess("can't find lookup");
222    
223                  foreach my $l2_v900 (@{ $l->{"a:${code}::"} }) {  my @tree = ({
224                                    # level 0
225                          my $l2_code = shift @{ $l->{"code:${l2_v900}"} } || die;          code_arr        => sub { sort keys %{$l} },
226                          my $l2_term = shift @{ $l->{"d:$l2_v900"} } || die;          filter_code     => sub {
227                          my $l2_mfn = shift @{ $l->{"900_mfn:${l2_v900}"} } || die;                                          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            # all levels passed?
351            return if (! defined($tree[$level]));
352    
353            $log->debug("unroll level $level, start code $start_code");
354    
355            foreach my $code ($tree[$level]->{'code_arr'}->($start_code)) {
356    
357                    if ($code = $tree[$level]->{'filter_code'}->($code)) {
358                    
359                            $log->debug("# $level filter passed code $code");
360    
361                            my $v900 = $tree[$level]->{'lookup_v900'}->($code,$start_code) || $log->warn("can't lookup_v900($code,$start_code)");
362                            $log->debug("# $level lookup_v900($code,$start_code) = $v900");
363    
364                            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 $mfn  = $tree[$level]->{'lookup_mfn'}->($code,$v900)  || $log->warn("can't lookup_mfn($code,$v900)");
368                            $log->debug("# $level lookup_mfn($code,$v900) = $mfn");
369    
370                            $log->debug("$code -> $v900 : $term [$mfn]");
371    
372                            my ($link_start,$link_end) = ('','');
373            
374                            my $have_children = $tree[$level]->{'have_children'}->($code,$v900,$start_code);
375                            if ($have_children) {
376                                    ($link_start,$link_end) = (qq{<a href="#mfn$mfn" onClick="return toggle_display('id$mfn');">},qq{</a>});
377                            } else {
378                                    $log->debug("# $level doesn't have_children($code,$v900,$start_code)");
379                            }
380    
381                          $log->debug("$l2_code -> $l2_v900 : $l2_term [$l2_mfn]");                          my $mfn_link = "thes/$mfn.html";
382                            if (-e "out/$mfn_link") {
383                                    print HTML " " x $level .
384                                            qq{<li>${link_start}${term}${link_end}}.
385                                            qq{&nbsp;<a href="$mfn_link">&raquo;</a></li>\n};
386                            } else {
387                                    $log->warn("file 'out/$mfn_link' doesn't exist, skipping");
388                            }
389    
390                          print HTML qq{  <li><a href="thes/$l2_mfn.html">$l2_term</a></li>\n} if (-e "out/thes/$l2_mfn.html");                          unless ($have_children) {
                           
                         unless ($l->{"a:${l2_code}:"}) {  
                                 $log->warn("can't find 'a:${l2_code}:'");  
391                                  next;                                  next;
392                          }                          }
393                            my $style = $tree[$level]->{'style'};
394    
395                          print HTML qq{  <ul>\n};                          print HTML " " x $level .
396                                    qq{<a name="mfn$mfn"></a>\n <ul id="id$mfn"}.
397                          foreach my $l3_v900 (@{ $l->{"a:${l2_code}:"} }) {                                  ($style ? ' style="'.$style.'"' : '').
398                                    qq{>\n};
399                                  my $l3_term = shift @{ $l->{"d:$l3_v900"} } || die;  
400                                  my $l3_mfn = shift @{ $l->{"900_mfn:${l3_v900}"} } || die;                          if ($style) {
401                                    if ($style =~ m/display\s*:\s*none/i) {
402                                  $log->debug(" -> $l3_v900 : $l3_term [$l3_mfn]");                                          push @hide_ids, "id$mfn";
403                                    } else {
404                                  print HTML qq{   <li><a href="thes/$l3_mfn.html">$l3_term</a></li>\n} if (-e "out/thes/$l3_mfn.html");                                          push @show_ids, "id$mfn";
405                                    }
406                            } else {
407                                    # default: show
408                                    push @show_ids, "id$mfn";
409                          }                          }
410    
411                          print HTML qq{  </ul>\n};                          unroll($level+1, $tree[$level]->{'child_code'}->($code,$v900,$start_code));
412                            
413                            print HTML " " x $level . qq{</ul>\n};
414    
415                  }                  }
                 print HTML qq{ </ul>\n};  
416          }          }
417  }  }
418    
# Line 228  print HTML qq{ Line 422  print HTML qq{
422  </html>  </html>
423  };  };
424    
425    close(HTML);
426    
427    
428    my $js_file = "out/$js_url";
429    $log->info("creating '$js_file' with arrays of shown and hidden ids");
430    open(JS, ">", $js_file) || $log->logdie("can't open '$js_file': $!");
431    print JS "var show = ['",join("','",@show_ids),"'];\n";
432    print JS "var hide = ['",join("','",@hide_ids),"'];\n";
433    close(JS);
434    
435    $log->info("closing index");
436  $index->close;  $index->close;
437    
438  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));

Legend:
Removed from v.422  
changed lines
  Added in v.440

  ViewVC Help
Powered by ViewVC 1.1.26