Class XMLData

Index Home MAE > MAE Architecture > MAE Data Types > Class Index > Class XMLData

Summary
Using XMLData
Public Methods
XMLData()
XMLData(xmltext)
XMLData(props, recordType)
inline XMLId getId() const
inline string getName() const
inline string getType() const
string getString(key) const
inline void setId(newId)
inline string setName(newName)
inline string setType(newType)
inline void set(key, value)
inline void set(key, value)
inline void set(key, value)
inline void set(key, value)
inline void set(key, value)
inline void setBool(key, value)
inline void set(key, value)
inline void set(key, value)
inline void unset(key)
inline void set(props)
XMLData& set(key, id, record)
inline XMLData& set(key, record)
inline XMLData& set(record)
void unset(key, id)
void unsetrecords(key)
inline unsigned long size() const
unsigned long size(key) const
unsigned long getChildCount(key) const
XMLData& getChild(key)
XMLData& getChildById(key, id)
XMLData& getChildByIndex(index)
XMLData& getChildByIndex(key, index)
XMLData& getChildByValue(key, property, value)
XMLData& getChildByValue(key, property, value)
const XMLData& getChildConst(key) const
const XMLData& getChildByIdConst(key, id) const
const XMLData& getChildByIndexConst(index) const
const XMLData& getChildByIndexConst(key, index) const
const XMLData& getChildByValueConst(key, property, value) const
const XMLData& getChildByValueConst(key, property, value) const
StringSet getChildList() const
string getStringAt(xpath)
long getIntAt(xpath)
float getFloatAt(xpath)
double getDoubleAt(xpath)
bool getBoolAt(xpath)
XMLData& getChildAt(xpath)
string operator[](key) const
XMLData operator+(b) const
inline XMLData& operator+=(b)
string toString() const
string& toString(result) const
inline const HashArray& toHashArray() const
bool fromString(text)
inline bool valid() const
void clear()
static inline bool enforceTagsAsIdentifiers(yes)
static string convertToIdentifier(text)
string toTree(depth) const
Private Properties
Private Methods
static string xmlencode(text)
static string xmldecode(text)
static string getIdentifier(text, leadchar)
static string getQuotedValue(text, leadchar)
bool getTag(text, isSubrecord)
void childAppend(newchild)
XMLData& getParentAt(xpath, childName, index, ok)

#include <XMLData.h >

Super class: HashArray

Summary

This class represent hierarchical XML data.

XML properties are encapsulated in a HashArray class for any XML node.

The data structure can be serialized using toString() and loaded from text using fromString().

Using XMLData

What makes this XML class special is that the XML is generated from records, so it

follows a readily parsable pattern when read back in.

  <recordtype id="n" pname="paramname" >

    <propname >propvalue </propname >

   ... additional properties

    <subnodename >

      <recordtype id="n" >

       ...

      </recordtype >

    </subnodename >

   ... additional subnodes

  </recordtype >

Properties are simple values inside a record, HashArray.  Subnodes are sub-records inside a record, XMLData.

Note that when writing out XML property values, substitutions happen for <, >, &, " and '.

This class uses the XMLData class for key-value properties.

Public Methods

XMLData()

Constructor. Create an emptry hierarchical data structure.

Each level of hierarchy has a number of properties and child nodes.

XMLData(xmltext)

const string& xmltext

a serialized HashArray or XMLData value


This constructor accepts serialized HashArray or XMLData text and converts into into this structure.

XMLData(props, recordType)

const HashArray& props

a group of key-value properties

const string& recordType

Default value: ""


Create a named node of XMLData.

inline XMLId getId() const

Get the id of this record (if set). It is the value of the "id" property.

Return value: record id if set, otherwise 0

inline string getName() const

Get the record name. That is, the value of the "pname" property.

Return value: record name

inline string getType() const

Get the record type. In XML, this is the record tag.

Return value: the record type

string getString(key) const

const string& key

