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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
|
#!/usr/bin/perl
use lib '.';
use strict;
use SWIG qw(remove_method skip_to_closing_brace fix_method);
my($progname) = $0 =~ m"\/([^/]*)";
my @dom_node_list_methods = qw(IDOM_Document::getElementsByTagName
IDOM_Document::getElementsByTagNameNS
IDOM_Element::getElementsByTagName
IDOM_Element::getElementsByTagNameNS
IDOM_Node::getChildNodes
);
my @dom_node_map_methods = qw(IDOM_DocumentType::getEntities
IDOM_DocumentType::getNotations
IDOM_Node::getAttributes
);
my @dom_copy_methods = qw(IDOM_XMLDecl
IDOM_Attr
);
my @dom_node_methods = qw(IDOM_Node::new
IDOM_Node::getParentNode
IDOM_Node::getFirstChild
IDOM_Node::getLastChild
IDOM_Node::getPreviousSibling
IDOM_Node::getNextSibling
IDOM_Node::cloneNode
IDOM_Node::insertBefore
IDOM_Node::replaceChild
IDOM_Node::removeChild
IDOM_Node::appendChild
IDOM_Document::importNode
IDOM_Entity::getFirstChild
IDOM_Entity::getLastChild
IDOM_Entity::getPreviousSibling
IDOM_Entity::getNextSibling
IDOM_NamedNodeMap::setNamedItem
IDOM_NamedNodeMap::getNamedItem
IDOM_NamedNodeMap::removedNamedItem
IDOM_NamedNodeMap::setNamedItemNS
IDOM_NamedNodeMap::getNamedItemNS
IDOM_NamedNodeMap::removedNamedItemNS
IDOM_NamedNodeMap::item
IDOM_NodeList::item
IDOM_NodeIterator::nextNode
IDOM_NodeIterator::previousNode
IDOM_Range::getStartContainer
IDOM_Range::getEndContainer
IDOM_Range::getCommonAncestorContainer
IDOM_TreeWalker::getCurrentNode
IDOM_TreeWalker::getParentNode
IDOM_TreeWalker::getFirstChild
IDOM_TreeWalker::getLastChild
IDOM_TreeWalker::getPreviousSibling
IDOM_TreeWalker::getNextSibling
IDOM_TreeWalker::getPreviousNode
IDOM_TreeWalker::getNextNode
);
my $num = 0;
++$num while -e "$progname.$num.tmp";
for my $file (@ARGV) {
next unless open FILE, $file;
open TEMP, ">$progname.$num.tmp";
my $CURR_CLASS = '';
while(<FILE>) {
if (/^package/) {
($CURR_CLASS) = m/package\s+XML::Xerces::([\w_]+);/;
print TEMP;
if ($CURR_CLASS eq 'IDOM_Node') {
print TEMP <<'TEXT';
use overload
"==" => sub { $_[0]->operator_equal_to($_[1])},
"!=" => sub { $_[0]->operator_not_equal_to($_[1])},
"fallback" => 1;
*operator_not_equal_to = *XML::Xercesc::IDOM_Node_operator_not_equal_to;
*operator_equal_to = *XML::Xercesc::IDOM_Node_operator_equal_to;
TEXT
}
next;
}
# for some reason (I don't want to figure out) SWIG puts a bunch of
# methods directly in the XML::Xerces namespace that don't belong there
# and are duplicated within their proper classes, so we delete them
if (/FUNCTION WRAPPERS/) {
while (<FILE>) {
next unless /\#\#\#\#\#\#\#\#\#\#\#\#\#/;
last;
}
}
# we're only keeping DESTROY for the parsers until we know better
# we get core dumps if it's defined on some classes
if (/sub DESTROY/) {
unless (grep {$_ eq $CURR_CLASS} qw(IDOMParser
DOMParser
SAXParser
SAX2XMLReader))
{
remove_method(\*FILE);
} else {
fix_method(\*FILE,
\*TEMP,
qr/my \$self = tied\(\%\{\$_\[0\]\}\);/,
" return unless defined \$self;\n",
1);
}
next;
}
# we remove all the enums inherited through DOM_Node and IDOM_Node
next if /^*[_A-Z]+_NODE =/ && !/DOM_Node/;
# now we set these aliases correctly
s/\*XML::Xerces::/*XML::Xercesc::/;
#######################################################################
#
# MUNG MODULE for DOMString and XMLCh support
#
# CHANGE "$args[0] = tied(%{$args[0]})"
# TO "$args[0] = tied(%{$args[0]}) || $args[0]"
# then we wrap it in a defined $args[0] to remove the irritating warning
if (m{\$args\[0\]\s+=\s+tied\(\%\{\$args\[0\]\}\)}) {
print TEMP <<'EOT';
if (defined $args[0]) {
$args[0] = tied(%{$args[0]}) || $args[0];
}
EOT
next;
}
# CHANGE "return undef if (!defined($result))"
# TO "return $result unless ref($result) =~ m[XML::Xerces]"
# split on multiple lines to be readable, using s{}{}x
s{
return\s*undef\s*if\s*\(\!defined\(\$result\)\)
}{return \$result unless ref(\$result) =~ m[XML::Xerces]}x;
#######################################################################
#
# Perl API specific changes
#
# I?DOM_NodeList: automatically convert to perl list
# if called in a list context
if (grep {/$CURR_CLASS/} @dom_node_list_methods) {
if (my ($sub) = /^sub\s+([\w_]+)/) {
$sub = "$ {CURR_CLASS}::$sub";
my $dom = $CURR_CLASS =~ /IDOM/ ? 'IDOM' : 'DOM';
if (grep {/$sub$/} @dom_node_list_methods) {
my $fix = <<"EOT";
return \$result->to_list() if wantarray;
\$${dom}_NodeList::OWNER{\$result} = 1;
EOT
fix_method(\*FILE,
\*TEMP,
qr/return undef/,
$fix,
1);
next;
}
}
}
# I?DOM_NamedNodeMap: automatically convert to perl hash
# if called in a list context
if (grep {/$CURR_CLASS/} @dom_node_map_methods) {
if (my ($sub) = /^sub\s+([\w_]+)/) {
$sub = "$ {CURR_CLASS}::$sub";
my $dom = $CURR_CLASS =~ /IDOM/ ? 'IDOM' : 'DOM';
if (grep {/$sub$/} @dom_node_map_methods) {
my $fix = <<"EOT";
return \$result->to_hash() if wantarray;
\$${dom}_NamedNodeMap::OWNER{\$result} = 1;
EOT
fix_method(\*FILE,
\*TEMP,
qr/return undef/,
$fix,
1);
next;
}
}
}
# I?DOM_Node: automatically convert to base class
if (grep {/$CURR_CLASS/} @dom_node_methods) {
if (my ($sub) = /^sub\s+([\w_]+)/) {
$sub = "$ {CURR_CLASS}::$sub";
if (grep {/$sub$/} @dom_node_methods) {
my $fix = <<'EOT';
# automatically convert to base class
$result = $result->actual_cast();
EOT
fix_method(\*FILE,
\*TEMP,
qr/return undef/,
$fix,
1);
next;
}
}
}
# MemBufInputSource: new has *optional* SYSTEM ID
if ($CURR_CLASS eq 'MemBufInputSource') {
if (/^sub\s+new/) {
my $fix = <<'EOT';
# SYSTEM ID is *optional*
if (scalar @args == 1) {
push(@args,'FAKE_SYSTEM_ID');
}
EOT
fix_method(\*FILE,
\*TEMP,
qr/my \@args/,
$fix,
1);
next;
}
}
# we need to fix setAttribute() so that undefined values don't
# cause a core dump
if ($CURR_CLASS =~ /(I?DOM)_Element/) {
my $dom = $1;
if (/XML::Xercesc::${dom}_Element_setAttribute;/) {
print TEMP <<"EOT";
sub setAttribute {
my (\$self,\$attr,\$val) = \@_;
return unless defined \$attr and defined \$val;
my \$result = XML::Xercesc::${dom}_Element_setAttribute(\@_);
return \$result unless ref(\$result) =~ m[XML::Xerces];
\$XML::Xerces::${dom}_Attr::OWNER{\$result} = 1;
my %resulthash;
tie %resulthash, ref(\$result), \$result;
return bless \\\%resulthash, ref(\$result);
}
EOT
next;
}
}
######################################################################
#
# Method Overloads
# don't print out SWIG's default overloaded methods, we'll make our own
next if /XML::Xerces.*__overload__/;
if ($CURR_CLASS =~ /(I?DOM|SAX)Parser/) {
my $dom = $1;
if (/XML::Xercesc::${dom}Parser_parse;/) {
print TEMP <<"EOT";
sub parse {
my \@args = \@_;
if (ref \$args[1]) {
XML::Xercesc::${dom}Parser_parse__overload__is(\@args);
} else {
XML::Xercesc::${dom}Parser_parse(\@args);
}
}
EOT
next;
} elsif (/XML::Xercesc::${dom}Parser_parseFirst/) {
print TEMP <<"EOT";
sub parseFirst {
my \@args = \@_;
if (ref \$args[1]) {
XML::Xercesc::${dom}Parser_parseFirst__overload__is(\@args);
} else {
XML::Xercesc::${dom}Parser_parseFirst(\@args);
}
}
EOT
next;
}
}
if ($CURR_CLASS =~ /Attributes/) {
if (/XML::Xercesc::Attributes_getType;/) {
print TEMP <<'EOT';
sub getType {
my @args = @_;
if (scalar @args == 2) {
if ($args[1] =~ /^\d+$/) {
return XML::Xercesc::Attributes_getType__overload__index(@args);
} else {
return XML::Xercesc::Attributes_getType__overload__qname(@args);
}
} else {
return XML::Xercesc::Attributes_getType(@args);
}
}
EOT
next;
} elsif (/XML::Xercesc::Attributes_getValue;/) {
print TEMP <<'EOT';
sub getValue {
my @args = @_;
if (scalar @args == 2) {
if ($args[1] =~ /^\d+$/) {
return XML::Xercesc::Attributes_getValue__overload__index(@args);
} else {
return XML::Xercesc::Attributes_getValue__overload__qname(@args);
}
} else {
return XML::Xercesc::Attributes_getValue(@args);
}
}
EOT
next;
} elsif (/XML::Xercesc::Attributes_getIndex;/) {
print TEMP <<'EOT';
sub getIndex {
my @args = @_;
if (scalar @args == 2) {
return XML::Xercesc::Attributes_getIndex__overload__qname(@args);
} else {
return XML::Xercesc::Attributes_getIndex(@args);
}
}
EOT
next;
}
}
if ($CURR_CLASS =~ /AttributeList/) {
if (/XML::Xercesc::AttributeList_getType;/) {
print TEMP <<'EOT';
sub getType {
my @args = @_;
if ($args[1] =~ /^\d+$/) {
return XML::Xercesc::AttributeList_getType__overload__index(@args);
} else {
return XML::Xercesc::AttributeList_getType(@args);
}
}
EOT
next;
} elsif (/XML::Xercesc::AttributeList_getValue;/) {
print TEMP <<'EOT';
sub getValue {
my @args = @_;
if ($args[1] =~ /^\d+$/) {
return XML::Xercesc::AttributeList_getValue__overload__index(@args);
} else {
return XML::Xercesc::AttributeList_getValue(@args);
}
}
EOT
next;
}
}
if ($CURR_CLASS =~ /URLInputSource/) {
if (/^sub.*__constructor__/) {
remove_method(\*FILE);
next;
} elsif (/^sub\s+new/) {
my $subst_func = sub {$_[0] = '' if $_[0] =~ /tied/;};
my $new = <<'EOT';
if (ref $args[0]) {
$args[0] = tied(%{$args[0]});
$self = XML::Xercesc::new_URLInputSource(@args);
} elsif (scalar @args == 2) {
$self = XML::Xercesc::new_URLInputSource__constructor__sys(@args);
} else {
$self = XML::Xercesc::new_URLInputSource__constructor__pub(@args);
}
EOT
fix_method(\*FILE,
\*TEMP,
qr/\$self = XML::Xercesc::new_/,
$new,
0,
$subst_func,
);
next;
}
}
if ($CURR_CLASS =~ /XMLUri/) {
if (/^sub.*__constructor__/) {
remove_method(\*FILE);
next;
} elsif (/^sub\s+new/) {
my $subst_func = sub {$_[0] = '' if $_[0] =~ /tied/;};
my $new = <<'EOT';
if (scalar @args == 1) {
$self = XML::Xercesc::new_XMLUri__constructor__uri(@args);
} else {
$args[0] = tied(%{$args[0]});
$self = XML::Xercesc::new_XMLUri(@args);
}
EOT
fix_method(\*FILE,
\*TEMP,
qr/\$self = XML::Xercesc::new_/,
$new,
0,
$subst_func,
);
next;
}
}
if (grep {/$CURR_CLASS/} @dom_copy_methods) {
if (/^sub.*__constructor__/) {
remove_method(\*FILE);
next;
} elsif (/^sub\s+new/) {
my $new = <<"EOT";
if (ref \$pkg) {
\$self = XML::Xercesc::new_${CURR_CLASS}__constructor__copy(\$pkg);
\$pkg = ref \$pkg;
} else {
\$self = XML::Xercesc::new_${CURR_CLASS}();
}
EOT
fix_method(\*FILE,
\*TEMP,
qr/\$self = XML::Xercesc::new_/,
$new);
next;
}
}
if ($CURR_CLASS =~ /LocalFileInputSource/) {
# this line assumed the first constructor, so we remove it
if (/^sub.*__constructor__/) {
remove_method(\*FILE);
next;
} elsif (/^sub\s+new/) {
my $new = <<'EOT';
if (scalar @args == 1) {
$self = XML::Xercesc::new_LocalFileInputSource(@args);
} else {
$self = XML::Xercesc::new_LocalFileInputSource__constructor__base(@args);
}
EOT
fix_method(\*FILE,
\*TEMP,
qr/\$self = XML::Xercesc::new_/,
$new);
next;
}
}
if (/XML::Xerces::XMLReaderFactory_createXMLReader/) {
print TEMP <<'EOT';
sub createXMLReader {
my @args = @_;
if (scalar @args == 2) {
XML::Xercesc::XMLReaderFactory_createXMLReader__overload__1(@args);
} else {
XML::Xercesc::XMLReaderFactory_createXMLReader(@args);
}
}
EOT
# we don't print out the function
next;
}
if ($CURR_CLASS =~ /XMLURL/) {
if (/^sub.*__constructor__/) {
remove_method(\*FILE);
next;
} elsif (/^sub\s+new/) {
my $new = <<'EOT';
if (ref($args[0])) {
if (scalar @args == 1) {
$self = XML::Xercesc::new_XMLURL__constructor__copy(@args);
} else {
$self = XML::Xercesc::new_XMLURL__constructor__url_base(@args);
}
} elsif (! scalar @args) {
$self = XML::Xercesc::new_XMLURL();
} elsif (scalar @args == 1) {
$self = XML::Xercesc::new_XMLURL__constructor__text(@args);
} else {
$self = XML::Xercesc::new_XMLURL__constructor__base(@args);
}
EOT
fix_method(\*FILE,
\*TEMP,
qr/\$self = XML::Xercesc::new_/,
$new,
0,
);
next;
}
if (/XML::Xercesc::XMLURL_makeRelativeTo/) {
print TEMP <<'EOT';
sub makeRelativeTo {
my @args = @_;
if (ref($args[1])) {
XML::Xercesc::XMLURL_makeRelativeTo__overload__XMLURL(@args);
} else {
XML::Xercesc::XMLURL_makeRelativeTo(@args);
}
}
EOT
# we don't print out the function
next;
} elsif (/XML::Xercesc::XMLURL_setURL/) {
print TEMP <<'EOT';
sub setURL {
my @args = @_;
if (scalar @args == 2) {
XML::Xercesc::XMLURL_setURL(@args);
} elsif (ref($args[1])) {
XML::Xercesc::XMLURL_setURL__overload__XMLURL(@args);
} else {
XML::Xercesc::XMLURL_setURL__overload__string(@args);
}
}
EOT
# we don't print out the function
next;
}
}
######################################################################
#
# Callback registration
# fix a scoping bug for setErrorHandler. If we don't maintain an
# internal reference to the error handler perl object it will
# get destroyed if it goes out of scope. Then if an error occurs
# perl will dump core
#
# look for: *setErrorHandler = *XML::Xercesc::*_setErrorHandler;
if (/\*XML::Xercesc::(\w+)_setErrorHandler/) {
my $class = $1;
print TEMP <<"EOT";
sub setErrorHandler {
my (\$self,\$handler) = \@_;
my \$callback = XML::Xerces::PerlErrorCallbackHandler->new();
\$callback->set_callback_obj(\$handler);
XML::Xercesc::$ {class}_setErrorHandler(\$self,\$callback);
\$self{__ERROR_HANDLER} = \$callback;
}
EOT
# we don't print out the function
next;
}
# this same bug is likely to affect setEntityResolver() as well
# look for: *setEntityResolver = *XML::Xercesc::*_setEntityResolver;
if (/\*XML::Xercesc::(\w+)_setEntityResolver/) {
my $class = $1;
print TEMP <<"EOT";
sub setEntityResolver {
my (\$self,\$handler) = \@_;
my \$callback = XML::Xerces::PerlEntityResolverHandler->new();
\$callback->set_callback_obj(\$handler);
XML::Xercesc::$ {class}_setEntityResolver(\$self,\$callback);
\$self{__ENTITY_RESOLVER} = \$callback;
}
EOT
# we don't print out the function
next;
}
# look for: *setDocumentHandler = *XML::Xercesc::SAXParser_setDocumentHandler;
if (/SAXParser_setDocumentHandler/) {
print TEMP <<'EOT';
sub setDocumentHandler {
my ($self,$handler) = @_;
my $callback = XML::Xerces::PerlDocumentCallbackHandler->new();
$callback->set_callback_obj($handler);
XML::Xercesc::SAXParser_setDocumentHandler($self,$callback);
$self{__DOCUMENT_HANDLER} = $callback;
}
EOT
# we don't print out the function
next;
}
# this same bug is likely to affect setContentHandler() as well
# look for: *setContentHandler = *XML::Xercesc::SAX2XMLReader_setContentHandler;
if (/SAX2XMLReader_setContentHandler/) {
print TEMP <<'EOT';
sub setContentHandler {
my ($self,$handler) = @_;
my $callback = XML::Xerces::PerlContentCallbackHandler->new();
$callback->set_callback_obj($handler);
XML::Xercesc::SAX2XMLReader_setContentHandler($self,$callback);
# maintain an internal reference
$self{__CONTENT_HANDLER} = $callback;
}
EOT
# we don't print out the function
next;
}
print TEMP;
}
my $extra = <<'EXTRA';
############# Class : XML::Xerces::PerlContentHandler ##############
package XML::Xerces::PerlContentHandler;
@ISA = qw();
sub new {
my $class = shift;
return bless {}, $class;
}
sub start_element {}
sub end_element {}
sub start_prefix_mapping {}
sub end_prefix_mapping {}
sub skipped_entity {}
sub start_document {}
sub end_document {}
sub reset_document {}
sub characters {}
sub processing_instruction {}
sub set_document_locator {}
sub ignorable_whitespace {}
############# Class : XML::Xerces::PerlDocumentHandler ##############
package XML::Xerces::PerlDocumentHandler;
@ISA = qw();
sub new {
my $class = shift;
return bless {}, $class;
}
sub start_element {}
sub end_element {}
sub start_document {}
sub end_document {}
sub reset_document {}
sub characters {}
sub processing_instruction {}
sub set_document_locator {}
sub ignorable_whitespace {}
############# Class : XML::Xerces::PerlEntityResolver ##############
package XML::Xerces::PerlEntityResolver;
@ISA = qw();
sub new {
my $class = shift;
return bless {}, $class;
}
sub resolve_entity {
return undef;
}
############# Class : XML::Xerces::PerlErrorHandler ##############
package XML::Xerces::PerlErrorHandler;
@ISA = qw();
sub new {
my $class = shift;
return bless {}, $class;
}
sub warning {
my $system_id = $_[1]->getSystemId;
my $line_num = $_[1]->getLineNumber;
my $col_num = $_[1]->getColumnNumber;
my $msg = $_[1]->getMessage;
warn(<<EOT);
WARNING:
FILE: $system_id
LINE: $line_num
COLUMN: $col_num
MESSAGE: $msg
EOT
}
sub error {
my $system_id = $_[1]->getSystemId;
my $line_num = $_[1]->getLineNumber;
my $col_num = $_[1]->getColumnNumber;
my $msg = $_[1]->getMessage;
die(<<EOT);
ERROR:
FILE: $system_id
LINE: $line_num
COLUMN: $col_num
MESSAGE: $msg
EOT
}
sub fatal_error {
my $system_id = $_[1]->getSystemId;
my $line_num = $_[1]->getLineNumber;
my $col_num = $_[1]->getColumnNumber;
my $msg = $_[1]->getMessage;
die(<<EOT);
FATAL ERROR:
FILE: $system_id
LINE: $line_num
COLUMN: $col_num
MESSAGE: $msg
EOT
}
sub reset_errors {}
package XML::Xerces::DOM_NodeList;
# convert the NodeList to a perl list
sub to_list {
my $self = shift;
my @list;
for (my $i=0;$i<$self->getLength();$i++) {
push(@list,$self->item($i));
}
return @list;
}
package XML::Xerces::IDOM_NodeList;
# convert the NodeList to a perl list
sub to_list {
my $self = shift;
my @list;
for (my $i=0;$i<$self->getLength();$i++) {
push(@list,$self->item($i));
}
return @list;
}
package XML::Xerces::DOM_Entity;
sub to_hash {
my $self = shift;
if ($self->hasChildNodes) {
return ($self->getNodeName(),
$self->getFirstChild->getNodeValue());
} else {
return ($self->getNodeName(), '');
}
}
package XML::Xerces::Attributes;
sub to_hash {
my $self = shift;
my %hash;
for (my $i=0; $i < $self->getLength(); $i++) {
my $qname = $self->getQName($i);
$hash{$qname}->{localName} = $self->getLocalName($i);
$hash{$qname}->{URI} = $self->getURI($i);
$hash{$qname}->{value} = $self->getValue($i);
$hash{$qname}->{type} = $self->getType($i);
}
return %hash;
}
package XML::Xerces::IDOM_Entity;
sub to_hash {
my $self = shift;
if ($self->hasChildNodes) {
return ($self->getNodeName(),
$self->getFirstChild->getNodeValue());
} else {
return ($self->getNodeName(), '');
}
}
package XML::Xerces::AttributeList;
sub to_hash {
my $self = shift;
my %hash;
for (my $i=0;$i<$self->getLength();$i++) {
$hash{$self->getName($i)} = $self->getValue($i)
}
return %hash;
}
package XML::Xerces::DOM_NamedNodeMap;
# convert the NamedNodeMap to a perl hash
sub to_hash {
my $self = shift;
my @list;
for (my $i=0;$i<$self->getLength();$i++) {
my $node = $self->item($i);
if ($node->getNodeType == $XML::Xerces::DOM_Node::ENTITY_NODE) {
push(@list, $node->to_hash());
} else {
push(@list, $node->getNodeName());
push(@list,$node->getNodeValue());
}
}
return @list;
}
package XML::Xerces::IDOM_NamedNodeMap;
# convert the NamedNodeMap to a perl hash
sub to_hash {
my $self = shift;
my @list;
for (my $i=0;$i<$self->getLength();$i++) {
my $node = $self->item($i);
if ($node->getNodeType == $XML::Xerces::IDOM_Node::ENTITY_NODE) {
push(@list, $node->to_hash());
} else {
push(@list, $node->getNodeName());
push(@list,$node->getNodeValue());
}
}
return @list;
}
package XML::Xerces::IDOM_Node;
sub _isa {
return 0 unless defined $_[0];
my %package_hash = ($_[0] => 1);
my @package_array = ($_[0]);
my $base = $_[1];
while(my $class = shift @package_array) {
return 1 if "$class" eq "$base";
foreach my $inherit (eval "\@$class\::ISA;") {
unless ($package_hash{$inherit}) {
$package_hash{$inherit} = 1;
push @package_array, $inherit;
}
}
}
return 0;
};
sub _reinterpret_cast {
return undef unless ref $_[1];
bless $_[1], $_[0];
my($raw_ref, $tied) = ($_[1] =~ m[=(.*)\(]);
if ($raw_ref eq 'SCALAR') { $tied = tied ${$_[1]}; }
elsif ($raw_ref eq 'ARRAY') { $tied = tied @{$_[1]}; }
elsif ($raw_ref eq 'HASH') { $tied = tied %{$_[1]}; }
return $_[1] unless $tied;
bless $tied, $_[0];
return $_[1];
};
sub actual_cast {
return undef unless _isa( ref($_[0]), 'XML::Xerces::IDOM_Node' );
return $_[0] unless defined $_[0];
my $node_type = $_[0]->getNodeType;
return _reinterpret_cast('XML::Xerces::IDOM_Text', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::TEXT_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_ProcessingInstruction', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::PROCESSING_INSTRUCTION_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_Document', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::DOCUMENT_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_Element', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::ELEMENT_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_EntityReference', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::ENTITY_REFERENCE_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_CDATASection', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::CDATA_SECTION_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_Comment', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::COMMENT_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_DocumentType', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::DOCUMENT_TYPE_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_Entity', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::ENTITY_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_XMLDecl', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::XML_DECL_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_Attr', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::ATTRIBUTE_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_DocumentFragment', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::DOCUMENT_FRAGMENT_NODE;
return _reinterpret_cast('XML::Xerces::IDOM_Notation', $_[0])
if $node_type == $XML::Xerces::IDOM_Node::NOTATION_NODE;
return $_[0];
}
sub quote_content {
my $node_value = $_[0];
$node_value =~ s/&/&/g;
$node_value =~ s/</</g;
$node_value =~ s/>/>/g;
$node_value =~ s/\"/"/g;
$node_value =~ s/\'/'/g;
return $node_value;
}
{
my $in_element = 0;
my $output;
my @output_array;
$output_array[$XML::Xerces::IDOM_Node::TEXT_NODE] = sub {
$output .= quote_content $_[0]->getNodeValue;
};
$output_array[$XML::Xerces::IDOM_Node::PROCESSING_INSTRUCTION_NODE] = sub {
$output .= '<?' . $_[0]->getNodeName;
if ( length(my $str = $_[0]->getNodeValue) ) { $output .= " $str"; }
$output .= '?>';
};
$output_array[$XML::Xerces::IDOM_Node::DOCUMENT_NODE] = sub {
for(my $child = $_[0]->getFirstChild() ;
defined $child ;
$child = $child->getNextSibling())
{
$child = $child->actual_cast();
$output_array[$child->getNodeType]->($child);
}
};
$output_array[$XML::Xerces::IDOM_Node::ELEMENT_NODE] = sub {
++$in_element;
ELEMENT: {
my $node_name = $_[0]->getNodeName;
$output .= "<$node_name";
my $attributes = $_[0]->getAttributes;
my $attribute_count = $attributes->getLength;
for(my $ix = 0 ; $ix < $attribute_count ; ++$ix) {
$attribute = $attributes->item($ix);
$output .= ' ' . $attribute->getNodeName . '="' . quote_content($attribute->getNodeValue) . '"';
}
my $child = $_[0]->getFirstChild();
if (!defined $child) {
$output .= '/>';
last ELEMENT;
}
$output .= '>';
while (defined $child) {
$child = $child->actual_cast();
$output_array[$child->getNodeType]->($child);
$child = $child->getNextSibling();
}
$output .= "</$node_name>";
}
--$in_element;
$output .= "\n" unless $in_element;
};
$output_array[$XML::Xerces::IDOM_Node::ENTITY_REFERENCE_NODE] = sub {
for(my $child = $_[0]->getFirstChild() ;
defined $child;
$child = $child->getNextSibling())
{
$child = $child->actual_cast();
$output_array[$child->getNodeType]->($child);
}
};
$output_array[$XML::Xerces::IDOM_Node::CDATA_SECTION_NODE] = sub {
$output .= '<![CDATA[' . $_[0]->getNodeValue . ']]>';
};
$output_array[$XML::Xerces::IDOM_Node::COMMENT_NODE] = sub {
$output .= '<!--' . $_[0]->getNodeValue . '-->';
$output .= "\n" unless $in_element;
};
$output_array[$XML::Xerces::IDOM_Node::DOCUMENT_TYPE_NODE] = sub {
$output .= '<!DOCTYPE ' . $_[0]->getNodeName;
my $id;
if ($id = $_[0]->getPublicId) {
$output .= qq[ PUBLIC "$id"];
if ($id = $_[0]->getSystemId) {
$output .= qq[ "$id"];
}
} elsif ($id = $_[0]->getSystemId) {
$output .= qq[ SYSTEM "$id"];
}
if ($id = $_[0]->getInternalSubset) {
$output .= " [$id]";
}
$output .= ">\n"
};
$output_array[$XML::Xerces::IDOM_Node::ENTITY_NODE] = sub {
$output .= '<!ENTITY ' . $_[0]->getNodeName;
my $id;
if ($id = $_[0]->getPublicId) { $output .= qq[ PUBLIC "$id"]; }
if ($id = $_[0]->getSystemId) { $output .= qq[ SYSTEM "$id"]; }
if ($id = $_[0]->getNotationName) { $output .= qq[ NDATA "$id"]; }
$output .= '>';
};
$output_array[$XML::Xerces::IDOM_Node::XML_DECL_NODE] = sub {
$output .= '<?xml version="' . $_[0]->getVersion . '" encoding="' . $_[0]->getEncoding;
if (my $id = $_[0]->getStandalone) { $output .= qq[" standalone="$id]; }
$output .= "\"?>\n\n";
};
sub serialize {
$output = '';
$output_array[ $_[0]->getNodeType ]->($_[0]);
$output;
}
}
package XML::Xerces::DOM_Node;
sub _isa {
return 0 unless defined $_[0];
my %package_hash = ($_[0] => 1);
my @package_array = ($_[0]);
my $base = $_[1];
while(my $class = shift @package_array) {
return 1 if "$class" eq "$base";
foreach my $inherit (eval "\@$class\::ISA;") {
unless ($package_hash{$inherit}) {
$package_hash{$inherit} = 1;
push @package_array, $inherit;
}
}
}
return 0;
};
sub _reinterpret_cast {
return undef unless ref $_[1];
bless $_[1], $_[0];
my($raw_ref, $tied) = ($_[1] =~ m[=(.*)\(]);
if ($raw_ref eq 'SCALAR') { $tied = tied ${$_[1]}; }
elsif ($raw_ref eq 'ARRAY') { $tied = tied @{$_[1]}; }
elsif ($raw_ref eq 'HASH') { $tied = tied %{$_[1]}; }
return $_[1] unless $tied;
bless $tied, $_[0];
return $_[1];
};
sub actual_cast {
return undef unless _isa( ref($_[0]), 'XML::Xerces::DOM_Node' );
return $_[0] if $_[0]->isNull;
my $node_type = $_[0]->getNodeType;
return _reinterpret_cast('XML::Xerces::DOM_Text', $_[0])
if $node_type == $XML::Xerces::DOM_Node::TEXT_NODE;
return _reinterpret_cast('XML::Xerces::DOM_ProcessingInstruction', $_[0])
if $node_type == $XML::Xerces::DOM_Node::PROCESSING_INSTRUCTION_NODE;
return _reinterpret_cast('XML::Xerces::DOM_Document', $_[0])
if $node_type == $XML::Xerces::DOM_Node::DOCUMENT_NODE;
return _reinterpret_cast('XML::Xerces::DOM_Element', $_[0])
if $node_type == $XML::Xerces::DOM_Node::ELEMENT_NODE;
return _reinterpret_cast('XML::Xerces::DOM_EntityReference', $_[0])
if $node_type == $XML::Xerces::DOM_Node::ENTITY_REFERENCE_NODE;
return _reinterpret_cast('XML::Xerces::DOM_CDATASection', $_[0])
if $node_type == $XML::Xerces::DOM_Node::CDATA_SECTION_NODE;
return _reinterpret_cast('XML::Xerces::DOM_Comment', $_[0])
if $node_type == $XML::Xerces::DOM_Node::COMMENT_NODE;
return _reinterpret_cast('XML::Xerces::DOM_DocumentType', $_[0])
if $node_type == $XML::Xerces::DOM_Node::DOCUMENT_TYPE_NODE;
return _reinterpret_cast('XML::Xerces::DOM_Entity', $_[0])
if $node_type == $XML::Xerces::DOM_Node::ENTITY_NODE;
return _reinterpret_cast('XML::Xerces::DOM_XMLDecl', $_[0])
if $node_type == $XML::Xerces::DOM_Node::XML_DECL_NODE;
return _reinterpret_cast('XML::Xerces::DOM_Attr', $_[0])
if $node_type == $XML::Xerces::DOM_Node::ATTRIBUTE_NODE;
return _reinterpret_cast('XML::Xerces::DOM_DocumentFragment', $_[0])
if $node_type == $XML::Xerces::DOM_Node::DOCUMENT_FRAGMENT_NODE;
return _reinterpret_cast('XML::Xerces::DOM_Notation', $_[0])
if $node_type == $XML::Xerces::DOM_Node::NOTATION_NODE;
return $_[0];
}
sub quote_content {
my $node_value = $_[0];
$node_value =~ s/&/&/g;
$node_value =~ s/</</g;
$node_value =~ s/>/>/g;
$node_value =~ s/\"/"/g;
$node_value =~ s/\'/'/g;
return $node_value;
}
{
my $in_element = 0;
my $output;
my @output_array;
$output_array[$XML::Xerces::DOM_Node::TEXT_NODE] = sub {
$output .= quote_content $_[0]->getNodeValue;
};
$output_array[$XML::Xerces::DOM_Node::PROCESSING_INSTRUCTION_NODE] = sub {
$output .= '<?' . $_[0]->getNodeName;
if ( length(my $str = $_[0]->getNodeValue) ) { $output .= " $str"; }
$output .= '?>';
};
$output_array[$XML::Xerces::DOM_Node::DOCUMENT_NODE] = sub {
for(my $child = $_[0]->getFirstChild->actual_cast ;
!$child->isNull ;
$child = $child->getNextSibling->actual_cast) {
&{$output_array[$child->getNodeType]}($child);
}
};
$output_array[$XML::Xerces::DOM_Node::ELEMENT_NODE] = sub {
++$in_element;
ELEMENT: {
my $node_name = $_[0]->getNodeName;
$output .= "<$node_name";
my $attributes = $_[0]->getAttributes;
my $attribute_count = $attributes->getLength;
for(my $ix = 0 ; $ix < $attribute_count ; ++$ix) {
$attribute = $attributes->item($ix);
$output .= ' ' . $attribute->getNodeName . '="' . quote_content($attribute->getNodeValue) . '"';
}
my $child = $_[0]->getFirstChild->actual_cast;
($output .= '/>'), last ELEMENT if $child->isNull;
$output .= '>';
until($child->isNull) {
&{$output_array[$child->getNodeType]}($child);
$child = $child->getNextSibling->actual_cast;
}
$output .= "</$node_name>";
}
--$in_element;
$output .= "\n" unless $in_element;
};
$output_array[$XML::Xerces::DOM_Node::ENTITY_REFERENCE_NODE] = sub {
for(my $child = $_[0]->getFirstChild->actual_cast ;
!$child->isNull ;
$child = $child->getNextSibling->actual_cast) {
&{$output_array[$child->getNodeType]}($child);
}
};
$output_array[$XML::Xerces::DOM_Node::CDATA_SECTION_NODE] = sub {
$output .= '<![CDATA[' . $_[0]->getNodeValue . ']]>';
};
$output_array[$XML::Xerces::DOM_Node::COMMENT_NODE] = sub {
$output .= '<!--' . $_[0]->getNodeValue . '-->';
$output .= "\n" unless $in_element;
};
$output_array[$XML::Xerces::DOM_Node::DOCUMENT_TYPE_NODE] = sub {
$output .= '<!DOCTYPE ' . $_[0]->getNodeName;
my $id;
if ($id = $_[0]->getPublicId) {
$output .= qq[ PUBLIC "$id"];
if ($id = $_[0]->getSystemId) {
$output .= qq[ "$id"];
}
} elsif ($id = $_[0]->getSystemId) {
$output .= qq[ SYSTEM "$id"];
}
if ($id = $_[0]->getInternalSubset) {
$output .= " [$id]";
}
$output .= ">\n"
};
$output_array[$XML::Xerces::DOM_Node::ENTITY_NODE] = sub {
$output .= '<!ENTITY ' . $_[0]->getNodeName;
my $id;
if ($id = $_[0]->getPublicId) { $output .= qq[ PUBLIC "$id"]; }
if ($id = $_[0]->getSystemId) { $output .= qq[ SYSTEM "$id"]; }
if ($id = $_[0]->getNotationName) { $output .= qq[ NDATA "$id"]; }
$output .= '>';
};
$output_array[$XML::Xerces::DOM_Node::XML_DECL_NODE] = sub {
$output .= '<?xml version="' . $_[0]->getVersion . '" encoding="' . $_[0]->getEncoding;
if (my $id = $_[0]->getStandalone) { $output .= qq[" standalone="$id]; }
$output .= "\"?>\n\n";
};
sub serialize {
$output = '';
$output_array[ $_[0]->getNodeType ]->($_[0]);
$output;
}
}
package XML::Xerces;
#
# NOTICE: We are automatically calling XMLPlatformUtils::Initialize()
# when the module is loaded. Do not call it on your own.
#
#
XML::Xerces::XMLPlatformUtils::Initialize();
1;
EXTRA
close(FILE);
print TEMP $extra;
close(TEMP);
rename "$progname.$num.tmp", $file;
}
|