/[webpac]/trunk/all2xml.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 /trunk/all2xml.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9 by dpavlin, Sat Jan 11 19:55:30 2003 UTC revision 59 by dpavlin, Fri Jul 4 17:57:11 2003 UTC
# Line 6  use Getopt::Std; Line 6  use Getopt::Std;
6  use Data::Dumper;  use Data::Dumper;
7  use XML::Simple;  use XML::Simple;
8  use Text::Unaccent 1.02;        # 1.01 won't compile on my platform,  use Text::Unaccent 1.02;        # 1.01 won't compile on my platform,
9  require Unicode::Map8;  use Text::Iconv;
10  use DBI;  use Config::IniFiles;
11    use Encode;
12    
13  my $config=XMLin(undef, forcearray => [ 'isis' ], forcecontent => 1);  $|=1;
 my $dbh = DBI->connect("DBI:Pg:dbname=webpac","","") || die $DBI::errstr; # FIX  
 # FIX; select relname from pg_class where relname like 'index_%' ;  
 $dbh->begin_work || die $dbh->errstr();  
14    
15  $dbh->do("delete from index_author") || die $dbh->errstr();  my $config_file = $0;
16  $dbh->do("delete from index_title") || die $dbh->errstr();  $config_file =~ s/\.pl$/.conf/;
17    die "FATAL: can't find configuration file '$config_file'" if (! -e $config_file);
18    
19    my $config;
20    
21    #use index_DBI;         # default DBI module for index
22    use index_DBI_cache;    # faster DBI module using memory cache
23    my $index;
24    
25  my %opts;  my %opts;
26    
# Line 27  my %opts; Line 32  my %opts;
32    
33  getopts('d:m:qs', \%opts);  getopts('d:m:qs', \%opts);
34    
35  my $db_dir = $opts{d} || "ps";  # FIX  my $path;       # this is name of database
36    
37    Text::Iconv->raise_error(0);     # Conversion errors don't raise exceptions
38    
39    # this is encoding of all files on disk, including import_xml/*.xml file and
40    # filter/*.pm files! It will be used to store strings in perl internally!
41    my $codepage = 'ISO-8859-2';
42    
43    my $utf2cp = Text::Iconv->new('UTF-8',$codepage);
44    # this function will convert data from XML files to local encoding
45    sub x {
46            return $utf2cp->convert($_[0]);
47    }
48    
49  #die "usage: $0 -d [database_dir] -m [database1,database2] " if (! %opts);  # decode isis/excel or other import codepage
50    my $import2cp;
51    
52  #print Dumper($config->{indexer});  # outgoing xml must be in UTF-8
53  #print "-" x 70,"\n";  my $cp2utf = Text::Iconv->new($codepage,'UTF-8');
54    
55  # how to convert isis code page to UTF8?  # mapping between data type and tag which specify
56  my $isis_map = Unicode::Map8->new($config->{isis_codepage}) || die;  # format in XML file
57    my %type2tag = (
58            'isis' => 'isis',
59            'excel' => 'column'
60    );
61    
62  sub isis2xml {  sub data2xml {
63    
64            use xmlify;
65    
66            my $type = shift @_;
67          my $row = shift @_;          my $row = shift @_;
68            my $add_xml = shift @_;
69            # needed to read values from configuration file
70            my $cfg = shift @_;
71            my $database = shift @_;
72    
73          my $xml;          my $xml;
         $xml->{db_dir} = [ $db_dir ];   # FIX remove?  
74    
75          sub isis_sf {          use parse_format;
76                  my $row = shift @_;  
77                  my $isis_id = shift @_;          my $html = "";          # html formatted display output
78                  my $subfield = shift @_;  
79                  if ($row->{$isis_id}->[0]) {          my %field_usage;        # counter for usage of each field
80                          my $sf = OpenIsis::subfields($row->{$isis_id}->[0]);  
81                          if (! defined $subfield || length($subfield) == 0) {          # sort subrouting using order="" attribute
82                                  # subfield list undef, empty or no defined subfields for this record          sub by_order {
83                                  my $all_sf = $row->{$isis_id}->[0];                  return 0 if (! $config->{indexer}->{$a}->{order});
84                                  $all_sf =~ s/\^./ /g;   nuke definirions                  return 0 if (! $config->{indexer}->{$b}->{order});
85                                  return $all_sf;  
86                          } elsif ($sf->{$subfield}) {                  return $config->{indexer}->{$a}->{order} <=>
87                                  return $sf->{$subfield};                          $config->{indexer}->{$b}->{order} ;
                         }  
                 }  
88          }          }
89    
90          foreach my $field (keys %{$config->{indexer}}) {          foreach my $field (sort by_order keys %{$config->{indexer}}) {
91    
92                    $field=x($field);
93    
94                    $field_usage{$field}++;
95    
                 my $display_data = "";  
96                  my $swish_data = "";                  my $swish_data = "";
97                  my $index_data = "";                  my $display_data = "";
98                    my $line_delimiter;
99    
100                    my ($swish,$display);
101    
102                    my $tag = $type2tag{$type} || die "can't find which tag to use for type $type";
103                    foreach my $x (@{$config->{indexer}->{$field}->{$tag}}) {
104    
105                  foreach my $x (@{$config->{indexer}->{$field}->{isis}}) {                          my $format = x($x->{content});
106                            my $delimiter = x($x->{delimiter}) || ' ';
107    
108                          my $display_tmp = "";                          my $repeat_off = 0;             # repeatable offset
109                          my $swish_tmp = "";  
110                          my $index_tmp = "";                          my ($s,$d,$i) = (1,1,0);        # swish, display default
   
                         my $format = $x->{content};  
                         my $s = 1;      # swish only  
                         my $d = 1;      # display only  
                         my $i = 0;      # index only  
111                          $s = 0 if (lc($x->{type}) eq "display");                          $s = 0 if (lc($x->{type}) eq "display");
112                          $d = 0 if (lc($x->{type}) eq "swish");                          $d = 0 if (lc($x->{type}) eq "swish");
113                          ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");                          ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");
114  #print STDERR "## s: $s d: $d i: $i ## $format ##\n";    
115                          # parse format                          # what will separate last line from this one?
116                          my $prefix = "";                          if ($display_data && $x->{append} && $x->{append} eq "1") {
117                          if ($format =~ s/^([^\d]+)//) {                                  $line_delimiter = ' ';
118                                  $prefix = $1;                          } elsif ($display_data) {
119                          }                                  $line_delimiter = '<br/>';
120                          while ($format) {                          }
121                                  if ($format =~ s/^(\d\d\d)(\w?)//) {  
122                                          my $isis_tmp = isis_sf($row,$1,$2);                          # init vars so that we go into while...
123                                          if ($isis_tmp) {                          ($swish,$display) = (1,1);
124  #                                               $display_tmp .= $prefix . "/$1/$2/".$isis_tmp if ($d);  
125                                                  $display_tmp .= $prefix . $isis_tmp if ($d);                          if ($swish || $display) {
126                                                  $swish_tmp .= $isis_tmp." " if ($s);                                  ($swish,$display) = parse_format($type, $format,$row,$repeat_off++,$import2cp);
127                                                  $index_tmp .= $prefix . $isis_tmp if ($i);                                  # filter="name" ; filter this field through
128  #print STDERR " $isis_tmp <--\n";                                  # filter/[name].pm
129                                    my $filter = $x->{filter};
130                                    if ($filter) {
131                                            require "filter/".$filter.".pm";
132                                    }
133                                    # type="swish" ; field for swish
134                                    if ($s && $swish) {
135                                            if ($filter) {
136                                                    no strict 'refs';
137                                                    $swish_data .= join(" ",&$filter($swish));
138                                            } else {
139                                                    $swish_data .= $swish;
140                                            }
141                                    }
142    
143                                    # type="display" ; field for display
144                                    if ($d && $display) {
145                                            if ($line_delimiter && $display_data) {
146                                                    $display_data .= $line_delimiter;
147                                                    undef $line_delimiter;
148                                            }
149                                            if ($filter) {
150                                                    no strict 'refs';
151                                                    $display_data .= join($delimiter,&$filter($display));
152                                            } else {
153                                                    if ($display_data) {
154                                                            $display_data .= $delimiter.$display;
155                                                    } else {
156                                                            $display_data .= $display;
157                                                    }
158                                            }
159                                    }
160                                                    
161                                    # type="index" ; insert into index
162                                    if ($i && $display) {
163                                            my $index_data = $display;
164                                            if ($filter) {
165                                                    no strict 'refs';
166                                                    foreach my $d (&$filter($index_data)) {
167                                                            $index->insert($field, $d, $path);
168                                                    }
169                                            } else {
170                                                    $index->insert($field, $index_data, $path);
171                                          }                                          }
172                                          $prefix = "";                                  }
173                                  } elsif ($format =~ s/^([^\d]+)//) {                          }
174                                          $prefix = $1;                  }
175    
176                    # now try to parse variables from configuration file
177                    foreach my $x (@{$config->{indexer}->{$field}->{'config'}}) {
178    
179                            my $val = $cfg->val($database, x($x->{content}));
180    
181                            my ($s,$d,$i) = (1,1,0);        # swish, display default
182                            $s = 0 if (lc($x->{type}) eq "display");
183                            $d = 0 if (lc($x->{type}) eq "swish");
184                            ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");
185    
186                            if ($val) {
187                                    $display_data .= $val if ($d);
188                                    $swish_data .= $val if ($s);
189                                    $index->insert($field, $val, $path) if ($i);
190                            }
191    
192                    }
193    
194    
195                    if ($display_data) {
196    
197                            if ($field eq "headline") {
198                                    $xml .= xmlify("headline", $display_data);
199                            } else {
200    
201                                    # find field name (signular, plural)
202                                    my $field_name = "";
203                                    if ($config->{indexer}->{$field}->{name_singular} && $field_usage{$field} == 1) {
204                                            $field_name = $config->{indexer}->{$field}->{name_singular}."#-#";
205                                    } elsif ($config->{indexer}->{$field}->{name_plural}) {
206                                            $field_name = $config->{indexer}->{$field}->{name_plural}."#-#";
207                                    } elsif ($config->{indexer}->{$field}->{name}) {
208                                            $field_name = $config->{indexer}->{$field}->{name}."#-#";
209                                  } else {                                  } else {
210                                          print STDERR "WARNING: unparsed format '$format'\n";                                          print STDERR "WARNING: field '$field' doesn't have 'name' attribute!";
211                                          last;                                  }
212                                  };                                  if ($field_name) {
213                          }                                          $html .= x($field_name);
214                          # add suffix                                  }
215                          $display_tmp .= $prefix if ($display_tmp);                                  $html .= $display_data."###\n";
                         $index_tmp .= $prefix if ($index_tmp);  
   
 #                       $display_data .= $display_tmp if ($display_tmp ne "");  
 #                       $swish_data .= $swish_tmp if ($swish_tmp ne "");  
                         $display_data .= $display_tmp;  
                         $swish_data .= $swish_tmp;  
                         $index_data .= $index_tmp;  
   
                 }  
 #print "--display:$display_data\n--swish:$swish_data\n";  
                 #$xml->{$field."_display"} = $isis_map->tou($display_data)->utf8 if ($display_data);  
                 #$xml->{$field."_swish"} = unac_string($config->{isis_codepage},$swish_data) if ($swish_data);  
                 $xml->{$field."_display" } = [ $isis_map->tou($display_data)->utf8 ] if ($display_data);  
                 $xml->{$field."_swish"} = [ unac_string($config->{isis_codepage},$swish_data) ] if ($swish_data);  
   
                 # index  
                 if ($index_data && $index_data ne "") {  
                         my $sql = "select $field from index_$field where upper($field)=upper(?)";  
                         my $sth = $dbh->prepare($sql) || die $dbh->errstr();  
                         $sth->execute($index_data) || die "SQL: $sql; ".$dbh->errstr();  
 #print STDERR "--->$index_data<---\n";  
                         if (! $sth->fetchrow_hashref) {  
                                 my $sql = "insert into index_$field values (?)";  
                                 my $sth = $dbh->prepare($sql) || die $dbh->errstr();  
 #print STDERR "$sql: $index_data<!----\n";  
                                 $sth->execute($index_data) || die "SQL: $sql; ".$dbh->errstr();  
216                          }                          }
217                  }                  }
218                    if ($swish_data) {
219                            # remove extra spaces
220                            $swish_data =~ s/ +/ /g;
221                            $swish_data =~ s/ +$//g;
222    
223                            $xml .= xmlify($field."_swish", unac_string($codepage,$swish_data));
224                    }
225    
226    
227            }
228    
229            # dump formatted output in <html>
230            if ($html) {
231                    $xml .= xmlify("html",$html);
232          }          }
233            
234          if ($xml) {          if ($xml) {
235                  return XMLout($xml, rootname => 'xml', keeproot => 0, noattr => 0 );                  $xml .= $add_xml if ($add_xml);
236                    return "<xml>\n$xml</xml>\n";
237          } else {          } else {
238                  return;                  return;
239          }          }
# Line 145  sub isis2xml { Line 241  sub isis2xml {
241    
242  ##########################################################################  ##########################################################################
243    
244  my $last_tell=0;  # read configuration for this script
245    my $cfg = new Config::IniFiles( -file => $config_file );
246    
247  my @isis_dirs = ( '.' );        # use dirname as database name  # read global.conf configuration
248    my $cfg_global = new Config::IniFiles( -file => 'global.conf' );
249    
250  if ($opts{m}) {  # open index
251          @isis_dirs = split(/,/,$opts{m});  $index = new index_DBI(
252  }                  $cfg_global->val('global', 'dbi_dbd'),
253                    $cfg_global->val('global', 'dbi_dsn'),
254                    $cfg_global->val('global', 'dbi_user'),
255                    $cfg_global->val('global', 'dbi_passwd') || '',
256            );
257    
258  my @isis_dbs;  foreach my $database ($cfg->Sections) {
259    
260  foreach (@isis_dirs) {          my $type = lc($cfg -> val($database, 'type')) || die "$database doesn't have 'type' defined";
261          if (-e $config->{isis_data}."/$db_dir/$_/LIBRI") {          my $add_xml = $cfg -> val($database, 'xml');    # optional
262                  push @isis_dbs,$config->{isis_data}."/$db_dir/$_/LIBRI/LIBRI";  
263          }  print STDERR "reading ./import_xml/$type.xml\n";
264          if (-e $config->{isis_data}."/$db_dir/$_/PERI") {  
265                  push @isis_dbs,$config->{isis_data}."/$db_dir/$_/PERI/PERI";          # extract just type basic
266          }          my $type_base = $type;
267          if (-e $config->{isis_data}."/$db_dir/$_/AMS") {          $type_base =~ s/_.+$//g;
268                  push @isis_dbs,$config->{isis_data}."/$db_dir/$_/AMS/AMS";  
269          }          $config=XMLin("./import_xml/$type.xml", forcearray => [ $type2tag{$type_base}, 'config' ], forcecontent => 1);
270          if (-e $config->{isis_data}."/$db_dir/$_/ARTI") {  
271  #               push @isis_dbs,$config->{isis_data}."/$db_dir/$_/ARTI/ARTI";          # output current progress indicator
272            my $last_p = 0;
273            sub progress {
274                    #return if (! $opts{q});        # FIXME
275                    my $current = shift;
276                    my $total = shift || 1;
277                    my $p = int($current * 100 / $total);
278                    if ($p != $last_p) {
279                            printf STDERR ("%5d / %5d [%-51s] %-2d %% \r",$current,$total,"=" x ($p/2).">", $p );
280                            $last_p = $p;
281                    }
282          }          }
 }  
283    
284  print STDERR "FATAL: Can't find isis database.\nPerhaps isis_data (".$config->{isis_data}.") has wrong value?\n" if (! @isis_dbs);          # now read database
285    print STDERR "using: $type...\n";
286    
287  my $db;          if ($type_base eq "isis") {
288    
289  foreach my $isis_db (@isis_dbs) {                  my $isis_db = $cfg -> val($database, 'isis_db') || die "$database doesn't have 'isis_db' defined!";
290    
291                    $import2cp = Text::Iconv->new($config->{isis_codepage},$codepage);
292                    my $db = OpenIsis::open( $isis_db );
293    
294          my $db = OpenIsis::open( $isis_db );                  my $max_rowid = OpenIsis::maxRowid( $db );
         if (0) {  
 #       # FIX  
 #       if (! $db ) {  
                 print STDERR "WARNING: can't open '$isis_db'\n";  
                 next ;  
         }  
295    
296          my $max_rowid = OpenIsis::maxRowid( $db );                  print STDERR "Reading database: $isis_db [$max_rowid rows]\n";
297    
298          print STDERR "Reading database: $isis_db [$max_rowid rows]\n";                  my $path = $database;
299    
300          my $last_p = 0;                  for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {
301                            my $row = OpenIsis::read( $db, $row_id );
302                            if ($row && $row->{mfn}) {
303            
304                                    progress($row->{mfn}, $max_rowid);
305    
306                                    my $swishpath = $path."#".int($row->{mfn});
307    
308                                    if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {
309                                            $xml = $cp2utf->convert($xml);
310                                            use bytes;      # as opposed to chars
311                                            print "Path-Name: $swishpath\n";
312                                            print "Content-Length: ".(length($xml)+1)."\n";
313                                            print "Document-Type: XML\n\n$xml\n";
314                                    }
315                            }
316                    }
317                    print STDERR "\n";
318    
319            } elsif ($type_base eq "excel") {
320                    use Spreadsheet::ParseExcel;
321                    use Spreadsheet::ParseExcel::Utility qw(int2col);
322                    
323                    $import2cp = Text::Iconv->new($config->{excel_codepage},$codepage);
324                    my $excel_file = $cfg -> val($database, 'excel_file') || die "$database doesn't have 'excel_file' defined!";
325    
326                    my $sheet = x($config->{sheet}) || die "no sheet in $type.xml";
327                    my $start_row = x($config->{start_row}) - 1 || die "no start_row in $type.xml";
328    
329                    my $oBook = Spreadsheet::ParseExcel::Workbook->Parse($excel_file) || die "can't open Excel file '$excel_file'";
330    
331                    my $sheet_nr = 0;
332                    foreach my $oWks (@{$oBook->{Worksheet}}) {
333                            #print STDERR "-- SHEET $sheet_nr:", $oWks->{Name}, "\n";
334                            last if ($oWks->{Name} eq $sheet);
335                            $sheet_nr++;
336                    }
337    
338                    my $oWorksheet = $oBook->{Worksheet}[$sheet_nr];
339            
340                    print STDERR "using sheet: ",$oWorksheet->{Name},"\n";
341                    defined ($oWorksheet) || die "can't find sheet '$sheet' in $excel_file";
342                    my $end_row = x($config->{end_row}) || $oWorksheet->{MaxRow};
343    
344                    for(my $iR = $start_row ; defined $end_row && $iR <= $end_row ; $iR++) {
345                            my $row;
346                            for(my $iC = $oWorksheet->{MinCol} ; defined $oWorksheet->{MaxCol} && $iC <= $oWorksheet->{MaxCol} ; $iC++) {
347                                    my $cell = $oWorksheet->{Cells}[$iR][$iC];
348                                    if ($cell) {
349                                            $row->{int2col($iC)} = $cell->Value;
350                                    }
351                            }
352    
353                            progress($iR, $end_row);
354    
355  #       { my $row_id = 1;  #                       print "row[$iR/$end_row] ";
356  # FIX  #                       foreach (keys %{$row}) {
357          for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {  #                               print "$_: ",$row->{$_},"\t";
358                  my $row = OpenIsis::read( $db, $row_id );  #                       }
359                  if ($row && $row->{mfn}) {  #                       print "\n";
360    
361                          # output current process indicator                          my $swishpath = $database."#".$iR;
362                          my $p = int($row->{mfn} * 100 / $max_rowid);  
363                          if ($p != $last_p) {                          next if (! $row);
364                                  printf STDERR ("%5d / %5d [%-51s] %-2d %% \r",$row->{mfn},$max_rowid,"=" x ($p/2).">", $p ) if (! $opts{q});  
365                                  $last_p = $p;                          if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {
366                          }                                  $xml = $cp2utf->convert($xml);
367                                    use bytes;      # as opposed to chars
368                          if (my $xml = isis2xml($row)) {                                  print "Path-Name: $swishpath\n";
369                                  my $path = $isis_db;                                  print "Content-Length: ".(length($xml)+1)."\n";
370                                  $path =~ s#$config->{isis_data}/*##g;                                  print "Document-Type: XML\n\n$xml\n";
                                 my $out = "Path-Name: $path#".$row->{mfn}."\n";  
                                 $out .= "Content-Length: ".(length($xml)+1)."\n";  
                                 $out .= "Document-Type: XML\n\n$xml\n";  
                                 print $out;  
371                          }                          }
372                  }                  }
373          }          }
         print STDERR "\n";  
374  }  }
375    
376  $dbh->commit || die $dbh->errstr();  # call this to commit index
377    $index->close;
378    
379  1;  1;
380  __END__  __END__

Legend:
Removed from v.9  
changed lines
  Added in v.59

  ViewVC Help
Powered by ViewVC 1.1.26