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 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
|
<?xml version='1.0'?>
<!DOCTYPE refentry SYSTEM "tcldoc-1.0.dtd" [
<!ENTITY version "3.1">
]>
<refentry xmlns:xlink='http://www.w3.org/1999/xlink'>
<refentryinfo>
<author xlink:href='http://www.zveno.com/staff/Steve.Ball/'>
<firstname>Steve</firstname>
<surname>Ball</surname>
</author>
<copyright>
<year>2005</year>
<holder xlink:href='http://www.explain.com.au/'>eXplain</holder>
</copyright>
<copyright>
<year>2004</year>
<year>2003</year>
<year>2000</year>
<holder xlink:href='http://www.zveno.com/'>Zveno Pty Ltd</holder>
</copyright>
<legalnotice>
<para>Zveno makes this software and all associated data and documentation ('Software') available free of charge for any purpose. Copies may be made of this Software but all of this notice must be included on any copy.</para>
<para>The Software was developed for research purposes and Zveno does not warrant that it is error free or fit for any purpose. Zveno disclaims any liability for all claims, expenses, losses, damages and costs any user may incur as a result of using, copying or modifying the Software.</para>
</legalnotice>
<revhistory>
<revision>
<revnumber>3.1</revnumber>
<date>2005-03-02</date>
<authorinitials>SRB</authorinitials>
<revremark>Updated details on -externalentitycommand callback. Fixed minor typo.</revremark>
</revision>
<revision>
<revnumber>3.0</revnumber>
<date>2003-08-22</date>
<authorinitials>SRB</authorinitials>
<revremark>Added libxml2 parser class.</revremark>
</revision>
</revhistory>
</refentryinfo>
<refmeta>
<refentrytitle>TclXML</refentrytitle>
<manvolnum>n</manvolnum>
</refmeta>
<refnamediv>
<refname>::xml::parser</refname>
<refname>::xml::parserclass</refname>
<refpurpose>XML parser support for Tcl</refpurpose>
</refnamediv>
<refsynopsisdiv>
<tclcmdsynopsis>
<command>package require xml</command>
</tclcmdsynopsis>
<tclcmdsynopsis>
<command>package require <replaceable>parserclass</replaceable></command>
</tclcmdsynopsis>
<tclpkgsynopsis>
<package>xml</package>
<version>&version;</version>
</tclpkgsynopsis>
<tclnamespacesynopsis>
<tclnamespace>::xml</tclnamespace>
<tclnamespace>::sgml</tclnamespace>
<tclnamespace>::xml::tclparser</tclnamespace>
<tclnamespace>::xml::libxml2</tclnamespace>
</tclnamespacesynopsis>
<tclcmdsynopsis>
<command>::xml::parserclass</command>
<option>option</option>
<group choice='opt' rep='repeat'><arg>arg</arg><arg>arg</arg></group>
</tclcmdsynopsis>
<tclcmdsynopsis>
<command>::xml::parser</command>
<group choice='opt'>
<arg><replaceable>name</replaceable></arg>
</group>
<group choice='opt' rep='repeat'>
<option>-option</option>
<arg><replaceable>value</replaceable></arg>
</group>
</tclcmdsynopsis>
<tclcmdsynopsis>
<command><replaceable>parser</replaceable></command>
<arg><replaceable>option</replaceable></arg>
<arg rep='repeat' choice='opt'><replaceable>arg</replaceable></arg>
</tclcmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>TclXML provides event-based parsing of <acronym xlink:href='http://www.w3.org/XML/'>XML</acronym> documents. The application may register callback scripts for certain document features, and when the parser encounters those features while parsing the document the callback is evaluated.</para>
<para>The parser may also perform other functions, such as normalisation, validation and/or entity expansion. Generally, these functions are under the control of configuration options. Whether these functions can be performed at all depends on the parser implementation.</para>
<para>The TclXML package provides a generic interface for use by a Tcl application, along with a low-level interface for use by a parser implementation. Each implementation provides a class of XML parser, and these register themselves using the <tclcommand>::xml::parserclass create</tclcommand> command. One of the registered parser classes will be the default parser class.</para>
<para>Loading the package with the generic <tclcommand>package require xml</tclcommand> command allows the package to automatically determine the default parser class. In order to select a particular parser class as the default, that class' package may be loaded directly, eg. <tclcommand>package require expat</tclcommand>. In all cases, all available parser classes are registered with the TclXML package, the difference is simply in which one becomes the default.</para>
</refsect1>
<refsect1>
<title>Commands</title>
<refsect2>
<title><tclcommand>::xml::parserclass</tclcommand></title>
<para>The <tclcommand>::xml::parserclass</tclcommand> command is used to manage XML parser classes.</para>
<refsect3>
<title>Command Options</title>
<para>The following command options may be used:</para>
<variablelist>
<varlistentry>
<term><methodname>create</methodname></term>
<listitem>
<tclcmdsynopsis>
<arg>create</arg>
<arg><replaceable class='parameter'>name</replaceable></arg>
<group choice='opt'>
<option>-createcommand</option>
<arg><replaceable>script</replaceable></arg>
</group>
<group choice='opt'>
<option>-createentityparsercommand</option>
<arg><replaceable>script</replaceable></arg>
</group>
<group choice='opt'>
<option>-parsecommand</option>
<arg><replaceable>script</replaceable></arg>
</group>
<group choice='opt'>
<option>-configurecommand</option>
<arg><replaceable>script</replaceable></arg>
</group>
<group choice='opt'>
<option>-getcommand</option>
<arg><replaceable>script</replaceable></arg>
</group>
<group choice='opt'>
<option>-deletecommand</option>
<arg><replaceable>script</replaceable></arg>
</group>
</tclcmdsynopsis>
<para>Creates an XML parser class with the given name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><methodname>destroy</methodname></term>
<listitem>
<tclcmdsynopsis>
<arg>destroy</arg>
<arg><replaceable>name</replaceable></arg>
</tclcmdsynopsis>
<para>Destroys an XML parser class.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><methodname>info</methodname></term>
<listitem>
<tclcmdsynopsis>
<option>info</option>
<group choice='req'>
<arg>names</arg>
<arg>default</arg>
</group>
</tclcmdsynopsis>
<para>Returns information about registered XML parser classes.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect3>
</refsect2>
<refsect2>
<title><tclcommand>::xml::parser</tclcommand></title>
<para>The <tclcommand>::xml::parser</tclcommand> command creates an <acronym>XML</acronym> parser object. The return value of the command is the name of the newly created parser.</para>
<para>The parser scans an XML document's syntactical structure, evaluating callback scripts for each feature found. At the very least the parser will normalise the document and check the document for well-formedness. If the document is not well-formed then the <option>-errorcommand</option> option will be evaluated. Some parser classes may perform additional functions, such as validation. Additional features provided by the various parser classes are described in the section Parser Classes</para>
<para>Parsing is performed synchronously. The command blocks until the entire document has been parsed. Parsing may be terminated by an application callback, see the section Callback Return Codes. Incremental parsing is also supported by using the <option>-final</option> configuration option.</para>
<refsect3>
<title>Configuration Options</title>
<para>The <tclcommand>::xml::parser</tclcommand> command accepts the following configuration options:</para>
<variablelist>
<varlistentry>
<term><option>-attlistdeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-attlistdeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated whenever an attribute list declaration is encountered in the DTD subset of an XML document. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg><replaceable>attrname</replaceable></arg>
<arg><replaceable>type</replaceable></arg>
<arg><replaceable>default</replaceable></arg>
<arg><replaceable>value</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>Element type name</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>attrname</replaceable></arg></seg>
<seg>Attribute name being declared</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>type</replaceable></arg></seg>
<seg>Attribute type</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>default</replaceable></arg></seg>
<seg>Attribute default, such as #IMPLIED</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>value</replaceable></arg></seg>
<seg>Default attribute value. Empty string if none given.</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-baseuri</option></term>
<term><option>-baseurl</option></term>
<listitem>
<tcloptionsynopsis>
<option>-baseuri</option>
<arg><replaceable>URI</replaceable></arg>
</tcloptionsynopsis>
<tcloptionsynopsis>
<option>-baseurl</option>
<arg><replaceable>URI</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the base URI for resolving relative URIs that may be used in the XML document to refer to external entities.</para>
<para><option>-baseurl</option> is deprecated in favour of <option>-baseuri</option>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-characterdatacommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-characterdatacommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated whenever character data is encountered in the XML document being parsed. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>data</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>data</replaceable></arg></seg>
<seg>Character data in the document</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-commentcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-commentcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated whenever a comment is encountered in the XML document being parsed. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>data</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>data</replaceable></arg></seg>
<seg>Comment data</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-defaultcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-defaultcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when no other callback has been defined for a document feature which has been encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>data</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>data</replaceable></arg></seg>
<seg>Document data</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-defaultexpandinternalentities</option></term>
<listitem>
<tcloptionsynopsis>
<option>-defaultexpandinternalentities</option>
<arg><replaceable>boolean</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies whether entities declared in the internal DTD subset are expanded with their replacement text. If entities are not expanded then the entity references will be reported with no expansion.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-doctypecommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-doctypecommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when the document type declaration is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg><replaceable>public</replaceable></arg>
<arg><replaceable>system</replaceable></arg>
<arg><replaceable>dtd</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The name of the document element</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>public</replaceable></arg></seg>
<seg>Public identifier for the external DTD subset</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>system</replaceable></arg></seg>
<seg>System identifier for the external DTD subset. Usually a URI.</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>dtd</replaceable></arg></seg>
<seg>The internal DTD subset</seg>
</seglistitem>
</segmentedlist>
<para>See also <option>-startdoctypedeclcommand</option> and <option>-enddoctypedeclcommand</option>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-elementdeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-elementdeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when an element markup declaration is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg><replaceable>model</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The element type name</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>model</replaceable></arg></seg>
<seg>Content model specification</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-elementendcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-elementendcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when an element end tag is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg choice='opt'><replaceable>args</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The element type name that has ended</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>args</replaceable></arg></seg>
<seg>Additional information about this element</seg>
</seglistitem>
</segmentedlist>
<para>Additional information about the element takes the form of configuration options. Possible options are:</para>
<segmentedlist>
<seglistitem>
<seg><option>-empty</option> <arg><replaceable>boolean</replaceable></arg></seg>
<seg>The empty element syntax was used for this element</seg>
</seglistitem>
<seglistitem>
<seg><option>-namespace</option> <arg><replaceable>uri</replaceable></arg></seg>
<seg>The element is in the XML namespace associated with the given URI</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-elementstartcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-elementstartcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when an element start tag is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg><replaceable>attlist</replaceable></arg>
<arg choice='opt'><replaceable>args</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The element type name that has started</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>attlist</replaceable></arg></seg>
<seg>A Tcl list containing the attributes for this element. The list of attributes is formatted as pairs of attribute names and their values. </seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>args</replaceable></arg></seg>
<seg>Additional information about this element</seg>
</seglistitem>
</segmentedlist>
<para>Additional information about the element takes the form of configuration options. Possible options are:</para>
<segmentedlist>
<seglistitem>
<seg><option>-empty</option> <arg><replaceable>boolean</replaceable></arg></seg>
<seg>The empty element syntax was used for this element</seg>
</seglistitem>
<seglistitem>
<seg><option>-namespace</option> <arg><replaceable>uri</replaceable></arg></seg>
<seg>The element is in the XML namespace associated with the given URI</seg>
</seglistitem>
<seglistitem>
<seg><option>-namespacedecls</option> <arg><replaceable>list</replaceable></arg></seg>
<seg>The start tag included one or more XML Namespace declarations. <arg><replaceable>list</replaceable></arg> is a Tcl list giving the namespaces declared. The list is formatted as pairs of values, the first value is the namespace URI and the second value is the prefix used for the namespace in this document. A default XML namespace declaration will have an empty string for the prefix.</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-encoding</option></term>
<listitem>
<tcloptionsynopsis>
<option>-encoding</option>
<arg><replaceable>value</replaceable></arg>
</tcloptionsynopsis>
<para>Gives the character encoding of the document. This option only has an effect before a document is parsed. The default character encoding is <literal>utf-8</literal>. If the value <literal>unknown</literal> is given, or any value other than <literal>utf-8</literal>, then the document text is treated as binary data. If the value is given as <literal>unknown</literal> then the parser will attempt to automatically determine the character encoding of the document (using byte-order-marks, etc). If any value other than <literal>utf-8</literal> or <literal>unknown</literal> is given then the parser will read the document text using that character encoding.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-endcdatasectioncommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-endcdatasectioncommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when end of a CDATA section is encountered. The command is evaluated with no further arguments.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-enddoctypedeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-enddoctypedeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when end of the document type declaration is encountered. The command is evaluated with no further arguments.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-entitydeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-entitydeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when an entity declaration is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg choice='opt' repeat='rep'><replaceable>args</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The name of the entity being declared</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>args</replaceable></arg></seg>
<seg>Additional information about the entity declaration. An internal entity shall have a single argument, the replacement text. An external parsed entity shall have two additional arguments, the public and system indentifiers of the external resource. An external unparsed entity shall have three additional arguments, the public and system identifiers followed by the notation name.</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-entityreferencecommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-entityreferencecommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when an entity reference is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The name of the entity being referenced</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-errorcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-errorcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a fatal error is detected. The error may be due to the XML document not being well-formed. In the case of a validating parser class, the error may also be due to the XML document not obeying validity constraints. By default, a callback script is provided which causes an error return code, but an application may supply a script which attempts to continue parsing. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>errorcode</replaceable></arg>
<arg><replaceable>errormsg</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>errorcode</replaceable></arg></seg>
<seg>A single word description of the error, intended for use by an application</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>errormsg</replaceable></arg></seg>
<seg>A human-readable description of the error</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-externalentitycommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-externalentitycommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated to resolve an external entity reference. If the parser has been configured to validate the XML document, a default script is supplied that resolves the URI given as the system identifier of the external entity and recursively parses the entity's data. If the parser has been configured as a non-validating parser, then by default external entities are not resolved. This option can be used to override the default behaviour. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg><replaceable>baseuri</replaceable></arg>
<arg><replaceable>uri</replaceable></arg>
<arg><replaceable>id</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The Tcl command name of the current parser</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>baseuri</replaceable></arg></seg>
<seg>An absolute URI for the current entity which is to be used to resolve relative URIs</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>uri</replaceable></arg></seg>
<seg>The system identifier of the external entity, usually a URI</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>id</replaceable></arg></seg>
<seg>The public identifier of the external entity. If no public identifier was given in the entity declaration then <arg><replaceable>id</replaceable></arg> will be an empty string.</seg>
</seglistitem>
</segmentedlist>
<para>The return result of the callback script determines the action of the parser. Note that these codes are interpreted in a different manner to other callbacks.</para>
<variablelist>
<varlistentry>
<term><literal>TCL_OK</literal></term>
<listitem>
<para>The return result of the callback script is used as the external entity's data. The URI passed to the callback script is used as the entity's base URI.</para>
<para>This is useful to either override the normal loading of an entity's data, or to implement new or alternative URI schemes. As an example, the script below sets an external entity handler that intercepts "tcl:" URIs and evaluates them as inline Tcl scripts:</para>
<informalexample>
<programlisting><![CDATA[
package require xml
proc External {name baseuri uri id} {
switch -glob -- $uri {
tcl:* {
regexp {^tcl:(.*)$} $uri discard script
return [uplevel #0 $script]
}
default {
return -code continue {}
}
}
}
set parser [xml::parser -externalentitycommand External]
$parser parse {<!DOCTYPE example [
<!ENTITY example SYSTEM "tcl:set%20example%20HelloWorld">
]>
<example>
&example;
</example>
}
puts $example
]]></programlisting>
</informalexample>
<para>This script will print "HelloWorld" to stdout.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>TCL_CONTINUE</literal></term>
<listitem>
<para>In a normal (non-safe) interpreter, the default external entity handler is used to load the external entity data as per normal operation of the parser. If the parser is executing in a Safe Tcl interpreter then the entity is not loaded at all.</para>
<para>This is useful to interpose on the loading of external entities without interfering with the loading of entities.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>TCL_BREAK</literal></term>
<listitem>
<para>No data is returned for this entity, ie. the entity is ignored. No error is propagated.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>TCL_ERROR</literal></term>
<listitem>
<para>No data is returned for this entity, ie. the entity is ignored. A background error is registered, using the result of the callback script.</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-final</option></term>
<listitem>
<tcloptionsynopsis>
<option>-final</option>
<arg><replaceable>boolean</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies whether the XML document being parsed is complete. If the document is to be incrementally parsed then this option will be set to false, and when the last fragment of document is parsed it is set to true. For example,</para>
<informalexample>
<programlisting>
set parser [::xml::parser -final 0]
$parser parse $data1
.
.
.
$parser parse $data2
.
.
.
$parser configure -final 1
$parser parse $finaldata
</programlisting>
</informalexample>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-ignorewhitespace</option></term>
<listitem>
<tcloptionsynopsis>
<option>-ignorewhitespace</option>
<arg><replaceable>boolean</replaceable></arg>
</tcloptionsynopsis>
<para>If this option is set to true then spans of character data in the XML document which are composed only of white-space (CR, LF, space, tab) will not be reported to the application. In other words, the data passed to every invocation of the <option>-characterdatacommand</option> script will contain at least one non-white-space character.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-notationdeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-notationdeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a notation declaration is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg><replaceable>uri</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The name of the notation</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>uri</replaceable></arg></seg>
<seg>An external identifier for the notation, usually a URI.</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-notstandalonecommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-notstandalonecommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when the parser determines that the XML document being parsed is not a standalone document.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-paramentityparsing</option></term>
<listitem>
<tcloptionsynopsis>
<option>-paramentityparsing</option>
<arg><replaceable>boolean</replaceable></arg>
</tcloptionsynopsis>
<para>Controls whether external parameter entities are parsed.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-parameterentitydeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-parameterentitydeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a parameter entity declaration is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>name</replaceable></arg>
<arg choice='opt'><replaceable>args</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>name</replaceable></arg></seg>
<seg>The name of the parameter entity</seg>
</seglistitem>
<seglistitem>
<seg><arg choice='opt'><replaceable>args</replaceable></arg></seg>
<seg>For an internal parameter entity there is only one additional argument, the replacement text. For external parameter entities there are two additional arguments, the system and public identifiers respectively.</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-parser</option></term>
<listitem>
<tcloptionsynopsis>
<option>-parser</option>
<arg><replaceable>name</replaceable></arg>
</tcloptionsynopsis>
<para>The name of the parser class to instantiate for this parser object. This option may only be specified when the parser instance is created.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-processinginstructioncommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-processinginstructioncommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a processing instruction is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>target</replaceable></arg>
<arg><replaceable>data</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>target</replaceable></arg></seg>
<seg>The name of the processing instruction target</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>data</replaceable></arg></seg>
<seg>Remaining data from the processing instruction</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-reportempty</option></term>
<listitem>
<tcloptionsynopsis>
<option>-reportempty</option>
<arg><replaceable>boolean</replaceable></arg>
</tcloptionsynopsis>
<para>If this option is enabled then when an element is encountered that uses the special empty element syntax, additional arguments are appended to the <option>-elementstartcommand</option> and <option>-elementendcommand</option> callbacks. The arguments <arg>-empty 1</arg> are appended. For example:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<option>-empty</option>
<arg>1</arg>
</tclcmdsynopsis>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-startcdatasectioncommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-startcdatasectioncommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when the start of a CDATA section section is encountered. No arguments are appended to the script.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-startdoctypedeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-startdoctypedeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated at the start of a document type declaration. No arguments are appended to the script.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-unknownencodingcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-unknownencodingcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a character is encountered with an unknown encoding. This option has not been implemented.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-unparsedentitydeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-unparsedentitydeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a declaration is encountered for an unparsed entity. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>system</replaceable></arg>
<arg><replaceable>public</replaceable></arg>
<arg><replaceable>notation</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>system</replaceable></arg></seg>
<seg>The system identifier of the external entity, usually a URI</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>public</replaceable></arg></seg>
<seg>The public identifier of the external entity</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>notation</replaceable></arg></seg>
<seg>The name of the notation for the external entity</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-validate</option></term>
<listitem>
<tcloptionsynopsis>
<option>-validate</option>
<arg><replaceable>boolean</replaceable></arg>
</tcloptionsynopsis>
<para>Enables validation of the XML document to be parsed. Any changes to this option are ignored after an XML document has started to be parsed, but the option may be changed after a reset.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-warningcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-warningcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when a warning condition is detected. A warning condition is where the XML document has not been authored correctly, but is still well-formed and may be valid. For example, the special empty element syntax may be used for an element which has not been declared to have empty content. By default, a callback script is provided which silently ignores the warning. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>warningcode</replaceable></arg>
<arg><replaceable>warningmsg</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>warningcode</replaceable></arg></seg>
<seg>A single word description of the warning, intended for use by an application</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>wanringmsg</replaceable></arg></seg>
<seg>A human-readable description of the warning</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-xmldeclcommand</option></term>
<listitem>
<tcloptionsynopsis>
<option>-xmldeclcommand</option>
<arg><replaceable>script</replaceable></arg>
</tcloptionsynopsis>
<para>Specifies the prefix of a Tcl command to be evaluated when the XML declaration is encountered. The command evaluated is:</para>
<tclcmdsynopsis>
<command><replaceable>script</replaceable></command>
<arg><replaceable>version</replaceable></arg>
<arg><replaceable>encoding</replaceable></arg>
<arg><replaceable>standalone</replaceable></arg>
</tclcmdsynopsis>
<para>where:</para>
<segmentedlist>
<seglistitem>
<seg><arg><replaceable>version</replaceable></arg></seg>
<seg>The version number of the XML specification to which this document purports to conform</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>encoding</replaceable></arg></seg>
<seg>The character encoding of the document</seg>
</seglistitem>
<seglistitem>
<seg><arg><replaceable>standalone</replaceable></arg></seg>
<seg>A boolean declaring whether the document is standalone</seg>
</seglistitem>
</segmentedlist>
</listitem>
</varlistentry>
</variablelist>
</refsect3>
<refsect3>
<title>Parser Command</title>
<para>The <tclcommand>::xml::parser</tclcommand> command creates a new Tcl command with the same name as the parser. This command may be used to invoke various operations on the parser object. It has the following general form:</para>
<tclcmdsynopsis>
<command role="subject"><replaceable>name</replaceable></command>
<option><replaceable>option</replaceable></option>
<arg rep='repeat'><replaceable>arg</replaceable></arg>
</tclcmdsynopsis>
<para><option><replaceable>option</replaceable></option> and the <arg rep='repeat'><replaceable>arg</replaceable></arg> determine the exact behaviour of the command. The following commands are possible for parser objects:</para>
<variablelist>
<varlistentry>
<term><option>cget</option></term>
<listitem>
<tclcmdsynopsis>
<option>cget</option>
<arg><replaceable>-option</replaceable></arg>
</tclcmdsynopsis>
<para>Returns the current value of the configuration option given by <option><replaceable>option</replaceable></option>. <option><replaceable>Option</replaceable></option> may have any of the values accepted by the parser object.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>configure</option></term>
<listitem>
<tclcmdsynopsis>
<option>configure</option>
<group rep="repeat">
<arg><replaceable>-option</replaceable></arg>
<arg><replaceable>value</replaceable></arg>
</group>
</tclcmdsynopsis>
<para>Modify the configuration options of the parser object. <option><replaceable>Option</replaceable></option> may have any of the values accepted by the parser object.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>entityparser</option></term>
<listitem>
<tclcmdsynopsis>
<option>entityparser</option>
<group rep="repeat">
<arg><replaceable>option</replaceable></arg>
<arg><replaceable>value</replaceable></arg>
</group>
</tclcmdsynopsis>
<para>Creates a new parser object. The new object inherits the same configuration options as the parent parser object, but is able to parse XML data in a parsed entity. The option <option>-dtdsubset</option> allows markup declarations to be treated as being in the internal or external DTD subset.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>free</option></term>
<listitem>
<tclcmdsynopsis>
<option>free</option>
<arg><replaceable>name</replaceable></arg>
</tclcmdsynopsis>
<para>Frees all resources associated with the parser object. The object is not usable after this command has been invoked.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>get</option></term>
<listitem>
<tclcmdsynopsis>
<option>get</option>
<arg><replaceable>name</replaceable></arg>
<arg rep='repeat' choice='opt'>args</arg>
</tclcmdsynopsis>
<para>Returns information about the XML document being parsed. Each parser class provides different information, see the documentation for the parser class.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>parse</option></term>
<listitem>
<tclcmdsynopsis>
<option>parse</option>
<arg><replaceable>xml</replaceable></arg>
<arg rep='repeat' choice='opt'>args</arg>
</tclcmdsynopsis>
<para>Parses the XML document. The usual desired effect is for various application callbacks to be evaluated. Other functions will also be performed by the parser class, at the very least this includes checking the XML document for well-formedness.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>reset</option></term>
<listitem>
<tclcmdsynopsis>
<option>reset</option>
</tclcmdsynopsis>
<para>Initialises the parser object in preparation for parsing a new XML document.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect3>
</refsect2>
</refsect1>
<refsect1>
<title>Callback Return Codes</title>
<para>Every callback script evaluated by a parser may return a return code other than <arg>TCL_OK</arg>. Return codes are interpreted as follows:</para>
<segmentedlist>
<seglistitem>
<seg>break</seg>
<seg>Suppresses invocation of all further callback scripts. The <option>parse</option> method returns the <arg>TCL_OK</arg> return code.</seg>
</seglistitem>
<seglistitem>
<seg>continue</seg>
<seg>Suppresses invocation of further callback scripts until the current element has finished.</seg>
</seglistitem>
<seglistitem>
<seg>error</seg>
<seg>Suppresses invocation of all further callback scripts. The <option>parse</option> method also returns the <arg>TCL_ERROR</arg> return code.</seg>
</seglistitem>
<seglistitem>
<seg>default</seg>
<seg>Any other return code suppresses invocation of all further callback scripts. The <option>parse</option> method returns the same return code.</seg>
</seglistitem>
</segmentedlist>
</refsect1>
<refsect1>
<title>Error Messages</title>
<para>If an error or warning condition is detected then an error message is returned. These messages are structured as a Tcl list, as described below:</para>
<informalexample>
<programlisting>{domain level code node line message int1 int2 string1 string2 string3}</programlisting>
</informalexample>
<variablelist>
<varlistentry>
<term><literal>domain</literal></term>
<listitem>
<para>A code for the subsystem that detected the error.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>level</literal></term>
<listitem>
<para>Severity level of the problem.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>code</literal></term>
<listitem>
<para>A one word string describing the error.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>node</literal></term>
<listitem>
<para>If available, the token of the DOM node associated with the problem.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>line</literal></term>
<listitem>
<para>If known, the line number in the source XML document where the problem was detected.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>message</literal></term>
<listitem>
<para>A human-readable description of the problem.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>int1</literal></term>
<listitem>
<para>Additional integer data. For the parser domain, this is usually the column number where the problem was detected.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>int2</literal></term>
<listitem>
<para>Additional integer data.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>string1</literal></term>
<listitem>
<para>Additional string data.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>string2</literal></term>
<listitem>
<para>Additional string data.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>string3</literal></term>
<listitem>
<para>Additional string data.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>Application Examples</title>
<para>This script outputs the character data of an XML document read from stdin.</para>
<informalexample>
<programlisting>
package require xml
proc cdata {data args} {
puts -nonewline $data
}
set parser [::xml::parser -characterdatacommand cdata]
$parser parse [read stdin]
</programlisting>
</informalexample>
<para>This script counts the number of elements in an XML document read from stdin.</para>
<informalexample>
<programlisting>
package require xml
proc EStart {varName name attlist args} {
upvar #0 $varName var
incr var
}
set count 0
set parser [::xml::parser -elementstartcommand [list EStart count]]
$parser parse [read stdin]
puts "The XML document contains $count elements"
</programlisting>
</informalexample>
</refsect1>
<refsect1>
<title>Safe XML</title>
<para>TclXML/Tcl and TclXML/libxml2 may be used in a Safe Tcl interpreter. When a document is parsed in a Safe Tcl interpreter, any attempt by the XML document to load an external entity is handled by the -externalentitycommand callback. This callback is evaluated in the context of the safe interpreter and therefore is subject to the security policy in force for that interpreter. The default entity loader will not be invoked, even if the callback script returns a <literal>TCL_CONTINUE</literal> code.</para>
<para>See the description of the -externalentitycommand for further details.</para>
</refsect1>
<refsect1>
<title>Parser Classes</title>
<para>This section will discuss how a parser class is implemented.</para>
<refsect2>
<title>Tcl Parser Class</title>
<para>The pure-Tcl parser class requires no compilation - it is a collection of Tcl scripts. This parser implementation is non-validating, ie. it can only check well-formedness in a document. However, by enabling the <option>-validate</option> option it will read the document's DTD and resolve external entities. This parser class is referred to as TclXML/tcl.</para>
<para>This parser implementation aims to implement XML v1.0 and supports XML Namespaces.</para>
<para>Generally the parser produces XML Infoset information items. That is, it gives the application a slightly higher-level view than the raw XML syntax. For example, it does not report CDATA Sections.</para>
<para>TclXML/tcl is not able to handle character encodings other than UTF-8.</para>
</refsect2>
<refsect2>
<title>Expat Parser Class</title>
<para>This section will discuss the Expat parser class.</para>
</refsect2>
<refsect2>
<title>libxml2 Parser Class</title>
<para>The libxml2 parser class provides a Tcl interface to the libxml2 XML parser library. This parser class is referred to as TclXML/libxml2.</para>
<para>When the package is loaded the variable <literal>::xml::libxml2::libxml2version</literal> is set to the version number of the libxml2 library being used.</para>
<para>On MS Windows, it is necessary to load the generic XML package first, and then the TclXML/libxml2 package. For example,</para>
<informalexample>
<programlisting>
package require xml
package require xml::libxml2
</programlisting>
</informalexample>
<refsect3>
<title>get Method</title>
<para>TclXML/libxml2 provides the following arguments to the get method:</para>
<variablelist>
<varlistentry>
<term><arg>document</arg></term>
<listitem>
<para>Returns the parsed document object. libxml2 builds an in-memory data structure of the XML document it parses (a DOM tree). This method returns a handle (or token) for that structure.</para>
<para>TclXML/libxml2 manages the document object as a Tcl object. See the <option>-keep</option> for further information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect3>
<refsect3>
<title>Additional Options</title>
<variablelist>
<varlistentry>
<term><option>-keep</option></term>
<listitem>
<tcloptionsynopsis>
<option>-keep</option>
<arg>normal | implicit</arg>
</tcloptionsynopsis>
<para>Controls how the TclXML/libxml2 packages manages the document object. The default value is <literal>implicit</literal>; the document is destroyed when the Tcl Object's internal representation is freed. If the option is given the value <literal>normal</literal> then the document must be explicit destroyed. The only way to explicitly destroy the document is by using the C API.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-retainpath</option></term>
<listitem>
<tcloptionsynopsis>
<option>-retainpath</option>
<arg><replaceable>xpath</replaceable></arg>
</tcloptionsynopsis>
<para>The given XPath location path specifies which part of the document is to be kept after the parsing operation has completed. By default, all document data is discard after it has been parsed.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-retainpathns</option></term>
<listitem>
<tcloptionsynopsis>
<option>-retainpathns</option>
<arg><replaceable>prefix ns ...</replaceable></arg>
</tcloptionsynopsis>
<para>The value of this option is a list of pairs of XML Namespace prefixes and their corresponding namespace URIs. These are used by the XPath location path given in the <arg>-retainpath</arg> option.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect3>
<refsect3>
<title>Limitations</title>
<para>The libxml2 parser classes has the following limitations:</para>
<itemizedlist>
<listitem>
<para><option>-reportempty</option> has no effect. libxml2 does not report empty element syntax.</para>
</listitem>
<listitem>
<para>Incremental (push) parsing, ie. <arg><option>-final</option> <literal>0</literal></arg> is not supported.</para>
</listitem>
<listitem>
<para>TclXML/libxml2 does not provide (DTD) validation, (WXS) schema validation or Relax NG validation, although the libxml2 library does provide those functions. These functions are provided by the TclDOM/libxml2 package, but only in a "posteriori" fashion (ie. only after the document has been parsed).</para>
</listitem>
<listitem>
<para>libxml2 supports XML Namespaces. The use of XML Namespaces can be queried, but the <emphasis>declaration</emphasis> of a XML Namespace is not reported.</para>
</listitem>
</itemizedlist>
</refsect3>
</refsect2>
</refsect1>
<refsect1>
<title>See Also</title>
<para>TclDOM, a Tcl interface for the W3C Document Object Model.</para>
</refsect1>
<refsect1>
<title>Keywords</title>
<keywordset>
<keyword>XML</keyword>
<keyword>parse</keyword>
</keywordset>
</refsect1>
</refentry>
|