Class SelectorImpl
- java.lang.Object
-
- org.apache.jackrabbit.oak.query.ast.SourceImpl
-
- org.apache.jackrabbit.oak.query.ast.SelectorImpl
-
public class SelectorImpl extends SourceImpl
A selector within a query.
-
-
Constructor Summary
Constructors Constructor Description SelectorImpl(NodeTypeInfo nodeTypeInfo, String selectorName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddJoinCondition(JoinConditionImpl joinCondition, boolean forThisSelector)Add the join condition (the ON ...protected PropertyValueconvertValueToType(PropertyValue v, PropertyValue targetType)SourceImplcopyOf()FilterImplcreateFilter(boolean preparing)Create the filter condition for planning or execution.PropertyValuecurrentOakProperty(String oakPropertyName)Get the property value.StringcurrentPath()Get the current absolute Oak path (normalized).PropertyValuecurrentProperty(String propertyName)The value for the given selector for the current node.PropertyValuecurrentProperty(String propertyName, int propertyType)The value for the given selector for the current node, filtered by property type.@Nullable TreecurrentTree()Get the tree at the current path.booleanequals(Object other)voidexecute(NodeState rootState)Execute the query.SelectorExecutionPlangetExecutionPlan()StringgetIndexCostInfo(NodeState rootState)Get the index cost as a JSON string.ArrayList<SourceImpl>getInnerJoinSelectors()Get all sources that are joined via inner join.protected StringgetLocalPath(String path)Calculate the session local path (the path excluding the workspace name) if possible.@NotNull Set<String>getMixinTypes()StringgetNodeType()StringgetPlan(NodeState rootState)Get the query plan.@NotNull Set<String>getPrimaryTypes()QueryImplgetQuery()longgetScanCount()SelectorImplgetSelector(String selectorName)Get the selector with the given name, or null if not found.List<ConstraintImpl>getSelectorConstraints()StringgetSelectorName()longgetSize(NodeState rootState, Result.SizePrecision precision, long max)Get the size if known.@NotNull Set<String>getSupertypes()Iterable<String>getWildcardColumns()inthashCode()booleanisOuterJoinRightHandSide()Whether any selector is the outer-join right hand side.booleanisPrepared()booleanisVirtualRow()booleanmatchesAllTypes()booleannext()Go to the next node for the given source.protected StringnormalizePath(String path)Validate and normalize the path.protected StringnormalizePropertyName(String propertyName)Normalize the property name (including namespace remapping).ExecutionPlanprepare()Prepare executing the query (recursively).voidprepare(ExecutionPlan p)Re-apply a previously prepared plan.protected Stringprotect(Object expression)protected static Stringquote(String pathOrName)protected static StringquoteJson(String string)voidrestrictSelector(ConstraintImpl constraint)voidsetOuterJoin(boolean outerJoinLeftHandSide, boolean outerJoinRightHandSide)Set whether this source is the left hand side or right hand side of a left outer join.voidsetQuery(QueryImpl query)voidsetQueryConstraint(ConstraintImpl queryConstraint)Set the complete constraint of the query (the WHERE ...StringtoString()voidunprepare()Undo a prepare.-
Methods inherited from class org.apache.jackrabbit.oak.query.ast.SourceImpl
getExistingSelector, getInnerJoinConditions
-
-
-
-
Field Detail
-
query
protected QueryImpl query
-
-
Constructor Detail
-
SelectorImpl
public SelectorImpl(NodeTypeInfo nodeTypeInfo, String selectorName)
-
-
Method Detail
-
getSelectorName
public String getSelectorName()
-
getNodeType
public String getNodeType()
-
matchesAllTypes
public boolean matchesAllTypes()
-
getSupertypes
@NotNull public @NotNull Set<String> getSupertypes()
- Returns:
- all of the matching supertypes, or empty if the
matchesAllTypesflag is set
-
getPrimaryTypes
@NotNull public @NotNull Set<String> getPrimaryTypes()
- Returns:
- all of the matching primary subtypes, or empty if the
matchesAllTypesflag is set
-
getMixinTypes
@NotNull public @NotNull Set<String> getMixinTypes()
- Returns:
- all of the matching mixin types, or empty if the
matchesAllTypesflag is set
-
isPrepared
public boolean isPrepared()
-
unprepare
public void unprepare()
Description copied from class:SourceImplUndo a prepare.- Specified by:
unpreparein classSourceImpl
-
prepare
public void prepare(ExecutionPlan p)
Description copied from class:SourceImplRe-apply a previously prepared plan. This will also 're-wire' the selectors with the join constraints- Specified by:
preparein classSourceImpl- Parameters:
p- the plan to use
-
prepare
public ExecutionPlan prepare()
Description copied from class:SourceImplPrepare executing the query (recursively). This will 'wire' the selectors with the join constraints, and decide which index to use.- Specified by:
preparein classSourceImpl- Returns:
- the execution plan
-
getExecutionPlan
public SelectorExecutionPlan getExecutionPlan()
-
setQueryConstraint
public void setQueryConstraint(ConstraintImpl queryConstraint)
Description copied from class:SourceImplSet the complete constraint of the query (the WHERE ... condition).- Specified by:
setQueryConstraintin classSourceImpl- Parameters:
queryConstraint- the constraint
-
setOuterJoin
public void setOuterJoin(boolean outerJoinLeftHandSide, boolean outerJoinRightHandSide)Description copied from class:SourceImplSet whether this source is the left hand side or right hand side of a left outer join.- Specified by:
setOuterJoinin classSourceImpl- Parameters:
outerJoinLeftHandSide- true if yesouterJoinRightHandSide- true if yes
-
addJoinCondition
public void addJoinCondition(JoinConditionImpl joinCondition, boolean forThisSelector)
Description copied from class:SourceImplAdd the join condition (the ON ... condition).- Specified by:
addJoinConditionin classSourceImpl- Parameters:
joinCondition- the join conditionforThisSelector- if set, the join condition can only be evaluated when all previous selectors are executed.
-
execute
public void execute(NodeState rootState)
Description copied from class:SourceImplExecute the query. The current node is set to before the first row.- Specified by:
executein classSourceImpl- Parameters:
rootState- root state of the given revision
-
getPlan
public String getPlan(NodeState rootState)
Description copied from class:SourceImplGet the query plan.- Specified by:
getPlanin classSourceImpl- Parameters:
rootState- the root- Returns:
- the query plan
-
getIndexCostInfo
public String getIndexCostInfo(NodeState rootState)
Description copied from class:SourceImplGet the index cost as a JSON string.- Specified by:
getIndexCostInfoin classSourceImpl- Parameters:
rootState- the root- Returns:
- the cost
-
createFilter
public FilterImpl createFilter(boolean preparing)
Create the filter condition for planning or execution.- Specified by:
createFilterin classSourceImpl- Parameters:
preparing- whether a filter for the prepare phase should be made- Returns:
- the filter
-
next
public boolean next()
Description copied from class:SourceImplGo to the next node for the given source. This will also filter the result for the right node type if required.- Specified by:
nextin classSourceImpl- Returns:
- true if there is a next row
-
currentPath
public String currentPath()
Get the current absolute Oak path (normalized).- Returns:
- the path
-
currentTree
@Nullable public @Nullable Tree currentTree()
Get the tree at the current path.- Returns:
- the current tree, or null
-
currentProperty
public PropertyValue currentProperty(String propertyName)
The value for the given selector for the current node.- Parameters:
propertyName- the JCR (not normalized) property name- Returns:
- the property value
-
currentProperty
public PropertyValue currentProperty(String propertyName, int propertyType)
The value for the given selector for the current node, filtered by property type.- Parameters:
propertyName- the JCR (not normalized) property namepropertyType- only include properties of this type- Returns:
- the property value (possibly null)
-
currentOakProperty
public PropertyValue currentOakProperty(String oakPropertyName)
Get the property value. The property name may be relative. The special property names "jcr:path", "jcr:score" and "rep:excerpt" are supported.- Parameters:
oakPropertyName- (must already be normalized)- Returns:
- the property value or null if not found
-
isVirtualRow
public boolean isVirtualRow()
-
getSelector
public SelectorImpl getSelector(String selectorName)
Description copied from class:SourceImplGet the selector with the given name, or null if not found.- Specified by:
getSelectorin classSourceImpl- Parameters:
selectorName- the selector name- Returns:
- the selector, or null
-
getScanCount
public long getScanCount()
-
restrictSelector
public void restrictSelector(ConstraintImpl constraint)
-
getSelectorConstraints
public List<ConstraintImpl> getSelectorConstraints()
-
getInnerJoinSelectors
public ArrayList<SourceImpl> getInnerJoinSelectors()
Description copied from class:SourceImplGet all sources that are joined via inner join. (These can be swapped.)- Specified by:
getInnerJoinSelectorsin classSourceImpl- Returns:
- the list of selectors (sorted from left to right)
-
isOuterJoinRightHandSide
public boolean isOuterJoinRightHandSide()
Description copied from class:SourceImplWhether any selector is the outer-join right hand side.- Specified by:
isOuterJoinRightHandSidein classSourceImpl- Returns:
- true if there is any
-
getQuery
public QueryImpl getQuery()
-
getSize
public long getSize(NodeState rootState, Result.SizePrecision precision, long max)
Description copied from class:SourceImplGet the size if known.- Specified by:
getSizein classSourceImpl- Parameters:
rootState- the root node state (to initialize the cursor, if needed)precision- the required precisionmax- the maximum nodes read (for an exact size)- Returns:
- the size, or -1 if unknown
-
copyOf
public SourceImpl copyOf()
- Returns:
- a clone of self. Default implementation in
AstElementreturns same reference tothis.
-
setQuery
public void setQuery(QueryImpl query)
-
normalizePropertyName
protected String normalizePropertyName(String propertyName)
Normalize the property name (including namespace remapping). Asterisks are kept.- Parameters:
propertyName- the property name to normalize- Returns:
- the normalized (oak-) property name
-
normalizePath
protected String normalizePath(String path)
Validate and normalize the path.- Parameters:
path- the path to validate- Returns:
- the validated and normalized path
-
convertValueToType
protected PropertyValue convertValueToType(PropertyValue v, PropertyValue targetType)
-
-