com.thaiopensource.validate.schematron.OutputHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-jing Show documentation
Show all versions of wicketstuff-jing Show documentation
Jing is a validator for RELAX NG and other schema languages. This
project was taken from http://code.google.com/p/jing-trang and
mavenized for inclusion in the Wicket Stuff HTML Validator.
The code was taken from the 20091111 release.
package com.thaiopensource.validate.schematron;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXParseException;
import org.xml.sax.SAXException;
import org.xml.sax.Attributes;
import com.thaiopensource.util.Localizer;
class OutputHandler extends DefaultHandler {
private final ErrorHandler eh;
private int lineNumber = -1;
private int columnNumber = -1;
private String systemId = null;
private final StringBuffer message = new StringBuffer();
private boolean inMessage = false;
private final String lineSeparator;
private static final String indent = " ";
private final Localizer localizer = new Localizer(OutputHandler.class);
OutputHandler(ErrorHandler eh) {
this.eh = eh;
this.lineSeparator = System.getProperty("line.separator");
}
public void characters(char ch[], int start, int length)
throws SAXException {
if (inMessage) {
for (int i = 0; i < length; i++) {
char c = ch[start + i];
switch (c) {
case ' ':
case '\r':
case '\n':
case '\t':
if (message.length() == 0 || message.charAt(message.length() - 1) != ' ')
message.append(' ');
break;
default:
message.append(c);
break;
}
}
}
}
public void ignorableWhitespace(char ch[], int start, int length)
throws SAXException {
characters(ch, start, length);
}
public void startElement(String uri, String localName,
String qName, Attributes attributes)
throws SAXException {
if (localName.equals("failed-assertion") || localName.equals("report")) {
lineNumber = toInteger(attributes.getValue("", "line-number"));
columnNumber = toInteger(attributes.getValue("", "column-number"));
systemId = attributes.getValue("", "system-id");
if ("".equals(systemId))
systemId = null;
message.append(localizer.message(localName.equals("failed-assertion")
? "failed_assertion"
: "report"));
}
else if (localName.equals("statement") || localName.equals("diagnostic")) {
inMessage = true;
message.append(lineSeparator);
message.append(indent);
}
}
private static int toInteger(String value) {
if (value == null)
return -1;
try {
return Integer.parseInt(value);
}
catch (NumberFormatException e) {
return -1;
}
}
public void endElement(String uri, String localName, String qName)
throws SAXException {
if (localName.equals("statement") || localName.equals("diagnostic")) {
if (message.length() > 0 && message.charAt(message.length() - 1) == ' ')
message.setLength(message.length() - 1);
inMessage = false;
}
else if (localName.equals("failed-assertion") || localName.equals("report")) {
eh.error(new SAXParseException(message.toString(), null, systemId, lineNumber, columnNumber));
message.setLength(0);
}
}
}