Type | Read/write | Author | Availability |
Read | Finbourne | Provided with LUSID |
The Tools.Parse.Xml
provider enables you to write a Luminesce query that reads XML from one or more cells within a table.
Note: The LUSID user running the query must have sufficient access control permissions to use this provider. This should automatically be the case if you are the domain owner.
See also: Tools.Parse.Csv
Basic usage
Input tables
Tools.Parse.Xml
takes in one input table and outputs a table of data, see example 1.
Options
Tools.Parse.Xml
has options that enable you to refine a query.
An option takes the form --<option>=<value>
, for example --fileFilter=myFile.xml
. Note no spaces are allowed either side of the =
operator. If an option takes a boolean value, then specifying that option (for example --addFileName
) sets it to True; omitting the option specifies False.
The table below provides information on the most commonly used options for Tools.Parse.Xml
:
Option | Value | Status | Information |
| Regex string, for example | Optional | Based on the |
| Boolean | Optional | Adds a column to the result set containing the file the row came from. |
| String | Optional | XML Path query that selects the nodes to map to rows. Defaults to |
To see a help screen of all available options, their data types, default values, and an explanation for each, run the following query using a suitable tool:
Examples
Note: For more example Luminesce queries, visit our GitHub repo.
Example 1: Reading a single XML file from a table
The table of data returned looks like this:
.png)
Example 2: Reading multiple XMLs at the same time
In this example, the --addFileName
option is specified to ensure the first column in the table of results contains the filename corresponding to each row of data.
The table of data returned looks like this:
.png)
Example 3: Returning only rows with a particular filename
In this example, the --fileFilter
option is specified to only select rows with a Filename
value that contains ReportFile
.
The table of data returned looks like this, with UnrelatedFile.Xml
being ignored for not matching the specified --fileFilter
value:
.png)
Example 4: Returning only particular rows without any filenames
In this example, the --fileFilter
option is specified to only select particular rows to process. As no Filename
column is specified in @data
, Tools.Parse.Xml
gives each row a sequential name which can then be referred to in the --fileFilter
option.
The table of data returned looks like this, containing only the second and fourth rows from @data
:
.png)