CopperSpice API
1.9.2
|
XQuery is a language for traversing XML documents to select and aggregate items of interest and to transform them for output as XML or some other format. XPath is the element selection part of XQuery.
The CsXmlPatterns library supports using XQuery 1.0 and XPath 2.0 in CopperSpice applications, for querying XML data and for querying non-XML data that can be modeled to look like XML. If you are not familiar with the XQuery language refer to the Introduction to XQuery documentation.
The XQuery/XPath language simplifies data searching and transformation tasks by eliminating the need for doing a lot of C++ or Java procedural programming for each new query task. The following is an XQuery which constructs a bibliography of the contents of a library.
First, the query opens a <bibliography>
element in the output. The embedded path expression then loads the XML document describing the contents of the library (library.xml
) and begins the search. For each <book>
element it finds, where the publisher was Addison-Wesley and the publication year was after 1991, it creates a new <book>
element in the output as a child of the open <bibliography>
element. Each new <book>
element gets the book's title as its contents and the book's publication year as an attribute. Finally, the <bibliography>
element is closed.
The advantages of using CsXmlPatterns and XQuery in your CopperSpice programs are summarized as follows.
There are two ways CsXmlPatterns can be used to evaluate queries. You can run the query engine in your CopperSpice application using the CsXmlPatterns C++ API, or you can run the query engine from the command line using the CopperSpice xmlpatterns
command line utility.
If we save the example XQuery shown above in a text file (e.g. myquery.xq
), we can run it from a CopperSpice application using a standard CsXmlPatterns code sequence:
First construct a QFile for the text file containing the XQuery (myquery.xq
). Then create an instance of QXmlQuery and call its setQuery() function to load and parse the XQuery file. Then create an XML serializer to output the query's result set as unformatted XML. Finally, call the evaluateTo() function to evaluate the query and serialize the results as XML.
Refer to the QXmlQuery documentation for more information about the CsXmlPatterns C++ API.
xmlpatterns is a command line utility for running XQueries. It expects the name of a file containing the XQuery text.
The XQuery in myQuery.xq
will be evaluated and its output written to stdout
. Pass the -help
switch to get the list of input flags and their meanings.
Xmlpatterns can be used in scripting. However, the descriptions and messages it outputs are not meant to be parsed and may change.
XQuery represents data items as atomic values or nodes. An atomic value is a value in the domain of one of the built-in datatypes defined in Part 2 of the W3C XML Schema. A node is normally an XML element or attribute, but when non-XML data is modeled to look like XML, a node can also represent a non-XML data items.
When you run an XQuery using the C++ API in a CopperSpice application, you will often want to bind program variables to $variables in the XQuery. After the query is evaluated, you will want to interpret the sequence of data items in the result set.
When you want to run a parameterized XQuery from your CopperSpice application, you will need to bind variables in your program to $name variables in your XQuery.
Suppose you want to parameterize the bibliography XQuery in the example above. You could define variables for the catalog that contains the library ($file
), the publisher name ($publisher
), and the year of publication ($year
):
Modify the CsXmlPatterns code to use one of the bindVariable() functions to bind a program variable to each XQuery $variable:
Each program variable is passed to CsXmlPatterns as a QVariant of the type of the C++ variable or constant from which it is constructed. CsXmlPatterns assumes the type of the QVariant in the bindVariable() call is the correct type, so the $variable it is bound to must be used in the XQuery accordingly. The following table shows how QVariant types are mapped to XQuery $variable types.
QVariant type | XQuery $variable type |
---|---|
QVariant::LongLong | xs:integer |
QVariant::Int | xs:integer |
QVariant::UInt | xs:nonNegativeInteger |
QVariant::ULongLong | xs:unsignedLong |
QVariant::String | xs:string |
QVariant::Double | xs:double |
QVariant::Bool | xs:boolean |
QVariant::Double | xs:decimal |
QVariant::ByteArray | xs:base64Binary |
QVariant::StringList | xs:string* |
QVariant::Url | xs:string |
QVariant::Date | xs:date . |
QVariant::DateTime | xs:dateTime |
QVariant::Time. | xs:time Binding To QVariant::Time |
QVariantList | Binding To QVariantList |
A type not shown in the table is not supported and will cause undefined XQuery behavior or a $variable binding error, depending on the context in the XQuery where the variable is used.
Because the instance of QTime used in QVariant::Time does not include a zone offset, an instance of QVariant::Time should not be bound to an XQuery variable of type xs:time
, unless the QTime is UTC. When binding a non-UTC QTime to an XQuery variable, it should first be passed as a string, or converted to a QDateTime with an arbitrary date, and then bound to an XQuery variable of type xs:dateTime
.
A QVariantList can be bound to an XQuery $variable. All the QVariants in the list must be of the same atomic type, and the $variable the variant list is bound to must be of that same atomic type. If the QVariants in the list are not all of the same atomic type, the XQuery behavior is undefined.
When the results of an XQuery are returned in a sequence of result items, atomic values in the sequence are treated as instances of QVariant. Suppose that instead of serializing the results of the XQuery as XML, we process the results programmatically. Modify the standard CsXmlPatterns code sequence to call the overload of QXmlQuery::evaluateTo() that populates a sequence of result items with the XQuery results:
Iterate through the result items and test each QXmlItem to see if it is an atomic value or a node. If it is an atomic value, convert it to a QVariant with toAtomicValue() and switch on its variant type to handle all the atomic values your XQuery might return. The following table shows the QVariant type to expect for each atomic value type (or QXmlName).
XQuery result item type | QVariant type returned |
---|---|
xs:QName | QXmlName Handling QXmlNames |
xs:integer | QVariant::LongLong |
xs:string | QVariant::String |
xs:string* | QVariant::StringList |
xs:double | QVariant::Double |
xs:float | QVariant::Double |
xs:boolean | QVariant::Bool |
xs:decimal | QVariant::Double |
xs:hexBinary | QVariant::ByteArray |
xs:base64Binary | QVariant::ByteArray |
xs:gYear | QVariant::DateTime |
xs:gYearMonth | QVariant::DateTime |
xs:gMonthDay | QVariant::DateTime |
xs:gDay | QVariant::DateTime |
xs:gMonth | QVariant::DateTime |
xs:anyURI | QVariant::Url |
xs:untypedAtomic | QVariant::String |
xs:ENTITY | QVariant::String |
xs:date | QVariant::DateTime |
xs:dateTime | QVariant::DateTime |
xs:time | No mapping for xs:time |
If your XQuery can return atomic value items of type xs:QName
, they will appear in your QXmlResultItems as instances of QXmlName. Since the QVariant class does not support the QXmlName class directly, extracting data from QXmlResultItems requires a bit of extra work.
To access the strings in a QXmlName returned by an XQuery evaluation, the QXmlName must be accessed with the name pool from the instance of QXmlQuery that was used for the evaluation. This is the modified example.
An instance of xs:time
can not be represented correctly as an instance of QVariant::Time, unless the xs:time
is a UTC time. This is because xs:time has a zone offset (0 for UTC) in addition to the time value, which the QTime in QVariant::Time does not have. This means that if an XQuery tries to return an atomic value of type xs:time
, an invalid QVariant will be returned. A query can return an atomic value of type xs:time by either converting it to an xs:dateTime
with an arbitrary date, or to an xs:string
.
Although the XQuery language was designed for querying XML, with CsXmlPatterns one can use XQuery for querying any data that can be modeled to look like XML. Non-XML data is modeled to look like XML by loading it into a custom subclass of QAbstractXmlNodeModel, where it is then presented to the CsXmlPatterns XQuery engine via the same API the XQuery engine uses for querying XML.
When CsXmlPatterns loads and queries XML files and produces XML output, it can always load the XML data into its default XML node model, where it can be traversed efficiently. The XQuery below traverses the product orders found in the XML file myOrders.xml to find all the skin care product orders and output them ordered by shipping date.
CsXmlPatterns can be used out of the box to perform this query, provided myOrders.xml actually contains well-formed XML. It can be loaded directly into the default XML node model and traversed. But suppose we want CsXmlPatterns to perform queries on the hierarchical structure of the local file system. The default XML node model in CsXmlPatterns is not suitable for navigating the file system, because there is no XML file to load that contains a description of it. Such an XML file, if it existed, might look something like this:
There is no such file to load into the default XML node model, but one can write a subclass of QAbstractXmlNodeModel to represent the file system. This custom XML node model, once populated with all the directory and file descriptors obtained directly from the system, presents the complete file system hierarchy to the query engine via the same API used by the default XML node model to present the contents of an XML file. In other words, once the custom XML node model is populated, it presents the file system to the query engine as if a description of it had been loaded into the default XML node model from an XML file like the one shown above.
Now we can write an XQuery to find all the XML files and parse them to find the ones that do not contain well-formed XML.
Without CsXmlPatterns, there is no simple way to solve this kind of problem. You might do it by writing a C++ program to traverse the file system, sniff out all the XML files, and submit each one to an XML parser to test that it contains valid XML. The C++ code required to write that program will probably be more complex than the C++ code required to subclass QAbstractXmlNodeModel, but even if the two are comparable, your custom C++ program can be used only for that one task, while your custom XML node model can be used by any XQuery that must navigate the file system.
The general approach to using XQuery to perform queries on non-XML data has been a three step process. In the first step, the data is loaded into a non-XML data model. In the second step, the non-XML data model is serialized as XML and output to XML (text) files. In the final step, an XML tool loads the XML files into a second, XML data model, where the XQueries can be performed. The development cost of implementing this process is often high, and the three step system that results is inefficient because the two data models must be built and maintained separately.
With CsXmlPatterns, subclassing QAbstractXmlNodeModel eliminates the transformation required to convert the non-XML data model to the XML data model, because there is only ever one data model required. The non-XML data model presents the non-XML data to the query engine via the XML data model API. Also, since the query engine uses the API to access the QAbstractXmlNodeModel, the data model subclass can construct the elements, attributes and other data on demand, responding to the query's specific requests. This can greatly improve efficiency, because it means the entire model might not have to be built. For example, in the file system model above, it is not necessary to build an instance for a whole XML file representing the whole file system. Instead nodes are created on demand, which also likely is a small subset of the file system.
Examples of other places where XQuery could be used in CsXmlPatterns to query non-XML data:
See the QAbstractXmlNodeModel documentation for information about how to implement custom XML node models.
Subclassing QAbstractXmlNodeModel to let the query engine access non-XML data by the same API it uses for XML is the feature that enables CsXmlPatterns to query non-XML data with XQuery. It allows XQuery to be used as a mapping layer between different non-XML node models or between a non-XML node model and the built-in XML node model. Once the subclass(es) of QAbstractXmlNodeModel have been written, XQuery can be used to select a set of elements from one node model, transform the selected elements, and then write them out, either as XML using QXmlQuery::evaluateTo() and QXmlSerializer, or as some other format using a subclass of QAbstractXmlReceiver.
Consider a word processor application that must import and export data in several different formats. Rather than writing a lot of C++ code to convert each input format to an intermediate form, and more C++ code to convert the intermediate form back to each output format, one can implement a solution based on CsXmlPatterns that uses simple XQueries to transform each XML or non-XML format (e.g. MathFormula.xml below) to the intermediate form (e.g. the DocumentRepresentation node model class below), and more simple XQueries to transform the intermediate form back to each XML or non-XML format.
Because CSV files are not XML, a subclass of QAbstractXmlNodeModel is used to present the CSV data to the XQuery engine as if it were XML. What are not shown are the subclasses of QAbstractXmlReceiver that would then send the selected elements into the DocumentRepresentation node model, and the subclasses of QAbstractXmlNodeModel that would ultimately write the output files in each format.
XQuery is vulnerable to code injection attacks in the same way as the SQL language. If an XQuery is constructed by concatenating strings, and the strings come from user input, the constructed XQuery could be malevolent. The best way to prevent code injection attacks is to not construct XQueries from user-written strings, but only accept user data input using QVariant and variable bindings. Refer to QXmlQuery::bindVariable().
The articles Avoid the dangers of XPath injection, by Robi Sen and Blind XPath Injection, by Amit Klein, discuss the XQuery code injection problem in more detail.
Applications using CsXmlPatterns are subject to the same limitations of software as other systems. Generally, these can not be checked. This means CsXmlPatterns does not prevent rogue queries from consuming too many resources. For example, a query could take too much time to execute or try to transfer too much data. A query could also do too much recursion, which could crash the system. XQueries can do these things accidentally, but they can also be done as deliberate denial of service attacks.
CsXmlPatterns aims at being a conformant XQuery processor. It adheres to Minimal Conformance and supports the Serialization Feature and the Full Axis Feature.
CsXmlPatterns currently passes 97% of the tests in the XML Query Test Suite. Areas where conformance may be questionable and where behavior may be changed in future releases include:
The specifications discusses conformance further: XQuery 1.0: An XML Query Language. W3C's XQuery testing effort can be of interest as well, XML Query Test Suite.
Currently fn:collection()
does not access any data set, and there is no API for providing data through the collection. As a result, evaluating fn:collection()
returns the empty sequence.
Only queries encoded in UTF-8 are supported.
CopperSpice has partial support for XSLT. Future releases of CsXmlPatterns will aim to support these XSLT features:
For details, refer to XSL Transformations (XSLT) Version 2.0, 21 Conformance.
In this release, XSLT support is considered experimental.
Unsupported or partially supported XSLT features are documented in the following table. The implementation of XSLT can be seen as XSLT 1.0 but with the data model of XPath 2.0 and XSLT 2.0, and using the using the functionality of XPath 2.0 and its accompanying function library. When CsXmlPatterns encounters an unsupported or partially support feature, it will either report a syntax error or silently continue, unless otherwise noted in the table.
The implementation currently passes 42% of W3C's XSLT test suite, which focus on features introduced in XSLT 2.0.
XSL Feature | Support Status |
---|---|
xsl:key and fn:key() | not supported |
xsl:include | not supported |
xsl:import | not supported |
xsl:copy | The copy-namespaces and inherit-namespaces attributes have no effect. For copied comments, attributes and processing instructions, the copy has the same node identity as the original. |
xsl:copy-of | The copy-namespaces attribute has no effect. |
fn:format-number() | not supported |
xsl:message | not supported |
xsl:use-when | not supported |
Tunnel Parameters | not supported |
xsl:attribute-set | not supported |
xsl:decimal-format | not supported |
xsl:fallback | not supported |
xsl:apply-imports | not supported |
xsl:character-map | not supported |
xsl:number | not supported |
xsl:namespace-alias | not supported |
xsl:output | not supported |
xsl:output-character | not supported |
xsl:preserve-space | not supported |
xsl:result-document | not supported |
Patterns | Complex patterns or patterns with predicates have issues. |
2.0 Compatibility Mode | Stylesheets are interpreted as XSLT 2.0 stylesheets, even if the version attribute is in the XSLT source is 1.0. In other words, the version attribute is ignored. |
Grouping | fn:current-group() , fn:grouping-key() and xsl:for-each-group . |
RegularExpression elements | xsl:analyze-string , xsl:matching-substring , xsl:non-matching-substring , and fn:regex-group() |
Date & Time formatting | fn:format-dateTime() , fn:format-date() and fn:format-time() (QML Basic Type: time) |
XPath Conformance | Since XPath is a subset of XSLT, its issues are in affect too. |
The CsXmlPatterns implementation of the XPath Data Model does not include entities (due to QXmlStreamReader not reporting them). This means that functions unparsed-entity-uri()
and unparsed-entity-public-id()
always return negatively.
Since XPath 2.0 is a subset of XQuery 1.0, XPath 2.0 is supported. Areas where conformance may be questionable and, consequently, where behavior may be changed in future releases include the following.
xs:time
, xs:date
, and xs:dateTime
are incomplete xs:double
, xs:float
, and xs:decimal
values may be incorrect Processing of XML files supports xml:id
. This allows elements that have an attribute named xml:id
to be looked up efficiently with the fn:id()
function. See xml:id Version 1.0 for details.
There are two ways CsXmlPatterns can be used to validate schemas. You can use the C++ API in your CopperSpice application using the classes QXmlSchema and QXmlSchemaValidator, or you can use the command line utility named xmlpatternsvalidator.
The CsXmlPatterns implementation of XML Schema validation supports the schema specification version 1.0 in large parts. Known problems of the implementation and areas where conformance may be questionable are:
minOccurs
or maxOccurs
values or deeply nested ones require huge amount of memory which might cause the system to freeze. Such a schema should be rewritten to use unbounded
as value instead of large numbers. This restriction will hopefully be fixed in a later release. When CsXmlPatterns loads an XML resource, e.g., using the fn:doc()
function, the following schemes are supported:
Scheme Name | Description |
---|---|
file | Local files. |
data | The bytes are encoded in the URI itself. e.g., data:application/xml,%3Ce%2F%3E is <e/> . |
ftp | Resources retrieved via FTP. |
http | Resources retrieved via HTTP. |
https | Resources retrieved via HTTPS. This will succeed if no SSL errors are encountered. |
qrc | CopperSpice Resource files. Expressing it as an empty scheme, :/..., is not supported. |
XML 1.0 and XML Namespaces 1.0 are supported, as opposed to the 1.1 versions. When a strings is passed to a query as a QString, the characters must be XML 1.0 characters. Otherwise, the behavior is undefined. This is not checked.
URIs are first passed to QAbstractUriResolver. Check QXmlQuery::setUriResolver() for possible rewrites.