--- trunk/all2xml.pl 2003/03/22 22:43:05 43 +++ trunk2/all2all.pl 2004/09/12 17:21:47 429 @@ -1,299 +1,409 @@ #!/usr/bin/perl -w -use strict; -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; # there is no other, right now ;-) - -my $index = new index_DBI(); # open index +=head1 NAME -my %opts; +all2all.pl - basic script for all WebPAC needs -# usage: -# -d directory name -# -m multiple directories -# -q quiet -# -s run swish +=cut -getopts('d:m:qs', \%opts); +use strict; +use Data::Dumper; +use Carp; -my $path; # this is name of database +use lib './lib'; +use WebPAC; +use WebPAC::jsFind; +use WebPAC::Index; + +my $webpac = new WebPAC( + code_page => 'ISO-8859-2', + limit_mfn => 500, +# debug => 1, +# low_mem => 1, +) || die; + +my $log = $webpac->_get_logger() || die "can't get logger"; + +$log->debug("creating WebPAC::jsFind object"); + +my $index = new WebPAC::jsFind( + index_path => './out/index', + keys => 10, +) || die; -Text::Iconv->raise_error(1); # Conversion errors raise exceptions +my $thes; -# this is encoding of all files on disk, including import_xml/*.xml file and -# filter/*.pm files! It will be used to store strings in perl internally! -my $codepage = 'ISO-8859-2'; +$|=1; -my $utf2cp = Text::Iconv->new('UTF-8',$codepage); -# this function will convert data from XML files to local encoding -sub x { - return $utf2cp->convert($_[0]); -} +my $maxmfn = $webpac->open_isis( + filename => shift @ARGV || '/data/hidra/THS/THS', + lookup => [ + { 'key' => 'd:v900', 'val' => 'v250^a' }, +# { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' }, +# { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' }, +# { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' }, + { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' }, + { 'key' => '900_mfn:v900', 'val' => 'v000' }, + # tree structure + { 'eval' => 'length("v251") == 2', 'key' => 'root:v251', 'val' => 'v900' }, + { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' }, + ], +); + +$log->debug("isis file ",$webpac->{'isis_filename'}," opened"); + +$log->info("rows: $maxmfn"); + +$webpac->open_import_xml(type => 'isis_hidra_ths'); + +if(1) { # XXX + +while (my $rec = $webpac->fetch_rec) { + + my @ds = $webpac->data_structure($rec); + + if (0 && $log->is_debug) { + $log->debug("rec = ",Dumper($rec)); + $log->debug("ds = ",Dumper(\@ds)); + } -# decode isis import codepage -my $isis2cp; + next if (! @ds); -# outgoing xml must be in UTF-8 -my $cp2utf = Text::Iconv->new($codepage,'UTF-8'); + my $filename = $webpac->{'current_filename'} || $log->logdie("no current_filename in webpac object"); -sub isis2xml { + if ($filename) { + $webpac->output_file( + file => $filename, + template => 'html.tt', + data => \@ds, + headline => $webpac->{'headline'}, + ); + } else { + print $webpac->output( + template => 'text.tt', + data => \@ds, + headline => $webpac->{'headline'}, + ); + } - use xmlify; + my $headline = $webpac->{'headline'}; - my $row = shift @_; - my $add_xml = shift @_; + my $f = $filename; + $f =~ s!out/!!; - my $xml; + # save into index + foreach my $ds (@ds) { + next if (! $ds->{'swish'}); + + $index->insert( + index_name => $ds->{'tag'}, + path => $f, + headline => $headline, + words => join(" ",@{$ds->{'swish'}}) + ); + } - use parse_format; + # save into sorted index (thesaurus) + foreach my $ds (@ds) { + next if (! $ds->{'index'}); + + $thes->{$ds->{'tag'}} ||= new WebPAC::Index; + + foreach my $h (@{$ds->{'index'}}) { + $thes->{$ds->{'tag'}}->insert( + path => $f, + headline => $h, + ); + } + } - my $html = ""; # html formatted display output +# print Dumper(\@ds); - my %field_usage; # counter for usage of each field +} - # sort subrouting using order="" attribute - sub by_order { - return 0 if (! $config->{indexer}->{$a}->{order}); - return 0 if (! $config->{indexer}->{$b}->{order}); +foreach my $t (keys %{$thes}) { - return $config->{indexer}->{$a}->{order} <=> - $config->{indexer}->{$b}->{order} ; + my @e = $thes->{$t}->elements; + if (! @e) { + $log->logwarn("no elements in sorted index $t?"); + next; } - foreach my $field (sort by_order keys %{$config->{indexer}}) { + my $file = "./out/bfilter/$t.txt"; + $log->info("saving sorted index $t to '$file' [".scalar(@e)." elements]"); - $field=x($field); - - $field_usage{$field}++; + $webpac->output_file( + file => $file, + template => 'index.tt', + data => \@e, + index_name => $t, + ); +} - my $swish_data = ""; - my $display_data = ""; - my $line_delimiter; +if (0 && $log->is_debug) { + $log->debug("lookup hash: ",Dumper($webpac->{'lookup'})); + $log->debug("data hash: ",Dumper($webpac->{'data'})); + foreach my $t (keys %{$thes}) { + $log->debug("thesaurus $t hash: ",Dumper($thes->{$t})); + } +} - my ($swish,$display); +} # XXX if(0) - foreach my $x (@{$config->{indexer}->{$field}->{isis}}) { +$log->debug("lookup hash: ",Dumper($webpac->{'lookup'})); - my $format = x($x->{content}); - my $delimiter = x($x->{delimiter}) || ' '; +# +# tree dump implementation which shouldn't be here :-) +# + + +my $file = 'out/browse.html'; +my $js_url = 'tree-ids.js'; + +$log->info("creating '$file' for tree html"); +open(HTML, "> $file") || $log->logdie("can't open '$file'"); + +print HTML qq{ + + + Browse + + + + + + + + +
+Folding: +default +all +none +debug +
+ + + + + +}; + +close(HTML); + + +my $js_file = "out/$js_url"; +$log->info("creating '$js_file' with arrays of shown and hidden ids"); +open(JS, ">", $js_file) || $log->logdie("can't open '$js_file': $!"); +print JS "var show = ['",join("','",@show_ids),"'];\n"; +print JS "var hide = ['",join("','",@hide_ids),"'];\n"; +close(JS); -=head1 COPYRIGHT - -GNU Public License (GPL) v2 or later - -=head1 SEE ALSO - -SWISH-E web site at http://www.swish-e.org +$log->info("closing index"); +$index->close; -=cut +$log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));