/[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 50 by dpavlin, Sun Jun 1 13:46:42 2003 UTC revision 59 by dpavlin, Fri Jul 4 17:57:11 2003 UTC
# Line 18  die "FATAL: can't find configuration fil Line 18  die "FATAL: can't find configuration fil
18    
19  my $config;  my $config;
20    
21  use index_DBI;  # there is no other, right now ;-)  #use index_DBI;         # default DBI module for index
22    use index_DBI_cache;    # faster DBI module using memory cache
23  my $index;  my $index;
24    
25  my %opts;  my %opts;
# Line 33  getopts('d:m:qs', \%opts); Line 34  getopts('d:m:qs', \%opts);
34    
35  my $path;       # this is name of database  my $path;       # this is name of database
36    
37  Text::Iconv->raise_error(1);     # Conversion errors raise exceptions  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  # 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!  # filter/*.pm files! It will be used to store strings in perl internally!
# Line 45  sub x { Line 46  sub x {
46          return $utf2cp->convert($_[0]);          return $utf2cp->convert($_[0]);
47  }  }
48    
49  # decode isis import codepage  # decode isis/excel or other import codepage
50  my $isis2cp;  my $import2cp;
51    
52  # outgoing xml must be in UTF-8  # outgoing xml must be in UTF-8
53  my $cp2utf = Text::Iconv->new($codepage,'UTF-8');  my $cp2utf = Text::Iconv->new($codepage,'UTF-8');
54    
55  sub isis2xml {  # mapping between data type and tag which specify
56    # format in XML file
57    my %type2tag = (
58            'isis' => 'isis',
59            'excel' => 'column'
60    );
61    
62    sub data2xml {
63    
64          use xmlify;          use xmlify;
65    
66            my $type = shift @_;
67          my $row = shift @_;          my $row = shift @_;
68          my $add_xml = shift @_;          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;
74    
# Line 87  sub isis2xml { Line 99  sub isis2xml {
99    
100                  my ($swish,$display);                  my ($swish,$display);
101    
102                  foreach my $x (@{$config->{indexer}->{$field}->{isis}}) {                  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                          my $format = x($x->{content});                          my $format = x($x->{content});
106                          my $delimiter = x($x->{delimiter}) || ' ';                          my $delimiter = x($x->{delimiter}) || ' ';
107    
108                          my $isis_i = 0;         # isis repeatable offset                          my $repeat_off = 0;             # repeatable offset
109    
110                          my ($s,$d,$i) = (1,1,0);        # swish, display default                          my ($s,$d,$i) = (1,1,0);        # swish, display default
111                          $s = 0 if (lc($x->{type}) eq "display");                          $s = 0 if (lc($x->{type}) eq "display");
# Line 109  sub isis2xml { Line 122  sub isis2xml {
122                          # init vars so that we go into while...                          # init vars so that we go into while...
123                          ($swish,$display) = (1,1);                          ($swish,$display) = (1,1);
124    
125                          while ($swish || $display) {                          if ($swish || $display) {
126                                  ($swish,$display) = parse_format($format,$row,$isis_i++,$isis2cp);                                  ($swish,$display) = parse_format($type, $format,$row,$repeat_off++,$import2cp);
   
127                                  # filter="name" ; filter this field through                                  # filter="name" ; filter this field through
128                                  # filter/[name].pm                                  # filter/[name].pm
129                                  my $filter = $x->{filter};                                  my $filter = $x->{filter};
# Line 161  sub isis2xml { Line 173  sub isis2xml {
173                          }                          }
174                  }                  }
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) {                  if ($display_data) {
196    
# Line 211  sub isis2xml { Line 241  sub isis2xml {
241    
242  ##########################################################################  ##########################################################################
243    
244    # read configuration for this script
245  my $cfg = new Config::IniFiles( -file => $config_file );  my $cfg = new Config::IniFiles( -file => $config_file );
246    
247    # read global.conf configuration
248    my $cfg_global = new Config::IniFiles( -file => 'global.conf' );
249    
250  # open index  # open index
251  $index = new index_DBI(  $index = new index_DBI(
252                  $cfg->val('global', 'dbi_dbd'),                  $cfg_global->val('global', 'dbi_dbd'),
253                  $cfg->val('global', 'dbi_dsn'),                  $cfg_global->val('global', 'dbi_dsn'),
254                  $cfg->val('global', 'dbi_user'),                  $cfg_global->val('global', 'dbi_user'),
255                  $cfg->val('global', 'dbi_passwd') || '',                  $cfg_global->val('global', 'dbi_passwd') || '',
256          );          );
257    
 # delete [global] section to leave just databases sections  
 $cfg->DeleteSection('global');  
   
258  foreach my $database ($cfg->Sections) {  foreach my $database ($cfg->Sections) {
259    
260          my $isis_db = $cfg -> val($database, 'isis_db') || die "$database doesn't have 'isis_db' defined!";          my $type = lc($cfg -> val($database, 'type')) || die "$database doesn't have 'type' defined";
         my $type = $cfg -> val($database, 'type') || die "$database doesn't have 'type' defined";  
261          my $add_xml = $cfg -> val($database, 'xml');    # optional          my $add_xml = $cfg -> val($database, 'xml');    # optional
262    
263          $config=XMLin("./import_xml/$type.xml", forcearray => [ 'isis' ], forcecontent => 1);  print STDERR "reading ./import_xml/$type.xml\n";
264    
265            # extract just type basic
266            my $type_base = $type;
267            $type_base =~ s/_.+$//g;
268    
269          $isis2cp = Text::Iconv->new($config->{isis_codepage},$codepage);          $config=XMLin("./import_xml/$type.xml", forcearray => [ $type2tag{$type_base}, 'config' ], forcecontent => 1);
270    
271          my $db = OpenIsis::open( $isis_db );          # output current progress indicator
272          if (0) {          my $last_p = 0;
273  #       # FIX          sub progress {
274  #       if (! $db ) {                  #return if (! $opts{q});        # FIXME
275                  print STDERR "WARNING: can't open '$isis_db'\n";                  my $current = shift;
276                  next ;                  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          my $max_rowid = OpenIsis::maxRowid( $db );          # now read database
285    print STDERR "using: $type...\n";
286    
287          print STDERR "Reading database: $isis_db [$max_rowid rows]\n";          if ($type_base eq "isis") {
288    
289          my $path = $database;                   # was $isis_db                  my $isis_db = $cfg -> val($database, 'isis_db') || die "$database doesn't have 'isis_db' defined!";
290    
291          my $last_p = 0;                  $import2cp = Text::Iconv->new($config->{isis_codepage},$codepage);
292                    my $db = OpenIsis::open( $isis_db );
293    
294                    my $max_rowid = OpenIsis::maxRowid( $db );
295    
296                    print STDERR "Reading database: $isis_db [$max_rowid rows]\n";
297    
298                    my $path = $database;
299    
300                    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  #       { my $row_id = 4514;          } elsif ($type_base eq "excel") {
320  # FIX                  use Spreadsheet::ParseExcel;
321          for (my $row_id = 1; $row_id <= $max_rowid; $row_id++ ) {                  use Spreadsheet::ParseExcel::Utility qw(int2col);
322                  my $row = OpenIsis::read( $db, $row_id );                  
323                  if ($row && $row->{mfn}) {                  $import2cp = Text::Iconv->new($config->{excel_codepage},$codepage);
324                          # output current process indicator                  my $excel_file = $cfg -> val($database, 'excel_file') || die "$database doesn't have 'excel_file' defined!";
325                          my $p = int($row->{mfn} * 100 / $max_rowid);  
326                          if ($p != $last_p) {                  my $sheet = x($config->{sheet}) || die "no sheet in $type.xml";
327                                  printf STDERR ("%5d / %5d [%-51s] %-2d %% \r",$row->{mfn},$max_rowid,"=" x ($p/2).">", $p ) if (! $opts{q});                  my $start_row = x($config->{start_row}) - 1 || die "no start_row in $type.xml";
328                                  $last_p = $p;  
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                          my $swishpath = $path."#".int($row->{mfn});                          progress($iR, $end_row);
354    
355    #                       print "row[$iR/$end_row] ";
356    #                       foreach (keys %{$row}) {
357    #                               print "$_: ",$row->{$_},"\t";
358    #                       }
359    #                       print "\n";
360    
361                            my $swishpath = $database."#".$iR;
362    
363                            next if (! $row);
364    
365                          if (my $xml = isis2xml($row,$add_xml)) {                          if (my $xml = data2xml($type_base,$row,$add_xml,$cfg,$database)) {
366                                  $xml = $cp2utf->convert($xml);                                  $xml = $cp2utf->convert($xml);
367                                  use bytes;      # as opposed to chars                                  use bytes;      # as opposed to chars
368                                  print "Path-Name: $swishpath\n";                                  print "Path-Name: $swishpath\n";
# Line 273  foreach my $database ($cfg->Sections) { Line 371  foreach my $database ($cfg->Sections) {
371                          }                          }
372                  }                  }
373          }          }
         print STDERR "\n";  
374  }  }
375    
376  # call this to commit index  # call this to commit index

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

  ViewVC Help
Powered by ViewVC 1.1.26