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 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
|
<?xml version='1.0' encoding='UTF-8'?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<!DOCTYPE s1 SYSTEM 'dtd/document.dtd'>
<s1 title='XNI Parser Configuration'>
<s2 title='Parser Configuration'>
<p>
Parser configurations built using the Xerces Native Interface
are made from a series of parser components. This document
details the XNI API for these components and how they are put
together to construct a parser configuration in the following
sections:
</p>
<ul>
<li><link anchor='components'>Components</link></li>
<li><link anchor='configurations'>Configurations</link></li>
<li><link anchor='pipelines'>Pipelines</link></li>
</ul>
<p>
In addition, several <link anchor='examples'>examples</link>
are included to show how to create some parser components and
configurations:
</p>
<ul>
<li><link anchor='abstract-parser-config'>Abstract Parser Configuration</link></li>
<li><link anchor='csv-parser-config'>CSV Parser Configuration</link></li>
</ul>
<note>
All of the interfaces and classes defined in this document
reside in the <code>org.apache.xerces.xni.parser</code> package
but may use various interfaces and classes from the core XNI
package, <code>org.apache.xerces.xni</code>.
</note>
<note>
The source code for the samples in this document are included
in the downloaded packages for Xerces2.
</note>
</s2>
<anchor name='components'/>
<s2 title='Components'>
<p>
Parser configurations are comprised of a number of parser
components that perform various tasks. For example, a parser
component may be responsible for the actual scanning of XML
documents to generate document "streaming" information
events; another component may manage commonly used symbols
within the parser configuration in order to improve
performance; and a third component may even manage the
resolution of external parsed entities and the transcoding
of these entities from various international encodings into
<jump href='http://www.unicode.org/'>Unicode</jump> used
within the Java virtual machine. When these components are
assembled in a certain way, they constitute a single parser
configuration but they can also be used interchangeably with
other components that implement the appropriate interfaces.
</p>
<p>
<strong>Note:</strong>
Even though a parser is comprised of a number of components,
not all of these components are <em>configurable</em>. In
other words, some components depend on knowing the state of
certain features and properties of the parser configuration
while others can operate completely independent of the parser
configuration. However, when we use the term "component" when
talking about XNI, we are talking about a <em>configurable
component</em> within the parser configuration.
</p>
<p>
The following diagram shows an example of this collection of
parser components: (Please note that this is not the <em>only</em>
configuration of parser components.)
</p>
<p>
<img alt='Parser Components' src='xni-components-overview.gif'/>
</p>
<p>
The only distinguishing feature of a component
is that it can be notified of the state
of parser features and properties. Features represent parser
state of type <code>boolean</code> whereas properties represent
parser state of type <code>java.lang.Object</code>. Each
component can also be queried for which features and properties
it recognizes.
</p>
<anchor name='component'/>
<s3 title='Interface XMLComponent'>
<p>
This interface is the basic configurable component in a parser
configuration. It is managed by the
<link anchor='component-manager'>XMLComponentManager</link>
which holds the parser state.
</p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void reset(
<link anchor='component-manager'>XMLComponentManager</link> manager
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public Boolean getDefaultFeature(
String featureId);
</code>
</td>
</tr>
<tr>
<td>
<code>
public void getDefaultProperty(
String propertyId);
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setFeature(
String featureId,
boolean state
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setProperty(
String propertyId,
Object value
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr><td><code>public String[] getRecognizedFeatures();</code></td></tr>
<tr><td><code>public String[] getRecognizedProperties();</code></td></tr>
</table>
</s3>
<anchor name='configuration-exception'/>
<s3 title='Class XMLConfigurationException'>
<p>
</p>
<table>
<tr>
<th>
Extends <link idref='xni-core' anchor='exception'>XNIException</link>
</th>
</tr>
<tr><th>Constants</th></tr>
<tr>
<td><code>public static final short NOT_RECOGNIZED;</code></td>
</tr>
<tr>
<td><code>public static final short NOT_SUPPORTED;</code></td>
</tr>
<tr><th>Constructors</th></tr>
<tr>
<td>
<code>
public XMLConfigurationException(
short type,
String identifier
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public XMLConfigurationException(
short type,
String identifier,
String message
);
</code>
</td>
</tr>
<tr><th>Methods</th></tr>
<tr><td><code>public short getType();</code></td></tr>
<tr><td><code>public String getIdentifier();</code></td></tr>
</table>
</s3>
<p>
Components are managed by a component manager. The component
manager keeps track of the parser state for features and
properties. The component manager is responsible for notifying
each component when the value of those features and properties
change.
</p>
<p>
Before parsing a document, a parser configuration <em>must</em>
use the component manager to reset all of the parser components.
Then, during parsing, each time a feature or property value is
modified, all of the components <em>must</em> be informed of the
change.
</p>
<anchor name='component-manager'/>
<s3 title='Interface XMLComponentManager'>
<p>
The component manager interface allows components to query
needed features and properties during a call to the
<code>XMLComponent#reset(XMLComponentManager)</code> method.
However, components <em>should not</em> keep a reference to
the component manager. In other words, all necessary state
should be queried when the component is reset.
</p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public boolean getFeature(
String featureId
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public Object getProperty(
String propertyId
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
</table>
</s3>
<p>
<strong>Note:</strong>
A compliant XNI parser configuration is <em>not</em>
required to use any components that implement the
<code><link anchor='component'>XMLComponent</link></code>
interface. That interface is included as a convenience for
people building modular and configurable parser components.
The Xerces2 reference implementation uses the component
interface to implement its components so that they can be
used interchangeably in various configurations.
</p>
</s2>
<anchor name='configurations'/>
<s2 title='Configurations'>
<p>
An XNI parser configuration defines the entry point for a
parser to set features and properties, initiate a parse of
an XML instance document, perform entity resolution, and
receive notification of errors that occurred in the document.
</p>
<p>
A parser configuration is typically comprised of a series of
parser components. Some of these components may be
connected together to form the parsing pipeline. This parser
configuration is then used by a specific parser implementation
that generates a particular API, such as DOM or SAX. The
separation between the parser configuration and parser instance
allows the same API-generating parser to be used with an
unlimited number of different parser configurations.
</p>
<p>
When a document is parsed, the parser configuration resets the
configurable components and initiates the scanning of the
document. Typically, a scanner starts scanning the document
which generates XNI information set events that are sent to
the next component in the pipeline (e.g. the validator). The
information set events coming out of the end of the pipeline
are then communicated to the document and DTD handlers that
are registered with the parser configuration.
</p>
<p>
The following diagram shows both the generic parsing pipeline
contained within a parser configuration and the separation of
parser configuration and specific parser classes.
</p>
<p>
<img alt='Parser Configuration' src='xni-parser-configuration.gif'/>
</p>
<p>
There are two parser configuration interfaces defined in XNI:
the <code>XMLParserConfiguration</code> and the
<code>XMLPullParserConfiguration</code>. For most purposes, the
standard parser configuration will suffice. Document and DTD
handler interfaces will be registered on the parser configuration
and the document will be parsed completely by calling the
<code>parse(XMLInputSource)</code> method. In this situation,
the application is driven by the output of the configuration.
</p>
<p>
However, the <code>XMLPullParserConfiguration</code> interface
extends the <code>XMLParserConfiguration</code> interface to
provide methods that allow the application to drive the
configuration. Any configuration class that implements this
interface guarantees that it can be driven in a pull parsing
fashion but does not make any statement as to how much or how
little pull parsing will be performed at each step.
</p>
<anchor name='parser-configuration'/>
<s3 title='Interface XMLParserConfiguration'>
<p>
The parser configuration is the primary connection to specific
parser instances. Because the parser configuration is responsible
for holding the parser state, the
<code>addRecognizedFeatures(String[])</code> and
<code>addRecognizedProperties(String[])</code> methods allow the
parser instance to add recognized features and properties that
the parser configuration will store.
</p>
<!--
<table>
<tr>
<th>
Extends <link anchor='component-manager'>XMLComponentManager</link>
</th>
</tr>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setFeature(
String featureId,
boolean state
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setProperty(
String propertyId,
Object value
) throws <link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>public void addRecognizedFeatures(String[] featureIds);</code>
</td>
</tr>
<tr>
<td>
<code>public void addRecognizedProperties(String[] propertyIds);</code>
</td>
</tr>
<tr>
<td>
<code>
public void setEntityResolver(
<link anchor='entity-resolver'>XMLEntityResolver</link> resolver
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link anchor='entity-resolver'>XMLEntityResolver</link>
getEntityResolver();
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setErrorHandler(
<link anchor='error-handler'>XMLErrorHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link anchor='error-handler'>XMLErrorHandler</link>
getErrorHandler();
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setDocumentHandler(
<link idref='xni-core' anchor='document-handler'>XMLDocumentHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link anchor='document-handler'>XMLDocumentHandler</link>
getDocumentHandler();
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setDTDHandler(
<link idref='xni-core' anchor='dtd-handler'>XMLDTDHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link anchor='dtd-handler'>XMLDTDHandler</link>
getDTDHandler();
</code>
</td>
</tr>
<tr>
<td>
<code>
public void setDTDContentModelHandler(
<link idref='xni-core' anchor='dtd-content-model-handler'>XMLDTDContentModelHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link anchor='dtd-content-model-handler'>XMLDTDContentModelHandler</link>
getDTDContentModelHandler();
</code>
</td>
</tr>
<tr>
<td>
<code>
public void parse(
<link anchor='input-source'>XMLInputSource</link> source
) throws java.io.IOException, <link anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
<tr><td><code>public void setLocale(java.util.Locale);</code></td></tr>
<tr><td><code>public Locale getLocale();</code></td></tr>
</table>
-->
</s3>
<anchor name='pull-parser-configuration'/>
<s3 title='Interface XMLPullParserConfiguration'>
<p>
Parser configurations that implement this interface state that they
can be driven by the application in a pull parser fashion.
</p>
<table>
<tr>
<th>
Extends <link anchor='parser-configuration'>XMLParserConfiguration</link>
</th>
</tr>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setInputSource(
<link anchor='input-source'>XMLInputSource</link> source
) throws java.io.IOException,
<link anchor='configuration-exception'>XMLConfigurationException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public boolean parse(boolean complete)
throws java.io.IOException,
<link anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
</table>
</s3>
<anchor name='entity-resolver'/>
<s3 title='Interface XMLEntityResolver'>
<p>
This interface is used to resolve external parsed entities. The
application can register an object that implements this interface
with the parser configuration in order to intercept entities and
resolve them explicitly. If the registered entity resolver cannot
resolve the entity, it should return <code>null</code> so that the
parser will try to resolve the entity using a default mechanism. </p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public <link anchor='input-source'>XMLInputSource</link> resolveEntity(
<link anchor='resource-identifier'>XMLResourceIdentifier</link> resourceIdentifier
) throws java.io.IOException, <link anchor='parse-exception'>XMLParseException</link>;
</code>
</td>
</tr>
</table>
</s3>
<anchor name='error-handler'/>
<s3 title='Interface XMLErrorHandler'>
<p>
An interface for handling errors. If the application is interested
in error notifications, then it can register an error handler object
that implements this interface with the parser configuration.
</p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void warning(
String domain,
String key,
<link anchor='parse-exception'>XMLParseException</link> exception
) throws <link idref='xni-core' anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public void error(
String domain,
String key,
<link anchor='parse-exception'>XMLParseException</link> exception
) throws <link idref='xni-core' anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public void fatalError(
String domain,
String key,
<link anchor='parse-exception'>XMLParseException</link> exception
) throws <link idref='xni-core' anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
</table>
</s3>
<anchor name='input-source'/>
<s3 title='Class XMLInputSource'>
<p>
This class represents an input source for an XML document. The
basic properties of an input source are the following:
public identifier,
system identifier,
byte stream or character stream.
</p>
<!--
<table>
<tr><th>Constructors</th></tr>
<tr>
<td>
<code>
public XMLInputSource(
String publicId,
String systemId,
String baseSystemId
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public XMLInputSource(
String publicId,
String systemId,
String baseSystemId,
java.io.InputStream byteStream,
String encoding
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public XMLInputSource(
String publicId,
String systemId,
String baseSystemId
java.io.Reader characterStream,
String encoding
);
</code>
</td>
</tr>
<tr><th>Methods</th></tr>
<tr><td><code>public void setPublicId(String publicId);</code></td></tr>
<tr><td><code>public String getPublicId();</code></td></tr>
<tr><td><code>public void setSystemId(String systemId);</code></td></tr>
<tr><td><code>public String getSystemId();</code></td></tr>
<tr><td><code>public void getBaseSystemId(String baseSystemId);</code></td></tr>
<tr><td><code>public String getBaseSystemId();</code></td></tr>
<tr><td><code>public void getByteStream(java.io.InputStream byteStream);</code></td></tr>
<tr><td><code>public java.io.InputStream getByteStream();</code></td></tr>
<tr><td><code>public void getCharacterStream(java.io.Reader characterStream);</code></td></tr>
<tr><td><code>public java.io.Reader getCharacterStream();</code></td></tr>
<tr><td><code>public void setEncoding(String encoding);</code></td></tr>
<tr><td><code>public String getEncoding();</code></td></tr>
</table>
-->
</s3>
<anchor name='resource-identifier'/>
<s3 title='Class XMLResourceIdentifier'>
<p>
This represents the basic physical description of the location of any
XML resource (a Schema grammar, a DTD, a general entity etc.)
</p>
</s3>
<anchor name='parse-exception'/>
<s3 title='Class XMLParseException'>
<p>
A parsing exception. This exception is different from the standard
XNI exception in that it stores the location in the document (or
its entities) where the exception occurred.
</p>
<!--
<table>
<tr>
<th>
Extends <link idref='xni-core' anchor='exception'>XNIException</link>
</th>
</tr>
<tr><th>Constructors</th></tr>
<tr>
<td>
<code>
public XMLParseException(
<link idref='xni-core' anchor='locator'>XMLLocator</link> location,
String message
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public XMLParseException(
<link idref='xni-core' anchor='locator'>XMLLocator</link> location,
String message,
Exception exception
);
</code>
</td>
</tr>
<tr><th>Methods</th></tr>
<tr><td><code>public String getPublicId();</code></td></tr>
<tr><td><code>public String getSystemId();</code></td></tr>
<tr><td><code>public String getBaseSystemId();</code></td></tr>
<tr><td><code>public int getLineNumber();</code></td></tr>
<tr><td><code>public int getColumnNumber();</code></td></tr>
</table>
-->
</s3>
</s2>
<anchor name='pipelines'/>
<s2 title='Pipelines'>
<p>
The <link idref='xni-core'>Core Interfaces</link> provide
interfaces for the streaming information set. While these
interfaces are sufficient for communicating the document and
DTD information, it does not provide an easy way to construct
the pipeline or initiate the pipeline to start parsing an
XML document. The <code>org.apache.xerces.xni.parser</code>
package has additional interfaces to fill exactly this need.
</p>
<p>
Each parser configuration can be thought of as two separate
pipelines: one for document information and one for DTD
information. Each pipeline starts with a scanner and is followed
by zero or more filters (objects that implement interfaces
to handle the incoming information as well as register
handlers for the outgoing information). The information that
comes out the end of the pipeline is usually forwarded by
the parser configuration to the registered handlers.
</p>
<p>
There are two scanner interfaces defined: the XMLDocumentScanner
and the XMLDTDScanner:
</p>
<anchor name='document-scanner'/>
<s3 title='Interface XMLDocumentScanner'>
<p>This interface defines an XML document scanner.</p>
<table>
<tr>
<th>
Extends <link anchor='document-source'>XMLDocumentSource</link>
</th>
</tr>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setInputSource(
<link anchor='input-source'>XMLInputSource</link> source
) throws java.io.IOException;
</code>
</td>
</tr>
<tr>
<td>
<code>
public boolean scanDocument(boolean complete)
throws java.io.IOException, <link anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
</table>
</s3>
<anchor name='dtd-scanner'/>
<s3 title='Interface XMLDTDScanner'>
<p>
This interface defines a DTD scanner. Typically, scanning of
the DTD internal subset is initiated from the XML document
scanner so the input source is implicitly the same as the
one used by the document scanner. Therefore, the
<code>setInputSource</code> method should only be called before
scanning of the DTD external subset.
</p>
<table>
<tr>
<th>
Extends <link anchor='dtd-source'>XMLDTDSource</link>,
<link anchor='dtd-content-model-source'>XMLDTDContentModelSource</link>
</th>
</tr>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setInputSource(
<link anchor='input-source'>XMLInputSource</link> source
) throws java.io.IOException;
</code>
</td>
</tr>
<tr>
<td>
<code>
public boolean scanDTDInternalSubset(
boolean complete,
boolean standalone,
boolean hasExternalSubset
) throws java.io.IOException, <link anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
<tr>
<td>
<code>
public boolean scanDTDExternalSubset(
boolean complete
) throws java.io.IOException, <link anchor='exception'>XNIException</link>;
</code>
</td>
</tr>
</table>
</s3>
<p>
Notice how each scanner interface's scanning methods take a
<code>complete</code> parameter and returns a boolean. This
allows (but does not require) scanners that implement these
interfaces to provide "pull" parsing behaviour in which the
application drives the parser's operation instead of having
parsing events "pushed" to the registered handlers.
</p>
<p>
After the scanners, zero or filters may be present in a parser
configuration pipeline. A document pipeline filter implements the
<link idref='xni-core' anchor='document-handler'>XMLDocumentHandler</link>
interface from the XNI Core Interfaces as well as the
<link anchor='document-source'>XMLDocumentSource</link>
interface which allows filters to be chained together in
the pipeline. There are equivalents source interfaces for the
DTD information as well.
</p>
<anchor name='document-source'/>
<s3 title='Interface XMLDocumentSource'>
<p>This interface allows a document handler to be registered.</p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setDocumentHandler(
<link idref='xni-core' anchor='document-handler'>XMLDocumentHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link idref='xni-core' anchor='document-handler'>XMLDocumentHandler</link> getDocumentHandler();
</code>
</td>
</tr>
</table>
</s3>
<anchor name='document-filter'/>
<s3 title='Interface XMLDocumentFilter'>
<p>
Defines a document filter that acts as both a receiver and
an emitter of document events.
</p>
<table>
<tr>
<th> Extends
<link idref='xni-core' anchor='document-handler'>XMLDocumentHandler</link>,
<link anchor='document-source'>XMLDocumentSource</link>
</th>
</tr>
</table>
</s3>
<anchor name='dtd-source'/>
<s3 title='Interface XMLDTDSource'>
<p>This interface allows a DTD handler to be registered.</p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setDTDHandler(
<link idref='xni-core' anchor='dtd-handler'>XMLDTDHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link idref='xni-core' anchor='dtd-handler'>XMLDTDHandler</link> getDTDHandler();
</code>
</td>
</tr>
</table>
</s3>
<anchor name='dtd-filter'/>
<s3 title='Interface XMLDTDFilter'>
<p>
Defines a DTD filter that acts as both a receiver and
an emitter of DTD events.
</p>
<table>
<tr>
<th> Extends
<link idref='xni-core' anchor='dtd-handler'>XMLDTDHandler</link>,
<link anchor='dtd-source'>XMLDTDSource</link>
</th>
</tr>
</table>
</s3>
<anchor name='dtd-content-model-source'/>
<s3 title='Interface XMLDTDContentModelSource'>
<p>This interface allows a DTD content model handler to be registered.</p>
<table>
<tr><th>Methods</th></tr>
<tr>
<td>
<code>
public void setDTDContentModelHandler(
<link idref='xni-core' anchor='dtd-content-model-handler'>XMLDTDContentModelHandler</link> handler
);
</code>
</td>
</tr>
<tr>
<td>
<code>
public <link idref='xni-core' anchor='dtd-content-model-handler'>XMLDTDContentModelHandler</link> getDTDContentModelHandler();
</code>
</td>
</tr>
</table>
</s3>
<anchor name='dtd-content-model-filter'/>
<s3 title='Interface XMLDTDContentModelFilter'>
<p>
Defines a DTD content model filter that acts as both a receiver and
an emitter of DTD content model events.
</p>
<table>
<tr>
<th> Extends
<link idref='xni-core' anchor='dtd-content-model-handler'>XMLDTDContentModelHandler</link>,
<link anchor='dtd-content-model-source'>XMLDTDContentModelSource</link>
</th>
</tr>
</table>
</s3>
<p>
The next section gives some basic examples for using the XNI
framework to construct filters and parser configurations.
</p>
</s2>
<anchor name='examples'/>
<s2 title='Examples'>
<p>
The following samples show how to create various parser components
and parser configurations. The XNI samples included with the Xerces2
reference release provide a convenient way to test a parser
configuration. For example, to test the
<link anchor='csv-parser-config'>CSV Parser Configuration</link>
example, run the following command:
</p>
<source>java xni.DocumentTracer -p CSVConfiguration document.csv</source>
<p>
Or a new CSV parser can be constructed that produces standard
SAX events. For example:
</p>
<source>import org.apache.xerces.parsers.AbstractSAXParser;
public class CSVParser
extends AbstractSAXParser {
// Constructors
public CSVParser() {
super(new CSVConfiguration());
}
} // class CSVParser</source>
<p>
The following samples are available:
</p>
<ul>
<li><link anchor='abstract-parser-config'>Abstract Parser Configuration</link></li>
<li><link anchor='csv-parser-config'>CSV Parser Configuration</link></li>
</ul>
<anchor name='abstract-parser-config'/>
<s3 title='Abstract Parser Configuration'>
<p>
This abstract parser configuration simply helps manage
components, features and properties, and other tasks common to
all parser configurations.
</p>
<source><![CDATA[import java.io.FileInputStream;
import java.io.InputStream;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Hashtable;
import java.util.Locale;
import java.util.Vector;
import org.apache.xerces.xni.XMLDocumentHandler;
import org.apache.xerces.xni.XMLDTDHandler;
import org.apache.xerces.xni.XMLDTDContentModelHandler;
import org.apache.xerces.xni.XNIException;
import org.apache.xerces.xni.parser.XMLComponent;
import org.apache.xerces.xni.parser.XMLConfigurationException;
import org.apache.xerces.xni.parser.XMLEntityResolver;
import org.apache.xerces.xni.parser.XMLErrorHandler;
import org.apache.xerces.xni.parser.XMLInputSource;
import org.apache.xerces.xni.parser.XMLParserConfiguration;
public abstract class AbstractConfiguration
implements XMLParserConfiguration {
// Data
protected final Vector fRecognizedFeatures = new Vector();
protected final Vector fRecognizedProperties = new Vector();
protected final Hashtable fFeatures = new Hashtable();
protected final Hashtable fProperties = new Hashtable();
protected XMLEntityResolver fEntityResolver;
protected XMLErrorHandler fErrorHandler;
protected XMLDocumentHandler fDocumentHandler;
protected XMLDTDHandler fDTDHandler;
protected XMLDTDContentModelHandler fDTDContentModelHandler;
protected Locale fLocale;
protected final Vector fComponents = new Vector();
// XMLParserConfiguration methods
public void addRecognizedFeatures(String[] featureIds) {
int length = featureIds != null ? featureIds.length : 0;
for (int i = 0; i < length; i++) {
String featureId = featureIds[i];
if (!fRecognizedFeatures.contains(featureId)) {
fRecognizedFeatures.addElement(featureId);
}
}
}
public void setFeature(String featureId, boolean state)
throws XMLConfigurationException {
if (!fRecognizedFeatures.contains(featureId)) {
short type = XMLConfigurationException.NOT_RECOGNIZED;
throw new XMLConfigurationException(type, featureId);
}
fFeatures.put(featureId, state ? Boolean.TRUE : Boolean.FALSE);
int length = fComponents.size();
for (int i = 0; i < length; i++) {
XMLComponent component = (XMLComponent)fComponents.elementAt(i);
component.setFeature(featureId, state);
}
}
public boolean getFeature(String featureId)
throws XMLConfigurationException {
if (!fRecognizedFeatures.contains(featureId)) {
short type = XMLConfigurationException.NOT_RECOGNIZED;
throw new XMLConfigurationException(type, featureId);
}
Boolean state = (Boolean)fFeatures.get(featureId);
return state != null ? state.booleanValue() : false;
}
public void addRecognizedProperties(String[] propertyIds) {
int length = propertyIds != null ? propertyIds.length : 0;
for (int i = 0; i < length; i++) {
String propertyId = propertyIds[i];
if (!fRecognizedProperties.contains(propertyId)) {
fRecognizedProperties.addElement(propertyId);
}
}
}
public void setProperty(String propertyId, Object value)
throws XMLConfigurationException {
if (!fRecognizedProperties.contains(propertyId)) {
short type = XMLConfigurationException.NOT_RECOGNIZED;
throw new XMLConfigurationException(type, propertyId);
}
if (value != null) {
fProperties.put(propertyId, value);
}
else {
fProperties.remove(propertyId);
}
int length = fComponents.size();
for (int i = 0; i < length; i++) {
XMLComponent component = (XMLComponent)fComponents.elementAt(i);
component.setProperty(propertyId, value);
}
}
public Object getProperty(String propertyId)
throws XMLConfigurationException {
if (!fRecognizedProperties.contains(propertyId)) {
short type = XMLConfigurationException.NOT_RECOGNIZED;
throw new XMLConfigurationException(type, propertyId);
}
Object value = fProperties.get(propertyId);
return value;
}
public void setEntityResolver(XMLEntityResolver resolver) {
fEntityResolver = resolver;
}
public XMLEntityResolver getEntityResolver() {
return fEntityResolver;
}
public void setErrorHandler(XMLErrorHandler handler) {
fErrorHandler = handler;
}
public XMLErrorHandler getErrorHandler() {
return fErrorHandler;
}
public void setDocumentHandler(XMLDocumentHandler handler) {
fDocumentHandler = handler;
}
public XMLDocumentHandler getDocumentHandler() {
return fDocumentHandler;
}
public void setDTDHandler(XMLDTDHandler handler) {
fDTDHandler = handler;
}
public XMLDTDHandler getDTDHandler() {
return fDTDHandler;
}
public void setDTDContentModelHandler(XMLDTDContentModelHandler handler) {
fDTDContentModelHandler = handler;
}
public XMLDTDContentModelHandler getDTDContentModelHandler() {
return fDTDContentModelHandler;
}
public abstract void parse(XMLInputSource inputSource)
throws IOException, XNIException;
public void setLocale(Locale locale) {
fLocale = locale;
}
// Protected methods
protected void addComponent(XMLComponent component) {
if (!fComponents.contains(component)) {
fComponents.addElement(component);
addRecognizedFeatures(component.getRecognizedFeatures());
addRecognizedProperties(component.getRecognizedProperties());
}
}
protected void resetComponents()
throws XMLConfigurationException {
int length = fComponents.size();
for (int i = 0; i < length; i++) {
XMLComponent component = (XMLComponent)fComponents.elementAt(i);
component.reset(this);
}
}
protected void openInputSourceStream(XMLInputSource source)
throws IOException {
if (source.getCharacterStream() != null) {
return;
}
InputStream stream = source.getByteStream();
if (stream == null) {
String systemId = source.getSystemId();
try {
URL url = new URL(systemId);
stream = url.openStream();
}
catch (MalformedURLException e) {
stream = new FileInputStream(systemId);
}
source.setByteStream(stream);
}
}
} // class AbstractConfiguration]]></source>
</s3>
<anchor name='csv-parser-config'/>
<s3 title='CSV Parser Configuration'>
<p>
This example is a very simple parser configuration that can
parse files with comma-separated values (CSV) to generate
XML events. For example, the following CSV document:
</p>
<source>Andy Clark,16 Jan 1973,Cincinnati</source>
<p>
produces the following XML "document" as represented by the
XNI streaming document information:
</p>
<source><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE csv [
<!ELEMENT csv (row)*>
<!ELEMENT row (col)*>
<!ELEMENT col (#PCDATA)>
]>
<csv>
<row>
<col>Andy Clark</col>
<col>16 Jan 1973</col>
<col>Cincinnati</col>
</row>
</csv>]]></source>
<p>
Here is the source code for the CSV parser configuration.
Notice that it does not use any components. Rather, it implements
the CSV parsing directly in the parser configuration's
<code>parse(XMLInputSource)</code> method. This demonstrates
that you are <em>not</em> required to use the
<code>XMLComponent</code> interface but it is there for
building modular components that can be used in other
configurations.
</p>
<source><![CDATA[import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.Reader;
import java.util.StringTokenizer;
import org.apache.xerces.util.XMLAttributesImpl;
import org.apache.xerces.util.XMLStringBuffer;
import org.apache.xerces.xni.QName;
import org.apache.xerces.xni.XMLAttributes;
import org.apache.xerces.xni.XMLDTDContentModelHandler;
import org.apache.xerces.xni.XNIException;
import org.apache.xerces.xni.parser.XMLInputSource;
public class CSVConfiguration
extends AbstractConfiguration {
// Constants
protected static final QName CSV = new QName(null, null, "csv", null);
protected static final QName ROW = new QName(null, null, "row", null);
protected static final QName COL = new QName(null, null, "col", null);
protected static final XMLAttributes EMPTY_ATTRS = new XMLAttributesImpl();
// Data
private final XMLStringBuffer fStringBuffer = new XMLStringBuffer();
// XMLParserConfiguration methods
public void setFeature(String featureId, boolean state) {}
public boolean getFeature(String featureId) { return false; }
public void setProperty(String propertyId, Object value) {}
public Object getProperty(String propertyId) { return null; }
public void parse(XMLInputSource source)
throws IOException, XNIException {
// get reader
openInputSourceStream(source);
Reader reader = source.getCharacterStream();
if (reader == null) {
InputStream stream = source.getByteStream();
reader = new InputStreamReader(stream);
}
BufferedReader bufferedReader = new BufferedReader(reader);
// start document
if (fDocumentHandler != null) {
fDocumentHandler.startDocument(null, "UTF-8");
fDocumentHandler.xmlDecl("1.0", "UTF-8", null);
fDocumentHandler.doctypeDecl("csv", null, null);
}
if (fDTDHandler != null) {
fDTDHandler.startDTD(null);
fDTDHandler.elementDecl("csv", "(row)*");
fDTDHandler.elementDecl("row", "(col)*");
fDTDHandler.elementDecl("col", "(#PCDATA)");
}
if (fDTDContentModelHandler != null) {
fDTDContentModelHandler.startContentModel("csv");
fDTDContentModelHandler.startGroup();
fDTDContentModelHandler.element("row");
fDTDContentModelHandler.endGroup();
short csvOccurs = XMLDTDContentModelHandler.OCCURS_ZERO_OR_MORE;
fDTDContentModelHandler.occurrence(csvOccurs);
fDTDContentModelHandler.endContentModel();
fDTDContentModelHandler.startContentModel("row");
fDTDContentModelHandler.startGroup();
fDTDContentModelHandler.element("col");
fDTDContentModelHandler.endGroup();
short rowOccurs = XMLDTDContentModelHandler.OCCURS_ZERO_OR_MORE;
fDTDContentModelHandler.occurrence(rowOccurs);
fDTDContentModelHandler.endContentModel();
fDTDContentModelHandler.startContentModel("col");
fDTDContentModelHandler.startGroup();
fDTDContentModelHandler.pcdata();
fDTDContentModelHandler.endGroup();
fDTDContentModelHandler.endContentModel();
}
if (fDTDHandler != null) {
fDTDHandler.endDTD();
}
if (fDocumentHandler != null) {
fDocumentHandler.startElement(CSV, EMPTY_ATTRS);
}
// read lines
String line;
while ((line = bufferedReader.readLine()) != null) {
if (fDocumentHandler != null) {
fDocumentHandler.startElement(ROW, EMPTY_ATTRS);
StringTokenizer tokenizer = new StringTokenizer(line, ",");
while (tokenizer.hasMoreTokens()) {
fDocumentHandler.startElement(COL, EMPTY_ATTRS);
String token = tokenizer.nextToken();
fStringBuffer.clear();
fStringBuffer.append(token);
fDocumentHandler.characters(fStringBuffer);
fDocumentHandler.endElement(COL);
}
fDocumentHandler.endElement(ROW);
}
}
bufferedReader.close();
// end document
if (fDocumentHandler != null) {
fDocumentHandler.endElement(CSV);
fDocumentHandler.endDocument();
}
}
} // class CSVConfiguration]]></source>
<p>
The source code is longer than it actually needs to be because
it also emits the DTD information necessary for a validating
parser to validate the document. The real core of the example
is the following:
</p>
<source><![CDATA[fDocumentHandler.startDocument(null, "UTF-8");
fDocumentHandler.startElement(CSV, EMPTY_ATTRS);
String line;
while ((line = bufferedReader.readLine()) != null) {
if (fDocumentHandler != null) {
fDocumentHandler.startElement(ROW, EMPTY_ATTRS);
StringTokenizer tokenizer = new StringTokenizer(line, ",");
while (tokenizer.hasMoreTokens()) {
fDocumentHandler.startElement(COL, EMPTY_ATTRS);
String token = tokenizer.nextToken();
fStringBuffer.clear();
fStringBuffer.append(token);
fDocumentHandler.characters(fStringBuffer);
fDocumentHandler.endElement(COL);
}
fDocumentHandler.endElement(ROW);
}
}
fDocumentHandler.endElement(CSV);
fDocumentHandler.endDocument();]]></source>
</s3>
</s2>
</s1>
|