|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.expr.ExpressionParser net.sf.saxon.query.QueryParser
public class QueryParser
This class defines extensions to the XPath parser to handle the additional syntax supported in XQuery
Nested Class Summary | |
---|---|
protected static class |
QueryParser.LetClause
|
Nested classes/interfaces inherited from class net.sf.saxon.expr.ExpressionParser |
---|
ExpressionParser.FLWORClause, ExpressionParser.ForClause, ExpressionParser.TemporaryContainer |
Field Summary | |
---|---|
protected Executable |
executable
|
Set |
importedModules
|
protected String |
queryVersion
|
Fields inherited from class net.sf.saxon.expr.ExpressionParser |
---|
compileWithTracing, defaultContainer, env, language, nameChecker, rangeVariables, scanOnly, SEQUENCE_TYPE, t, XPATH, XQUERY, XSLT_PATTERN |
Constructor Summary | |
---|---|
QueryParser()
Constructor for internal use: this class should be instantiated via the QueryModule |
Method Summary | |
---|---|
void |
applyModuleImport(net.sf.saxon.query.QueryParser.Import mImport)
|
Executable |
getExecutable()
Get the executable containing this expression. |
protected String |
getLanguage()
Get the current language (XPath or XQuery) |
int |
getPermittedFunctions()
Get the permitted set of standard functions in this environment |
protected void |
grumble(String message,
StructuredQName errorCode)
Report a static error |
protected void |
lookAhead()
Lookahead one token, catching any exception thrown by the tokenizer. |
protected void |
makeSimpleContent(Expression content,
SimpleNodeConstructor inst,
int offset)
Make the instructions for the children of a node with simple content (attribute, text, PI, etc) |
static Expression |
makeStringJoin(Expression exp,
StaticContext env)
Make a string-join expression that concatenates the string-values of items in a sequence with intervening spaces. |
protected Literal |
makeStringLiteral(String token)
Method to make a string literal from a token identified as a string literal. |
XQueryExpression |
makeXQueryExpression(String query,
QueryModule staticContext,
Configuration config)
Create an XQueryExpression |
QueryParser |
newParser()
Create a new parser of the same kind |
protected Expression |
parseConstructor()
Parse a node constructor. |
protected void |
parseContextItemDeclaration()
Parse a context item declaration. |
protected void |
parseDecimalFormatDeclaration()
Parse the "declare decimal-format" declaration. |
protected void |
parseDefaultDecimalFormat()
|
protected Expression |
parseExtensionExpression()
Parse an Extension Expression. |
protected Expression |
parseForExpression()
Parse a FLWOR expression. |
protected void |
parseFunctionDeclaration(boolean isUpdating)
Parse a function declaration. |
protected void |
parseGroupByClause(List clauseList)
Parse a Group By clause. |
void |
parseLibraryModule(String queryString,
QueryModule env)
Parse a library module. |
protected Expression |
parseNamedNamespaceConstructor(int offset)
|
protected Expression |
parseNamespaceConstructor(int offset)
|
protected void |
parseOuterForClause(List clauseList)
Parse an "outer for" clause - XQuery 1.1 only |
protected void |
parseRevalidationDeclaration()
Parse the "declare revalidation" declaration. |
protected Expression |
parseTypeswitchExpression()
Parse a Typeswitch Expression. |
protected void |
parseUpdatingFunctionDeclaration()
Parse an updating function declaration (allowed in XQuery Update only) |
protected Expression |
parseValidateExpression()
Parse a Validate Expression. |
protected Expression |
processGroupingExpression(List<ExpressionParser.FLWORClause> clauseList,
Expression action)
Process a grouping expression Not supported in 1.0; subclassed in the XQuery 1.1 parser |
protected String |
readCollationName()
|
Expression |
setDefaultValue(String exp)
Parse the expression (inside a string literal) used to define default values for external variables. |
void |
setDisableCycleChecks(boolean disable)
Disable checks for certain kinds of cycle. |
void |
setExecutable(Executable exec)
Set the executable used for this query expression |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected String queryVersion
protected Executable executable
public Set importedModules
Constructor Detail |
---|
public QueryParser()
Method Detail |
---|
public QueryParser newParser()
public XQueryExpression makeXQueryExpression(String query, QueryModule staticContext, Configuration config) throws XPathException
query
- the source text of the querystaticContext
- the static context of the queryconfig
- the Saxon configuration
XPathException
public int getPermittedFunctions()
public Executable getExecutable()
public void setExecutable(Executable exec)
exec
- the executablepublic void setDisableCycleChecks(boolean disable)
declare option saxon:allow-cycles "true"
disable
- true if checks for import cycles are to be suppressed, that is,
if cycles should be allowedpublic final void parseLibraryModule(String queryString, QueryModule env) throws XPathException
queryString
- The text of the library module.env
- The static context. The result of parsing
a library module is that the static context is populated with a set of function
declarations and variable declarations. Each library module must have its own
static context objext.
XPathException
- if the expression contains a syntax errorprotected void grumble(String message, StructuredQName errorCode) throws XPathException
grumble
in class ExpressionParser
message
- the error messageerrorCode
- the error code
XPathException
- always thrown: an exception containing the
supplied messageprotected void parseRevalidationDeclaration() throws XPathException
XPathException
public void applyModuleImport(net.sf.saxon.query.QueryParser.Import mImport) throws XPathException
XPathException
protected void parseDecimalFormatDeclaration() throws XPathException
XPathException
protected void parseDefaultDecimalFormat() throws XPathException
XPathException
protected void parseContextItemDeclaration() throws XPathException
XPathException
protected void parseFunctionDeclaration(boolean isUpdating) throws XPathException
Syntax:
<"declare" "function"> QName "(" ParamList? ")" ("as" SequenceType)?
(EnclosedExpr | "external")
On entry, the "define function" has already been recognized
XPathException
- if a syntax error is foundprotected void parseUpdatingFunctionDeclaration() throws XPathException
XPathException
public Expression setDefaultValue(String exp)
exp
- holds the expression used to define a default value
protected Expression parseForExpression() throws XPathException
parseForExpression
in class ExpressionParser
XPathException
- if any error is encounteredprotected void parseOuterForClause(List clauseList) throws XPathException
clauseList
-
XPathException
protected void parseGroupByClause(List clauseList) throws XPathException
XPathException
protected Expression processGroupingExpression(List<ExpressionParser.FLWORClause> clauseList, Expression action) throws XPathException
clauseList
- the list of clauses (for, let, group by)action
- the return clause, optionally wrapped with if-then-else to reflect the where clause
XPathException
public static Expression makeStringJoin(Expression exp, StaticContext env)
exp
- the base expression, evaluating to a sequenceenv
- the static context
protected String readCollationName() throws XPathException
XPathException
protected Expression parseTypeswitchExpression() throws XPathException
parseTypeswitchExpression
in class ExpressionParser
XPathException
protected Expression parseValidateExpression() throws XPathException
parseValidateExpression
in class ExpressionParser
XPathException
protected Expression parseExtensionExpression() throws XPathException
parseExtensionExpression
in class ExpressionParser
XPathException
protected Expression parseConstructor() throws XPathException
parseConstructor
in class ExpressionParser
XPathException
- in the event of a syntax error.protected Expression parseNamespaceConstructor(int offset) throws XPathException
XPathException
protected Expression parseNamedNamespaceConstructor(int offset) throws XPathException
XPathException
protected void makeSimpleContent(Expression content, SimpleNodeConstructor inst, int offset) throws XPathException
content
- the expression making up the simple contentinst
- the skeletal instruction for creating the nodeoffset
- the character position of this construct within the source query
XPathException
protected Literal makeStringLiteral(String token) throws XPathException
makeStringLiteral
in class ExpressionParser
token
- the string as written (or as returned by the tokenizer)
XPathException
protected void lookAhead() throws XPathException
XPathException
protected String getLanguage()
getLanguage
in class ExpressionParser
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |