Encapsulates a query expression. More...
#include <XQQuery.hpp>
Classes | |
class | QueryResult |
Top level lazy result iterator. | |
Public Member Functions | |
~XQQuery () | |
Destructor. | |
Runtime Methods | |
DynamicContext * | createDynamicContext (xercesc::MemoryManager *memMgr=xercesc::XMLPlatformUtils::fgMemoryManager) const |
Creates a DynamicContext based on the static context used to parse this query. | |
Result | execute (DynamicContext *context) const |
Executes the query using the given DynamicContext, returning a lazy iterator over the results. | |
Result | execute (const Item::Ptr &contextItem, DynamicContext *context) const |
Executes the query or stylesheet using the given context item and DynamicContext, returning a lazy iterator over the results. | |
Result | execute (const XMLCh *templateQName, DynamicContext *context) const |
Executes the stylesheet starting at the named template using the given DynamicContext, returning a lazy iterator over the results. | |
void | execute (EventHandler *events, DynamicContext *context) const |
Executes the query using the given DynamicContext, sending the output of the query to the given EventHandler. | |
void | execute (EventHandler *events, const Item::Ptr &contextItem, DynamicContext *context) const |
Executes the query or stylesheet using the given context item and DynamicContext, sending the output of the query to the given EventHandler. | |
void | execute (EventHandler *events, const XMLCh *templateQName, DynamicContext *context) const |
Executes the stylesheet starting at the named template using the given DynamicContext, sending the output of the query to the given EventHandler. | |
void | staticResolution () |
Perform static resolution on the query. | |
void | staticTyping (StaticTyper *styper=0) |
Perform type calculation and related optimizations. | |
Query Information | |
const XMLCh * | getQueryText () const |
Returns the expression that was parsed to create this XQQuery object. | |
std::string | getQueryPlan () const |
Returns the query plan as XML. This is designed for debug and informative purposes only. | |
Getters and Setters | |
ASTNode * | getQueryBody () const |
Get the query body as an ASTNode. | |
void | setQueryBody (ASTNode *query) |
Set the query body to an ASTNode. | |
void | addFunction (XQUserFunction *fnDef) |
Adds an XQUserFunction to the query (also adds it as a template if necessary). | |
const UserFunctions & | getFunctions () const |
Returns a vector of all XQUserFunction objects from the query. | |
void | addVariable (XQGlobalVariable *varDef) |
Adds a XQGlobalVariable to the query. | |
const GlobalVariables & | getVariables () const |
Returns a vector of all XQGlobalVariable objects from the query. | |
const ImportedModules & | getImportedModules () const |
Returns a vector of all XQGlobalVariable objects from the query. | |
const XMLCh * | getFile () const |
Returns the name of the file that this query was parsed from. | |
void | setFile (const XMLCh *file) |
Sets the name of the file that this query was parsed from. | |
const DynamicContext * | getStaticContext () const |
Module Methods | |
void | setIsLibraryModule (bool bIsModule=true) |
Sets whether this query is a module or not. | |
bool | getIsLibraryModule () const |
Returns whether this query is a module or not. | |
void | setModuleTargetNamespace (const XMLCh *uri) |
Sets the module target namespace for this query. | |
const XMLCh * | getModuleTargetNamespace () const |
Gets the module taget namespace for this query. | |
void | importModule (const XMLCh *szUri, VectorOfStrings *locations, StaticContext *context, const LocationInfo *location) |
Performs a module import from the given target namespace and locations. |
Encapsulates a query expression.
XQQuery objects are thread safe, and can be executed from multiple threads at the same time - provided a DynamicContext is used per thread.
Instances of this class can be created by using the parsing methods on the XQilla object.
This class is dependant on the DynamicContext that was used to create it. This context must not be deleted before the XQQuery object. Normally this is acheived by the XQQuery adopting the DynamicContext and deleting it when it is deleted. However, this behaviour can be disabled by using the XQilla::NO_ADOPT_CONTEXT flag when creating the XQQuery.
XQQuery::~XQQuery | ( | ) |
Destructor.
void XQQuery::addFunction | ( | XQUserFunction * | fnDef | ) |
Adds an XQUserFunction to the query (also adds it as a template if necessary).
void XQQuery::addVariable | ( | XQGlobalVariable * | varDef | ) |
Adds a XQGlobalVariable to the query.
DynamicContext* XQQuery::createDynamicContext | ( | xercesc::MemoryManager * | memMgr = xercesc::XMLPlatformUtils::fgMemoryManager |
) | const |
Creates a DynamicContext based on the static context used to parse this query.
This DynamicContext will be suitable for using to call execute().
memMgr | The memory manager used to create the DynamicContext. |
void XQQuery::execute | ( | EventHandler * | events, | |
const XMLCh * | templateQName, | |||
DynamicContext * | context | |||
) | const |
Executes the stylesheet starting at the named template using the given DynamicContext, sending the output of the query to the given EventHandler.
templateQName | The name of the template to start executing. If the QName includes a prefix, it is resolved using the in-scope namespaces for the stylesheet. | |
context | The DynamicContext to use to execute the query. This contains runtime values for variables, the value of the context item, and other relevent information. |
XQException | If a runtime error occurs |
void XQQuery::execute | ( | EventHandler * | events, | |
const Item::Ptr & | contextItem, | |||
DynamicContext * | context | |||
) | const |
Executes the query or stylesheet using the given context item and DynamicContext, sending the output of the query to the given EventHandler.
contextItem | The context item to use to execute the query. | |
context | The DynamicContext to use to execute the query. This contains runtime values for variables, the value of the context item, and other relevent information. |
XQException | If a runtime error occurs |
void XQQuery::execute | ( | EventHandler * | events, | |
DynamicContext * | context | |||
) | const |
Executes the query using the given DynamicContext, sending the output of the query to the given EventHandler.
context | The DynamicContext to use to execute the query. This contains runtime values for variables, the value of the context item, and other relevent information. |
XQException | If a runtime error occurs |
Result XQQuery::execute | ( | const XMLCh * | templateQName, | |
DynamicContext * | context | |||
) | const |
Executes the stylesheet starting at the named template using the given DynamicContext, returning a lazy iterator over the results.
templateQName | The name of the template to start executing. If the QName includes a prefix, it is resolved using the in-scope namespaces for the stylesheet. | |
context | The DynamicContext to use to execute the query. This contains runtime values for variables, the value of the context item, and other relevent information. |
XQException | If a runtime error occurs |
Result XQQuery::execute | ( | const Item::Ptr & | contextItem, | |
DynamicContext * | context | |||
) | const |
Executes the query or stylesheet using the given context item and DynamicContext, returning a lazy iterator over the results.
contextItem | The context item to use to execute the query. | |
context | The DynamicContext to use to execute the query. This contains runtime values for variables, the value of the context item, and other relevent information. |
XQException | If a runtime error occurs |
Result XQQuery::execute | ( | DynamicContext * | context | ) | const |
Executes the query using the given DynamicContext, returning a lazy iterator over the results.
context | The DynamicContext to use to execute the query. This contains runtime values for variables, the value of the context item, and other relevent information. |
XQException | If a runtime error occurs |
const XMLCh* XQQuery::getFile | ( | ) | const |
Returns the name of the file that this query was parsed from.
const UserFunctions& XQQuery::getFunctions | ( | ) | const [inline] |
Returns a vector of all XQUserFunction objects from the query.
const ImportedModules& XQQuery::getImportedModules | ( | ) | const [inline] |
Returns a vector of all XQGlobalVariable objects from the query.
bool XQQuery::getIsLibraryModule | ( | ) | const |
Returns whether this query is a module or not.
const XMLCh* XQQuery::getModuleTargetNamespace | ( | ) | const |
Gets the module taget namespace for this query.
ASTNode* XQQuery::getQueryBody | ( | ) | const |
Get the query body as an ASTNode.
std::string XQQuery::getQueryPlan | ( | ) | const |
Returns the query plan as XML. This is designed for debug and informative purposes only.
const XMLCh* XQQuery::getQueryText | ( | ) | const |
Returns the expression that was parsed to create this XQQuery object.
const DynamicContext* XQQuery::getStaticContext | ( | ) | const [inline] |
const GlobalVariables& XQQuery::getVariables | ( | ) | const [inline] |
Returns a vector of all XQGlobalVariable objects from the query.
void XQQuery::importModule | ( | const XMLCh * | szUri, | |
VectorOfStrings * | locations, | |||
StaticContext * | context, | |||
const LocationInfo * | location | |||
) |
Performs a module import from the given target namespace and locations.
void XQQuery::setFile | ( | const XMLCh * | file | ) |
Sets the name of the file that this query was parsed from.
void XQQuery::setIsLibraryModule | ( | bool | bIsModule = true |
) |
Sets whether this query is a module or not.
void XQQuery::setModuleTargetNamespace | ( | const XMLCh * | uri | ) |
Sets the module target namespace for this query.
void XQQuery::setQueryBody | ( | ASTNode * | query | ) |
Set the query body to an ASTNode.
void XQQuery::staticResolution | ( | ) |
Perform static resolution on the query.
This operation is not thread safe, and should only be performed once.
Static resolution resolves prefixes to namespace URIs, variable names to variables, function names to functions, and performs some basic query optimisation.
Normally this is done as part of parsing the query expression. However, if the XQilla::NO_STATIC_RESOLUTION flag was specified when the query was parsed, this method will have to be called to perform this step manually.
context | If specified, the StaticContext to use to statically resolve this object. By default, the context used to parse the query is used. This should not need to be changed under normal usage. |
XQException | If a static resolution time error occurs |
void XQQuery::staticTyping | ( | StaticTyper * | styper = 0 |
) |
Perform type calculation and related optimizations.
This operation is safe to call multiple times.
Normally this step is done as part of static resolution.
context | If specified, the StaticContext to use to statically resolve this object. By default, the context used to parse the query is used. This should not need to be changed under normal usage. |
XQException | If a static resolution time error occurs |