Class GenericSemanticValidatorHelper
- java.lang.Object
-
- org.eclipse.persistence.jpa.jpql.tools.GenericSemanticValidatorHelper
-
- All Implemented Interfaces:
SemanticValidatorHelper
public class GenericSemanticValidatorHelper extends java.lang.Object implements SemanticValidatorHelper
An implementation ofSemanticValidatorHelper
that usesJPQLQueryContext
to return the required information and Hermes SPI.Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
- Version:
- 2.5
- Author:
- Pascal Filion
- Since:
- 2.4
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
GenericSemanticValidatorHelper.IdentificationVariableVisitor
-
Constructor Summary
Constructors Constructor Description GenericSemanticValidatorHelper(JPQLQueryContext queryContext)
Creates a newGenericSemanticValidatorHelper
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
addIdentificationVariable(IdentificationVariable identificationVariable, java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
protected GenericSemanticValidatorHelper.IdentificationVariableVisitor
buildIdentificationVariableVisitor()
void
collectAllDeclarationIdentificationVariables(java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
Collects the identification variables that are defined in theFROM
clause of the current query and from the parent queries.void
collectLocalDeclarationIdentificationVariables(java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
Collects the identification variables that are defined in theFROM
clause of the current query.protected void
collectLocalDeclarationIdentificationVariables(JPQLQueryContext queryContext, java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
void
disposeSubqueryContext()
Disposes this context, which is the current context being used by a subquery.java.lang.String[]
entityNames()
Returns the name of the all entities that are present in the context of a persistence unit.java.util.List<JPQLQueryDeclaration>
getAllDeclarations()
Returns the ordered list ofJPQLQueryDeclaration
, which contain the information contained in the query'sFROM
clause.IConstructor[]
getConstructors(java.lang.Object type)
Returns the constructors for the given type.java.util.List
getDeclarations()
Returns the ordered list ofJPQLQueryDeclaration
, which contain the information contained in the query'sFROM
clause.IManagedType
getEmbeddable(java.lang.Object type)
Retrieves the embeddable with the given type.IEntity
getEntityNamed(java.lang.String entityName)
Retrieves the entity with the given entity name.java.lang.String[]
getEnumConstants(java.lang.Object type)
Returns the constant names for the givenEnum
type.JPQLGrammar
getGrammar()
Returns theJPQLGrammar
that defines how the JPQL query was parsed.protected IdentificationVariable
getIdentificationVariable(Expression expression)
protected GenericSemanticValidatorHelper.IdentificationVariableVisitor
getIdentificationVariableVisitor()
IManagedType
getManagedType(Expression expression)
Returns the managed type by resolving the givenExpression
.IMapping
getMappingNamed(java.lang.Object managedType, java.lang.String path)
Returns the mapping with the given name.IType
getMappingType(java.lang.Object mapping)
Returns the type of the given mapping object.ITypeDeclaration[]
getMethodParameterTypeDeclarations(java.lang.Object constructor)
Returns the list of type declarations representing the given constructor's parameter types.JPQLQueryContext
getQueryContext()
Returns the context used to query information about the JPQL query.IManagedType
getReferenceManagedType(java.lang.Object relationshipMapping)
Returns the reference managed type from the given relationship mapping.IType
getType(java.lang.Object typeDeclaration)
Returns the type defined for the Java member.IType
getType(java.lang.String typeName)
Retrieves the class with the given fully qualified name.IType
getType(Expression expression)
Returns the type by resolving the givenExpression
.ITypeDeclaration
getTypeDeclaration(Expression expression)
Returns the type declaration for the givenExpression
's type.ITypeHelper
getTypeHelper()
Returns the helper that gives access to the most common class metadata.java.lang.String
getTypeName(java.lang.Object type)
Returns the fully qualified class name of the given type.boolean
isAssignableTo(java.lang.Object type1, java.lang.Object type2)
Determines whether type 1 is an instance of type 2.boolean
isCollectionIdentificationVariable(java.lang.String variableName)
Determines whether the given identification variable is defining a join or a collection member declaration expressions.boolean
isCollectionMapping(java.lang.Object mapping)
Determines whether the given mapping is a collection type mapping.boolean
isEmbeddableMapping(java.lang.Object mapping)
Determines whether the given mapping is an embeddable type mapping.boolean
isEnumType(java.lang.Object type)
Determines whether the given type represents anEnum
.boolean
isIdentificationVariableValidInComparison(IdentificationVariable expression)
Determines whether an identification variable can be used in a comparison expression when the operator is either '<', '<=', '>', '>='.boolean
isManagedTypeResolvable(java.lang.Object managedType)
Determines whether the given managed type actually exists.boolean
isPropertyMapping(java.lang.Object mapping)
Determines whether the given mapping is a property type mapping.boolean
isRelationshipMapping(java.lang.Object mapping)
Determines whether the given mapping is a relationship type mapping.boolean
isResultVariable(java.lang.String variableName)
Determines if the given variable is a result variable.boolean
isTransient(java.lang.Object mapping)
Determines whether the given mapping is a transient attribute.boolean
isTypeDeclarationAssignableTo(java.lang.Object typeDeclaration1, java.lang.Object typeDeclaration2)
Determines whether type declaration 1 is an instance of type declaration 2.boolean
isTypeResolvable(java.lang.Object type)
Determines whether the given type actually exists.void
newSubqueryContext(SimpleSelectStatement expression)
Changes the state of this helper to use the given subquery.IMapping
resolveMapping(java.lang.String variableName, java.lang.String name)
Returns the mapping that should be a persistence field from the entity defined by the given identification variable.IMapping
resolveMapping(Expression expression)
Returns the mapping for the field represented by the givenExpression
.
-
-
-
Constructor Detail
-
GenericSemanticValidatorHelper
public GenericSemanticValidatorHelper(JPQLQueryContext queryContext)
Creates a newGenericSemanticValidatorHelper
.- Parameters:
queryContext
- The context used to query information about the JPQL query- Throws:
java.lang.NullPointerException
- The givenJPQLQueryContext
cannot benull
-
-
Method Detail
-
addIdentificationVariable
protected void addIdentificationVariable(IdentificationVariable identificationVariable, java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
-
buildIdentificationVariableVisitor
protected GenericSemanticValidatorHelper.IdentificationVariableVisitor buildIdentificationVariableVisitor()
-
collectAllDeclarationIdentificationVariables
public void collectAllDeclarationIdentificationVariables(java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
Collects the identification variables that are defined in theFROM
clause of the current query and from the parent queries.- Specified by:
collectAllDeclarationIdentificationVariables
in interfaceSemanticValidatorHelper
- Parameters:
identificationVariables
- TheMap
used to store the variables
-
collectLocalDeclarationIdentificationVariables
protected void collectLocalDeclarationIdentificationVariables(JPQLQueryContext queryContext, java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
-
collectLocalDeclarationIdentificationVariables
public void collectLocalDeclarationIdentificationVariables(java.util.Map<java.lang.String,java.util.List<IdentificationVariable>> identificationVariables)
Collects the identification variables that are defined in theFROM
clause of the current query.- Specified by:
collectLocalDeclarationIdentificationVariables
in interfaceSemanticValidatorHelper
- Parameters:
identificationVariables
- TheMap
used to store the variables
-
disposeSubqueryContext
public void disposeSubqueryContext()
Disposes this context, which is the current context being used by a subquery. Once it is disposed, any information retrieved will be for the subquery's parent query.- Specified by:
disposeSubqueryContext
in interfaceSemanticValidatorHelper
-
entityNames
public java.lang.String[] entityNames()
Returns the name of the all entities that are present in the context of a persistence unit.- Specified by:
entityNames
in interfaceSemanticValidatorHelper
- Returns:
- The list of entity names
-
getAllDeclarations
public java.util.List<JPQLQueryDeclaration> getAllDeclarations()
Returns the ordered list ofJPQLQueryDeclaration
, which contain the information contained in the query'sFROM
clause.- Specified by:
getAllDeclarations
in interfaceSemanticValidatorHelper
- Returns:
- The list of
JPQLQueryDeclaration
of the current query that was parsed and from the parent queries
-
getConstructors
public IConstructor[] getConstructors(java.lang.Object type)
Returns the constructors for the given type. All public, protected, default (package) access, and private constructors should be included.If it was going through Hermes SPI, the type of the argument would be
IType
and the return type would beIConstructor
.- Specified by:
getConstructors
in interfaceSemanticValidatorHelper
- Returns:
- The declared constructors
-
getDeclarations
public java.util.List getDeclarations()
Returns the ordered list ofJPQLQueryDeclaration
, which contain the information contained in the query'sFROM
clause.- Specified by:
getDeclarations
in interfaceSemanticValidatorHelper
- Returns:
- The list of
JPQLQueryDeclaration
of the current query that was parsed
-
getEmbeddable
public IManagedType getEmbeddable(java.lang.Object type)
Retrieves the embeddable with the given type.- Specified by:
getEmbeddable
in interfaceSemanticValidatorHelper
- Parameters:
type
- The Java type of the embeddable to retrieve- Returns:
- The embeddable for the given type if it's representing an embeddable;
null
otherwise
-
getEntityNamed
public IEntity getEntityNamed(java.lang.String entityName)
Retrieves the entity with the given entity name.- Specified by:
getEntityNamed
in interfaceSemanticValidatorHelper
- Parameters:
entityName
- The abstract schema name of the entity to retrieve- Returns:
- The entity with the given name;
null
otherwise
-
getEnumConstants
public java.lang.String[] getEnumConstants(java.lang.Object type)
Returns the constant names for the givenEnum
type.If it was going through Hermes SPI, the type of the argument would be
IType
.- Specified by:
getEnumConstants
in interfaceSemanticValidatorHelper
- Parameters:
type
- TheEnum
type- Returns:
- The list of constant names
-
getGrammar
public JPQLGrammar getGrammar()
Returns theJPQLGrammar
that defines how the JPQL query was parsed.- Specified by:
getGrammar
in interfaceSemanticValidatorHelper
- Returns:
- The
JPQLGrammar
that was used to parse the JPQL query
-
getIdentificationVariable
protected IdentificationVariable getIdentificationVariable(Expression expression)
-
getIdentificationVariableVisitor
protected GenericSemanticValidatorHelper.IdentificationVariableVisitor getIdentificationVariableVisitor()
-
getManagedType
public IManagedType getManagedType(Expression expression)
Returns the managed type by resolving the givenExpression
.If it was going through Hermes SPI, the return type would be
IManagedType
.- Specified by:
getManagedType
in interfaceSemanticValidatorHelper
-
getMappingNamed
public IMapping getMappingNamed(java.lang.Object managedType, java.lang.String path)
Returns the mapping with the given name.If it was going through Hermes SPI, the type of the argument would be
IManagedType
and the return type would beIMapping
.- Specified by:
getMappingNamed
in interfaceSemanticValidatorHelper
- Parameters:
managedType
- The managed type that has a mapping with the given namepath
- The name of the mapping to retrieve- Returns:
- Either the mapping or
null
if it could not be found
-
getMappingType
public IType getMappingType(java.lang.Object mapping)
Returns the type of the given mapping object.If it was going through Hermes SPI, the type of the argument would be
IMapping
and the return type would beIType
.- Specified by:
getMappingType
in interfaceSemanticValidatorHelper
- Parameters:
mapping
- The mapping object- Returns:
- The type of the given mapping
-
getMethodParameterTypeDeclarations
public ITypeDeclaration[] getMethodParameterTypeDeclarations(java.lang.Object constructor)
Returns the list of type declarations representing the given constructor's parameter types. If this is the default constructor, then an empty array should be returned.If it was going through Hermes SPI, the type of the argument would be
IConstructor
and the return type would beITypeDeclaration
.- Specified by:
getMethodParameterTypeDeclarations
in interfaceSemanticValidatorHelper
- Parameters:
constructor
- The constructor to return its parameter types- Returns:
- The list of parameter types or an empty list
-
getQueryContext
public JPQLQueryContext getQueryContext()
Returns the context used to query information about the JPQL query.- Returns:
- The context used to query information about the JPQL query
-
getReferenceManagedType
public IManagedType getReferenceManagedType(java.lang.Object relationshipMapping)
Returns the reference managed type from the given relationship mapping.If it was going through Hermes SPI, the type of the argument would be
IMapping
and the return type would beIManagedType
.- Specified by:
getReferenceManagedType
in interfaceSemanticValidatorHelper
- Parameters:
relationshipMapping
- The relationship mapping- Returns:
- The managed type referenced by the given relationship mapping
-
getType
public IType getType(Expression expression)
Returns the type by resolving the givenExpression
.If it was going through Hermes SPI, the return type would be
IType
.- Specified by:
getType
in interfaceSemanticValidatorHelper
- Parameters:
expression
- TheExpression
to resolve- Returns:
- The type of the given
Expression
ornull
if it could not be validated
-
getType
public IType getType(java.lang.Object typeDeclaration)
Returns the type defined for the Java member.If it was going through Hermes SPI, the type of the argument would be
ITypeDeclaration
and the return type would beIType
.- Specified by:
getType
in interfaceSemanticValidatorHelper
- Returns:
- The type defined for the Java member
-
getType
public IType getType(java.lang.String typeName)
Retrieves the class with the given fully qualified name.If it was going through Hermes SPI, an
IType
would be returned.- Specified by:
getType
in interfaceSemanticValidatorHelper
- Parameters:
typeName
- The fully qualified name of the class to retrieve- Returns:
- The class to retrieve
-
getTypeDeclaration
public ITypeDeclaration getTypeDeclaration(Expression expression)
Returns the type declaration for the givenExpression
's type.If it was going through Hermes SPI, the type of the argument would be
ITypeDeclaration
.- Specified by:
getTypeDeclaration
in interfaceSemanticValidatorHelper
- Parameters:
expression
- TheExpression
to resolve- Returns:
- Either the type declaration that was resolved for the given
Expression
-
getTypeHelper
public ITypeHelper getTypeHelper()
Returns the helper that gives access to the most common class metadata.- Specified by:
getTypeHelper
in interfaceSemanticValidatorHelper
- Returns:
- A helper containing a collection of methods related to class metadata
-
getTypeName
public java.lang.String getTypeName(java.lang.Object type)
Returns the fully qualified class name of the given type.If it was going through Hermes SPI, the type of the argument would be
IType
.- Specified by:
getTypeName
in interfaceSemanticValidatorHelper
- Parameters:
type
- The type to retrieve its name- Returns:
- The name of the class represented by this one
-
isAssignableTo
public boolean isAssignableTo(java.lang.Object type1, java.lang.Object type2)
Determines whether type 1 is an instance of type 2.If it was going through Hermes SPI, the type of the arguments would be
IType
.- Specified by:
isAssignableTo
in interfaceSemanticValidatorHelper
- Parameters:
type1
- The type to check if it is an instance of type 2type2
- The type used to determine if the class represented by type 1 is an instance of with one- Returns:
true
if type 1 is an instance of the type 2;false
otherwise
-
isCollectionIdentificationVariable
public boolean isCollectionIdentificationVariable(java.lang.String variableName)
Determines whether the given identification variable is defining a join or a collection member declaration expressions.- Specified by:
isCollectionIdentificationVariable
in interfaceSemanticValidatorHelper
- Parameters:
variableName
- The identification variable to check for what it maps- Returns:
true
if the given identification variable maps a collection-valued field defined in aJOIN
orIN
expression;false
if it's not defined or it's mapping an abstract schema name
-
isCollectionMapping
public boolean isCollectionMapping(java.lang.Object mapping)
Determines whether the given mapping is a collection type mapping.If it was going through Hermes SPI, the type of the arguments would be
IMapping
.- Specified by:
isCollectionMapping
in interfaceSemanticValidatorHelper
- Parameters:
mapping
- The mapping object to verify if it represents a collection mapping- Returns:
true
if the given mapping is a collection mapping;false
otherwise
-
isEmbeddableMapping
public boolean isEmbeddableMapping(java.lang.Object mapping)
Description copied from interface:SemanticValidatorHelper
Determines whether the given mapping is an embeddable type mapping.If it was going through Hermes SPI, the type of the arguments would be
IMapping
.- Specified by:
isEmbeddableMapping
in interfaceSemanticValidatorHelper
- Parameters:
mapping
- The mapping object to verify if it represents an embeddable mapping- Returns:
true
if the given mapping is an embeddable mapping;false
otherwise
-
isEnumType
public boolean isEnumType(java.lang.Object type)
Determines whether the given type represents anEnum
.If it was going through Hermes SPI, the type of the argument would be
IType
.- Specified by:
isEnumType
in interfaceSemanticValidatorHelper
- Returns:
true
if the given type is anEnum
;false
otherwise
-
isIdentificationVariableValidInComparison
public boolean isIdentificationVariableValidInComparison(IdentificationVariable expression)
Determines whether an identification variable can be used in a comparison expression when the operator is either '<', '<=', '>', '>='.- Specified by:
isIdentificationVariableValidInComparison
in interfaceSemanticValidatorHelper
- Parameters:
expression
- TheIdentificationVariable
that is mapped to either an entity, a singled-object value field, a collection-valued object field- Returns:
true
if it can be used in a ordering comparison expression;false
if it can't
-
isManagedTypeResolvable
public boolean isManagedTypeResolvable(java.lang.Object managedType)
Determines whether the given managed type actually exists.If it was going through Hermes SPI, the type of the argument would be
IManagedType
.- Specified by:
isManagedTypeResolvable
in interfaceSemanticValidatorHelper
- Returns:
true
if the given managed type can be located;false
if it could not be found
-
isPropertyMapping
public boolean isPropertyMapping(java.lang.Object mapping)
Determines whether the given mapping is a property type mapping.If it was going through Hermes SPI, the type of the arguments would be
IMapping
.- Specified by:
isPropertyMapping
in interfaceSemanticValidatorHelper
- Parameters:
mapping
- The mapping object to verify if it represents a property mapping- Returns:
true
if the given mapping is a property mapping;false
otherwise
-
isRelationshipMapping
public boolean isRelationshipMapping(java.lang.Object mapping)
Determines whether the given mapping is a relationship type mapping.If it was going through Hermes SPI, the type of the arguments would be
IMapping
.- Specified by:
isRelationshipMapping
in interfaceSemanticValidatorHelper
- Parameters:
mapping
- The mapping object to verify if it represents a relationship mapping- Returns:
true
if the given mapping is a relationship mapping;false
otherwise
-
isResultVariable
public boolean isResultVariable(java.lang.String variableName)
Determines if the given variable is a result variable.- Specified by:
isResultVariable
in interfaceSemanticValidatorHelper
- Parameters:
variableName
- The variable to check if it's a result variable- Returns:
true
if the given variable is defined as a result variable;false
otherwise
-
isTransient
public boolean isTransient(java.lang.Object mapping)
Determines whether the given mapping is a transient attribute.If it was going through Hermes SPI, the type of the arguments would be
IMapping
.- Specified by:
isTransient
in interfaceSemanticValidatorHelper
- Parameters:
mapping
- The mapping object to verify if it represents a transient attribute- Returns:
true
if the given attribute is a transient mapping;false
otherwise
-
isTypeDeclarationAssignableTo
public boolean isTypeDeclarationAssignableTo(java.lang.Object typeDeclaration1, java.lang.Object typeDeclaration2)
Determines whether type declaration 1 is an instance of type declaration 2.If it was going through Hermes SPI, the type of the arguments would be
ITypeDeclaration
.- Specified by:
isTypeDeclarationAssignableTo
in interfaceSemanticValidatorHelper
- Parameters:
typeDeclaration1
- The type declaration to check if it is an instance of type declaration 2typeDeclaration2
- The type used to determine if the class represented by type declaration 1 is an instance of with one- Returns:
true
if type declaration 1 is an instance of the type declaration 2;false
otherwise
-
isTypeResolvable
public boolean isTypeResolvable(java.lang.Object type)
Determines whether the given type actually exists.If it was going through Hermes SPI, the type of the argument would be
IType
.- Specified by:
isTypeResolvable
in interfaceSemanticValidatorHelper
- Returns:
true
if the actual class exists;false
otherwise
-
newSubqueryContext
public void newSubqueryContext(SimpleSelectStatement expression)
Changes the state of this helper to use the given subquery.- Specified by:
newSubqueryContext
in interfaceSemanticValidatorHelper
- Parameters:
expression
- The parsed tree representation of the subquery that will become the current query- See Also:
SemanticValidatorHelper.disposeSubqueryContext()
-
resolveMapping
public IMapping resolveMapping(Expression expression)
Returns the mapping for the field represented by the givenExpression
.If it was going through Hermes SPI, the return type would be
IMapping
.- Specified by:
resolveMapping
in interfaceSemanticValidatorHelper
- Parameters:
expression
- TheExpression
representing a state field path expression or a collection-valued path expression- Returns:
- Either the mapping or
null
if none exists
-
resolveMapping
public IMapping resolveMapping(java.lang.String variableName, java.lang.String name)
Returns the mapping that should be a persistence field from the entity defined by the given identification variable.If it was going through Hermes SPI, the return type would be
IMapping
.- Specified by:
resolveMapping
in interfaceSemanticValidatorHelper
- Parameters:
variableName
- The identification variable that is defined in theFROM
clause of the query (which can be in the current subquery) or in one of the parent queries.name
- The name of the persistent field to retrieve- Returns:
- The persistence field with the given name or
null
if it could not be found
-
-