/[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 10 by dpavlin, Thu Jan 16 17:35:54 2003 UTC revision 34 by dpavlin, Sun Feb 23 08:06:07 2003 UTC
# Line 7  use Data::Dumper; Line 7  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  use Text::Iconv;  use Text::Iconv;
10    use Config::IniFiles;
11    
12  $|=1;  $|=1;
13    
14  my $config;  my $config_file = $0;
15    $config_file =~ s/\.pl$/.conf/;
16    die "FATAL: can't find configuration file '$config_file'" if (! -e $config_file);
17    
18  $config=XMLin(undef, forcearray => [ 'isis' ], forcecontent => 1);  my $config;
19    
20  use index_DBI;  # there is no other, right now ;-)  use index_DBI;  # there is no other, right now ;-)
21    
# Line 29  my %opts; Line 31  my %opts;
31    
32  getopts('d:m:qs', \%opts);  getopts('d:m:qs', \%opts);
33    
34  my $db_dir = $opts{d} || "ps";  # FIX  my $db_dir;
35    
36  #die "usage: $0 -d [database_dir] -m [database1,database2] " if (! %opts);  #die "usage: $0 -d [database_dir] -m [database1,database2] " if (! %opts);
37    
# Line 38  my $db_dir = $opts{d} || "ps"; # FIX Line 40  my $db_dir = $opts{d} || "ps"; # FIX
40    
41  Text::Iconv->raise_error(1);     # Conversion errors raise exceptions  Text::Iconv->raise_error(1);     # Conversion errors raise exceptions
42    
43  my $isis_codepage = Text::Iconv->new($config->{isis_codepage},'UTF8');  my $isis_codepage;
44  my $index_codepage = Text::Iconv->new($config->{isis_codepage},$config->{index_codepage});  my $index_codepage;
45  my $cludge_codepage = Text::Iconv->new('UTF8','ISO8859-1');  my $cludge_codepage = Text::Iconv->new('UTF8','ISO8859-1');
46    my $xml_codepage;
47    
48    my $XML_CHARSET = 'UTF8';
49    
50    
51  sub isis2xml {  sub isis2xml {
52    
53          use xmlify;          use xmlify;
54    
55          my $row = shift @_;          my $row = shift @_;
56            my $add_xml = shift @_;
57    
58          my $xml;          my $xml;
         $xml .= xmlify('db_dir',$db_dir);       # FIX remove?  
59    
60          use parse_format;          use parse_format;
61    
62            my $html = "";          # html formatted display output
63    
64            my %field_usage;        # counter for usage of each field
65    
66            # sort subrouting using order="" attribute
67            sub by_order {
68                    return 0 if (! $config->{indexer}->{$a}->{order});
69                    return 0 if (! $config->{indexer}->{$b}->{order});
70    
71                    return $config->{indexer}->{$a}->{order} <=>
72                            $config->{indexer}->{$b}->{order} ;
73            }
74    
75            foreach my $field (sort by_order keys %{$config->{indexer}}) {
76    
77          foreach my $field (keys %{$config->{indexer}}) {                  $field_usage{$field}++;
78    
79                  my $swish_data = "";                  my $swish_data = "";
80                  my $display_data = "";                  my $display_data = "";
81                  my $index_data = "";                  my $line_delimiter = "";
82    
83                    my ($swish,$display);
84    
85                  foreach my $x (@{$config->{indexer}->{$field}->{isis}}) {                  foreach my $x (@{$config->{indexer}->{$field}->{isis}}) {
86    
87                          my $format = $x->{content};                          my $format = $x->{content};
88                            my $delimiter = $x->{delimiter} || ' ';
89    
90                            # FIX: this is ugly, UGLY, cludge string is returned
91                            # in UTF8 encoding , but as if source charset
92                            # is ISO8859-1 and not some other. This break other
93                            # character encodings, so we convert it first
94                            # back to ISO8859-1
95                            $format = $xml_codepage->convert($format);
96                            $delimiter = $xml_codepage->convert($delimiter) if ($delimiter);
97    
98                            my $isis_i = 0;         # isis repeatable offset
99    
100                          my ($s,$d,$i) = (1,1,0);        # swish, display default                          my ($s,$d,$i) = (1,1,0);        # swish, display default
101                          $s = 0 if (lc($x->{type}) eq "display");                          $s = 0 if (lc($x->{type}) eq "display");
102                          $d = 0 if (lc($x->{type}) eq "swish");                          $d = 0 if (lc($x->{type}) eq "swish");
103                          ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");                          ($s,$d,$i) = (0,0,1) if (lc($x->{type}) eq "index");
104  #print STDERR "## s: $s d: $d i: $i ## $format ##\n";    #print STDERR "## s: $s d: $d i: $i ## $format ##\n";  
105    
106                          $format = $cludge_codepage->convert($format);                          if ($x->{append}) {
107                          my ($swish,$display) = parse_format($format,$row);                                  $line_delimiter = ' ';
108                            } else {
109                                    $line_delimiter = '<br/>';
110                            }
111    
112                            $display_data .= $line_delimiter if ($display_data && $display);
113                            # init vars so that we go into while...
114                            ($swish,$display) = (1,1);
115    
116                            while ($swish || $display) {
117                                    ($swish,$display) = parse_format($format,$row,$isis_i++);
118  #print STDERR "s: $swish\nd: $display\n" if ($swish);  #print STDERR "s: $swish\nd: $display\n" if ($swish);
119    
120  #print STDERR "swish: $swish<-- display: $display<--\n";  #print STDERR "swish: $swish<-- display: $display<--\n";
121                          # FIX: this is ugly, UGLY, cludge: OpenIsis return  
122                          # UTF8 encoding of strings, but as if source charset                                  # filter="name" ; filter this field through
123                          # is ISO8859-1 and not some other. This breaks our                                  # filter/[name].pm
124                          # isis character encoding, so we convert it first                                  my $filter = $x->{filter};
125                          # back to ISO8859-1 (which can actually be different                                  if ($filter) {
126                          # encoding in isis)                                          require "filter/".$filter.".pm";
127                                    }
128                          $swish_data .= $swish if ($s && $swish);                                  # type="swish" ; field for swish
129                          $display_data .= $display if ($d && $display);                                  if ($s && $swish) {
130                          $index_data .= $display if ($i && $display);                                          if ($filter) {
131    #print STDERR "using filter '$filter'\n";
132                                                    no strict 'refs';
133                                                    $swish_data .= join(" ",&$filter($swish));
134                                            } else {
135                                                    $swish_data .= $swish;
136                                            }
137                                    }
138    
139                                    # type="display" ; field for display
140                                    if ($d && $display) {
141                                            if ($filter) {
142                                                    no strict 'refs';
143                                                    $display_data .= join($delimiter,&$filter($display));
144                                            } else {
145                                                    if ($display_data) {
146                                                            $display_data .= $delimiter.$display;
147                                                    } else {
148                                                            $display_data .= $display;
149                                                    }
150                                            }
151                                    }
152                                                    
153                                    # type="index" ; insert into index
154                                    if ($i && $display) {
155                                            my $index_data = $index_codepage->convert($display) || $display;
156                                            if ($filter) {
157                                                    no strict 'refs';
158                                                    foreach my $d (&$filter($index_data)) {
159                                                            $index->insert($field, $d, $db_dir);
160                                                    }
161                                            } else {
162                                                    $index->insert($field, $index_data, $db_dir);
163                                            }
164                                    }
165                            }
166                  }                  }
167    
168    
169  #print STDERR "s_d: $swish_data\nd_d: $display_data\n" if ($swish_data);  #print STDERR "s_d: $swish_data\nd_d: $display_data\n" if ($swish_data);
170                  if ($display_data) {                  if ($display_data) {
171                          $display_data = $isis_codepage->convert($display_data)."##" || $display_data;  
172                          $xml .= xmlify($field."_display", $display_data);                          # remove last <br>
173                            $display_data =~ s/$line_delimiter$//;
174    
175                            $display_data = $isis_codepage->convert($display_data) || die "Can't convert '$display_data' !";
176                            # FIX: this is removed and replaced by html tag.
177                            #$xml .= xmlify($field."_display", $display_data);
178    
179                            if ($field eq "headline") {
180                                    $xml .= xmlify("headline", $display_data);
181                            } else {
182    
183                                    # find field name (signular, plural)
184                                    my $field_name = "";
185                                    if ($config->{indexer}->{$field}->{name_singular} && $field_usage{$field} == 1) {
186                                            $field_name = $config->{indexer}->{$field}->{name_singular}."#-#";
187                                    } elsif ($config->{indexer}->{$field}->{name_plural}) {
188                                            $field_name = $config->{indexer}->{$field}->{name_plural}."#-#";
189                                    } elsif ($config->{indexer}->{$field}->{name}) {
190                                            $field_name = $config->{indexer}->{$field}->{name}."#-#";
191                                    } else {
192                                            print STDERR "WARNING: field '$field' doesn't have 'name' attribute!";
193                                    }
194                                    if ($field_name) {
195                                            $html .= $xml_codepage->convert($field_name);
196    #                                       $html .= "-->".$field_name."<--";
197                                    }
198                                    $html .= $display_data."###\n";
199                            }
200                  }                  }
201                  if ($swish_data) {                  if ($swish_data) {
202                          my $i = Text::Iconv->new($config->{isis_codepage},'ISO8859-2');                          my $i = Text::Iconv->new($config->{isis_codepage},'ISO8859-2');
203                            # remove extra spaces
204                            $swish_data =~ s/ +/ /g;
205                            $swish_data =~ s/ +$//g;
206    
207                          $swish_data = $i->convert($swish_data);                          $swish_data = $i->convert($swish_data);
208                          $xml .= xmlify($field."_swish",unac_string('ISO8859-2',$swish_data));                          $xml .= xmlify($field."_swish",unac_string('ISO8859-2',$swish_data));
209                          #$swish_data = $isis_codepage->convert($swish_data)."##" || $swish_data;                          #$swish_data = $isis_codepage->convert($swish_data)."##" || $swish_data;
210                          #$xml .= xmlify($field."_swish",unac_string($config->{isis_codepage},$swish_data));                          #$xml .= xmlify($field."_swish",unac_string($config->{isis_codepage},$swish_data));
211                  }                  }
212    
                 # index  
                 if ($index_data && $index_data ne "") {  
                         $index_data = $index_codepage->convert($index_data) || $index_data;  
                         $index->insert($field, $index_data, $db_dir);  
                 }  
213    
214          }          }
215    
216            # dump formatted output in <html>
217            if ($html) {
218                    $xml .= xmlify("html",$html);
219            }
220            
221          if ($xml) {          if ($xml) {
222  #print STDERR "x: $xml\n";  #print STDERR "x: $xml\n";
223                    $xml .= $add_xml if ($add_xml);
224                  return "<xml>\n$xml</xml>\n";                  return "<xml>\n$xml</xml>\n";
225          } else {          } else {
226                  return;                  return;
# Line 116  sub isis2xml { Line 229  sub isis2xml {
229    
230  ##########################################################################  ##########################################################################
231    
232  my $last_tell=0;  my $cfg = new Config::IniFiles( -file => $config_file );
   
 my @isis_dirs = ( '.' );        # use dirname as database name  
   
 if ($opts{m}) {  
         @isis_dirs = split(/,/,$opts{m});  
 }  
   
 my @isis_dbs;  
   
 foreach (@isis_dirs) {  
         if (-e $config->{isis_data}."/$db_dir/$_/LIBRI") {  
                 push @isis_dbs,$config->{isis_data}."/$db_dir/$_/LIBRI/LIBRI";  
         }  
         if (-e $config->{isis_data}."/$db_dir/$_/PERI") {  
                 push @isis_dbs,$config->{isis_data}."/$db_dir/$_/PERI/PERI";  
         }  
         if (-e $config->{isis_data}."/$db_dir/$_/AMS") {  
                 push @isis_dbs,$config->{isis_data}."/$db_dir/$_/AMS/AMS";  
         }  
         if (-e $config->{isis_data}."/$db_dir/$_/ARTI") {  
 #               push @isis_dbs,$config->{isis_data}."/$db_dir/$_/ARTI/ARTI";  
         }  
 }  
   
 print STDERR "FATAL: Can't find isis database.\nPerhaps isis_data (".$config->{isis_data}.") has wrong value?\n" if (! @isis_dbs);  
   
 my $db;  
233    
234  foreach my $isis_db (@isis_dbs) {  foreach my $database ($cfg->Sections) {
235    
236            my $isis_db = $cfg -> val($database, 'isis_db');
237            my $type = $cfg -> val($database, 'type');
238            my $add_xml = $cfg -> val($database, 'xml');
239    
240            # read configuration for this type
241            $config=XMLin("./import_xml/$type.xml", forcearray => [ 'isis' ], forcecontent => 1);
242            $isis_codepage = Text::Iconv->new($config->{isis_codepage},$XML_CHARSET);
243            $index_codepage = Text::Iconv->new($config->{isis_codepage},$config->{index_codepage});
244            $xml_codepage = Text::Iconv->new($cfg->val($database,'xml_codepage'),$XML_CHARSET);
245    
246          my $db = OpenIsis::open( $isis_db );          my $db = OpenIsis::open( $isis_db );
247          if (0) {          if (0) {
# Line 160  foreach my $isis_db (@isis_dbs) { Line 255  foreach my $isis_db (@isis_dbs) {
255    
256          print STDERR "Reading database: $isis_db [$max_rowid rows]\n";          print STDERR "Reading database: $isis_db [$max_rowid rows]\n";
257    
258          my $path = $isis_db;          my $path = $database;                   # was $isis_db
         $path =~ s#$config->{isis_data}/*##g;  
259    
260          my $last_p = 0;          my $last_p = 0;
261    
# Line 178  foreach my $isis_db (@isis_dbs) { Line 272  foreach my $isis_db (@isis_dbs) {
272                                  $last_p = $p;                                  $last_p = $p;
273                          }                          }
274    
275                          if (my $xml = isis2xml($row)) {                          if (my $xml = isis2xml($row,$add_xml)) {
276  #print STDERR "--ret-->$xml\n";  #print STDERR "--ret-->$xml\n";
277                                  print "Path-Name: $path#".int($row->{mfn})."\n";                                  print "Path-Name: $path#".int($row->{mfn})."\n";
278                                  print "Content-Length: ".(length($xml)+1)."\n";                                  print "Content-Length: ".(length($xml)+1)."\n";

Legend:
Removed from v.10  
changed lines
  Added in v.34

  ViewVC Help
Powered by ViewVC 1.1.26