Skip to content

Commit 834ad54

Browse files
committedOct 3, 2024··
cleanup and simplify XMLLocator
1 parent 296f1da commit 834ad54

File tree

6 files changed

+12
-113
lines changed

6 files changed

+12
-113
lines changed
 

‎src/main/java/org/htmlunit/cyberneko/HTMLScanner.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ public String getLiteralSystemId() {
630630

631631
/** Returns the expanded system identifier. */
632632
@Override
633-
public String getExpandedSystemId() {
633+
public String getSystemId() {
634634
return fCurrentEntity != null ? fCurrentEntity.expandedSystemId : null;
635635
}
636636

‎src/main/java/org/htmlunit/cyberneko/xerces/parsers/AbstractDOMParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public void startDocument(final XMLLocator locator, final String encoding, final
283283
// set actual encoding
284284
fDocumentImpl.setInputEncoding(encoding);
285285
// set documentURI
286-
fDocumentImpl.setDocumentURI(locator.getExpandedSystemId());
286+
fDocumentImpl.setDocumentURI(locator.getSystemId());
287287
}
288288
else {
289289
// use specified document class
@@ -299,7 +299,7 @@ public void startDocument(final XMLLocator locator, final String encoding, final
299299
fDocumentImpl.setInputEncoding(encoding);
300300
// set documentURI
301301
if (locator != null) {
302-
fDocumentImpl.setDocumentURI(locator.getExpandedSystemId());
302+
fDocumentImpl.setDocumentURI(locator.getSystemId());
303303
}
304304
}
305305
catch (final Exception e) {

‎src/main/java/org/htmlunit/cyberneko/xerces/parsers/AbstractSAXParser.java

+1-64
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
import org.htmlunit.cyberneko.xerces.util.ErrorHandlerWrapper;
2121
import org.htmlunit.cyberneko.xerces.util.SAXMessageFormatter;
22-
import org.htmlunit.cyberneko.xerces.util.XMLAttributesImpl;
2322
import org.htmlunit.cyberneko.xerces.xni.Augmentations;
2423
import org.htmlunit.cyberneko.xerces.xni.NamespaceContext;
2524
import org.htmlunit.cyberneko.xerces.xni.QName;
@@ -42,9 +41,7 @@
4241
import org.xml.sax.SAXNotSupportedException;
4342
import org.xml.sax.SAXParseException;
4443
import org.xml.sax.XMLReader;
45-
import org.xml.sax.ext.Attributes2;
4644
import org.xml.sax.ext.LexicalHandler;
47-
import org.xml.sax.ext.Locator2;
4845
import org.xml.sax.ext.Locator2Impl;
4946

5047
/**
@@ -145,7 +142,7 @@ public void startDocument(final XMLLocator locator, final String encoding, final
145142
// SAX2
146143
if (fContentHandler != null) {
147144
if (locator != null) {
148-
fContentHandler.setDocumentLocator(new LocatorProxy(locator));
145+
fContentHandler.setDocumentLocator(locator);
149146
}
150147
// The application may have set the ContentHandler to null
151148
// within setDocumentLocator() so we need to check again.
@@ -1008,64 +1005,4 @@ public void reset() throws XNIException {
10081005
// features
10091006
fNamespaces = parserConfiguration_.getFeature(NAMESPACES);
10101007
}
1011-
1012-
protected static final class LocatorProxy implements Locator2 {
1013-
1014-
/** XML locator. */
1015-
private final XMLLocator fLocator;
1016-
1017-
// Constructs an XML locator proxy.
1018-
public LocatorProxy(final XMLLocator locator) {
1019-
fLocator = locator;
1020-
}
1021-
1022-
/**
1023-
* {@inheritDoc}
1024-
*/
1025-
@Override
1026-
public String getPublicId() {
1027-
return fLocator.getPublicId();
1028-
}
1029-
1030-
/**
1031-
* {@inheritDoc}
1032-
*/
1033-
@Override
1034-
public String getSystemId() {
1035-
return fLocator.getExpandedSystemId();
1036-
}
1037-
1038-
/**
1039-
* {@inheritDoc}
1040-
*/
1041-
@Override
1042-
public int getLineNumber() {
1043-
return fLocator.getLineNumber();
1044-
}
1045-
1046-
/**
1047-
* {@inheritDoc}
1048-
*/
1049-
@Override
1050-
public int getColumnNumber() {
1051-
return fLocator.getColumnNumber();
1052-
}
1053-
1054-
/**
1055-
* {@inheritDoc}
1056-
*/
1057-
@Override
1058-
public String getXMLVersion() {
1059-
return fLocator.getXMLVersion();
1060-
}
1061-
1062-
/**
1063-
* {@inheritDoc}
1064-
*/
1065-
@Override
1066-
public String getEncoding() {
1067-
return fLocator.getEncoding();
1068-
}
1069-
1070-
}
10711008
}

‎src/main/java/org/htmlunit/cyberneko/xerces/util/ErrorHandlerWrapper.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ protected static SAXParseException createSAXParseException(final XMLParseExcepti
166166
// Creates an XMLParseException from a SAXParseException. */
167167
protected static XMLParseException createXMLParseException(final SAXParseException exception) {
168168
final String fPublicId = exception.getPublicId();
169-
final String fExpandedSystemId = exception.getSystemId();
169+
final String fSystemId = exception.getSystemId();
170170
final int fLineNumber = exception.getLineNumber();
171171
final int fColumnNumber = exception.getColumnNumber();
172172
final XMLLocator location = new XMLLocator() {
@@ -176,8 +176,8 @@ public String getPublicId() {
176176
}
177177

178178
@Override
179-
public String getExpandedSystemId() {
180-
return fExpandedSystemId;
179+
public String getSystemId() {
180+
return fSystemId;
181181
}
182182

183183
@Override

‎src/main/java/org/htmlunit/cyberneko/xerces/xni/XMLLocator.java

+3-41
Original file line numberDiff line numberDiff line change
@@ -14,62 +14,24 @@
1414
*/
1515
package org.htmlunit.cyberneko.xerces.xni;
1616

17+
import org.xml.sax.ext.Locator2;
18+
1719
/**
1820
* Location information.
1921
*
2022
* @author Andy Clark, IBM
2123
*/
22-
public interface XMLLocator {
23-
24-
/** @return the public identifier. */
25-
String getPublicId();
24+
public interface XMLLocator extends Locator2 {
2625

2726
/** @return the literal system identifier. */
2827
String getLiteralSystemId();
2928

3029
/** @return the base system identifier. */
3130
String getBaseSystemId();
3231

33-
/** @return the expanded system identifier. */
34-
String getExpandedSystemId();
35-
36-
/**
37-
* @return the line number, or <code>-1</code> if no line number is available.
38-
*/
39-
int getLineNumber();
40-
41-
/**
42-
* @return the column number, or <code>-1</code> if no column number is
43-
* available.
44-
*/
45-
int getColumnNumber();
46-
4732
/**
4833
* @return the character offset, or <code>-1</code> if no character offset is
4934
* available.
5035
*/
5136
int getCharacterOffset();
52-
53-
/**
54-
* @return the encoding of the current entity. Note that, for a given entity,
55-
* this value can only be considered final once the encoding declaration
56-
* has been read (or once it has been determined that there is no such
57-
* declaration) since, no encoding having been specified on the
58-
* XMLInputSource, the parser will make an initial "guess" which could
59-
* be in error.
60-
*/
61-
String getEncoding();
62-
63-
/**
64-
* @return the XML version of the current entity. This will normally be the
65-
* value from the XML or text declaration or defaulted by the parser.
66-
* Note that this value may be different from the version of the
67-
* processing rules applied to the current entity. For instance, an XML
68-
* 1.1 document may refer to XML 1.0 entities. In such a case the rules
69-
* of XML 1.1 are applied to the entire document. Also note that, for a
70-
* given entity, this value can only be considered final once the XML or
71-
* text declaration has been read or once it has been determined that
72-
* there is no such declaration.
73-
*/
74-
String getXMLVersion();
7537
}

‎src/main/java/org/htmlunit/cyberneko/xerces/xni/parser/XMLParseException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public XMLParseException(final XMLLocator locator, final String message) {
5353
if (locator != null) {
5454
publicId_ = locator.getPublicId();
5555
literalSystemId_ = locator.getLiteralSystemId();
56-
expandedSystemId_ = locator.getExpandedSystemId();
56+
expandedSystemId_ = locator.getSystemId();
5757
baseSystemId_ = locator.getBaseSystemId();
5858
lineNumber_ = locator.getLineNumber();
5959
columnNumber_ = locator.getColumnNumber();
@@ -67,7 +67,7 @@ public XMLParseException(final XMLLocator locator, final String message, final E
6767
if (locator != null) {
6868
publicId_ = locator.getPublicId();
6969
literalSystemId_ = locator.getLiteralSystemId();
70-
expandedSystemId_ = locator.getExpandedSystemId();
70+
expandedSystemId_ = locator.getSystemId();
7171
baseSystemId_ = locator.getBaseSystemId();
7272
lineNumber_ = locator.getLineNumber();
7373
columnNumber_ = locator.getColumnNumber();

0 commit comments

Comments
 (0)
Please sign in to comment.