-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaxParse.java
372 lines (327 loc) · 9.93 KB
/
SaxParse.java
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
// This code is adapted from Echo12.java of SUN's J2EE Tutorial v1.4
import java.io.*;
import org.xml.sax.*;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.ext.LexicalHandler;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
public class SaxParse extends DefaultHandler
implements LexicalHandler
{
StringBuffer textBuffer;
static boolean validateDTD = false; // validating parse with DTD
static boolean validateSchema = false; // validating parse with Schema
static boolean internal = false; // DTD file must be specified in the XML file
// internal = true iff DTD or Schema is specified in XML file
static final String JAXP_SCHEMA_LANGUAGE =
"http://java.sun.com/xml/jaxp/properties/schemaLanguage";
static final String W3C_XML_SCHEMA =
"http://www.w3.org/2001/XMLSchema";
static final String JAXP_SCHEMA_SOURCE =
"http://java.sun.com/xml/jaxp/properties/schemaSource";
public static void main(String argv[])
{
if (argv.length < 1 || argv.length > 2)
{
System.err.println("Usage: java SaxParse XML-file [Schema-file]");
System.exit(1);
}
boolean isValidating = false;
boolean hasError = false;
// Use an instance of ourselves as the SAX event handler
SaxParse handler = new SaxParse();
SAXParserFactory factory = SAXParserFactory.newInstance();
if (isValidating = isValidating(argv)) {
factory.setValidating(true);
System.out.println("<!------- Validation is on ----------->");
}
else
System.out.println("<!------- Validation is off ----------->");
System.out.println("<!------------- Output --------------->");
factory.setNamespaceAware(true);
try {
// Set up output stream
out = new OutputStreamWriter(System.out, "UTF8");
// Parse the input
SAXParser saxParser = factory.newSAXParser();
if (validateSchema)
saxParser.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);
if (validateSchema && !internal) // Schema file specified on command line
saxParser.setProperty(JAXP_SCHEMA_SOURCE, new File(argv[1]));
XMLReader xmlReader = saxParser.getXMLReader();
xmlReader.setProperty(
"http://xml.org/sax/properties/lexical-handler",
handler
);
saxParser.parse(new File(argv[0]), handler);
} catch (SAXParseException spe) {
// Error generated by the parser
hasError = true;
System.out.println("\n** Parsing error"
+ ", line " + spe.getLineNumber()
+ ", uri " + spe.getSystemId());
System.out.println(" " + spe.getMessage() );
// Use the contained exception, if any
Exception x = spe;
if (spe.getException() != null)
x = spe.getException();
x.printStackTrace();
} catch (SAXException sxe) {
// Error generated by this application
// (or a parser-initialization error)
hasError = true;
Exception x = sxe;
if (sxe.getException() != null)
x = sxe.getException();
x.printStackTrace();
} catch (ParserConfigurationException pce) {
// Parser with specified options can't be built
hasError = true;
pce.printStackTrace();
} catch (IOException ioe) {
// I/O error
hasError = true;
ioe.printStackTrace();
} catch (Throwable t) {
hasError = true;
t.printStackTrace();
}
if (isValidating) {
if (!hasError)
System.out.println("\n---Validation succeeded---");
else
System.out.println("\n---Validation failed---");
}
System.exit(0);
}
// Does the XML file have DTD or Schema file for validation?
static boolean isValidating(String argv[])
{
if (argv.length == 2) { // dtd or Schema file is specified
if (argv[1].endsWith(".dtd"))
System.out.println("DTD file cannot be specified on command-line");
if (argv[1].endsWith(".xsd")) {
validateSchema = true;
internal = false;
return true;
}
}
internal = true; // schema or DTD file may be specified in the XML file
// check whether the top 20 lines of the XML file have "chemaLocation=" or "<!DOCTYPE"
try
{
File f = new File(argv[0]);
BufferedReader br = new BufferedReader(new FileReader(f));
String line = br.readLine();
for (int i = 0; (line != null) && (i < 20); i++)
{
if (line.indexOf("chemaLocation=") != -1)
validateSchema = true;
if (line.indexOf("<!DOCTYPE") != -1)
validateDTD = true;
if (validateSchema || validateDTD)
return true;
line = br.readLine();
}
}
catch (Exception e){}
return false;
}
static private Writer out;
private String indentString = " "; // Amount to indent
private int indentLevel = -1;
//===========================================================
// SAX DocumentHandler methods
//===========================================================
public void setDocumentLocator(Locator l)
{
}
public void startDocument()
throws SAXException
{
//emit("START DOCUMENT");
//nl();
emit("<?xml version='1.0' encoding='UTF-8'?>");
}
public void endDocument()
throws SAXException
{
try {
nl();
out.flush();
} catch (IOException e) {
throw new SAXException("I/O error", e);
}
}
public void startElement(String namespaceURI,
String sName, // simple name
String qName, // qualified name
Attributes attrs)
throws SAXException
{
echoText();
String eName = sName; // element name
if ("".equals(eName)) eName = qName; // not namespaceAware
indentLevel++;
nl();
emit("<"+eName);
if (attrs != null) {
for (int i = 0; i < attrs.getLength(); i++) {
String aName = attrs.getLocalName(i); // Attr name
if ("".equals(aName)) aName = attrs.getQName(i);
nl();
emit(" ");
emit(aName);
emit("=\"");
emit(attrs.getValue(i));
emit("\"");
}
}
if (attrs.getLength() > 0) nl();
emit(">");
}
public void endElement(String namespaceURI,
String sName, // simple name
String qName // qualified name
)
throws SAXException
{
String eName = sName; // element name
if ("".equals(eName)) eName = qName; // not namespaceAware
echoText();
nl();
emit("</"+eName+">");
indentLevel--;
}
public void characters(char buf[], int offset, int len)
throws SAXException
{
String s = new String(buf, offset, len);
if (textBuffer == null) {
textBuffer = new StringBuffer(s);
} else {
textBuffer.append(s);
}
}
public void ignorableWhitespace(char buf[], int offset, int len)
throws SAXException
{
// Ignore it
}
public void processingInstruction(String target, String data)
throws SAXException
{
indentLevel++;
nl();
//emit("PROCESS: ");
emit("<?"+target+" "+data+"?>");
indentLevel--;
}
//===========================================================
// SAX ErrorHandler methods
//===========================================================
// treat validation errors as fatal
public void error(SAXParseException e)
throws SAXParseException
{
throw e;
}
// dump warnings too
public void warning(SAXParseException err)
throws SAXParseException
{
System.out.println("** Warning"
+ ", line " + err.getLineNumber()
+ ", uri " + err.getSystemId());
System.out.println(" " + err.getMessage());
}
//===========================================================
// LexicalEventListener methods
//===========================================================
public void comment(char[] ch, int start, int length)
throws SAXException
{
}
public void startCDATA()
throws SAXException
{
echoText(); // echo anything we've seen before now
nl();
//emit("START CDATA SECTION");
}
public void endCDATA()
throws SAXException
{
echoText(); // echo the CDATA text
nl();
//emit("END CDATA SECTION");
}
public void startEntity(java.lang.String name)
throws SAXException
{
//echoText(); // echo anything we've seen before now
//nl();
//emit("START ENTITY: "+name);
}
public void endEntity(java.lang.String name)
throws SAXException
{
//echoText(); // echo the ENTITY text
//nl();
//emit("END ENTITY: "+name);
}
public void startDTD(String name, String publicId, String systemId)
throws SAXException
{
//nl();
//emit("START DTD: "+name
// +"\n publicId=" + publicId
// +"\n systemId=" + systemId);
}
public void endDTD()
throws SAXException
{
//nl();
//emit("END DTD");
}
//===========================================================
// Utility Methods ...
//===========================================================
// Display text accumulated in the character buffer
private void echoText()
throws SAXException
{
if (textBuffer == null) return;
nl();
emit(" ");
String s = ""+textBuffer;
if (!s.trim().equals("")) emit(s);
textBuffer = null;
}
// Wrap I/O exceptions in SAX exceptions, to
// suit handler signature requirements
private void emit(String s)
throws SAXException
{
try {
out.write(s);
out.flush();
} catch (IOException e) {
throw new SAXException("I/O error", e);
}
}
// Start a new line
// and indent the next line appropriately
private void nl()
throws SAXException
{
String lineEnd = System.getProperty("line.separator");
try {
out.write(lineEnd);
for (int i=0; i < indentLevel; i++) out.write(indentString);
} catch (IOException e) {
throw new SAXException("I/O error", e);
}
}
}