Class JDOQLCompiler
java.lang.Object
org.datanucleus.store.query.compiler.JavaQueryCompiler
org.datanucleus.store.query.compiler.JDOQLCompiler
- All Implemented Interfaces:
SymbolResolver
Implementation of a compiler for JDOQL (JSR0012, JSR0243).
-
Field Summary
FieldsFields inherited from class org.datanucleus.store.query.compiler.JavaQueryCompiler
candidateAlias, candidateAliasOrig, candidateClass, candidates, caseSensitiveAliases, clr, filter, from, grouping, having, imports, JOIN_INNER, JOIN_INNER_FETCH, JOIN_OUTER, JOIN_OUTER_FETCH, JOIN_OUTER_FETCH_RIGHT, JOIN_OUTER_RIGHT, metaDataManager, options, ordering, parameters, parameterSubstitutionNumber, parameterSubtitutionMap, parentCompiler, parser, queryMgr, result, symtbl, update, variables
-
Constructor Summary
ConstructorsConstructorDescriptionJDOQLCompiler
(PersistenceNucleusContext nucCtx, ClassLoaderResolver clr, String from, Class candidateClass, Collection candidates, String filter, Imports imports, String ordering, String result, String grouping, String having, String params, String variables, String update) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether names of symbols are case-sensitive (e.g JDOQL returns true, but JPQL returns false).Method to compile the query, and return the compiled results.private static boolean
containsOnlyGroupingOrAggregates
(Expression expr, Expression[] exprGrouping) Convenience method to check the provided expression for whether it contains only grouping expressions or aggregatesAccessor for the query language name.private static boolean
isExpressionGroupingOrAggregate
(Expression expr, Expression[] exprGrouping) Convenience method to check of the provided expression is either an aggregate expression or is a grouping expression (or literal, parameter, or variable).protected boolean
Method to return if the supplied name is a keyword.private static boolean
isMethodNameAggregate
(String methodName) void
setAllowAll
(boolean allow) Mutator for whether we should allow all JDOQL syntax (as opposed to strict JDOQL from the spec).boolean
Whether we should accept implicit variables in the query.Methods inherited from class org.datanucleus.store.query.compiler.JavaQueryCompiler
compileCandidatesParametersVariables, compileFilter, compileFrom, compileGrouping, compileHaving, compileOrdering, compileResult, getPrimaryClass, getType, getType, resolveClass, setLinkToParentQuery, setOption, swapCandidateAliasNodeName, swapSubqueryParameters
-
Field Details
-
allowAll
boolean allowAll
-
-
Constructor Details
-
JDOQLCompiler
public JDOQLCompiler(PersistenceNucleusContext nucCtx, ClassLoaderResolver clr, String from, Class candidateClass, Collection candidates, String filter, Imports imports, String ordering, String result, String grouping, String having, String params, String variables, String update)
-
-
Method Details
-
setAllowAll
public void setAllowAll(boolean allow) Mutator for whether we should allow all JDOQL syntax (as opposed to strict JDOQL from the spec).- Parameters:
allow
- Whether to allow
-
compile
Method to compile the query, and return the compiled results.- Specified by:
compile
in classJavaQueryCompiler
- Parameters:
parameters
- the parameter map of values keyed by param namesubqueryMap
- Map of subquery variables, keyed by the subquery name- Returns:
- The compiled query
-
compileUpdate
- Overrides:
compileUpdate
in classJavaQueryCompiler
-
containsOnlyGroupingOrAggregates
Convenience method to check the provided expression for whether it contains only grouping expressions or aggregates- Parameters:
expr
- The expression to checkexprGrouping
- The grouping expressions- Returns:
- Whether it contains only grouping or aggregates
-
isMethodNameAggregate
-
isExpressionGroupingOrAggregate
Convenience method to check of the provided expression is either an aggregate expression or is a grouping expression (or literal, parameter, or variable).- Parameters:
expr
- The expression to checkexprGrouping
- The grouping expressions- Returns:
- Whether it passes the test
-
supportsImplicitVariables
public boolean supportsImplicitVariables()Description copied from interface:SymbolResolver
Whether we should accept implicit variables in the query. JDOQL supports variables, yet JPQL doesn't. Also in JDOQL if the user supplies some explicit variables then it doesn't allow implicit variables.- Returns:
- Whether to support implicit variables
-
caseSensitiveSymbolNames
public boolean caseSensitiveSymbolNames()Description copied from interface:SymbolResolver
Whether names of symbols are case-sensitive (e.g JDOQL returns true, but JPQL returns false).- Returns:
- Whether case sensitive
-
getLanguage
Accessor for the query language name.- Specified by:
getLanguage
in classJavaQueryCompiler
- Returns:
- Name of the query language.
-
isKeyword
Method to return if the supplied name is a keyword. Keywords can only appear at particular places in a query so we need to detect for valid queries.- Specified by:
isKeyword
in classJavaQueryCompiler
- Parameters:
name
- The name- Returns:
- Whether it is a keyword
-