|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.s9api.XQueryCompiler
public class XQueryCompiler
An XQueryCompiler object allows XQuery 1.0 queries to be compiled. The compiler holds information that represents the static context for the compilation.
To construct an XQueryCompiler, use the factory method Processor.newXQueryCompiler()
.
An XQueryCompiler may be used repeatedly to compile multiple queries. Any changes made to the XQueryCompiler (that is, to the static context) do not affect queries that have already been compiled. An XQueryCompiler may be used concurrently in multiple threads, but it should not then be modified once initialized.
Constructor Summary | |
---|---|
protected |
XQueryCompiler(Processor processor)
Protected constructor |
Method Summary | |
---|---|
XQueryExecutable |
compile(File query)
Compile a query supplied as a file |
XQueryExecutable |
compile(InputStream query)
Compile a query supplied as an InputStream |
XQueryExecutable |
compile(Reader query)
Compile a query supplied as a Reader |
XQueryExecutable |
compile(String query)
Compile a query supplied as a string. |
void |
compileLibrary(File query)
Compile a library module supplied as a file. |
void |
compileLibrary(InputStream query)
Compile a library module supplied as an InputStream. |
void |
compileLibrary(Reader query)
Compile a library module supplied as a Reader. |
void |
compileLibrary(String query)
Compile a library module supplied as a string. |
void |
declareNamespace(String prefix,
String uri)
Declare a namespace binding as part of the static context for queries compiled using this XQueryCompiler. |
URI |
getBaseURI()
Get the static base URI for the query |
String |
getEncoding()
Get the encoding previously set for the supplied query. |
ErrorListener |
getErrorListener()
Get the ErrorListener being used during this compilation episode |
String |
getLanguageVersion()
Ask whether an XQuery 1.0 or XQuery 1.1 processor is being used |
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
here or in the Saxon Configuration. |
ItemType |
getRequiredContextItemType()
Get the required type of the context item. |
StaticQueryContext |
getUnderlyingStaticContext()
Get the underlying StaticQueryContext object that maintains the static context
information on behalf of this XQueryCompiler. |
boolean |
isCompileWithTracing()
Ask whether trace hooks are included in the compiled code. |
boolean |
isSchemaAware()
Ask whether schema-awareness has been requested either by means of a call on setSchemaAware(boolean) |
boolean |
isUpdatingEnabled()
Ask whether the query is allowed to use XQuery Update syntax |
void |
setBaseURI(URI baseURI)
Set the static base URI for the query |
void |
setCompileWithTracing(boolean option)
Set whether trace hooks are to be included in the compiled code. |
void |
setEncoding(String encoding)
Set the encoding of the supplied query. |
void |
setErrorListener(ErrorListener listener)
Set the ErrorListener to be used during this query compilation episode |
void |
setLanguageVersion(String version)
Say whether an XQuery 1.0 or XQuery 1.1 processor is required. |
void |
setModuleURIResolver(ModuleURIResolver resolver)
Set a user-defined ModuleURIResolver for resolving URIs used in import module
declarations in the XQuery prolog. |
void |
setRequiredContextItemType(ItemType type)
Declare the static type of the context item. |
void |
setSchemaAware(boolean schemaAware)
Say that the query must be compiled to be schema-aware, even if it contains no "import schema" declarations. |
void |
setUpdatingEnabled(boolean updating)
Say whether the query is allowed to be updating. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected XQueryCompiler(Processor processor)
processor
- the Saxon ProcessorMethod Detail |
---|
public void setBaseURI(URI baseURI)
baseURI
- the static base URIpublic URI getBaseURI()
public void setErrorListener(ErrorListener listener)
listener
- The error listener to be used. This is notified of all errors detected during the
compilation.public ErrorListener getErrorListener()
public void setCompileWithTracing(boolean option)
option
- true if trace code is to be compiled in, false otherwisepublic boolean isCompileWithTracing()
public void setModuleURIResolver(ModuleURIResolver resolver)
import module
declarations in the XQuery prolog.
This will override any ModuleURIResolver that was specified as part of the configuration.
resolver
- the ModuleURIResolver to be usedpublic ModuleURIResolver getModuleURIResolver()
import module
declarations in the XQuery prolog; returns null if none has been explicitly set either
here or in the Saxon Configuration.
public void setEncoding(String encoding)
String
or as a Reader
. If no value
is set, the query processor will attempt to infer the encoding, defaulting to UTF-8 if no
information is available.
encoding
- the encoding of the supplied query, for example "iso-8859-1"public String getEncoding()
setEncoding(String)
, or null
if no value has been set. Note that this is not necessarily the actual encoding of the query.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()
public void setSchemaAware(boolean schemaAware)
schemaAware
- If true, the stylesheet will be compiled with schema-awareness
enabled even if it contains no xsl:import-schema declarations. If false, the stylesheet
is treated as schema-aware only if it contains one or more xsl:import-schema declarations.public boolean isSchemaAware()
setSchemaAware(boolean)
public void setLanguageVersion(String version)
version
- Must be "1.0" or "1.1". At present very limited support
for XQuery 1.1 is available. This functionality is available only in Saxon-EE, and it cannot
be used in conjunction with XQuery Updates. To use XQuery 1.1 features,
the query prolog must also specify version="1.1".
IllegalArgumentException
- if the version is not 1.0 or 1.1.public String getLanguageVersion()
public void declareNamespace(String prefix, String uri)
prefix
- The namespace prefix. If the value is a zero-length string, this method sets the default
namespace for elements and types.uri
- The namespace URI. It is possible to specify a zero-length string to "undeclare" a namespace;
in this case the prefix will not be available for use, except in the case where the prefix
is also a zero length string, in which case the absence of a prefix implies that the name
is in no namespace.
NullPointerException
- if either the prefix or uri is null.
IllegalArgumentException
- in the event of an invalid declaration of the XML namespacepublic void setRequiredContextItemType(ItemType type)
type
- the required type of the context itempublic ItemType getRequiredContextItemType()
public void compileLibrary(String query) throws SaxonApiException
The base URI of the query should be supplied by calling setBaseURI(java.net.URI)
Separate compilation of library modules is supported only under Saxon-EE
query
- the text of the query
SaxonApiException
- if the query compilation fails with a static errorpublic void compileLibrary(File query) throws SaxonApiException, IOException
The encoding of the input stream may be specified using setEncoding(String)
Separate compilation of library modules is supported only under Saxon-EE
query
- the file containing the query. The URI corresponding to this file will be used as the
base URI of the query, overriding any URI supplied using setBaseURI(java.net.URI)
(but not
overriding any base URI specified within the query prolog)
SaxonApiException
- if the query compilation fails with a static error
IOException
- if the file does not exist or cannot be readpublic void compileLibrary(Reader query) throws SaxonApiException
The base URI of the query should be supplied by calling setBaseURI(java.net.URI)
Separate compilation of library modules is supported only under Saxon-EE
query
- the text of the query
SaxonApiException
- if the query compilation fails with a static errorpublic void compileLibrary(InputStream query) throws SaxonApiException
The encoding of the input stream may be specified using setEncoding(String)
The base URI of the query should be supplied by calling setBaseURI(java.net.URI)
Separate compilation of library modules is supported only under Saxon-EE
query
- the text of the query
SaxonApiException
- if the query compilation fails with a static errorpublic XQueryExecutable compile(String query) throws SaxonApiException
The base URI of the query should be supplied by calling setBaseURI(java.net.URI)
query
- the text of the query
SaxonApiException
- if the query compilation fails with a static errorpublic XQueryExecutable compile(File query) throws SaxonApiException, IOException
query
- the file containing the query. The URI corresponding to this file will be used as the
base URI of the query, overriding any URI supplied using setBaseURI(java.net.URI)
(but not
overriding any base URI specified within the query prolog)
SaxonApiException
- if the query compilation fails with a static error
IOException
- if the file does not exist or cannot be readpublic XQueryExecutable compile(InputStream query) throws SaxonApiException, IOException
The base URI of the query should be supplied by calling setBaseURI(java.net.URI)
query
- the input stream on which the query is supplied. This will be consumed by this method
SaxonApiException
- if the query compilation fails with a static error
IOException
- if the file does not exist or cannot be readpublic XQueryExecutable compile(Reader query) throws SaxonApiException, IOException
The base URI of the query should be supplied by calling setBaseURI(java.net.URI)
query
- the input stream on which the query is supplied. This will be consumed by this method
SaxonApiException
- if the query compilation fails with a static error
IOException
- if the file does not exist or cannot be readpublic StaticQueryContext getUnderlyingStaticContext()
StaticQueryContext
object that maintains the static context
information on behalf of this XQueryCompiler. This method provides an escape hatch to internal Saxon
implementation objects that offer a finer and lower-level degree of control than the s9api classes and
methods. Some of these classes and methods may change from release to release.
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |