public final class ComputedAttribute extends AttributeCreator
selectEVALUATE_METHOD, EVENT_FEED_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, locationId, PROCESS_METHOD, PUSH_SELECTION, staticProperties, WATCH_METHOD| Constructor and Description |
|---|
ComputedAttribute(Expression attributeName,
Expression namespace,
NamespaceResolver nsContext,
int validationAction,
SimpleType schemaType,
int annotation,
boolean allowNameAsQName)
Construct an Attribute instruction
|
| Modifier and Type | Method and Description |
|---|---|
void |
checkPermittedContents(SchemaType parentType,
StaticContext env,
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.
|
int |
computeSpecialProperties()
Get the static properties of this expression (other than its type).
|
Expression |
copy()
Copy an expression.
|
int |
evaluateNameCode(XPathContext context)
Determine the name to be used for the attribute, as an integer name code
|
void |
explain(ExpressionPresenter out)
Diagnostic print of expression structure.
|
int |
getCardinality()
Get the static cardinality of this expression
|
int |
getInstructionNameCode()
Get the name of this instruction
|
ItemType |
getItemType(TypeHierarchy th)
Get the static type of this expression
|
Expression |
getNameExpression()
Get the expression used to compute the name of the attribute
|
Expression |
getNamespaceExpression()
Get the expression used to compute the namespace part of the name of the attribute
|
NamespaceResolver |
getNamespaceResolver()
Get the namespace resolver used to resolve any prefix in the name of the attribute
|
java.util.Iterator<Expression> |
iterateSubExpressions()
Get the subexpressions of this expression
|
void |
localTypeCheck(ExpressionVisitor visitor,
ItemType contextItemType)
Method to perform type-checking specific to the kind of instruction
|
Expression |
optimize(ExpressionVisitor visitor,
ItemType contextItemType)
Perform optimisation of an expression and its subexpressions.
|
protected void |
promoteInst(PromotionOffer offer)
Offer promotion for subexpressions.
|
boolean |
replaceSubExpression(Expression original,
Expression replacement)
Replace one subexpression by a replacement subexpression
|
void |
setRejectDuplicates()
Indicate that two attributes with the same name are not acceptable.
|
Expression |
simplify(ExpressionVisitor visitor)
Simplify an expression.
|
getAnnotation, getOptions, getSchemaType, getValidationAction, processValue, setAnnotation, setNoSpecialChars, setOptions, setSchemaType, setValidationActioncheckContent, computeCardinality, createsNewNodes, evaluateItem, getContentExpression, iterate, processLeavingTail, setSelect, typeCheckassembleParams, assembleTunnelParams, dynamicError, evaluateAsString, getConstructType, getExpressionName, getImplementationMethod, getInstructionName, getIteratorFromProcessMethod, getSourceLocator, isXSLT, process, promoteaddToPathMap, adoptChildExpression, checkForUpdatingSubexpressions, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, evaluatePendingUpdates, explain, getColumnNumber, getColumnNumber, getContainer, getDependencies, getEvaluationMethod, getExecutable, getHostLanguage, getIntrinsicDependencies, getLineNumber, getLineNumber, getLocationId, getLocationProvider, getObjectName, getProperties, getProperty, getPublicId, getSlotsUsed, getSpecialProperties, getSystemId, getSystemId, hasLoopingSubexpression, implementsStaticTypeCheck, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, iterateEvents, iterateSameFocusSubExpressions, markTailFunctionCalls, resetLocalStaticProperties, setContainer, setEvaluationMethod, setFiltered, setFlattened, setLocationId, staticTypeCheck, suppressValidation, toString, typeErrorpublic ComputedAttribute(Expression attributeName, Expression namespace, NamespaceResolver nsContext, int validationAction, SimpleType schemaType, int annotation, boolean allowNameAsQName)
attributeName - An expression to calculate the attribute namenamespace - An expression to calculate the attribute namespacensContext - a NamespaceContext object containing the static namespace context of the
stylesheet instructionvalidationAction - e.g. validation=strict, lax, strip, preserveschemaType - Type against which the attribute must be validated. This must not be a namespace-sensitive
type; it is the caller's responsibility to check this.annotation - Integer code identifying the type named in the type attributeallowNameAsQName - true if the attributeName expression is allowed to evaluate to a value
of type xs:QName (true in XQuery, false in XSLT)public void setRejectDuplicates()
setRejectDuplicates in class AttributeCreatorpublic int getInstructionNameCode()
getInstructionNameCode in class Instructionpublic Expression getNameExpression()
public Expression getNamespaceExpression()
public NamespaceResolver getNamespaceResolver()
public ItemType getItemType(TypeHierarchy th)
getItemType in class Instructionth - the type hierarchy cachepublic int getCardinality()
getCardinality in class Expressionpublic int computeSpecialProperties()
computeSpecialProperties in class SimpleNodeConstructorpublic Expression simplify(ExpressionVisitor visitor) throws XPathException
Instructionsimplify in class SimpleNodeConstructorvisitor - an expression visitorXPathException - if an error is discovered during expression
rewritingpublic void localTypeCheck(ExpressionVisitor visitor, ItemType contextItemType) throws XPathException
SimpleNodeConstructorlocalTypeCheck in class SimpleNodeConstructorvisitor - an expression visitorcontextItemType - the static type of the context itemXPathExceptionpublic Expression optimize(ExpressionVisitor visitor, ItemType contextItemType) throws XPathException
ExpressionThis method is called after all references to functions and variables have been resolved to the declaration of the function or variable, and after all type checking has been done.
optimize in class SimpleNodeConstructorvisitor - an expression visitorcontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPEXPathException - if an error is discovered during this phase
(typically a type error)public Expression copy()
copy in class Expressionpublic java.util.Iterator<Expression> iterateSubExpressions()
iterateSubExpressions in class SimpleNodeConstructorpublic boolean replaceSubExpression(Expression original, Expression replacement)
replaceSubExpression in class SimpleNodeConstructororiginal - the original subexpressionreplacement - the replacement subexpressionprotected void promoteInst(PromotionOffer offer) throws XPathException
promoteInst in class SimpleNodeConstructoroffer - details of the offer, for example the offer to move
expressions that don't depend on the context to an outer level in
the containing expressionXPathException - if any error is detectedpublic void checkPermittedContents(SchemaType parentType, StaticContext env, boolean whole) throws XPathException
checkPermittedContents in class ExpressionparentType - the "given complex type": the method is checking that the nodes returned by this
expression are acceptable members of the content model of this typeenv - the static contextwhole - 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 contentXPathException - if the value delivered by this expression cannot be part of the content model
of the given typepublic int evaluateNameCode(XPathContext context) throws XPathException
evaluateNameCode in class SimpleNodeConstructorcontext - Dynamic evaluation contextXPathExceptionpublic void explain(ExpressionPresenter out)
explain in class Expressionout - the expression presenter used to display the structure