net.sf.saxon.event.DocumentValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2023 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.event;
import net.sf.saxon.om.AttributeMap;
import net.sf.saxon.s9api.Location;
import net.sf.saxon.om.NamespaceMap;
import net.sf.saxon.om.NodeName;
import net.sf.saxon.str.UnicodeString;
import net.sf.saxon.trans.Err;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.type.SchemaType;
import net.sf.saxon.value.Whitespace;
/**
* DocumentValidator checks that a document is well-formed: specifically, that it contains a single element
* node child and no text node children.
*/
public class DocumentValidator extends ProxyReceiver {
private boolean foundElement = false;
private int level = 0;
private final String errorCode;
public DocumentValidator(Receiver next, String errorCode) {
super(next);
this.errorCode = errorCode;
}
@Override
public void setPipelineConfiguration(/*@NotNull*/ PipelineConfiguration config) {
super.setPipelineConfiguration(config);
}
/**
* Start of an element
*/
@Override
public void startElement(NodeName elemName, SchemaType type,
AttributeMap attributes, NamespaceMap namespaces,
Location location, int properties)
throws XPathException {
if (foundElement && level == 0) {
throw new XPathException("A valid document must have only one child element", errorCode);
}
foundElement = true;
level++;
nextReceiver.startElement(elemName, type, attributes, namespaces, location, properties);
}
/**
* Character data
*/
@Override
public void characters(UnicodeString chars, Location locationId, int properties) throws XPathException {
if (level == 0) {
if (Whitespace.isAllWhite(chars)) {
return; // ignore whitespace outside the outermost element
}
throw new XPathException("A valid document must contain no text outside the outermost element (found \"" + Err.truncate30(chars.tidy()) + "\")", errorCode);
}
nextReceiver.characters(chars, locationId, properties);
}
/**
* End of element
*/
@Override
public void endElement() throws XPathException {
level--;
nextReceiver.endElement();
}
/**
* Notify the end of a document node
*/
@Override
public void endDocument() throws XPathException {
if (level == 0) {
if (!foundElement) {
throw new XPathException("A valid document must have a child element", errorCode);
}
foundElement = false;
nextReceiver.endDocument();
level = -1;
}
}
}
// Copyright (c) 2004-2023 Saxonica Limited