1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
# SAX handler module for tei2dictxml_xml converter
# V1.3 10/2006 Michael Bunk
# * removed trailing white space
# * added error handler, so XML:ESISParser doesn't die() on warnings
# V1.2 5/2004 Michael Bunk
# * added option to generate 00-database-allchars header
# * if reverse index is generated, 00-database-short will indicate it now
# V1.1 4/2004 Michael Bunk
# * when headwords contain entities, characters()
# is called multiple times for the same element:
# now only one call to add_headword()
# will be done
# V1.0 6/2003 Michael Bunk
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, visit
# <http://www.gnu.org/licenses/gpl-2.0.txt>
# thinking about event & calling order of the Dict subs (there is no other doc?):
# 1. set_file_name() -> open_dict()
# 2. <orth> -> set_headword()
# 3. characters() -> $current_headword .= $data;
# 4. end_tag -> add_headword($current_headword)
# 5. </orth> -> end_headword()
# 6. several start_tags -> ( write_direct() | add_text() )
# 7. several end_tags -> write_text()
# 8. </entry> -> write_newline()
# 9. continue with 2. for all other entrys
# 10. closing the filehandles not needed
# for encoding tei header we need some extra:
# V1.1.:
# 1. same
# 2. <teiHeader> -> set_headword(); write_text("00-database-info"); end_headword();
# 3. header start_tags -> add_text(" Info: ");
# 4. tag content (if any) -> add_text($data); and occasionally save to some $var
# 5. header end_tags -> add_text("\n");
# 6. </teiHeader> -> write_text();
# set_headword(); write_text("00-database-short"); end_headword();
# write_direct($database-short);
# set_headword(); write_text("00-database-url"); end_headword();
# write_direct($database-url);
# 7. go on with entrys like in V1.0 (go on at 2. there)
package lib::TEIHandlerxml_xml;
use strict;
use warnings;
use lib::Dict;
use utf8;
# for filtering:
use FileHandle;
use IPC::Open2;
# for sablotron:
use XML::Sablotron;
use XML::Sablotron::DOM;
our ($header, $preLastStartTag, $lastStartTag,
$database_short, $database_url, @higherElements,
$file_name, $skip_header, $state, $quoted,
$filtercmd, $sit, $sab, $reverse_index, $sab_templ,
$current_headword);
# i copied _escape() from XML::Handler::CanonXMLWriter
# for escaping special chars in HTML/XML/SGML
my %char_entities = (
"\x09" => '	',
"\x0a" => ' ',
"\x0d" => ' ',
'&' => '&',
'<' => '<',
'>' => '>',
'"' => '"',
);
sub _escape {
my $string = shift;
$string =~ s/([\x09\x0a\x0d&<>\"])/$char_entities{$1}/ge;
return $string;
}
sub new {
my ($type) = shift;
$header = 0;
$state="";
return bless {}, $type;
}
sub dumpTag {
my $element = shift;
#dump attributes
my $attr="";
if(!defined $element)
{
die "Please make sure the input file is valid!";
}
my %attrhash = %{$element->{Attributes}};
foreach(keys %attrhash) {
$attr .= ' '.$_.'="'._escape($attrhash{$_}).'"';
}
return "<".$element->{Name}.$attr.">";
}
sub apply_filter_cmd {
my ($filtercommand, $quoted) = @_;
if($filtercmd ne "") {
print STDERR ".";
#print "calling open2 with '$filtercmd'...";
#TODO: catch errors from executed filtercmd
# according to 'man perlipc'
my $pid = open2(*Reader, *Writer, $filtercmd );
#print "handing over...";flush STDOUT;
print Writer "$quoted\n";
close(Writer);
#print "reading...";flush STDOUT;
$quoted = <Reader>;
while(!eof(Reader)) { $quoted .= <Reader>; };
#print "\n";flush STDOUT;
waitpid $pid, 0;
}
elsif ($sab) {
# print STDERR "+";
$sab->addArg($sit, 'input', $quoted);
# print STDERR "\ncalling addArgTree...";
$sab->addArgTree($sit, 'template', $sab_templ);
# print STDERR "\ncalling process...";
$sab->process($sit, 'arg:/template', 'arg:/input', 'arg:/output');
# print STDERR "\ncalling getResultArg...";
$quoted = $sab->getResultArg('arg:/output');
# print STDERR "\ngot: $quoted\n\n\n\n";
}
return $quoted;
}
sub set_options {
my ($self, $filename, $askip_header, $aGenerate00DatabaseUtf8, $aLocale,
$aFilterCmd, $aStyleSheet, $aReverseindex, $aAllchars) = @_;
$file_name = $filename;
$file_name =~ s/^(\w*\/)+//g;
$file_name =~ s/(\S*)\.\w*/$1/;
$skip_header=$askip_header;
$filtercmd=$aFilterCmd;
$reverse_index=$aReverseindex;
if ($aStyleSheet) {
print STDERR "initializing Sablotron...\n";
$sab = new XML::Sablotron;
$sit = new XML::Sablotron::Situation;
$sab_templ = XML::Sablotron::DOM::parseStylesheet($sit, $aStyleSheet);
}
Dict->open_dict($file_name,$aLocale,$aGenerate00DatabaseUtf8);
if($aGenerate00DatabaseUtf8)
{
print STDERR "Generating 00-database-utf8\n";
Dict::set_headword(); Dict::add_text("00-database-utf8");
Dict::write_text(); Dict::end_headword();
# might not be needed at all, but we give a hint
Dict::write_direct("\n ");
Dict::write_direct("This dictionary is UTF-8 encoded. If you use dictd, ".
"make sure to start it with the appropriate --locale option.");
Dict::write_newline();
}
if($aAllchars)
{
print STDERR "Generating 00-database-allchars\n";
Dict::set_headword(); Dict::add_text("00-database-allchars");
Dict::write_text(); Dict::end_headword();
Dict::write_newline();
}
}
sub start_element {
my ($self, $element) = @_;
my $part = $element->{Name};
$preLastStartTag = $lastStartTag; $lastStartTag = $part;
# for multiple orths at beginning of <form>
if (!$reverse_index && ($Dict::head) && ($part ne "orth")) { Dict::end_headword() };
# see what tag we have (& remember XML is case sensitive!)
# most frequent tags on top
if (($part eq "entry") ||
($part eq "teiHeader")) {
$quoted = "";
$state = "quoting";
}
elsif ($part eq "orth" && !$reverse_index) {
if ($preLastStartTag eq "form") {Dict::set_headword()}
$state = "orth";$current_headword='';
}
elsif ($part eq "tr" && $reverse_index) {
if (!$Dict::head) {Dict::set_headword()}
$state = "tr";$current_headword='';
}
if ($part eq "revisionDesc") {
# add myself as
# <change>
# <date>now</date>
# <respStmt><name>tei2dict_xml.pl</name></respStmt>
# <item>converted TEI database into .dict format</item>
# </change>
my $now_string = gmtime();
my $s .= "<change>\n <date>$now_string</date>\n";
$s .= " <respStmt><name>tei2dictxml_xml.pl</name></respStmt>\n";
$s .= " <item>converted TEI database into .dict format</item></change>\n";
$quoted .= dumpTag($element) . $s;
# printf STDERR "new revisionDesc: $quoted";
}
elsif (($state eq "quoting") ||
($state eq "orth") ||
($state eq "tr")) {
$quoted .= dumpTag($element);
}
elsif (($part eq "text") ||
($part eq "body") ||
($part eq "TEI.2")) {
# skip these tags without warnings
}
else {
print STDERR "warning: skipping start tag: $part\n" }
}
sub characters {
my ($self, $element) = @_;
my $data = $element->{Data};
# FIXME: maybe with other parser than ESISParser?
# my guess: sometimes our loved ESISParser calls this handler
# while it shouldn't: to notify us of a line break and white
# space. there are handlers end_record() and white_space() for
# this. anyway: since we don't have <pre>-element where newlines
# are important inside, we just replace all \n by ' '
# then all multiple white space by single ' '
# then remove all ' ' at beginning or end
# and skip everything if we get empty $data
# do some whitespace stripping:
return if ($data =~ /\A\s*\Z/);
$data =~ s/\n/ /;
$data =~ s/\s+/ /;
if ($data eq "") {
# can happen because of newlines
return;
}
if (($state eq "quoting") ||
($state eq "orth") ||
($state eq "tr")) {
$quoted .= _escape($data);
}
if (($preLastStartTag eq "titleStmt") &&
($lastStartTag eq "title")) { $database_short = $data }
elsif ($lastStartTag eq "pubPlace") { $database_url=$data }
if ($reverse_index && ($lastStartTag eq "tr")) {
$current_headword .= $data;
}
elsif (!$reverse_index && ($lastStartTag eq "orth")) {
if (($preLastStartTag eq "form") ||
($preLastStartTag eq "orth")) {
#warn "headwords add_text: '$data'\n";
$current_headword .= $data;
}
else {
print STDERR "multiple <orth>-s only at beginning of <form> supported. Skipping the others!\n" }
}
}
sub end_element {
my ($self, $element) = @_;
my $part = $element->{Name};
pop @higherElements;
if (($state eq "quoting") || ($state eq "orth") || ($state eq "tr")) {
$quoted .= "</$part>\n";
}
if ($part eq "orth") {
Dict::add_headword($current_headword);
# Dict::end_headword() has to be called later, because we don't know now
# if there is another orth coming (multiple headwords for one entry)
if($state eq "orth") {$state = "quoting"};
}
if ($part eq "tr") {
Dict::add_headword($current_headword);
# Dict::end_headword() has to be called later, because we don't know now
# if there is another tr coming
if($state eq "tr") {$state = "quoting"};
}
elsif ($part eq "entry") {
if ($reverse_index && $Dict::head) { Dict::end_headword() };
$quoted = apply_filter_cmd($filtercmd,$quoted);
Dict::write_direct($quoted);
Dict::write_newline();
$state = "";
}
elsif (($part eq "teiHeader")) {
return if $skip_header;
$state = "";
Dict::write_text();
Dict::write_newline();
# 00-database-short
Dict::set_headword(); Dict::add_text("00-database-short");
Dict::write_text(); Dict::end_headword();
Dict::write_direct("\n ");
Dict::write_direct($database_short);
if($reverse_index)
{
Dict::write_direct(' [reverse index]');
}
Dict::write_newline();
## 00-database-info
Dict::set_headword();
$Dict::text="00-database-info";
Dict::write_text();
Dict::end_headword();
$quoted = apply_filter_cmd($filtercmd,$quoted);
Dict::add_text($quoted);# will do wrapping
Dict::write_text();
Dict::write_newline();
# FIXME who defined 00-database-url and where is it used? it seems not in kdict
Dict::set_headword(); Dict::add_text("00-database-url");
Dict::write_text(); Dict::end_headword();
Dict::write_direct(" ");
Dict::write_direct($database_url);
Dict::write_newline();
} # ^header
elsif ($part eq "body") {
Dict::set_headword();# to have the last headword appear in INDEX
};
}
sub error
{
my ($self, $args) = @_;
if ($args->{'Message'} =~ /^.+:.+:\d+:W:/)
{
# print warnings
print STDERR "Warning from XML::ESISParser: " . $args->{'Message'} . "\n";
return
}
use Data::Dumper;
print STDERR Dumper \@_;
print STDERR "Error from XML::ESISParser: " . $args->{'Message'} . "\n";
exit 3;
}
1;
|