#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 unsigned int | getContextPosition () const=0 |
Get the context position. | |
virtual void | setContextPosition (unsigned int pos)=0 |
Set the context position. | |
virtual unsigned int | getContextSize () const=0 |
Get the context size. | |
virtual void | setContextSize (unsigned int 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 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 Sequence | resolveDocument (const XMLCh *uri, const LocationInfo *location)=0 |
virtual Sequence | resolveCollection (const XMLCh *uri, const LocationInfo *location)=0 |
virtual Sequence | resolveDefaultCollection ()=0 |
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. |
virtual DynamicContext::~DynamicContext | ( | ) | [inline, virtual] |
virtual DynamicContext* DynamicContext::createModuleDynamicContext | ( | const DynamicContext * | moduleCtx, | |
xercesc::MemoryManager * | memMgr = xercesc::XMLPlatformUtils::fgMemoryManager | |||
) | const [pure virtual] |
virtual void DynamicContext::clearDynamicContext | ( | ) | [pure virtual] |
Resets the dynamic context, as if it had never been used.
virtual void DynamicContext::setContextItem | ( | const Item::Ptr & | item | ) | [pure virtual] |
Set the context item to item.
virtual unsigned int DynamicContext::getContextPosition | ( | ) | const [pure virtual] |
Get the context position.
virtual void DynamicContext::setContextPosition | ( | unsigned int | pos | ) | [pure virtual] |
Set the context position.
virtual unsigned int DynamicContext::getContextSize | ( | ) | const [pure virtual] |
Get the context size.
virtual void DynamicContext::setContextSize | ( | unsigned int | size | ) | [pure virtual] |
Set the context size.
virtual const VariableStore* DynamicContext::getVariableStore | ( | ) | const [pure virtual] |
get the variable store
virtual void DynamicContext::setVariableStore | ( | const VariableStore * | store | ) | [pure virtual] |
set the variable store
virtual const VariableStore* DynamicContext::getGlobalVariableStore | ( | ) | const [pure virtual] |
get the variable store for globally scoped variables
virtual void DynamicContext::setGlobalVariableStore | ( | const VariableStore * | store | ) | [pure virtual] |
set the variable store for globally scoped variables
virtual void DynamicContext::setExternalVariable | ( | const XMLCh * | namespaceURI, | |
const XMLCh * | name, | |||
const Sequence & | value | |||
) | [pure virtual] |
set the value of an external global variable with the given uri/localname pair
virtual void DynamicContext::setExternalVariable | ( | const XMLCh * | qname, | |
const Sequence & | value | |||
) | [pure virtual] |
set the value of an external global variable with the given QName
virtual time_t DynamicContext::getCurrentTime | ( | ) | const [pure virtual] |
Return the current time.
virtual void DynamicContext::setCurrentTime | ( | time_t | newTime | ) | [pure virtual] |
Set the current time.
virtual ATDurationOrDerived::Ptr DynamicContext::getImplicitTimezone | ( | ) | const [pure virtual] |
Return the implicit timezone for this system.
virtual void DynamicContext::setImplicitTimezone | ( | const ATDurationOrDerived::Ptr & | timezoneAsDuration | ) | [pure virtual] |
Set the implicit timezone.
virtual void DynamicContext::registerURIResolver | ( | URIResolver * | resolver, | |
bool | adopt | |||
) | [pure virtual] |
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 NULL, 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.
virtual URIResolver* DynamicContext::getDefaultURIResolver | ( | ) | const [pure virtual] |
Returns the default URIResolver.
virtual void DynamicContext::setDefaultURIResolver | ( | URIResolver * | resolver, | |
bool | adopt | |||
) | [pure virtual] |
Sets the default URIResolver.
virtual Sequence DynamicContext::resolveDocument | ( | const XMLCh * | uri, | |
const LocationInfo * | location | |||
) | [pure virtual] |
virtual Sequence DynamicContext::resolveCollection | ( | const XMLCh * | uri, | |
const LocationInfo * | location | |||
) | [pure virtual] |
virtual Sequence DynamicContext::resolveDefaultCollection | ( | ) | [pure virtual] |
virtual SequenceBuilder* DynamicContext::createSequenceBuilder | ( | ) | const [pure virtual] |
Create a new SequenceBuilder, which is used to turn a stream of events into a Sequence.
virtual UpdateFactory* DynamicContext::createUpdateFactory | ( | ) | const [pure virtual] |
Creates a new UpdateFactory, used for performing updates.
Caller owns the returned object, and should delete it
virtual void DynamicContext::testInterrupt | ( | ) | const [pure virtual] |
Test if the query should be interrupted, and throw if so.