Do you have EasyXML ideas, or challenges you'd like discuss? Join the conversation happening in the EasyXML Community Discussion Forums.
You can download and install EasyXML with VI Package Manager.
The JKI EasyXML functions allow you to easily create and parse XML data and files. The main advantage is that EasyXML does not use the LabVIEW data schema defined by NI (<LabVIEW>\vi.lib\Utility\LVXMLSchema.xsd). Instead, it uses the data names as the XML entity names, allowing users to quickly and easily write and read arbitrary XML data. Additionally, EasyXML supports XML entity attributes.
Converts LabVIEW Data to an XML string with the LabVIEW data names (labels) converted to XML item names and the LabVIEW data values converted to XML item values.
Converts an XML String to LabVIEW Data, based on the LabVIEW Data (Type) argument. Use the Variant to Data function to convert the output variant LabVIEW Data to the desired data type.
Converts LabVIEW Data to an XML string and writes it to an XML file with the LabVIEW data names (labels) converted to XML item names and the LabVIEW data values converted to XML item values.
Reads and parses data from an XML file (specified by the XML File Path input), converting it into LabVIEW Data, based on the LabVIEW Data (Type) argument. Use the Variant to Data function to convert the output variant LabVIEW Data to the desired data type.
Refer to the <LabVIEW>\examples\JKI\EasyXML folder for examples of using the JKI EasyXML Functions.
You can also find the examples using the NI Example Finder, under the JKI\EasyXML folder:
The LabVIEW Flatten to XML output, shown below, is focus on LabVIEW data type, whereas the EasyXML output is more focused on the data names and structure, mapping the data names to entity names and data values to entity text (#TEXT):
LabVIEW's built-in XML output:
<Cluster>
<Name>My XML Data</Name>
<NumElts>2</NumElts>
<DBL>
<Name>My Number</Name>
<Val>1.23000</Val>
</DBL>
<Boolean>
<Name>My Boolean</Name>
<Val>1</Val>
</Boolean>
</Cluster>
EasyXML output:
<My_XML_Data>
<My_Number>1.23</My_Number>
<My_Boolean>TRUE</My_Boolean>
</My_XML_Data>
Additionally, the EasyXML library also supports attributes, as shown by the version and author attributes of the My_XML_Data entity below:
<My_XML_Data version="2.1" author="Jane Doe">
<My_Number>1.23</My_Number>
<My_Boolean>TRUE</My_Boolean>
</My_XML_Data>
LabVIEW data names map to element and attribute names. The LabVIEW data names will be converted to legal XML entity names if they contain any illegal entity name characters. Leading and trailing whitespace will be removed (trimmed). Whitespace characters within the data name will be converted to underscores. Other illegal characters will simply be removed.
LabVIEW clusters are used for compound XML elements (elements with child elements). For example, here is some XML with compound elements:
<Company>
<Name>JKI</Name>
<Location>
<City>San Francisco</City>
<Country>USA</Country>
</Location>
</Company>
Arrays can be used to handle multiple XML elements of the same name. When using LabVIEW arrays, the array name, not the array element name, is used as the xml element name. For example, if we have a cluster named "employees" that contains an array (of strings) named "person", we might get something like the following:
<employees>
<person>Jack</person>
<person>Jill</person>
<person>Bob</person>
</employees>
LabVIEW data with a null value will generate an empty element. For example:
<empty_element/> instead of <empty_element></empty_element>
Note: One exception to this rule is an empty array. Since an array represents an ordered set of elements, an empty array represents no elements.
Scalar XML elements have no child elements. They consist of string data. For example, below is a scalar element named "State" with a value of "California":
<State>California</State>
Scalar elements are created from any supported LabVIEW data type, other than clusters (which are used for compound/nested elements).
Below is a table showing the default formatting of LabVIEW data types:
string: %s
path: %s
integer: %d
floating point: %#g (automatic)
Boolean: %s (TRUE or FALSE)
All data will be escaped in the XML values, such that it does not include any special XML characters (see Table below). This means that instances of these characters must be converted to escape code.
Element or Attribute Special Character Escape Code
Both & &
Both > >
Both < <
Attribute Only ' '
Attribute Only " "
XML elements can have attributes. For example, below is an xml element having two attributes:
<my_element attribute_1="value 1" attribute_1="value 2" />
Attributes are achieved by placing a cluster named "#attributes" as the first cluster element of the xml element cluster.
If an xml element (having attributes) is a scalar (no child elements), then the second cluster element must be a LabVIEW scalar with the same name as the element cluster.
If an element with attributes has more than one (non-attribute) child element, then every cluster element shall be interpreted as a child element (rather than scalar data), even if a child element has the same name as the parent element (cluster).
One of the features that makes EasyXML so great is that it can gracefully handle extra and missing data elements in the XML data - it will do it's "best attempt" to parse the XML data.
In the case where there are extra XML elements or attributes that are not present in the LabVIEW data, then they will simply be ignored - this is a "best attempt".
In the case where there are elements or attributes present in the LabVIEW that are not present in the XML data, then the output LabVIEW data will contain the same values passed into the Data Type and Default Value (variant) input - this is a "best attempt".
When generating xml data, 2 spaces are used for block indentation of XML entities. For example:
<Company>
<Name>JKI</Name>
<Location>
<City>San Francisco</City>
<Country>USA</Country>
</Location>
</Company>
instead of:
<Company>
<Name>JKI</Name>
<Location>
<City>San Francisco</City>
<Country>USA</Country>
</Location>
</Company>
A useful feature is the ability to read an entire raw XML element into a string data type in LabVIEW, which can then be separately parsed. To do this, you need to name (label) the string with an " #xml" suffix. The result is that the raw XML data will be read into/from the string and then can be processed in a separate step. This is especially helpful if elements (having the same name) come in a few different flavors (sub-element types and structure). See the examples, below:
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
To contribute to EasyXML, you will need 32-bit LabVIEW 2011 professional development environment.
EasyXML is an open source project maintained by JKI.
EasyXML is distributed under the open source three clause BSD license providing everyone right to use and distribute both source code and compiled versions of EasyXML. See LICENSE file for details.