the key of the property to fetch; if it's a node, then the node is serialized to XML text


General purpose - will always return something, whether property or child.

If a property, the string value of the key provided is returned.

If a child node, the serialized value of the child as XML.

Return value: string value for the key provided, null string if no such key or child

inline void setId(newId)

XMLId newId

the new id value


Set the "id" property to the value provided.

inline string setName(newName)

string newName

the record name


Set the name of the record, e.g. the value of "pname".

Note that the value must be alphanumeric characters or colonm ,otherwise, they will be converetd to "_" characters.

Return value: the value of newName

inline string setType(newType)

string newType

the new type of the record


Set the record type for this node. This becomes the XML tag name.

Note that the value must be alphanumeric characters or colonm ,otherwise, they will be converetd to "_" characters.

inline void set(key, value)

const string& key

the key name

const string& value

the value as string


Assign a key-value property into this node

inline void set(key, value)

const string& key

the key name

int value

the value as int


Assign a key-value property into this node

inline void set(key, value)

const string& key

the key name

long value

the value as long


Assign a key-value property into this node

inline void set(key, value)

const string& key

the key name

unsigned int value

the value as unsigned int


Assign a key-value property into this node

inline void set(key, value)

const string& key

the key name

unsigned long value

the value as unsigned long


Assign a key-value property into this node

inline void setBool(key, value)

const string& key

the key name

bool value

the value as boolean.


Assign a key-value property into this node

inline void set(key, value)

const string& key

the key name

float value

the value as float


Assign a key-value property into this node

inline void set(key, value)

const string& key

the key name

double value

the value as double


Assign a key-value property into this node

inline void unset(key)

const string& key

the key or child name to remove.


Unset the property with key name provided or with the child name provided.

inline void set(props)

const HashArray& props

the new properties for this node


Replace this node's existing properties with the provided ones.

XMLData& set(key, id, record)

const string& key

the name of the child node

XMLId id

the id of the child node

const XMLData& record

the new child node


Add or Replace an indexed/id'ed child node with the new record provided. Multiple children may exist, but only the one specific to the id is addressed.

Return value: the new child node

inline XMLData& set(key, record)

const string& key

the name of the child node

const XMLData& record

the new child node


Add or Replace an indexed/id'ed child node with the new record provided. Multiple children may exist, but only the one specific to the new record's id is addressed.

Return value: the new child node

inline XMLData& set(record)

const XMLData& record

the new child node


Add or Replace an indexed/id'ed child node with the new record provided. Multiple children may exist, but only the one specific to the new record's id and record's name is addressed.

Return value: the new child node

void unset(key, id)

const string& key

the name of the child node

XMLId id

the id of the child node


Locate the child node with the name and id and remove it.

void unsetrecords(key)

const string& key

the name of the child node


Locate all child node with the name and remove them (if any).

@param id - the id of the child node

inline unsigned long size() const

Return the number of properties (not children) of this node.

Return value: count of properties in this node and level

unsigned long size(key) const

const string& key

the name of the sub-nodes to look for


Determine how many children of the key exist.

Return value: number of instances of sub-nodes of the key name

unsigned long getChildCount(key) const

const string& key

(optional) the name of the sub-nodes to count; if non-null, it returns size(key)

Default value: ""


Determine the number of children of this node. If a key is provided, then determine the number of children with that name.

Return value: number of children

XMLData& getChild(key)

const string& key

the name of the sub-nodes to look for


Given a child node name, return the node of that child.  If more than one sub-node exists, return the first one.

Return value: child node; if not found, returns an empty node (valid() returns null false)

XMLData& getChildById(key, id)

const string& key

the name of the sub-nodes to look for

XMLId id

the id of the sub-node


Given a child node name and id, return the node of that child.

Return value: child node; if not found, returns an empty node (valid() returns null false)

XMLData& getChildByIndex(index)

int index

the index position of the child, e.g. 0+


