public class StaticQueryContext
extends java.lang.Object
Despite its name, StaticQueryContext
no longer implements the StaticContext
interface, which means it cannot be used directly by Saxon when parsing a query. Instead it is first copied
to create a QueryModule
object, which does implement the StaticContext
interface.
The application constructs a StaticQueryContext and initializes it with information about the context, for example, default namespaces, base URI, and so on. When a query is compiled using this StaticQueryContext, the query parser makes a copy of the StaticQueryContext and uses this internally, modifying it with information obtained from the query prolog, as well as information such as namespace and variable declarations that can occur at any point in the query. The query parser does not modify the original StaticQueryContext supplied by the calling application, which may therefore be used for compiling multiple queries, serially or even in multiple threads.
This class forms part of Saxon's published XQuery API. Methods that are considered stable are labelled with the JavaDoc "since" tag. The value 8.4 indicates a method introduced at or before Saxon 8.4; other values indicate the version at which the method was introduced.
In the longer term, this entire API may at some stage be superseded by a proposed standard Java API for XQuery.
Modifier | Constructor and Description |
---|---|
protected |
StaticQueryContext()
Private constructor used when copying a context
|
|
StaticQueryContext(Configuration config)
Deprecated.
since 9.2. Use config.newStaticQueryContext(). This will create a StaticQueryContext with
capabilities appropriate to the configuration (for example, offering XQuery 1.1 support).
|
|
StaticQueryContext(StaticQueryContext c)
Create a copy of a supplied StaticQueryContext
|
Modifier and Type | Method and Description |
---|---|
TreeInfo |
buildDocument(javax.xml.transform.Source source)
Deprecated.
since 9.2: use
Configuration.buildDocumentTree(javax.xml.transform.Source) |
void |
clearDeclaredGlobalVariables()
Clear all declared global variables
|
void |
clearNamespaces()
Clear all the user-declared namespaces
|
void |
compileLibrary(java.io.InputStream source,
java.lang.String encoding)
Prepare an XQuery library module for subsequent evaluation.
|
void |
compileLibrary(java.io.Reader source)
Prepare an XQuery library module for subsequent evaluation.
|
void |
compileLibrary(java.lang.String query)
Compile an XQuery library module for subsequent evaluation.
|
XQueryExpression |
compileQuery(java.io.InputStream source,
java.lang.String encoding)
Prepare an XQuery query for subsequent evaluation.
|
XQueryExpression |
compileQuery(java.io.Reader source)
Prepare an XQuery query for subsequent evaluation.
|
XQueryExpression |
compileQuery(java.lang.String query)
Prepare an XQuery query for subsequent evaluation.
|
void |
copyFrom(StaticQueryContext c) |
void |
declareCollation(java.lang.String name,
java.util.Comparator comparator)
Deprecated.
since 9.6. All collations are now registered at the level of the
Configuration. If this method is called, the effect is that the supplied collation
is registered with the configuration
|
void |
declareCollation(java.lang.String name,
StringCollator collation)
Deprecated.
since 9.6. All collations are now registered at the level of the
Configuration. If this method is called, the effect is that the supplied collation
is registered with the configuration
|
void |
declareDefaultCollation(java.lang.String name)
Set the default collation.
|
void |
declareGlobalVariable(StructuredQName qName,
SequenceType type,
Sequence value,
boolean external)
Declare a global variable.
|
void |
declareNamespace(java.lang.String prefix,
java.lang.String uri)
Declare a namespace whose prefix can be used in expressions.
|
java.lang.String |
getBaseURI()
Get the Base URI of the query, for resolving any relative URI's used
in the expression.
|
CodeInjector |
getCodeInjector()
Get any CodeInjector that has been registered
|
StringCollator |
getCollation(java.lang.String name)
Deprecated.
since 9.6. Collations are now all held globally at the level of the
Configuration. Calling this method will get the relevant collation held in the Configuration.
|
java.util.Collection<QueryLibrary> |
getCompiledLibraries() |
QueryLibrary |
getCompiledLibrary(java.lang.String namespace)
Get a previously compiled library module
|
Configuration |
getConfiguration()
Get the Configuration options
|
int |
getConstructionMode()
Get the current construction mode
|
java.lang.String |
getDefaultCollationName()
Get the name of the default collation.
|
java.lang.String |
getDefaultElementNamespace()
Get the default namespace for elements and types
|
java.lang.String |
getDefaultFunctionNamespace()
Get the default function namespace
|
UnfailingErrorListener |
getErrorListener()
Get the ErrorListener in use for this static context
|
FunctionLibrary |
getExtensionFunctionLibrary()
Get any extension function library that was previously set.
|
NamespaceResolver |
getExternalNamespaceResolver()
Get the external namespace resolver that has been registered using
setExternalNamespaceResolver(), if any.
|
int |
getLanguageVersion()
Get the language version
|
Location |
getModuleLocation()
Get the module location.
|
ModuleURIResolver |
getModuleURIResolver()
Get the user-defined ModuleURIResolver for resolving URIs used in "import module"
declarations in the XQuery prolog; returns null if none has been explicitly set either
on the StaticQueryContext or on the Configuration.
|
NamePool |
getNamePool()
Get the NamePool used for compiling expressions
|
java.lang.String |
getNamespaceForPrefix(java.lang.String prefix)
Get the namespace URI for a given prefix, which must have been declared using the method
declareNamespace(java.lang.String, java.lang.String) . |
ItemType |
getRequiredContextItemType()
Get the required type of the context item.
|
java.lang.String |
getSystemId()
Get the system ID of the container of the expression.
|
protected java.util.HashMap<java.lang.String,java.lang.String> |
getUserDeclaredNamespaces()
Get the map of user-declared namespaces
|
boolean |
isCompileWithTracing()
Ask whether compile-time generation of trace code was requested
|
boolean |
isEmptyLeast()
Ask where an empty sequence should appear in the collation order, if not otherwise
specified in the "order by" clause
|
boolean |
isInheritNamespaces()
Get the namespace inheritance mode
|
boolean |
isPreserveBoundarySpace()
Ask whether the policy for boundary space is "preserve" or "strip"
|
boolean |
isPreserveNamespaces()
Get the namespace copy mode
|
boolean |
isSchemaAware()
Ask whether this query is schema-aware
|
boolean |
isStreaming()
Ask whether the streaming option has been set, that is, whether
subsequent calls on compile() will compile queries to be capable
of executing in streaming mode.
|
boolean |
isUpdating()
Ask whether XQuery Update is allowed
|
boolean |
isUpdatingEnabled()
Ask whether the query is allowed to be updating
|
java.util.Iterator<GlobalVariable> |
iterateDeclaredGlobalVariables()
Iterate over all the declared global variables
|
java.util.Iterator<java.lang.String> |
iterateDeclaredPrefixes()
Get the namespace prefixes that have been declared using the method
declareNamespace(java.lang.String, java.lang.String) |
Executable |
makeExecutable()
Get the executable containing this query
|
void |
reset()
Reset the state of this StaticQueryContext to an uninitialized state
|
void |
setBaseURI(java.lang.String baseURI)
Set the Base URI of the query
|
void |
setCodeInjector(CodeInjector injector)
Request that the parser should insert custom code into the expression tree
by calling a supplied CodeInjector to process each expression as it is parsed,
for example for tracing or performance measurement
|
void |
setCompileWithTracing(boolean trace)
Request compile-time generation of trace code (or not)
|
void |
setConfiguration(Configuration config)
Set the Configuration options
|
void |
setConstructionMode(int mode)
Set the construction mode for this module
|
void |
setDefaultElementNamespace(java.lang.String uri)
Set the default element namespace
|
void |
setDefaultFunctionNamespace(java.lang.String defaultFunctionNamespace)
Set the default function namespace
|
void |
setEmptyLeast(boolean least)
Set the option for where an empty sequence appears in the collation order, if not otherwise
specified in the "order by" clause
|
void |
setErrorListener(javax.xml.transform.ErrorListener listener)
Set the ErrorListener to be used to report compile-time errors in a query.
|
void |
setExternalNamespaceResolver(NamespaceResolver resolver)
Set an external namespace resolver.
|
void |
setInheritNamespaces(boolean inherit)
Set the namespace inheritance mode
|
void |
setLanguageVersion(int version)
Set the language version.
|
void |
setModuleLocation(Location location)
Set the module location.
|
void |
setModuleURIResolver(ModuleURIResolver resolver)
Set a user-defined ModuleURIResolver for resolving URIs used in "import module"
declarations in the XQuery prolog.
|
void |
setPreserveBoundarySpace(boolean preserve)
Set the policy for preserving boundary space
|
void |
setPreserveNamespaces(boolean inherit)
Set the namespace copy mode
|
void |
setRequiredContextItemType(ItemType type)
Declare the static type of the context item.
|
void |
setSchemaAware(boolean aware)
Say whether this query is schema-aware
|
void |
setStreaming(boolean option)
Say whether the query should be compiled and evaluated to use streaming.
|
void |
setUpdatingEnabled(boolean updating)
Say whether the query is allowed to be updating.
|
protected StaticQueryContext()
public StaticQueryContext(Configuration config)
config
- the Saxon Configurationpublic StaticQueryContext(StaticQueryContext c)
c
- the StaticQueryContext to be copiedpublic void copyFrom(StaticQueryContext c)
public void reset()
public void setConfiguration(Configuration config)
config
- the Saxon Configurationjava.lang.IllegalArgumentException
- if the configuration supplied is different from the existing
configurationpublic Configuration getConfiguration()
public Executable makeExecutable()
public void setSchemaAware(boolean aware)
aware
- true if this query is schema-awarepublic boolean isSchemaAware()
public void setStreaming(boolean option)
option
- if true, the compiler will attempt to compile a query to be
capable of executing in streaming mode. If the query cannot be streamed,
a compile-time exception is reported. In streaming mode, the source
document is supplied as a stream, and no tree is built in memory. The default
is false. Setting the value to true has the side-effect of setting the required
context item type to "document node"; this is to ensure that expresions such as
//BOOK are streamable.public boolean isStreaming()
public void setBaseURI(java.lang.String baseURI)
baseURI
- the base URI of the query, or null to indicate that no base URI is availablepublic TreeInfo buildDocument(javax.xml.transform.Source source) throws XPathException
Configuration.buildDocumentTree(javax.xml.transform.Source)
This method is retained for backwards compatibility; however, it is merely a wrapper
around the method Configuration.buildDocumentTree(javax.xml.transform.Source)
, which should be called in preference.
source
- Any javax.xml.transform.Source object representing the document against
which queries will be executed. Note that a Saxon NodeInfo
can be used as a Source. To use a third-party DOM Document as a source, create an instance of
DOMSource
to wrap it.
For additional control over the way in which the source document is processed,
supply an AugmentedSource
object and set appropriate
options on the object.
XPathException
- if building the document failspublic void setLanguageVersion(int version)
version
- The XQuery language version. Must be 10 (="1.0") or 30 (="3.0") or 31 (="3.1").public int getLanguageVersion()
public FunctionLibrary getExtensionFunctionLibrary()
public boolean isCompileWithTracing()
public void setCompileWithTracing(boolean trace)
trace
- true if compile-time generation of trace code is requiredpublic void setCodeInjector(CodeInjector injector)
injector
- the CodeInjector to be used. May be null, in which case
no code is injectedpublic CodeInjector getCodeInjector()
public boolean isUpdating()
public void setInheritNamespaces(boolean inherit)
inherit
- true if namespaces are inherited, false if notpublic boolean isInheritNamespaces()
public void setPreserveNamespaces(boolean inherit)
inherit
- true if namespaces are preserved, false if notpublic boolean isPreserveNamespaces()
public void setConstructionMode(int mode)
mode
- one of Validation.STRIP
, Validation.PRESERVE
public int getConstructionMode()
Validation.STRIP
, Validation.PRESERVE
public void setModuleLocation(Location location)
location
- the module locationpublic Location getModuleLocation()
public XQueryExpression compileQuery(java.lang.String query) throws XPathException
Note that this interface makes the caller responsible for decoding the query and presenting it as a string of characters. This means it is likely that any encoding specified in the query prolog will be ignored.
query
- The XQuery query to be evaluated, supplied as a string.XPathException
- if the syntax of the expression is wrong,
or if it references namespaces, variables, or functions that have not been declared,
or contains other static errors.public XQueryExpression compileQuery(java.io.Reader source) throws XPathException, java.io.IOException
Note that this interface makes the Reader responsible for decoding the query and presenting it as a stream of characters. This means it is likely that any encoding specified in the query prolog will be ignored. Also, some implementations of Reader cannot handle a byte order mark.
source
- A Reader giving access to the text of the XQuery query to be compiled.XPathException
- if the syntax of the expression is wrong, or if it references namespaces,
variables, or functions that have not been declared, or any other static error is reported.java.io.IOException
- if a failure occurs reading the supplied input.public XQueryExpression compileQuery(java.io.InputStream source, java.lang.String encoding) throws XPathException, java.io.IOException
source
- An InputStream giving access to the text of the XQuery query to be compiled, as a stream
of octetsencoding
- The encoding used to translate characters to octets in the query source. The parameter
may be null: in this case the query parser attempts to infer the encoding by inspecting the source,
and if that fails, it assumes UTF-8 encodingXPathException
- if the syntax of the expression is wrong, or if it references namespaces,
variables, or functions that have not been declared, or any other static error is reported.java.io.IOException
- if a failure occurs reading the supplied input.public void compileLibrary(java.lang.String query) throws XPathException
query
- the content of the module, as a stringXPathException
- if a static error exists in the queryjava.lang.UnsupportedOperationException
- if not using Saxon-EEpublic void compileLibrary(java.io.Reader source) throws XPathException, java.io.IOException
source
- the content of the module, as a Reader which supplies the source codeXPathException
- if a static error exists in the queryjava.io.IOException
- if the input cannot be readjava.lang.UnsupportedOperationException
- if not using Saxon-EEpublic void compileLibrary(java.io.InputStream source, java.lang.String encoding) throws XPathException, java.io.IOException
source
- the content of the module, as an InputStream which supplies the source codeencoding
- the character encoding of the input stream. May be null, in which case the encoding
is inferred, for example by looking at the query declarationXPathException
- if a static error exists in the queryjava.io.IOException
- if the input cannot be readjava.lang.UnsupportedOperationException
- if not using Saxon-EEpublic QueryLibrary getCompiledLibrary(java.lang.String namespace)
namespace
- the module namespacepublic java.util.Collection<QueryLibrary> getCompiledLibraries()
public void declareNamespace(java.lang.String prefix, java.lang.String uri)
prefix
- The namespace prefix. Must not be null. Setting this to "" means that the
namespace will be used as the default namespace for elements and types.uri
- The namespace URI. Must not be null. The value "" (zero-length string) is used
to undeclare a namespace; it is not an error if there is no existing binding for
the namespace prefix.java.lang.NullPointerException
- if either the prefix or URI is nulljava.lang.IllegalArgumentException
- if the prefix is "xml" and the namespace is not the XML namespace, or vice
versa; or if the prefix is "xmlns", or the URI is "http://www.w3.org/2000/xmlns/"public void clearNamespaces()
protected java.util.HashMap<java.lang.String,java.lang.String> getUserDeclaredNamespaces()
public java.util.Iterator<java.lang.String> iterateDeclaredPrefixes()
declareNamespace(java.lang.String, java.lang.String)
public java.lang.String getNamespaceForPrefix(java.lang.String prefix)
declareNamespace(java.lang.String, java.lang.String)
. Note that this method will not call the external namespace resolver
to resolve the prefix.prefix
- the namespace prefix, or "" to represent the null prefixpublic void setExternalNamespaceResolver(NamespaceResolver resolver)
Changed in Saxon 9.0 so that the namespaces resolved by the external namespace resolver
are available at run-time, just like namespaces declared in the query prolog. In consequence,
the supplied NamespaceResolver must now implement the
NamespaceResolver.iteratePrefixes()
method.
resolver
- the external namespace resolverpublic NamespaceResolver getExternalNamespaceResolver()
public java.lang.String getDefaultFunctionNamespace()
public void setDefaultFunctionNamespace(java.lang.String defaultFunctionNamespace)
defaultFunctionNamespace
- The namespace to be used for unprefixed function callspublic void setDefaultElementNamespace(java.lang.String uri)
uri
- the namespace URI to be used as the default namespace for elements and typespublic java.lang.String getDefaultElementNamespace()
public void declareGlobalVariable(StructuredQName qName, SequenceType type, Sequence value, boolean external) throws XPathException
qName
- the qualified name of the variabletype
- the declared type of the variablevalue
- the initial value of the variable. May be null if the variable is external.external
- true if the variable is external, that is, if its value may be set at run-time.java.lang.NullPointerException
- if the value is null, unless the variable is externalXPathException
- if the value of the variable is not consistent with its type.public java.util.Iterator<GlobalVariable> iterateDeclaredGlobalVariables()
GlobalVariable
public void clearDeclaredGlobalVariables()
public void setModuleURIResolver(ModuleURIResolver resolver)
resolver
- the ModuleURIResolver to be usedpublic ModuleURIResolver getModuleURIResolver()
public void declareCollation(java.lang.String name, java.util.Comparator comparator)
name
- The name of the collation (technically, a URI)comparator
- The Java Comparator used to implement the collating sequencepublic void declareCollation(java.lang.String name, StringCollator collation)
name
- The name of the collation (technically, a URI)collation
- The Java Comparator used to implement the collating sequencepublic void declareDefaultCollation(java.lang.String name)
name
- The collation name, as specified in the query prolog. Must be the name
of a known registered collation.java.lang.NullPointerException
- if the supplied value is nulljava.lang.IllegalStateException
- if the supplied value is not a known collation URI registered with the
configuration.public StringCollator getCollation(java.lang.String name)
name
- the name of the collation, as an absolute URIjava.lang.NullPointerException
- if the collation name argument is null.public java.lang.String getDefaultCollationName()
public void setRequiredContextItemType(ItemType type)
type
- the required type of the context itempublic ItemType getRequiredContextItemType()
public NamePool getNamePool()
public java.lang.String getSystemId()
public java.lang.String getBaseURI()
public void setPreserveBoundarySpace(boolean preserve)
preserve
- true if boundary space is to be preserved, false if it is to be strippedpublic boolean isPreserveBoundarySpace()
public void setEmptyLeast(boolean least)
least
- true if the empty sequence is considered less than any other value (the default),
false if it is considered greater than any other valuepublic boolean isEmptyLeast()
public void setErrorListener(javax.xml.transform.ErrorListener listener)
If the supplied listener is a StandardErrorListener, then a new copy will be made
using StandardErrorListener.makeAnother(int)
If the supplied listener is not an UnfailingErrorListener
, then it will be wrapped
in a DelegatingErrorListener
.
listener
- the ErrorListener to be usedpublic UnfailingErrorListener getErrorListener()
public void setUpdatingEnabled(boolean updating)
updating
- true if the query is allowed to use the XQuery Update facility
(requires Saxon-EE). If set to false, the query must not be an updating query. If set
to true, it may be either an updating or a non-updating query.public boolean isUpdatingEnabled()
Copyright (c) 2004-2018 Saxonica Limited. All rights reserved.