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
|
/*
* Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4864117
* @summary Tests XMLDecoder within another DefaultHandler for SAX parser
* @author Sergey Malenkov
*/
import java.beans.XMLDecoder;
import java.beans.ExceptionListener;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
public final class Test4864117 extends DefaultHandler implements ExceptionListener {
private static final String TEST = "test";
private static final String DATA
= "<test>\n"
+ " <void property=\"message\">\n"
+ " <string>Hello, world!</string>\n"
+ " </void>\n"
+ "</test>";
public static void main(String[] args) {
Test4864117 test = new Test4864117();
InputStream input = new ByteArrayInputStream(DATA.getBytes());
Exception error = null;
try {
SAXParserFactory.newInstance().newSAXParser().parse(input, test);
}
catch (ParserConfigurationException exception) {
error = exception;
}
catch (SAXException exception) {
error = exception.getException();
if (error == null) {
error = exception;
}
}
catch (IOException exception) {
error = exception;
}
if (error != null) {
throw new Error("unexpected error", error);
}
test.print('?', test.getMessage());
}
private String message;
public String getMessage() {
if (this.message == null) {
throw new Error("owner's method is not called");
}
return this.message;
}
public void setMessage(String message) {
this.message = message;
print(':', this.message);
}
// DefaultHandler implementation
private DefaultHandler handler;
private int depth;
@Override
public void startDocument() throws SAXException {
this.handler = XMLDecoder.createHandler(this, this, null);
this.handler.startDocument();
}
@Override
public void endDocument() {
this.handler = null;
}
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
print('>', qName);
if (this.depth > 0) {
this.handler.startElement(uri, localName, qName, attributes);
} else if (!TEST.equals(qName)) {
throw new SAXException("unexpected element name: " + qName);
}
this.depth++;
}
@Override
public void endElement(String uri, String localName, String qName) throws SAXException {
this.depth--;
print('<', qName);
if (this.depth > 0) {
this.handler.endElement(uri, localName, qName);
} else if (!TEST.equals(qName)) {
throw new SAXException("unexpected element name: " + qName);
}
}
@Override
public void characters(char[] ch, int start, int length) throws SAXException {
this.handler.characters(ch, start, length);
}
public void exceptionThrown(Exception exception) {
throw new Error("unexpected exception", exception);
}
private void print(char ch, String name) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < this.depth; i++) sb.append(' ');
sb.append(ch).append(' ').append(name);
System.out.println(sb.toString());
}
}
|