#include <DynamicContext.hpp>
Inheritance diagram for DynamicContext:
Public Member Functions | |
virtual | ~DynamicContext () |
virtual DynamicContext * | createModuleDynamicContext (const DynamicContext *moduleCtx, xercesc::MemoryManager *memMgr=xercesc::XMLPlatformUtils::fgMemoryManager) const =0 |
virtual void | clearDynamicContext ()=0 |
Resets the dynamic context, as if it had never been used. | |
virtual Item::Ptr | getContextItem () const =0 |
Get the context Item. | |
virtual void | setContextItem (const Item::Ptr &item)=0 |
Set the context item to item. | |
virtual size_t | getContextPosition () const =0 |
Get the context position. | |
virtual void | setContextPosition (size_t pos)=0 |
Set the context position. | |
virtual size_t | getContextSize () const =0 |
Get the context size. | |
virtual void | setContextSize (size_t size)=0 |
Set the context size. | |
virtual const VariableStore * | getVariableStore () const =0 |
get the variable store | |
virtual void | setVariableStore (const VariableStore *store)=0 |
set the variable store | |
virtual const VariableStore * | getGlobalVariableStore () const =0 |
get the variable store for globally scoped variables | |
virtual void | setGlobalVariableStore (const VariableStore *store)=0 |
set the variable store for globally scoped variables | |
virtual void | setExternalVariable (const XMLCh *namespaceURI, const XMLCh *name, const Sequence &value)=0 |
set the value of an external global variable with the given uri/localname pair | |
virtual void | setExternalVariable (const XMLCh *qname, const Sequence &value)=0 |
set the value of an external global variable with the given QName | |
virtual const RegexGroupStore * | getRegexGroupStore () const =0 |
get the regex group store | |
virtual void | setRegexGroupStore (const RegexGroupStore *store)=0 |
set the regex group store | |
virtual time_t | getCurrentTime () const =0 |
Return the current time. | |
virtual void | setCurrentTime (time_t newTime)=0 |
Set the current time. | |
virtual ATDurationOrDerived::Ptr | getImplicitTimezone () const =0 |
Return the implicit timezone for this system. | |
virtual void | setImplicitTimezone (const ATDurationOrDerived::Ptr &timezoneAsDuration)=0 |
Set the implicit timezone. | |
virtual void | registerURIResolver (URIResolver *resolver, bool adopt)=0 |
Register a callback object for resolving URIs. | |
virtual URIResolver * | getDefaultURIResolver () const =0 |
Returns the default URIResolver. | |
virtual void | setDefaultURIResolver (URIResolver *resolver, bool adopt)=0 |
Sets the default URIResolver. | |
virtual void | setDebugListener (DebugListener *listener)=0 |
Set the listener for debug messages. | |
virtual DebugListener * | getDebugListener () const =0 |
Gets the listener for debug messages. | |
virtual void | setStackFrame (const StackFrame *frame)=0 |
Sets the current stack frame whilst debugging. | |
virtual const StackFrame * | getStackFrame () const =0 |
Gets the listener for debug messages. | |
virtual Node::Ptr | parseDocument (xercesc::InputSource &srcToUse, const LocationInfo *location=0, const QueryPathNode *projection=0)=0 |
Parse an XML document from the provided InputSource. | |
virtual Sequence | resolveDocument (const XMLCh *uri, const LocationInfo *location=0, const QueryPathNode *projection=0)=0 |
Resolve the given uri (and baseUri) to an XML document. | |
virtual Sequence | resolveCollection (const XMLCh *uri, const LocationInfo *location=0, const QueryPathNode *projection=0)=0 |
Resolve the given uri (and baseUri) to a sequence of Node objects. | |
virtual Sequence | resolveDefaultCollection (const QueryPathNode *projection=0)=0 |
Resolve the default collection to a sequence of Node objects. | |
virtual bool | putDocument (const Node::Ptr &document, const XMLCh *uri)=0 |
Attempts to put the document specified to the given URI by calling the registered URIResolver objects. | |
virtual SequenceBuilder * | createSequenceBuilder () const =0 |
Create a new SequenceBuilder, which is used to turn a stream of events into a Sequence. | |
virtual UpdateFactory * | createUpdateFactory () const =0 |
Creates a new UpdateFactory, used for performing updates. | |
virtual void | testInterrupt () const =0 |
Test if the query should be interrupted, and throw if so. |
|
|
|
Resets the dynamic context, as if it had never been used.
|
|
|
|
Create a new SequenceBuilder, which is used to turn a stream of events into a Sequence.
|
|
Creates a new UpdateFactory, used for performing updates. Caller owns the returned object, and should delete it |
|
Get the context Item.
|
|
Get the context position.
|
|
Get the context size.
|
|
Return the current time.
|
|
Gets the listener for debug messages.
|
|
Returns the default URIResolver.
|
|
get the variable store for globally scoped variables
|
|
Return the implicit timezone for this system.
|
|
get the regex group store
|
|
Gets the listener for debug messages.
|
|
get the variable store
|
|
Parse an XML document from the provided InputSource.
|
|
Attempts to put the document specified to the given URI by calling the registered URIResolver objects. Returns whether the operation was successful. |
|
Register a callback object for resolving URIs. Multiple URIResolver objects can be registered with the DynamicContext at the same time. The most recently added URIResolver will be called first, and if it returns false, subsequent ones will be called - ending in a call to the fallback routines. If "adopt" is false, the DynamicContext will not adopt this object, making the user responsible for making sure that the URIResolver object's lifespan matches or exceeds the life of the DynamicContext. |
|
Resolve the given uri (and baseUri) to a sequence of Node objects. If the uri is relative, the base uri is obtained from the context. |
|
Resolve the default collection to a sequence of Node objects.
|
|
Resolve the given uri (and baseUri) to an XML document. If the uri is relative, the base uri is obtained from the context. |
|
Set the context item to item.
|
|
Set the context position.
|
|
Set the context size.
|
|
Set the current time.
|
|
Set the listener for debug messages.
|
|
Sets the default URIResolver.
|
|
set the value of an external global variable with the given QName
|
|
set the value of an external global variable with the given uri/localname pair
|
|
set the variable store for globally scoped variables
|
|
Set the implicit timezone.
|
|
set the regex group store
|
|
Sets the current stack frame whilst debugging.
|
|
set the variable store
|
|
Test if the query should be interrupted, and throw if so.
|