Package net.sf.saxon.type.coercion
Class SequenceCoercer
java.lang.Object
net.sf.saxon.expr.Expression
net.sf.saxon.expr.UnaryExpression
net.sf.saxon.type.coercion.SequenceCoercer
- All Implemented Interfaces:
ExportAgent,Locatable,IdentityComparable,Traceable
An SequenceCoercer is an expression that performs coercion on a sequence of items:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final booleanprotected final SequenceTypeprotected final Supplier<RoleDiagnostic> Fields inherited from class net.sf.saxon.expr.Expression
EFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, MAX_COST, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, PROCESS_METHOD, staticProperties, UPDATE_METHOD, WATCH_METHOD -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSequenceCoercer(Expression sequence, SequenceType requiredType, Supplier<RoleDiagnostic> role, boolean allow40) Constructor -
Method Summary
Modifier and TypeMethodDescriptionprotected intDetermine the static cardinality of the expressionprotected intget HashCode for comparing two expressions.protected intGet the static properties of this expression (other than its type).copy(RebindingMap rebindings) Copy an expression.booleanIs this expression the same as another expression?evaluateItem(XPathContext context) Evaluate the expression as an Item.voidexport(ExpressionPresenter destination) Export expression to SEF file.Construct a coercion planMake an elaborator for this expressionGet a name identifying the kind of expression, in terms meaningful to a user.intAn implementation of Expression must provide at least one of the methods evaluateItem(), iterate(), or process().Determine the data type of the items returned by the expressionprotected OperandRoleGet the usage (in terms of streamability analysis) of the single operandGet the (partial) name of a class that supports streaming of this kind of expressioniterate(XPathContext context) Evaluate the expression as a sequence iteratorstatic ExpressionmakeSequenceCoercer(Expression sequence, SequenceType requiredType, Supplier<RoleDiagnostic> role, boolean allow40) simplify()Simplify an expressiontoPattern(Configuration config, boolean firstInPath) Convert this expression to an equivalent XSLT patterntypeCheck(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) Type-check the expressionMethods inherited from class net.sf.saxon.expr.UnaryExpression
displayOperator, emitExtraAttributes, getBaseExpression, getOperand, operands, optimize, setBaseExpression, toShortString, toStringMethods inherited from class net.sf.saxon.expr.Expression
adoptChildExpression, allowExtractingCommonSubexpressions, checkedOperands, checkForUpdatingSubexpressions, checkPermittedContents, computeDependencies, computeStaticProperties, dispatchTailCall, dynamicError, effectiveBooleanValue, evaluateAsString, explain, getCardinality, getConfiguration, getCost, getDependencies, getEvaluationMethod, getExtraProperty, getIntrinsicDependencies, getLocalRetainedStaticContext, getLocation, getNetCost, getObjectName, getPackageData, getParentExpression, getProperties, getProperty, getRetainedStaticContext, getScopingExpression, getSlotsUsed, getSpecialProperties, getStaticBaseURI, getStaticBaseURIString, getStaticType, getStaticUType, getTracingTag, hasCompatibleStaticContext, hashCode, hasSpecialProperty, hasVariableBinding, identityHashCode, implementsStaticTypeCheck, isCallOn, isEqual, isIdentical, isInstruction, isLiftable, isMultiThreaded, isStaticPropertiesKnown, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, makeElaborator, markTailFunctionCalls, operandList, operandSparseList, optimizeChildren, prepareForStreaming, process, resetLocalStaticProperties, restoreParentPointers, setEvaluationMethod, setExtraProperty, setFiltered, setFlattened, setLocation, setParentExpression, setRetainedStaticContext, setRetainedStaticContextLocally, setRetainedStaticContextThoroughly, setStaticProperty, simplifyChildren, staticTypeCheck, supportsLazyEvaluation, suppressValidation, typeCheckChildren, typeError, unordered, verifyParentPointers, warning, withLocationMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.sf.saxon.trace.Traceable
gatherProperties
-
Field Details
-
requiredType
-
roleSupplier
-
allow40
protected final boolean allow40
-
-
Constructor Details
-
SequenceCoercer
protected SequenceCoercer(Expression sequence, SequenceType requiredType, Supplier<RoleDiagnostic> role, boolean allow40) Constructor- Parameters:
sequence- this must be a sequence of function item values. This is not checked; a ClassCastException will occur if the precondition is not satisfied.requiredType- the function item type to which all items in the sequence should be converted,
-
-
Method Details
-
makeSequenceCoercer
public static Expression makeSequenceCoercer(Expression sequence, SequenceType requiredType, Supplier<RoleDiagnostic> role, boolean allow40) -
getOperandRole
Description copied from class:UnaryExpressionGet the usage (in terms of streamability analysis) of the single operand- Specified by:
getOperandRolein classUnaryExpression- Returns:
- the operand usage
-
getRequiredType
-
computeSpecialProperties
protected int computeSpecialProperties()Description copied from class:UnaryExpressionGet the static properties of this expression (other than its type). The result is bit-signficant. These properties are used for optimizations. In general, if property bit is set, it is true, but if it is unset, the value is unknown.- Overrides:
computeSpecialPropertiesin classUnaryExpression- Returns:
- the special properties, as a bit-significant integer
-
simplify
Simplify an expression- Overrides:
simplifyin classExpression- Returns:
- the simplified expression (or the original if unchanged, or if modified in-situ)
- Throws:
XPathException- if an error is discovered during expression rewriting
-
typeCheck
public Expression typeCheck(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) throws XPathException Type-check the expression- Overrides:
typeCheckin classUnaryExpression- Parameters:
visitor- an expression visitorcontextInfo- Information available statically about the context item: whether it is (possibly) absent; its static type; its streaming posture.- Returns:
- the original expression, rewritten to perform necessary run-time type checks, and to perform other type-related optimizations
- Throws:
XPathException- if an error is discovered during this phase (typically a type error)
-
copy
Copy an expression. This makes a deep copy.- Specified by:
copyin classExpression- Parameters:
rebindings- variables that need to be re-bound- Returns:
- the copy of the original expression
-
toPattern
Description copied from class:ExpressionConvert this expression to an equivalent XSLT pattern- Overrides:
toPatternin classExpression- Parameters:
config- the Saxon configurationfirstInPath- true if an axis step in this expression is to be treated as an initial step of the pattern- Returns:
- the equivalent pattern
- Throws:
XPathException- if conversion is not possible
-
getImplementationMethod
public int getImplementationMethod()An implementation of Expression must provide at least one of the methods evaluateItem(), iterate(), or process(). This method indicates which of these methods is provided directly. The other methods will always be available indirectly, using an implementation that relies on one of the other methods.- Specified by:
getImplementationMethodin classExpression- Returns:
- the implementation method, for example
Expression.ITERATE_METHODorExpression.EVALUATE_METHODorExpression.PROCESS_METHOD
-
iterate
Evaluate the expression as a sequence iterator- Overrides:
iteratein classExpression- Parameters:
context- supplies the context for evaluation- Returns:
- a SequenceIterator that can be used to iterate over the result of the expression
- Throws:
XPathException- if any dynamic error occurs evaluating the expression
-
evaluateItem
Evaluate the expression as an Item.- Overrides:
evaluateItemin classExpression- Parameters:
context- The context in which the expression is to be evaluated- Returns:
- the node or atomic value that results from evaluating the expression; or null to indicate that the result is an empty sequence
- Throws:
XPathException- if any dynamic error occurs evaluating the expression
-
getItemType
Determine the data type of the items returned by the expression- Overrides:
getItemTypein classUnaryExpression- Returns:
- a value such as Type.STRING, Type.BOOLEAN, Type.NUMBER, Type.NODE, or Type.ITEM (meaning not known in advance)
-
computeCardinality
protected int computeCardinality()Determine the static cardinality of the expression- Overrides:
computeCardinalityin classUnaryExpression- Returns:
- the computed cardinality, as one of the values
StaticProperty.ALLOWS_ZERO_OR_ONE,StaticProperty.EXACTLY_ONE,StaticProperty.ALLOWS_ONE_OR_MORE,StaticProperty.ALLOWS_ZERO_OR_MORE. May also returnStaticProperty.ALLOWS_ZEROif the result is known to be an empty sequence, orStaticProperty.ALLOWS_MANYif if is known to return a sequence of length two or more.
-
getRoleDiagnostic
- Returns:
- the role locator
-
getRoleSupplier
-
equals
Is this expression the same as another expression?- Overrides:
equalsin classUnaryExpression- Parameters:
other- the other operand; the result is false if this is not an Expression- Returns:
- true if the other operand is an expression and if it can be determined that the two expressions are equivalent, in the sense that they will always return the same result.
-
computeHashCode
protected int computeHashCode()Description copied from class:UnaryExpressionget HashCode for comparing two expressions. Note that this hashcode gives the same result for (A op B) and for (B op A), whether or not the operator is commutative.- Overrides:
computeHashCodein classUnaryExpression- Returns:
- a computed hash code
-
getExpressionName
Description copied from class:ExpressionGet a name identifying the kind of expression, in terms meaningful to a user.- Overrides:
getExpressionNamein classExpression- Returns:
- a name identifying the kind of expression, in terms meaningful to a user. The name will always be in the form of a lexical XML QName, and should match the name used in export() output displaying the expression.
-
export
Export expression to SEF file. The abstract expression tree is written to the supplied output destination.- Specified by:
exportin interfaceExportAgent- Overrides:
exportin classUnaryExpression- Parameters:
destination- the expression presenter used to display the structure- Throws:
XPathException- if the export fails, for example if an expression is found that won't work in the target environment.
-
getStreamerName
Description copied from class:ExpressionGet the (partial) name of a class that supports streaming of this kind of expression- Overrides:
getStreamerNamein classExpression- Returns:
- the partial name of a class that can be instantiated to provide streaming support in Saxon-EE, or null if there is no such class
-
getCoercionPlan
Construct a coercion plan -
getElaborator
Make an elaborator for this expression- Overrides:
getElaboratorin classExpression- Returns:
- an appropriate
Elaborator
-