Return the indexed node of that child, regardless of its name.  The first child instance is index=0, the second is index=1, etc.

Return value: child node; if not found, returns an empty node (valid() returns null false)

XMLData& getChildByIndex(key, index)

const string& key

the name of the sub-nodes to look for

int index

the index position of the child, e.g. 0+


Return the indexed node of that child name.  The first child instance is index=0, the second is index=1, etc.

Return value: child node; if not found, returns an empty node (valid() returns null false)

XMLData& getChildByValue(key, property, value)

const string& key

the name of the sub-nodes to look for

const string& property

the property name inside the child node

const string& value

the property value inside the child node


Given a child node name, return the indexed node of that child.  The first child instance is index=0, the second is index=1, etc.

Return value: child node; if not found, returns an empty node (valid() returns null false)

XMLData& getChildByValue(key, property, value)

const string& key

the name of the sub-nodes to look for

const string& property

the property name inside the child node

long value

the property value inside the child node


Given a child node name, a property of that child, and the value for that property, return the node of that child.

Return value: child node; if not found, returns an empty node (valid() returns null false)

const XMLData& getChildConst(key) const

const string& key

the name of the sub-nodes to look for


Given a child node name, return the node of that child.  If more than one sub-node exists, return the first one.

Return value: child node (as a const); if not found, returns an empty node (valid() returns null false)

const XMLData& getChildByIdConst(key, id) const

const string& key

the name of the sub-nodes to look for

XMLId id

the id of the sub-node


Given a child node name and id, return the node of that child.

Return value: child node (as a const); if not found, returns an empty node (valid() returns null false)

const XMLData& getChildByIndexConst(index) const

int index

the index position of the child


Return the indexed node of that child, regardless of its name.  The first child instance is index=0, the second is index=1, etc.

Return value: child node (as a const); if not found, returns an empty node (valid() returns null false)

const XMLData& getChildByIndexConst(key, index) const

const string& key

the name of the sub-nodes to look for

int index

the index position of the child


Given a child node name, return the indexed node of that child.  The first child instance is index=0, the second is index=1, etc.

Return value: child node (as a const); if not found, returns an empty node (valid() returns null false)

const XMLData& getChildByValueConst(key, property, value) const

const string& key

the name of the sub-nodes to look for

const string& property

the property name inside the child node

const string& value

the property value inside the child node


Given a child node name, return the indexed node of that child.  The first child instance is index=0, the second is index=1, etc.

Return value: child node (as a const); if not found, returns an empty node (valid() returns null false)

const XMLData& getChildByValueConst(key, property, value) const

const string& key

the name of the sub-nodes to look for

const string& property

the property name inside the child node

long value

the property value inside the child node


Given a child node name, return the indexed node of that child.  The first child instance is index=0, the second is index=1, etc.

Return value: child node (as a const); if not found, returns an empty node (valid() returns null false)

StringSet getChildList() const

Get a list of all child names that are unique.

Return value: a list of unique all child names

string getStringAt(xpath)

const string& xpath

the XPath discribing how to navigate the structure to get the value


Fetching using XPath

Given an XPath, return the value.  Sample XPaths supported:

/top/middle/middle2/leaf

/top[4]/middle/leaf

Return value: the property value (as string)

long getIntAt(xpath)

const string& xpath

the XPath discribing how to navigate the structure to get the value


Fetching using XPath

Given an XPath, return the value.  Sample XPaths supported:

/top/middle/middle2/leaf

/top[4]/middle/leaf

Return value: the property value (as long)

float getFloatAt(xpath)

const string& xpath

the XPath discribing how to navigate the structure to get the value


Fetching using XPath

Given an XPath, return the value.  Sample XPaths supported:

/top/middle/middle2/leaf

/top[4]/middle/leaf

Return value: the property value (as float)

double getDoubleAt(xpath)

const string& xpath

the XPath discribing how to navigate the structure to get the value


Fetching using XPath

Given an XPath, return the value.  Sample XPaths supported:

