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 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
|
/* SAXDriver.java --
Copyright (C) 1999,2000,2001,2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
Portions derived from code which carried the following notice:
Copyright (c) 1997, 1998 by Microstar Software Ltd.
AElfred is free for both commercial and non-commercial use and
redistribution, provided that Microstar's copyright and disclaimer are
retained intact. You are free to modify AElfred for your own use and
to redistribute AElfred with your modifications, provided that the
modifications are clearly documented.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
merchantability or fitness for a particular purpose. Please use it AT
YOUR OWN RISK.
*/
package gnu.xml.aelfred2;
import java.io.*;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Locale;
import java.util.Stack;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;
import org.xml.sax.*;
import org.xml.sax.ext.*;
import org.xml.sax.helpers.NamespaceSupport;
/**
* An enhanced SAX2 version of Microstar's Ælfred XML parser.
* The enhancements primarily relate to significant improvements in
* conformance to the XML specification, and SAX2 support. Performance
* has been improved. See the package level documentation for more
* information.
*
* <table border="1" width='100%' cellpadding='3' cellspacing='0'>
* <tr bgcolor='#ccccff'>
* <th><font size='+1'>Name</font></th>
* <th><font size='+1'>Notes</font></th></tr>
*
* <tr><td colspan=2><center><em>Features ... URL prefix is
* <b>http://xml.org/sax/features/</b></em></center></td></tr>
*
* <tr><td>(URL)/external-general-entities</td>
* <td>Value defaults to <em>true</em></td></tr>
* <tr><td>(URL)/external-parameter-entities</td>
* <td>Value defaults to <em>true</em></td></tr>
* <tr><td>(URL)/is-standalone</td>
* <td>(PRELIMINARY) Returns true iff the document's parsing
* has started (some non-error event after <em>startDocument()</em>
* was reported) and the document's standalone flag is set.</td></tr>
* <tr><td>(URL)/namespace-prefixes</td>
* <td>Value defaults to <em>false</em> (but XML 1.0 names are
* always reported)</td></tr>
* <tr><td>(URL)/lexical-handler/parameter-entities</td>
* <td>Value is fixed at <em>true</em></td></tr>
* <tr><td>(URL)/namespaces</td>
* <td>Value defaults to <em>true</em></td></tr>
* <tr><td>(URL)/resolve-dtd-uris</td>
* <td>(PRELIMINARY) Value defaults to <em>true</em></td></tr>
* <tr><td>(URL)/string-interning</td>
* <td>Value is fixed at <em>true</em></td></tr>
* <tr><td>(URL)/use-attributes2</td>
* <td>(PRELIMINARY) Value is fixed at <em>true</em></td></tr>
* <tr><td>(URL)/use-entity-resolver2</td>
* <td>(PRELIMINARY) Value defaults to <em>true</em></td></tr>
* <tr><td>(URL)/validation</td>
* <td>Value is fixed at <em>false</em></td></tr>
*
* <tr><td colspan=2><center><em>Handler Properties ... URL prefix is
* <b>http://xml.org/sax/properties/</b></em></center></td></tr>
*
* <tr><td>(URL)/declaration-handler</td>
* <td>A declaration handler may be provided. </td></tr>
* <tr><td>(URL)/lexical-handler</td>
* <td>A lexical handler may be provided. </td></tr>
* </table>
*
* <p>This parser currently implements the SAX1 Parser API, but
* it may not continue to do so in the future.
*
* @author Written by David Megginson (version 1.2a from Microstar)
* @author Updated by David Brownell <dbrownell@users.sourceforge.net>
* @see org.xml.sax.Parser
*/
final public class SAXDriver
implements Locator, Attributes2, XMLReader, Parser, AttributeList
{
private final DefaultHandler2 base = new DefaultHandler2();
private XmlParser parser;
private EntityResolver entityResolver = base;
private EntityResolver2 resolver2 = null;
private ContentHandler contentHandler = base;
private DTDHandler dtdHandler = base;
private ErrorHandler errorHandler = base;
private DeclHandler declHandler = base;
private LexicalHandler lexicalHandler = base;
private String elementName;
private Stack entityStack;
// one vector (of object/struct): faster, smaller
private List attributesList;
private boolean namespaces = true;
private boolean xmlNames = false;
private boolean extGE = true;
private boolean extPE = true;
private boolean resolveAll = true;
private boolean useResolver2 = true;
// package private to allow (read-only) access in XmlParser
boolean stringInterning = true;
private int attributeCount;
private boolean attributes;
private String[] nsTemp;
private NamespaceSupport prefixStack;
//
// Constructor.
//
/**
* Constructs a SAX Parser.
*/
public SAXDriver()
{
reset();
}
private void reset()
{
elementName = null;
entityStack = new Stack();
attributesList = Collections.synchronizedList(new ArrayList());
attributeCount = 0;
attributes = false;
nsTemp = new String[3];
prefixStack = null;
}
//
// Implementation of org.xml.sax.Parser.
//
/**
* <b>SAX1</b>: Sets the locale used for diagnostics; currently,
* only locales using the English language are supported.
* @param locale The locale for which diagnostics will be generated
*/
public void setLocale(Locale locale)
throws SAXException
{
if ("en".equals(locale.getLanguage()))
{
return;
}
throw new SAXException ("AElfred2 only supports English locales.");
}
/**
* <b>SAX2</b>: Returns the object used when resolving external
* entities during parsing (both general and parameter entities).
*/
public EntityResolver getEntityResolver()
{
return (entityResolver == base) ? null : entityResolver;
}
/**
* <b>SAX1, SAX2</b>: Set the entity resolver for this parser.
* @param handler The object to receive entity events.
*/
public void setEntityResolver(EntityResolver resolver)
{
if (resolver instanceof EntityResolver2)
{
resolver2 = (EntityResolver2) resolver;
}
else
{
resolver2 = null;
}
if (resolver == null)
{
resolver = base;
}
entityResolver = resolver;
}
/**
* <b>SAX2</b>: Returns the object used to process declarations related
* to notations and unparsed entities.
*/
public DTDHandler getDTDHandler()
{
return (dtdHandler == base) ? null : dtdHandler;
}
/**
* <b>SAX1, SAX2</b>: Set the DTD handler for this parser.
* @param handler The object to receive DTD events.
*/
public void setDTDHandler(DTDHandler handler)
{
if (handler == null)
{
handler = base;
}
this.dtdHandler = handler;
}
/**
* <b>SAX1</b>: Set the document handler for this parser. If a
* content handler was set, this document handler will supplant it.
* The parser is set to report all XML 1.0 names rather than to
* filter out "xmlns" attributes (the "namespace-prefixes" feature
* is set to true).
*
* @deprecated SAX2 programs should use the XMLReader interface
* and a ContentHandler.
*
* @param handler The object to receive document events.
*/
public void setDocumentHandler(DocumentHandler handler)
{
contentHandler = new Adapter(handler);
xmlNames = true;
}
/**
* <b>SAX2</b>: Returns the object used to report the logical
* content of an XML document.
*/
public ContentHandler getContentHandler()
{
return (contentHandler == base) ? null : contentHandler;
}
/**
* <b>SAX2</b>: Assigns the object used to report the logical
* content of an XML document. If a document handler was set,
* this content handler will supplant it (but XML 1.0 style name
* reporting may remain enabled).
*/
public void setContentHandler(ContentHandler handler)
{
if (handler == null)
{
handler = base;
}
contentHandler = handler;
}
/**
* <b>SAX1, SAX2</b>: Set the error handler for this parser.
* @param handler The object to receive error events.
*/
public void setErrorHandler(ErrorHandler handler)
{
if (handler == null)
{
handler = base;
}
this.errorHandler = handler;
}
/**
* <b>SAX2</b>: Returns the object used to receive callbacks for XML
* errors of all levels (fatal, nonfatal, warning); this is never null;
*/
public ErrorHandler getErrorHandler()
{
return (errorHandler == base) ? null : errorHandler;
}
/**
* <b>SAX1, SAX2</b>: Auxiliary API to parse an XML document, used mostly
* when no URI is available.
* If you want anything useful to happen, you should set
* at least one type of handler.
* @param source The XML input source. Don't set 'encoding' unless
* you know for a fact that it's correct.
* @see #setEntityResolver
* @see #setDTDHandler
* @see #setContentHandler
* @see #setErrorHandler
* @exception SAXException The handlers may throw any SAXException,
* and the parser normally throws SAXParseException objects.
* @exception IOException IOExceptions are normally through through
* the parser if there are problems reading the source document.
*/
public void parse(InputSource source)
throws SAXException, IOException
{
synchronized (base)
{
parser = new XmlParser();
if (namespaces)
{
prefixStack = new NamespaceSupport();
}
else if (!xmlNames)
{
throw new IllegalStateException();
}
parser.setHandler(this);
try
{
Reader r = source.getCharacterStream();
InputStream in = source.getByteStream();
parser.doParse(source.getSystemId(),
source.getPublicId(),
r,
in,
source.getEncoding());
}
catch (SAXException e)
{
throw e;
}
catch (IOException e)
{
throw e;
}
catch (RuntimeException e)
{
throw e;
}
catch (Exception e)
{
throw new SAXParseException(e.getMessage(), this, e);
}
finally
{
contentHandler.endDocument();
reset();
}
}
}
/**
* <b>SAX1, SAX2</b>: Preferred API to parse an XML document, using a
* system identifier (URI).
*/
public void parse(String systemId)
throws SAXException, IOException
{
parse(new InputSource(systemId));
}
//
// Implementation of SAX2 "XMLReader" interface
//
static final String FEATURE = "http://xml.org/sax/features/";
static final String PROPERTY = "http://xml.org/sax/properties/";
/**
* <b>SAX2</b>: Tells the value of the specified feature flag.
*
* @exception SAXNotRecognizedException thrown if the feature flag
* is neither built in, nor yet assigned.
*/
public boolean getFeature(String featureId)
throws SAXNotRecognizedException, SAXNotSupportedException
{
if ((FEATURE + "validation").equals(featureId))
{
return false;
}
// external entities (both types) are optionally included
if ((FEATURE + "external-general-entities").equals(featureId))
{
return extGE;
}
if ((FEATURE + "external-parameter-entities").equals(featureId))
{
return extPE;
}
// element/attribute names are as written in document; no mangling
if ((FEATURE + "namespace-prefixes").equals(featureId))
{
return xmlNames;
}
// report element/attribute namespaces?
if ((FEATURE + "namespaces").equals(featureId))
{
return namespaces;
}
// all PEs and GEs are reported
if ((FEATURE + "lexical-handler/parameter-entities").equals(featureId))
{
return true;
}
// default is true
if ((FEATURE + "string-interning").equals(featureId))
{
return stringInterning;
}
// EXTENSIONS 1.1
// always returns isSpecified info
if ((FEATURE + "use-attributes2").equals(featureId))
{
return true;
}
// meaningful between startDocument/endDocument
if ((FEATURE + "is-standalone").equals(featureId))
{
if (parser == null)
{
throw new SAXNotSupportedException(featureId);
}
return parser.isStandalone();
}
// optionally don't absolutize URIs in declarations
if ((FEATURE + "resolve-dtd-uris").equals(featureId))
{
return resolveAll;
}
// optionally use resolver2 interface methods, if possible
if ((FEATURE + "use-entity-resolver2").equals(featureId))
{
return useResolver2;
}
throw new SAXNotRecognizedException(featureId);
}
// package private
DeclHandler getDeclHandler()
{
return declHandler;
}
// package private
boolean resolveURIs()
{
return resolveAll;
}
/**
* <b>SAX2</b>: Returns the specified property.
*
* @exception SAXNotRecognizedException thrown if the property value
* is neither built in, nor yet stored.
*/
public Object getProperty(String propertyId)
throws SAXNotRecognizedException
{
if ((PROPERTY + "declaration-handler").equals(propertyId))
{
return (declHandler == base) ? null : declHandler;
}
if ((PROPERTY + "lexical-handler").equals(propertyId))
{
return (lexicalHandler == base) ? null : lexicalHandler;
}
// unknown properties
throw new SAXNotRecognizedException(propertyId);
}
/**
* <b>SAX2</b>: Sets the state of feature flags in this parser. Some
* built-in feature flags are mutable.
*/
public void setFeature(String featureId, boolean value)
throws SAXNotRecognizedException, SAXNotSupportedException
{
boolean state;
// Features with a defined value, we just change it if we can.
state = getFeature (featureId);
if (state == value)
{
return;
}
if (parser != null)
{
throw new SAXNotSupportedException("not while parsing");
}
if ((FEATURE + "namespace-prefixes").equals(featureId))
{
// in this implementation, this only affects xmlns reporting
xmlNames = value;
// forcibly prevent illegal parser state
if (!xmlNames)
{
namespaces = true;
}
return;
}
if ((FEATURE + "namespaces").equals(featureId))
{
namespaces = value;
// forcibly prevent illegal parser state
if (!namespaces)
{
xmlNames = true;
}
return;
}
if ((FEATURE + "external-general-entities").equals(featureId))
{
extGE = value;
return;
}
if ((FEATURE + "external-parameter-entities").equals(featureId))
{
extPE = value;
return;
}
if ((FEATURE + "resolve-dtd-uris").equals(featureId))
{
resolveAll = value;
return;
}
if ((FEATURE + "use-entity-resolver2").equals(featureId))
{
useResolver2 = value;
return;
}
throw new SAXNotRecognizedException(featureId);
}
/**
* <b>SAX2</b>: Assigns the specified property. Like SAX1 handlers,
* these may be changed at any time.
*/
public void setProperty(String propertyId, Object value)
throws SAXNotRecognizedException, SAXNotSupportedException
{
// see if the property is recognized
getProperty(propertyId);
// Properties with a defined value, we just change it if we can.
if ((PROPERTY + "declaration-handler").equals(propertyId))
{
if (value == null)
{
declHandler = base;
}
else if (!(value instanceof DeclHandler))
{
throw new SAXNotSupportedException(propertyId);
}
else
{
declHandler = (DeclHandler) value;
}
return ;
}
if ((PROPERTY + "lexical-handler").equals(propertyId))
{
if (value == null)
{
lexicalHandler = base;
}
else if (!(value instanceof LexicalHandler))
{
throw new SAXNotSupportedException(propertyId);
}
else
{
lexicalHandler = (LexicalHandler) value;
}
return;
}
throw new SAXNotSupportedException(propertyId);
}
//
// This is where the driver receives XmlParser callbacks and translates
// them into SAX callbacks. Some more callbacks have been added for
// SAX2 support.
//
void startDocument()
throws SAXException
{
contentHandler.setDocumentLocator(this);
contentHandler.startDocument();
attributesList.clear();
}
void skippedEntity(String name)
throws SAXException
{
contentHandler.skippedEntity(name);
}
InputSource getExternalSubset(String name, String baseURI)
throws SAXException, IOException
{
if (resolver2 == null || !useResolver2 || !extPE)
{
return null;
}
return resolver2.getExternalSubset(name, baseURI);
}
InputSource resolveEntity(boolean isPE, String name,
InputSource in, String baseURI)
throws SAXException, IOException
{
InputSource source;
// external entities might be skipped
if (isPE && !extPE)
{
return null;
}
if (!isPE && !extGE)
{
return null;
}
// ... or not
lexicalHandler.startEntity(name);
if (resolver2 != null && useResolver2)
{
source = resolver2.resolveEntity(name, in.getPublicId(),
baseURI, in.getSystemId());
if (source == null)
{
in.setSystemId(absolutize(baseURI,
in.getSystemId(), false));
source = in;
}
}
else
{
in.setSystemId(absolutize(baseURI,
in.getSystemId(),
entityResolver != base));
source = entityResolver.resolveEntity(in.getPublicId(),
in.getSystemId());
if (source == null)
{
source = in;
}
}
startExternalEntity(name, source.getSystemId(), true);
return source;
}
// absolutize a system ID relative to the specified base URI
// (temporarily) package-visible for external entity decls
String absolutize(String baseURI, String systemId, boolean nice)
throws MalformedURLException, SAXException
{
// FIXME normalize system IDs -- when?
// - Convert to UTF-8
// - Map reserved and non-ASCII characters to %HH
try
{
if (baseURI == null)
{
if (XmlParser.uriWarnings)
{
warn ("No base URI; hope this SYSTEM id is absolute: "
+ systemId);
}
return new URL(systemId).toString();
}
else
{
return new URL(new URL(baseURI), systemId).toString();
}
}
catch (MalformedURLException e)
{
// Let unknown URI schemes pass through unless we need
// the JVM to map them to i/o streams for us...
if (!nice)
{
throw e;
}
// sometimes sysids for notations or unparsed entities
// aren't really URIs...
warn("Can't absolutize SYSTEM id: " + e.getMessage());
return systemId;
}
}
void startExternalEntity(String name, String systemId, boolean stackOnly)
throws SAXException
{
// The following warning was deleted because the application has the
// option of not setting systemId. Sun's JAXP or Xerces seems to
// ignore this case.
/*
if (systemId == null)
warn ("URI was not reported to parser for entity " + name);
*/
if (!stackOnly) // spliced [dtd] needs startEntity
{
lexicalHandler.startEntity(name);
}
entityStack.push(systemId);
}
void endExternalEntity(String name)
throws SAXException
{
if (!"[document]".equals(name))
{
lexicalHandler.endEntity(name);
}
entityStack.pop();
}
void startInternalEntity(String name)
throws SAXException
{
lexicalHandler.startEntity(name);
}
void endInternalEntity(String name)
throws SAXException
{
lexicalHandler.endEntity(name);
}
void doctypeDecl(String name, String publicId, String systemId)
throws SAXException
{
lexicalHandler.startDTD(name, publicId, systemId);
// ... the "name" is a declaration and should be given
// to the DeclHandler (but sax2 doesn't).
// the IDs for the external subset are lexical details,
// as are the contents of the internal subset; but sax2
// doesn't provide the internal subset "pre-parse"
}
void notationDecl(String name, String publicId, String systemId,
String baseUri)
throws SAXException
{
try
{
dtdHandler.notationDecl(name, publicId,
(resolveAll && systemId != null)
? absolutize(baseUri, systemId, true)
: systemId);
}
catch (IOException e)
{
// "can't happen"
throw new SAXParseException(e.getMessage(), this, e);
}
}
void unparsedEntityDecl(String name, String publicId, String systemId,
String baseUri, String notation)
throws SAXException
{
try
{
dtdHandler.unparsedEntityDecl(name, publicId,
resolveAll
? absolutize(baseUri, systemId, true)
: systemId,
notation);
}
catch (IOException e)
{
// "can't happen"
throw new SAXParseException(e.getMessage(), this, e);
}
}
void endDoctype()
throws SAXException
{
lexicalHandler.endDTD();
}
private void declarePrefix(String prefix, String uri)
throws SAXException
{
int index = uri.indexOf(':');
// many versions of nwalsh docbook stylesheets
// have bogus URLs; so this can't be an error...
if (index < 1 && uri.length() != 0)
{
warn("relative URI for namespace: " + uri);
}
// FIXME: char [0] must be ascii alpha; chars [1..index]
// must be ascii alphanumeric or in "+-." [RFC 2396]
//Namespace Constraints
//name for xml prefix must be http://www.w3.org/XML/1998/namespace
boolean prefixEquality = prefix.equals("xml");
boolean uriEquality = uri.equals("http://www.w3.org/XML/1998/namespace");
if ((prefixEquality || uriEquality) && !(prefixEquality && uriEquality))
{
fatal("xml is by definition bound to the namespace name " +
"http://www.w3.org/XML/1998/namespace");
}
//xmlns prefix declaration is illegal but xml prefix declaration is llegal...
if (prefixEquality && uriEquality)
{
return;
}
//name for xmlns prefix must be http://www.w3.org/2000/xmlns/
prefixEquality = prefix.equals("xmlns");
uriEquality = uri.equals("http://www.w3.org/2000/xmlns/");
if ((prefixEquality || uriEquality) && !(prefixEquality && uriEquality))
{
fatal("http://www.w3.org/2000/xmlns/ is by definition bound" +
" to prefix xmlns");
}
//even if the uri is http://www.w3.org/2000/xmlns/
// it is illegal to declare it
if (prefixEquality && uriEquality)
{
fatal ("declaring the xmlns prefix is illegal");
}
uri = uri.intern();
prefixStack.declarePrefix(prefix, uri);
contentHandler.startPrefixMapping(prefix, uri);
}
void attribute(String qname, String value, boolean isSpecified)
throws SAXException
{
if (!attributes)
{
attributes = true;
if (namespaces)
{
prefixStack.pushContext();
}
}
// process namespace decls immediately;
// then maybe forget this as an attribute
if (namespaces)
{
int index;
// default NS declaration?
if (stringInterning)
{
if ("xmlns" == qname)
{
declarePrefix("", value);
if (!xmlNames)
{
return;
}
}
// NS prefix declaration?
else if ((index = qname.indexOf(':')) == 5
&& qname.startsWith("xmlns"))
{
String prefix = qname.substring(6);
if (prefix.equals(""))
{
fatal("missing prefix " +
"in namespace declaration attribute");
}
if (value.length() == 0)
{
verror("missing URI in namespace declaration attribute: "
+ qname);
}
else
{
declarePrefix(prefix, value);
}
if (!xmlNames)
{
return;
}
}
}
else
{
if ("xmlns".equals(qname))
{
declarePrefix("", value);
if (!xmlNames)
{
return;
}
}
// NS prefix declaration?
else if ((index = qname.indexOf(':')) == 5
&& qname.startsWith("xmlns"))
{
String prefix = qname.substring(6);
if (value.length() == 0)
{
verror("missing URI in namespace decl attribute: "
+ qname);
}
else
{
declarePrefix(prefix, value);
}
if (!xmlNames)
{
return;
}
}
}
}
// remember this attribute ...
attributeCount++;
// attribute type comes from querying parser's DTD records
attributesList.add(new Attribute(qname, value, isSpecified));
}
void startElement(String elname)
throws SAXException
{
ContentHandler handler = contentHandler;
//
// NOTE: this implementation of namespace support adds something
// like six percent to parsing CPU time, in a large (~50 MB)
// document that doesn't use namespaces at all. (Measured by PC
// sampling, with a bug where endElement processing was omitted.)
// [Measurement referred to older implementation, older JVM ...]
//
// It ought to become notably faster in such cases. Most
// costs are the prefix stack calling Hashtable.get() (2%),
// String.hashCode() (1.5%) and about 1.3% each for pushing
// the context, and two chunks of name processing.
//
if (!attributes)
{
if (namespaces)
{
prefixStack.pushContext();
}
}
else if (namespaces)
{
// now we can patch up namespace refs; we saw all the
// declarations, so now we'll do the Right Thing
Iterator itt = attributesList.iterator();
while (itt.hasNext())
{
Attribute attribute = (Attribute) itt.next();
String qname = attribute.name;
int index;
// default NS declaration?
if (stringInterning)
{
if ("xmlns" == qname)
{
continue;
}
}
else
{
if ("xmlns".equals(qname))
{
continue;
}
}
//Illegal in the new Namespaces Draft
//should it be only in 1.1 docs??
if (qname.equals (":"))
{
fatal("namespace names consisting of a single colon " +
"character are invalid");
}
index = qname.indexOf(':');
// NS prefix declaration?
if (index == 5 && qname.startsWith("xmlns"))
{
continue;
}
// it's not a NS decl; patch namespace info items
if (prefixStack.processName(qname, nsTemp, true) == null)
{
fatal("undeclared attribute prefix in: " + qname);
}
else
{
attribute.nameSpace = nsTemp[0];
attribute.localName = nsTemp[1];
}
}
}
// save element name so attribute callbacks work
elementName = elname;
if (namespaces)
{
if (prefixStack.processName(elname, nsTemp, false) == null)
{
fatal("undeclared element prefix in: " + elname);
nsTemp[0] = nsTemp[1] = "";
}
handler.startElement(nsTemp[0], nsTemp[1], elname, this);
}
else
{
handler.startElement("", "", elname, this);
}
// elementName = null;
// elements with no attributes are pretty common!
if (attributes)
{
attributesList.clear();
attributeCount = 0;
attributes = false;
}
}
void endElement(String elname)
throws SAXException
{
ContentHandler handler = contentHandler;
if (!namespaces)
{
handler.endElement("", "", elname);
return;
}
prefixStack.processName(elname, nsTemp, false);
handler.endElement(nsTemp[0], nsTemp[1], elname);
Enumeration prefixes = prefixStack.getDeclaredPrefixes();
while (prefixes.hasMoreElements())
{
handler.endPrefixMapping((String) prefixes.nextElement());
}
prefixStack.popContext();
}
void startCDATA()
throws SAXException
{
lexicalHandler.startCDATA();
}
void charData(char[] ch, int start, int length)
throws SAXException
{
contentHandler.characters(ch, start, length);
}
void endCDATA()
throws SAXException
{
lexicalHandler.endCDATA();
}
void ignorableWhitespace(char[] ch, int start, int length)
throws SAXException
{
contentHandler.ignorableWhitespace(ch, start, length);
}
void processingInstruction(String target, String data)
throws SAXException
{
contentHandler.processingInstruction(target, data);
}
void comment(char[] ch, int start, int length)
throws SAXException
{
if (lexicalHandler != base)
{
lexicalHandler.comment(ch, start, length);
}
}
void fatal(String message)
throws SAXException
{
SAXParseException fatal;
fatal = new SAXParseException(message, this);
errorHandler.fatalError(fatal);
// Even if the application can continue ... we can't!
throw fatal;
}
// We can safely report a few validity errors that
// make layered SAX2 DTD validation more conformant
void verror(String message)
throws SAXException
{
SAXParseException err;
err = new SAXParseException(message, this);
errorHandler.error(err);
}
void warn(String message)
throws SAXException
{
SAXParseException err;
err = new SAXParseException(message, this);
errorHandler.warning(err);
}
//
// Implementation of org.xml.sax.Attributes.
//
/**
* <b>SAX1 AttributeList, SAX2 Attributes</b> method
* (don't invoke on parser);
*/
public int getLength()
{
return attributesList.size();
}
/**
* <b>SAX2 Attributes</b> method (don't invoke on parser);
*/
public String getURI(int index)
{
if (index < 0 || index >= attributesList.size())
{
return null;
}
return ((Attribute) attributesList.get(index)).nameSpace;
}
/**
* <b>SAX2 Attributes</b> method (don't invoke on parser);
*/
public String getLocalName(int index)
{
if (index < 0 || index >= attributesList.size())
{
return null;
}
Attribute attr = (Attribute) attributesList.get(index);
// FIXME attr.localName is sometimes null, why?
if (namespaces && attr.localName == null)
{
// XXX fix this here for now
int ci = attr.name.indexOf(':');
attr.localName = (ci == -1) ? attr.name :
attr.name.substring(ci + 1);
}
return (attr.localName == null) ? "" : attr.localName;
}
/**
* <b>SAX2 Attributes</b> method (don't invoke on parser);
*/
public String getQName(int index)
{
if (index < 0 || index >= attributesList.size())
{
return null;
}
Attribute attr = (Attribute) attributesList.get(index);
return (attr.name == null) ? "" : attr.name;
}
/**
* <b>SAX1 AttributeList</b> method (don't invoke on parser);
*/
public String getName(int index)
{
return getQName(index);
}
/**
* <b>SAX1 AttributeList, SAX2 Attributes</b> method
* (don't invoke on parser);
*/
public String getType(int index)
{
if (index < 0 || index >= attributesList.size())
{
return null;
}
String type = parser.getAttributeType(elementName, getQName(index));
if (type == null)
{
return "CDATA";
}
// ... use DeclHandler.attributeDecl to see enumerations
if (type == "ENUMERATION")
{
return "NMTOKEN";
}
return type;
}
/**
* <b>SAX1 AttributeList, SAX2 Attributes</b> method
* (don't invoke on parser);
*/
public String getValue(int index)
{
if (index < 0 || index >= attributesList.size())
{
return null;
}
return ((Attribute) attributesList.get(index)).value;
}
/**
* <b>SAX2 Attributes</b> method (don't invoke on parser);
*/
public int getIndex(String uri, String local)
{
int length = getLength();
for (int i = 0; i < length; i++)
{
if (!getURI(i).equals(uri))
{
continue;
}
if (getLocalName(i).equals(local))
{
return i;
}
}
return -1;
}
/**
* <b>SAX2 Attributes</b> method (don't invoke on parser);
*/
public int getIndex(String xmlName)
{
int length = getLength();
for (int i = 0; i < length; i++)
{
if (getQName(i).equals(xmlName))
{
return i;
}
}
return -1;
}
/**
* <b>SAX2 Attributes</b> method (don't invoke on parser);
*/
public String getType(String uri, String local)
{
int index = getIndex(uri, local);
if (index < 0)
{
return null;
}
return getType(index);
}
/**
* <b>SAX1 AttributeList, SAX2 Attributes</b> method
* (don't invoke on parser);
*/
public String getType(String xmlName)
{
int index = getIndex(xmlName);
if (index < 0)
{
return null;
}
return getType(index);
}
/**
* <b>SAX Attributes</b> method (don't invoke on parser);
*/
public String getValue(String uri, String local)
{
int index = getIndex(uri, local);
if (index < 0)
{
return null;
}
return getValue(index);
}
/**
* <b>SAX1 AttributeList, SAX2 Attributes</b> method
* (don't invoke on parser);
*/
public String getValue(String xmlName)
{
int index = getIndex(xmlName);
if (index < 0)
{
return null;
}
return getValue(index);
}
//
// Implementation of org.xml.sax.ext.Attributes2
//
/** @return false unless the attribute was declared in the DTD.
* @throws java.lang.ArrayIndexOutOfBoundsException
* When the supplied index does not identify an attribute.
*/
public boolean isDeclared(int index)
{
if (index < 0 || index >= attributeCount)
{
throw new ArrayIndexOutOfBoundsException();
}
String type = parser.getAttributeType(elementName, getQName(index));
return (type != null);
}
/** @return false unless the attribute was declared in the DTD.
* @throws java.lang.IllegalArgumentException
* When the supplied names do not identify an attribute.
*/
public boolean isDeclared(String qName)
{
int index = getIndex(qName);
if (index < 0)
{
throw new IllegalArgumentException();
}
String type = parser.getAttributeType(elementName, qName);
return (type != null);
}
/** @return false unless the attribute was declared in the DTD.
* @throws java.lang.IllegalArgumentException
* When the supplied names do not identify an attribute.
*/
public boolean isDeclared(String uri, String localName)
{
int index = getIndex(uri, localName);
return isDeclared(index);
}
/**
* <b>SAX-ext Attributes2</b> method (don't invoke on parser);
*/
public boolean isSpecified(int index)
{
return ((Attribute) attributesList.get(index)).specified;
}
/**
* <b>SAX-ext Attributes2</b> method (don't invoke on parser);
*/
public boolean isSpecified(String uri, String local)
{
int index = getIndex (uri, local);
return isSpecified(index);
}
/**
* <b>SAX-ext Attributes2</b> method (don't invoke on parser);
*/
public boolean isSpecified(String xmlName)
{
int index = getIndex (xmlName);
return isSpecified(index);
}
//
// Implementation of org.xml.sax.Locator.
//
/**
* <b>SAX Locator</b> method (don't invoke on parser);
*/
public String getPublicId()
{
return null; // FIXME track public IDs too
}
/**
* <b>SAX Locator</b> method (don't invoke on parser);
*/
public String getSystemId()
{
if (entityStack.empty())
{
return null;
}
else
{
return (String) entityStack.peek();
}
}
/**
* <b>SAX Locator</b> method (don't invoke on parser);
*/
public int getLineNumber()
{
return parser.getLineNumber();
}
/**
* <b>SAX Locator</b> method (don't invoke on parser);
*/
public int getColumnNumber()
{
return parser.getColumnNumber();
}
// adapter between SAX2 content handler and SAX1 document handler callbacks
private static class Adapter
implements ContentHandler
{
private DocumentHandler docHandler;
Adapter(DocumentHandler dh)
{
docHandler = dh;
}
public void setDocumentLocator(Locator l)
{
docHandler.setDocumentLocator(l);
}
public void startDocument()
throws SAXException
{
docHandler.startDocument();
}
public void processingInstruction(String target, String data)
throws SAXException
{
docHandler.processingInstruction(target, data);
}
public void startPrefixMapping(String prefix, String uri)
{
/* ignored */
}
public void startElement(String namespace,
String local,
String name,
Attributes attrs)
throws SAXException
{
docHandler.startElement(name, (AttributeList) attrs);
}
public void characters(char[] buf, int offset, int len)
throws SAXException
{
docHandler.characters(buf, offset, len);
}
public void ignorableWhitespace(char[] buf, int offset, int len)
throws SAXException
{
docHandler.ignorableWhitespace(buf, offset, len);
}
public void skippedEntity(String name)
{
/* ignored */
}
public void endElement(String u, String l, String name)
throws SAXException
{
docHandler.endElement(name);
}
public void endPrefixMapping(String prefix)
{
/* ignored */
}
public void endDocument()
throws SAXException
{
docHandler.endDocument();
}
}
private static class Attribute
{
String name;
String value;
String nameSpace;
String localName;
boolean specified;
Attribute(String name, String value, boolean specified)
{
this.name = name;
this.value = value;
this.nameSpace = "";
this.specified = specified;
}
}
}
|