Class DynamicOperandImpl
- java.lang.Object
-
- org.apache.jackrabbit.oak.query.ast.DynamicOperandImpl
-
- Direct Known Subclasses:
CoalesceImpl,FirstImpl,FullTextSearchScoreImpl,LengthImpl,LowerCaseImpl,NodeLocalNameImpl,NodeNameImpl,PathImpl,PropertyValueImpl,UpperCaseImpl
public abstract class DynamicOperandImpl extends Object
The base class for dynamic operands (such as a function or property).
-
-
Constructor Summary
Constructors Constructor Description DynamicOperandImpl()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract booleancanRestrictSelector(SelectorImpl s)Check whether the condition can be applied to a selector (to restrict the selector).protected PropertyValueconvertValueToType(PropertyValue v, PropertyValue targetType)@NotNull org.apache.jackrabbit.oak.query.ast.AstElementcopyOf()abstract DynamicOperandImplcreateCopy()abstract PropertyValuecurrentProperty()booleanequals(Object other)abstract StringgetFunction(SelectorImpl s)Get the function of a function-based index, in Polish notation.protected StringgetLocalPath(String path)Calculate the session local path (the path excluding the workspace name) if possible.abstract QueryIndex.OrderEntrygetOrderEntry(SelectorImpl s, OrderingImpl o)Create an entry for the "order by" list for a given filter.StringgetOrderEntryPropertyName(SelectorImpl s)abstract PropertyExistenceImplgetPropertyExistence()Get the property existence condition for this operand, if this operand is used as part of a condition.abstract Set<SelectorImpl>getSelectors()Get the set of selectors for this operand.inthashCode()protected StringnormalizePath(String path)Validate and normalize the path.protected StringnormalizePropertyName(String propertyName)Normalize the property name (including namespace remapping).protected Stringprotect(Object expression)protected static Stringquote(String pathOrName)protected static StringquoteJson(String string)abstract voidrestrict(FilterImpl f, Operator operator, PropertyValue v)Apply a restriction of type "this = value" to the given filter.abstract voidrestrictList(FilterImpl f, List<PropertyValue> list)Apply a restriction of type "this in (list)" to the given filter.voidsetQuery(QueryImpl query)booleansupportsRangeConditions()
-
-
-
Field Detail
-
query
protected QueryImpl query
-
-
Method Detail
-
currentProperty
public abstract PropertyValue currentProperty()
-
restrict
public abstract void restrict(FilterImpl f, Operator operator, PropertyValue v)
Apply a restriction of type "this = value" to the given filter.- Parameters:
f- the filter where the restriction is applied.operator- the operator (for example "=").v- the value
-
restrictList
public abstract void restrictList(FilterImpl f, List<PropertyValue> list)
Apply a restriction of type "this in (list)" to the given filter.- Parameters:
f- the filter where the restriction is applied.list- the list of values
-
getFunction
public abstract String getFunction(SelectorImpl s)
Get the function of a function-based index, in Polish notation.- Parameters:
s- the selector- Returns:
- the function, or null if not supported
-
canRestrictSelector
public abstract boolean canRestrictSelector(SelectorImpl s)
Check whether the condition can be applied to a selector (to restrict the selector). The method may return true if the operand can be evaluated when the given selector and all previous selectors in the join can be evaluated.- Parameters:
s- the selector- Returns:
- true if the condition can be applied
-
supportsRangeConditions
public boolean supportsRangeConditions()
-
getPropertyExistence
public abstract PropertyExistenceImpl getPropertyExistence()
Get the property existence condition for this operand, if this operand is used as part of a condition.- Returns:
- the property existence condition, or null if none
-
getSelectors
public abstract Set<SelectorImpl> getSelectors()
Get the set of selectors for this operand.- Returns:
- the set of selectors
-
createCopy
public abstract DynamicOperandImpl createCopy()
-
getOrderEntry
public abstract QueryIndex.OrderEntry getOrderEntry(SelectorImpl s, OrderingImpl o)
Create an entry for the "order by" list for a given filter.- Parameters:
s- the selectoro- the ordering- Returns:
- the entry
-
getOrderEntryPropertyName
public String getOrderEntryPropertyName(SelectorImpl s)
- Parameters:
s-- Returns:
- the property name as defined in the OrderEntry for the DynamicOperand
-
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)
-
getLocalPath
protected String getLocalPath(String path)
Calculate the session local path (the path excluding the workspace name) if possible.- Parameters:
path- the absolute path- Returns:
- the session local path, or null if not within this workspace
-
copyOf
@NotNull public @NotNull org.apache.jackrabbit.oak.query.ast.AstElement copyOf()
- Returns:
- a clone of self. Default implementation in
AstElementreturns same reference tothis.
-
-