/top/middle/middle2/leaf

/top[4]/middle/leaf

Return value: the property value (as double)

bool getBoolAt(xpath)

const string& xpath

the XPath discribing how to navigate the structure to get the value


Fetching using XPath

Given an XPath, return the value.  Sample XPaths supported:

/top/middle/middle2/leaf

/top[4]/middle/leaf

Return value: the property value (as bool)

XMLData& getChildAt(xpath)

const string& xpath

the XPath discribing how to navigate the structure to get the value


Fetching using XPath

Given an XPath, return the node it points to.  Sample XPaths supported:

/top/middle/middle2/leaf

/top[4]/middle/leaf

Return value: the property value (as string)

string operator[](key) const

const string& key

the key to use to find the value


Get a property (or child as XML text) from its key

Return value: the value for the key

XMLData operator+(b) const

const XMLData& b

the other XMLData to add to this XMLData


Merge together the properties from the provided node and add all the children of the provided node.

Return value: a new XMLData with both structures combined

inline XMLData& operator+=(b)

const XMLData& b

the other XMLData to add to node


Merge the properties from the provided node and add all the children of the provided node to the current node.

Return value: the updated XMLData with both structures combined

string toString() const

Convert the node and all sub-nodes into serialized text.

Return value: the XMLData, serialized as text

string& toString(result) const

string& result

(output) the serialized text


Convert the node and all sub-nodes into serialized text into the provided string.

Return value: the resulting output in the result parameter

inline const HashArray& toHashArray() const

Truncate all the XMLData children and return only the properties of the current nodes - as a HashArray.

Return value: just the properties (as HashArray)

bool fromString(text)

string text

XML as text to convert into our structure


Convert serialized XMLData text into the current XMLData structure, clearing any previous data.

Return value: true if data fully loaded

inline bool valid() const

Determine if the current XMLData instance is valid or empty.

Return value: true if valid, false if empty/invalid

void clear()

Clear all data int his XMLData node and remove all sub-nodes.

static inline bool enforceTagsAsIdentifiers(yes)

bool yes

true if tags should be valid identifiers

Default value: true


By default, tags must be identifiers (alphanumeric tokens, but may include :).

Return value: true if tags will be enforced as identifiers.

static string convertToIdentifier(text)

string text

the input tag


Ensure text is a valid identifer (no spaces or punctuation except :)

Return value: the input text, but now as a valid identifier

string toTree(depth) const

int depth

the starting tree depth (used for indentation)

Default value: 0


Produce a text tree of XML data.

Return value: a string representation as output text of the tree

Private Properties

XMLId id

the id of this node

string name

node name for this record

string type

record type

unsigned int noChildren

count of the number of children nodes (not including properties)

vector <XMLData > child

child records

static bool tagsAreIdentifiers

Flag: treat tags as identifiers (not spaces allowed), default: true


Private Methods

static string xmlencode(text)

const string& text

text to encode


Encode the provided text into XML printable text

Return value: encoded text

static string xmldecode(text)

const string& text

text to decode


Decode the XML printable text into the original text

Return value: decoded text

static string getIdentifier(text, leadchar)

string& text

text to parse

char leadchar

lead character


Given text, extract the identifier.

Return value: the identifier found

static string getQuotedValue(text, leadchar)

string& text

text to parse

char leadchar

lead character


Given text, extract the quoted value.

Return value: the quoted text found

bool getTag(text, isSubrecord)

string& text

text to parse

bool isSubrecord

Flag: true if subrecord, false if not

Default value: false


Parse the text to get the tag label.

void childAppend(newchild)

const XMLData& newchild

the new XMLData node to add


Append another child node to this XMLData.

XMLData& getParentAt(xpath, childName, index, ok)

const string& xpath

the XPath to use

string& childName

(output)

int& index

(output)

bool& ok

(output)


Given an XPath, get the child name and index and return the parent node

Return value: parent node of XPath provided