/[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 466 by dpavlin, Thu Sep 23 23:17:42 2004 UTC revision 500 by dpavlin, Sun Oct 10 11:04:52 2004 UTC
# Line 7  all2all.pl - basic script for all WebPAC Line 7  all2all.pl - basic script for all WebPAC
7  =cut  =cut
8    
9  use strict;  use strict;
10    use locale;
11  use YAML;  use YAML;
12  use Carp;  use Carp;
13  use Getopt::Long;  use Getopt::Long;
# Line 31  my $result = GetOptions( Line 32  my $result = GetOptions(
32          "low_mem!"      => \$low_mem,          "low_mem!"      => \$low_mem,
33  );  );
34    
35    my $filter = {
36            'CROVOC' => sub {
37                    my $tmp = shift || return;
38                    return undef unless ($tmp =~ s/CROVOC.*$/ */);
39                    return $tmp;
40            },
41    };
42    
43  # create WebPAC object  # create WebPAC object
44  #  #
45  my $webpac = new WebPAC(  my $webpac = new WebPAC(
# Line 39  my $webpac = new WebPAC( Line 48  my $webpac = new WebPAC(
48          start_mfn => $start_mfn,          start_mfn => $start_mfn,
49          debug => $debug,          debug => $debug,
50          low_mem => $low_mem,          low_mem => $low_mem,
51            filter => $filter,
52  ) || die;  ) || die;
53    
54  my $log = $webpac->_get_logger() || die "can't get logger";  my $log = $webpac->_get_logger() || die "can't get logger";
# Line 64  my $maxmfn = $webpac->open_isis( Line 74  my $maxmfn = $webpac->open_isis(
74          { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },          { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
75          { 'key' => '900_mfn:v900', 'val' => 'v000' },          { 'key' => '900_mfn:v900', 'val' => 'v000' },
76          # tree structure          # tree structure
77          { 'eval' => 'length("v251") == 2', 'key' => 'root:v251', 'val' => 'v900' },          { 'eval' => 'length("v251") == 2 && "v800" =~ m/EUROVOC/ || "v800" =~ m/CROVOC/ && "v251" =~ m/^(H|HD|L|Z|P)$/', 'key' => 'root:v251', 'val' => 'v900' },
78          { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },          { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },
79          { 'eval' => '"v561^4" && "v562^4"', 'key' => 'code:v900', 'val' => 'v561^4:v562^4' },          { 'eval' => '"v561^4" && "v562^4"', 'key' => 'code:v900', 'val' => 'v561^4:v562^4' },
80          ],          ],
# Line 200  my @tree = ({ Line 210  my @tree = ({
210          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
211          have_children   => sub { return $l->{"a:".$_[0]."::"} },          have_children   => sub { return $l->{"a:".$_[0]."::"} },
212          have_children_at_level => sub {          have_children_at_level => sub {
213                                  my $l2 = shift;                                  return unless (defined($l->{"code:".$_[1]}));
214                                  my $l1 = substr($l2,0,1);                                  my $code = shift @{$l->{"code:".$_[1]}};
215                                  return(9, "a:$l1:$l2:" ) if ($l->{"a:$l1:$l2"});                                  print STDERR "## $_[1] -> $code\n";
216                                    return undef unless($code);
217                                    return(9, $l->{"a:$code:"} ) if (defined($l->{"a:$code:"}));
218                          },                          },
219          style           => 'display: none',          style           => 'display: none',
220          },{          },{
# Line 274  my @tree = ({ Line 286  my @tree = ({
286          have_children   => sub { 0 },          have_children   => sub { 0 },
287          },{          },{
288          # 9 - level which is never reached except explicitly          # 9 - level which is never reached except explicitly
289          code_arr        => sub { @{$l->{$_[0]}} },          code_arr        => sub { @{$_[0]} },
290          filter_code     => sub { shift },          filter_code     => sub { shift },
291          lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },          lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
292          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
293          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
294          have_children   => sub { 0 },          have_children   => sub { 0 },
295          have_children_at_level => sub { defined($l->{"a:".$_[1].":".$_[0]}) && return (9,"a:".$_[1].":".$_[0]) },          have_children_at_level => sub { defined($l->{"a:".$_[1].":".$_[0]}) && return (9,$l->{"a:".$_[1].":".$_[0]}) },
296          },{          },{
297  });  });
298    

Legend:
Removed from v.466  
changed lines
  Added in v.500

  ViewVC Help
Powered by ViewVC 1.1.26