Class ComputedElement
- All Implemented Interfaces:
ExportAgent
,InstructionWithComplexContent
,ValidatingInstruction
,Locatable
,IdentityComparable
,Traceable
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Elaborator for a FixedElement (literal result element) expression.Nested classes/interfaces inherited from class net.sf.saxon.expr.instruct.ElementCreator
ElementCreator.ElementCreationDetails
-
Field Summary
Fields inherited from class net.sf.saxon.expr.instruct.ParentNodeConstructor
contentOp, preservingTypes
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, UNBOUNDED_LOWER, UNBOUNDED_UPPER, UPDATE_METHOD, WATCH_METHOD
-
Constructor Summary
ConstructorsConstructorDescriptionComputedElement
(Expression elementName, Expression namespace, SchemaType schemaType, int validation, boolean inheritNamespaces, boolean allowQName) Create an instruction that creates a new element node -
Method Summary
Modifier and TypeMethodDescriptionvoid
checkPermittedContents
(SchemaType parentType, boolean whole) Check that any elements and attributes constructed or returned by this expression are acceptable in the content model of a given complex type.copy
(RebindingMap rebindings) Copy an expression.void
Diagnostic print of expression structure.Make an elaborator for this expressiongetElementName
(XPathContext context) Callback from the superclass ElementCreator to get the nameCode for the element nameint
Get the name of this instruction for diagnostic and tracing purposesGet the item type of the value returned by this instructionGet the expression used to compute the element nameGet the expression used to compute the namespace URIGet the namespace resolver that provides the namespace bindings defined in the static contextboolean
Ask whether the name can be supplied as a QName.operands()
Get the immediate sub-expressions of this expression, with information about the relationship of each expression to its parent expression.void
outputNamespaceNodes
(Outputter out, NodeName nodeName, ElementCreator.ElementCreationDetails details) Callback to output namespace nodes for the new element.protected void
setNameExp
(Expression elementName) protected void
setNamespaceExp
(Expression namespace) simplify()
Simplify an expression.typeCheck
(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) Perform type checking of an expression and its subexpressions.Methods inherited from class net.sf.saxon.expr.instruct.ElementCreator
checkContentSequence, computeSpecialProperties, getCardinality, getImplementationMethod, getStreamerName, isBequeathNamespacesToChildren, isInheritNamespacesFromParent, setBequeathNamespacesToChildren, setInheritanceFlags, setInheritNamespacesFromParent, suppressValidation
Methods inherited from class net.sf.saxon.expr.instruct.ParentNodeConstructor
addToPathMap, allowExtractingCommonSubexpressions, alwaysCreatesNewNodes, computeCardinality, getContentExpression, getContentOperand, getSchemaType, getValidationAction, getValidationOptions, isLocal, isPreservingTypes, mayCreateNewNodes, optimize, setContentExpression, setNoNeedToStrip, setValidationAction, setValidationOptions
Methods inherited from class net.sf.saxon.expr.instruct.Instruction
assembleParams, assembleTunnelParams, dynamicError, evaluateAsString, evaluateItem, getExpressionName, getNetCost, getSourceLocator, isInstruction, isXSLT, iterate, process, someOperandCreatesNewNodes
Methods inherited from class net.sf.saxon.expr.Expression
adoptChildExpression, checkedOperands, checkForUpdatingSubexpressions, computeDependencies, computeHashCode, computeStaticProperties, dispatchTailCall, dynamicError, effectiveBooleanValue, equals, explain, getConfiguration, getCost, getDependencies, getEvaluationMethod, getExtraProperty, getIntegerBounds, getIntrinsicDependencies, getLocalRetainedStaticContext, getLocation, getObjectName, getPackageData, getParentExpression, getProperties, getProperty, getRetainedStaticContext, getScopingExpression, getSlotsUsed, getSpecialProperties, getStaticBaseURI, getStaticBaseURIString, getStaticType, getStaticUType, getTracingTag, hasCompatibleStaticContext, hashCode, hasSpecialProperty, hasVariableBinding, identityHashCode, implementsStaticTypeCheck, isCallOn, isEqual, isIdentical, isLiftable, isMultiThreaded, isStaticPropertiesKnown, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, makeElaborator, markTailFunctionCalls, operandList, operandSparseList, optimizeChildren, prepareForStreaming, resetLocalStaticProperties, restoreParentPointers, setEvaluationMethod, setExtraProperty, setFiltered, setFlattened, setLocation, setParentExpression, setRetainedStaticContext, setRetainedStaticContextLocally, setRetainedStaticContextThoroughly, setStaticProperty, simplifyChildren, staticTypeCheck, supportsLazyEvaluation, toPattern, toShortString, toString, typeCheckChildren, typeError, unordered, verifyParentPointers, withLocation
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.sf.saxon.trace.Traceable
gatherProperties
-
Constructor Details
-
ComputedElement
public ComputedElement(Expression elementName, Expression namespace, SchemaType schemaType, int validation, boolean inheritNamespaces, boolean allowQName) Create an instruction that creates a new element node- Parameters:
elementName
- Expression that evaluates to produce the name of the element node as a lexical QNamenamespace
- Expression that evaluates to produce the namespace URI of the element node. Set to null if the namespace is to be deduced from the prefix of the elementName.schemaType
- The required schema type for the contentvalidation
- Required validation mode (e.g. STRICT, LAX, SKIP)inheritNamespaces
- true if child elements automatically inherit the namespaces of their parentallowQName
- True if the elementName expression is allowed to return a QNameValue; false if
-
-
Method Details
-
getNameExp
Get the expression used to compute the element name- Returns:
- the expression used to compute the element name
-
getNamespaceExp
Get the expression used to compute the namespace URI- Returns:
- the expression used to compute the namespace URI
-
setNameExp
-
setNamespaceExp
-
operands
Description copied from class:Expression
Get the immediate sub-expressions of this expression, with information about the relationship of each expression to its parent expression.If the expression is a Callable, then it is required that the order of the operands returned by this function is the same as the order of arguments supplied to the corresponding call() method.
- Specified by:
operands
in classInstruction
- Returns:
- an iterator containing the sub-expressions of this expression
-
getNamespaceResolver
Get the namespace resolver that provides the namespace bindings defined in the static context- Returns:
- the namespace resolver
-
simplify
Description copied from class:Expression
Simplify an expression. This performs any static optimization (by rewriting the expression as a different expression). The default implementation simplifies its operands.- Overrides:
simplify
in 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 Description copied from class:Expression
Perform type checking of an expression and its subexpressions. This is the second phase of static optimization.This checks statically that the operands of the expression have the correct type; if necessary it generates code to do run-time type checking or type conversion. A static type error is reported only if execution cannot possibly succeed, that is, if a run-time type error is inevitable. The call may return a modified form of the expression.
This method is called after all references to functions and variables have been resolved to the declaration of the function or variable. However, the types of such functions and variables may not be accurately known if they have not been explicitly declared.
- Overrides:
typeCheck
in classParentNodeConstructor
- 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:
copy
in classExpression
- Parameters:
rebindings
- a mutable list of (old binding, new binding) pairs that is used to update the bindings held in any local variable references that are copied.- Returns:
- the copy of the original expression
-
getItemType
Get the item type of the value returned by this instruction- Overrides:
getItemType
in classElementCreator
- Returns:
- the item type
-
checkPermittedContents
Check that any elements and attributes constructed or returned by this expression are acceptable in the content model of a given complex type. It's always OK to say yes, since the check will be repeated at run-time. The process of checking element and attribute constructors against the content model of a complex type also registers the type of content expected of those constructors, so the static validation can continue recursively.- Overrides:
checkPermittedContents
in classExpression
- Parameters:
parentType
- the "given complex type": the method is checking that the nodes returned by this expression are acceptable members of the content model of this typewhole
- if true, we want to check that the value of this expression satisfies the content model as a whole; if false we want to check that the value of the expression is acceptable as one part of the content- Throws:
XPathException
- if the value delivered by this expression cannot be part of the content model of the given type
-
getElementName
Callback from the superclass ElementCreator to get the nameCode for the element name- Parameters:
context
- The evaluation context (not used)- Returns:
- the name code for the element name
- Throws:
XPathException
-
isAllowNameAsQName
public boolean isAllowNameAsQName()Ask whether the name can be supplied as a QName. In practice this is true for XQuery, false for XSLT- Returns:
- true if the name can be supplied as a QName
-
makeElementCreationDetails
- Overrides:
makeElementCreationDetails
in classElementCreator
-
outputNamespaceNodes
public void outputNamespaceNodes(Outputter out, NodeName nodeName, ElementCreator.ElementCreationDetails details) throws XPathException Callback to output namespace nodes for the new element.- Specified by:
outputNamespaceNodes
in classElementCreator
- Parameters:
out
- the Outputter where the namespace nodes are to be writtennodeName
- The name of the element node being outputdetails
- Where this is a copied node, the node being copied- Throws:
XPathException
- if a dynamic error occurs
-
getInstructionNameCode
public int getInstructionNameCode()Get the name of this instruction for diagnostic and tracing purposes- Overrides:
getInstructionNameCode
in classInstruction
- Returns:
- a code identifying the instruction: typically but not always the fingerprint of a name in the XSLT namespace
-
export
Diagnostic print of expression structure. The abstract expression tree is written to the supplied output destination.- Specified by:
export
in interfaceExportAgent
- Specified by:
export
in classExpression
- Parameters:
out
- 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.
-
getElaborator
Make an elaborator for this expression- Overrides:
getElaborator
in classExpression
- Returns:
- a suitable elaborator
-