| 10 |
|
import javax.xml.parsers.ParserConfigurationException; |
| 11 |
|
import javax.xml.parsers.SAXParser; |
| 12 |
|
|
| 13 |
– |
import uk.ac.ukc.iscream.core.*; |
| 14 |
– |
|
| 13 |
|
/** |
| 14 |
|
* XMLPacketMaker - Creates an XMLPacket object. |
| 15 |
|
* |
| 29 |
|
|
| 30 |
|
//---CONSTRUCTORS--- |
| 31 |
|
|
| 32 |
< |
// Constructor for accepting XML input. |
| 32 |
> |
/** |
| 33 |
> |
* Constructor for accepting XML input. |
| 34 |
> |
* |
| 35 |
> |
* @param xml A String of XML to process. |
| 36 |
> |
*/ |
| 37 |
|
public XMLPacketMaker (String xml) { |
| 38 |
|
_xml = xml; |
| 39 |
|
} |
| 40 |
|
|
| 41 |
|
//---PUBLIC METHODS--- |
| 42 |
|
|
| 43 |
+ |
/** |
| 44 |
+ |
* Method to create an XML packet from the data this |
| 45 |
+ |
* class was constructed with. |
| 46 |
+ |
* |
| 47 |
+ |
* @return an XMLPacket representing the XML String given |
| 48 |
+ |
*/ |
| 49 |
|
public XMLPacket createXMLPacket() { |
| 50 |
|
|
| 51 |
|
// Create the XMLPacket to store values in. |
| 62 |
|
|
| 63 |
|
} |
| 64 |
|
catch (Exception e) { |
| 57 |
– |
_logger.write(this.toString(), Logger.WARNING, e.toString()); |
| 58 |
– |
_logger.write(this.toString(), Logger.WARNING, "An invalid XML UDP packet has been detected: "+packet.printAll()); |
| 65 |
|
return null; |
| 66 |
|
} |
| 67 |
|
|
| 72 |
|
* Overrides the {@link java.lang.Object#toString() Object.toString()} |
| 73 |
|
* method to provide clean logging (every class should have this). |
| 74 |
|
* |
| 75 |
+ |
* This uses the uk.ac.ukc.iscream.util.NameFormat class |
| 76 |
+ |
* to format the toString() |
| 77 |
+ |
* |
| 78 |
|
* @return the name of this class and its CVS revision |
| 79 |
|
*/ |
| 80 |
|
public String toString() { |
| 81 |
< |
return this.getClass().getName() + "(" + REVISION.substring(11, REVISION.length() - 2) + ")"; |
| 81 |
> |
return FormatName.getName( |
| 82 |
> |
_name, |
| 83 |
> |
getClass().getName(), |
| 84 |
> |
REVISION); |
| 85 |
|
} |
| 86 |
|
|
| 87 |
|
//---PRIVATE METHODS--- |
| 90 |
|
|
| 91 |
|
//---ATTRIBUTES--- |
| 92 |
|
|
| 93 |
+ |
/** |
| 94 |
+ |
* Holds the xml |
| 95 |
+ |
*/ |
| 96 |
|
String _xml; |
| 97 |
< |
Logger _logger = ReferenceManager.getInstance().getLogger(); |
| 97 |
> |
|
| 98 |
> |
/** |
| 99 |
> |
* This is the friendly identifier of the |
| 100 |
> |
* component this class is running in. |
| 101 |
> |
* eg, a Filter may be called "filter1", |
| 102 |
> |
* If this class does not have an owning |
| 103 |
> |
* component, a name from the configuration |
| 104 |
> |
* can be placed here. This name could also |
| 105 |
> |
* be changed to null for utility classes. |
| 106 |
> |
*/ |
| 107 |
> |
private String _name = null; |
| 108 |
|
|
| 109 |
|
//---STATIC ATTRIBUTES--- |
| 110 |
|
|