| 3 |
|
|
| 4 |
|
import org.xml.sax.*; |
| 5 |
|
|
| 6 |
< |
import javax.xml.parsers.SAXParserFactory; |
| 7 |
< |
import javax.xml.parsers.ParserConfigurationException; |
| 8 |
< |
import javax.xml.parsers.SAXParser; |
| 6 |
> |
import javax.xml.parsers.SAXParserFactory; |
| 7 |
> |
import javax.xml.parsers.ParserConfigurationException; |
| 8 |
> |
import javax.xml.parsers.SAXParser; |
| 9 |
|
|
| 10 |
+ |
// Paul Mutton, pjm2@ukc.ac.uk |
| 11 |
|
|
| 12 |
+ |
// XMLPacketMaker - Creates an XMLPacket object. |
| 13 |
|
public class XMLPacketMaker extends HandlerBase { |
| 14 |
|
|
| 15 |
|
public XMLPacketMaker () { |
| 40 |
|
SAXParser saxParser = factory.newSAXParser(); |
| 41 |
|
saxParser.parse(new File(args[0]), new XMLPacketMaker(packet)); |
| 42 |
|
|
| 43 |
< |
// Print out some things from the packet: - |
| 44 |
< |
System.out.println("bung.wibble="+packet.getParam("bung.wibble")); |
| 45 |
< |
System.out.println("bung.ping.value1="+packet.getParam("bung.ping.value1")); |
| 44 |
< |
|
| 43 |
> |
// Print out the entire contents of the packet's HashMap. |
| 44 |
> |
System.out.println("XMLPacket contents: -"); |
| 45 |
> |
packet.printAll(); |
| 46 |
|
|
| 47 |
|
} catch (Throwable t) { |
| 48 |
< |
t.printStackTrace (); |
| 48 |
> |
System.out.println("The recieved packet did not contain valid XML, so I'm gonna reject it."); |
| 49 |
> |
//t.printStackTrace (); |
| 50 |
|
} |
| 51 |
|
System.exit (0); |
| 52 |
|
} |
| 64 |
|
//=========================================================== |
| 65 |
|
|
| 66 |
|
public void startDocument () throws SAXException { |
| 67 |
< |
nl(); |
| 66 |
< |
nl(); |
| 67 |
< |
emit ("START DOCUMENT"); |
| 68 |
< |
nl(); |
| 69 |
< |
emit ("<?xml version='1.0' encoding='UTF-8'?>"); |
| 67 |
> |
// No purpose currently. |
| 68 |
|
} |
| 69 |
|
|
| 70 |
|
public void endDocument () throws SAXException { |
| 71 |
< |
nl(); emit ("END DOCUMENT"); |
| 74 |
< |
try { |
| 75 |
< |
nl(); |
| 76 |
< |
out.flush (); |
| 77 |
< |
} catch (IOException e) { |
| 78 |
< |
throw new SAXException ("I/O error", e); |
| 79 |
< |
} |
| 71 |
> |
// No purpose currently. |
| 72 |
|
} |
| 73 |
|
|
| 74 |
+ |
// Add each tag's attribute to the XMLPacket. |
| 75 |
+ |
// Note that all attributes within an opening tag are |
| 76 |
+ |
// stored as "someroot.sometag.attributes.attribute_name" |
| 77 |
+ |
// E.g. If <packet> is the root node, then: |
| 78 |
+ |
// <packet machine_name="raptor"> |
| 79 |
+ |
// is stored as: |
| 80 |
+ |
// "packet.attributes.machine_name" |
| 81 |
+ |
// within the XMLPacket. |
| 82 |
|
public void startElement (String name, AttributeList attrs) throws SAXException { |
| 83 |
|
indentLevel++; |
| 84 |
|
tagList.add(name); |
| 85 |
– |
nl(); emit ("ELEMENT: "); |
| 86 |
– |
emit ("<"+name); |
| 85 |
|
if (attrs != null) { |
| 86 |
|
for (int i = 0; i < attrs.getLength (); i++) { |
| 87 |
< |
nl(); |
| 90 |
< |
emit(" ATTR: "); |
| 91 |
< |
emit (attrs.getName (i)); |
| 92 |
< |
emit ("\t\""); |
| 93 |
< |
emit (attrs.getValue (i)); |
| 94 |
< |
emit ("\""); |
| 87 |
> |
packet.addParam(getPath()+".attributes."+attrs.getName(i), attrs.getValue(i)); |
| 88 |
|
} |
| 89 |
|
} |
| 97 |
– |
if (attrs.getLength() > 0) nl(); |
| 98 |
– |
emit (">"); |
| 90 |
|
} |
| 91 |
|
|
| 92 |
+ |
// When an XML element is finished with, we must remove |
| 93 |
+ |
// the tag name from the tagList and decrement the indent |
| 94 |
+ |
// level. |
| 95 |
|
public void endElement (String name) throws SAXException { |
| 102 |
– |
nl(); |
| 103 |
– |
emit ("END_ELM: "); |
| 104 |
– |
emit ("</"+name+">"); |
| 96 |
|
tagList.remove(tagList.size()-1); |
| 97 |
|
indentLevel--; |
| 98 |
|
} |
| 99 |
|
|
| 100 |
+ |
// Any text falling within a pair of terminal tags must |
| 101 |
+ |
// be added to the XMLPacket. Trim leading and trailing |
| 102 |
+ |
// spaces and do not bother to add if there is no data |
| 103 |
+ |
// specified within the tags. |
| 104 |
|
public void characters (char[] buf, int offset, int len) throws SAXException { |
| 110 |
– |
nl(); emit ("CHARS: "); |
| 105 |
|
String s = new String(buf, offset, len); |
| 106 |
|
if (!s.trim().equals("")) { |
| 113 |
– |
emit (s); |
| 107 |
|
packet.addParam(getPath(), s); |
| 108 |
|
} |
| 109 |
|
} |
| 110 |
|
|
| 111 |
+ |
|
| 112 |
|
//=========================================================== |
| 113 |
|
// Helpers ... |
| 114 |
|
//=========================================================== |
| 121 |
– |
|
| 122 |
– |
// Wrap I/O exceptions in SAX exceptions, to |
| 123 |
– |
// suit handler signature requirements |
| 124 |
– |
private void emit (String s) throws SAXException { |
| 125 |
– |
try { |
| 126 |
– |
out.write (s); |
| 127 |
– |
out.flush (); |
| 128 |
– |
} catch (IOException e) { |
| 129 |
– |
throw new SAXException ("I/O error", e); |
| 130 |
– |
} |
| 131 |
– |
} |
| 132 |
– |
|
| 133 |
– |
// Start a new line |
| 134 |
– |
// and indent the next line appropriately |
| 135 |
– |
private void nl () throws SAXException { |
| 136 |
– |
String lineEnd = System.getProperty("line.separator"); |
| 137 |
– |
try { |
| 138 |
– |
out.write (lineEnd); |
| 139 |
– |
for (int i=0; i < indentLevel; i++) out.write(indentString); |
| 140 |
– |
} catch (IOException e) { |
| 141 |
– |
throw new SAXException ("I/O error", e); |
| 142 |
– |
} |
| 143 |
– |
} |
| 115 |
|
|
| 116 |
+ |
|
| 117 |
+ |
// Return the heirarchical string to be used as a key value |
| 118 |
+ |
// in the XMLPacket. |
| 119 |
|
private String getPath () { |
| 120 |
|
String path = (String)tagList.get(0); |
| 121 |
|
if (tagList.size() > 0) { |
| 125 |
|
} |
| 126 |
|
return path; |
| 127 |
|
} |
| 128 |
+ |
|
| 129 |
|
} |