public final class ComputedAttribute extends AttributeCreator
select
EFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, EVENT_FEED_METHOD, INHERITED_CONTEXT, INSPECTION_CONTEXT, ITEM_FEED_METHOD, ITERATE_METHOD, locationId, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, NAVIGATION_CONTEXT, NODE_VALUE_CONTEXT, PROCESS_METHOD, PUSH_SELECTION, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, W3C_CONSUMING, W3C_FREE_RANGING, W3C_GROUP_CONSUMING, W3C_MOTIONLESS, WATCH_METHOD
Constructor and Description |
---|
ComputedAttribute(Expression attributeName,
Expression namespace,
NamespaceResolver nsContext,
int validationAction,
SimpleType schemaType,
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.
|
Item |
evaluateItem(XPathContext context)
Evaluate as an expression.
|
NodeName |
evaluateNodeName(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
|
ExpressionCompiler |
getExpressionCompiler()
Return the compiler of the ComputedAttribute 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
|
Expression |
getOnEmpty()
Get the on-empty expression, which defines the value to be returned if the attribute would otherwise
be empty
|
boolean |
isAllowNameAsQName()
Ask whether it is allowed for the name to be evaluted as an xs:QName instance (true in XQuery)
|
Iterator<SubExpressionInfo> |
iterateSubExpressionInfo()
Get the immediate sub-expressions of this expression, with information about the relationship
of each expression to its parent expression.
|
Iterator<Expression> |
iterateSubExpressions()
Get the subexpressions of this expression
|
void |
localTypeCheck(ExpressionVisitor visitor,
ExpressionVisitor.ContextItemType contextItemType)
Method to perform type-checking specific to the kind of instruction
|
Expression |
optimize(ExpressionVisitor visitor,
ExpressionVisitor.ContextItemType contextItemType)
Perform optimisation of an expression and its subexpressions.
|
void |
processValue(CharSequence value,
XPathContext context)
Process the value of the node, to create the new node.
|
protected void |
promoteInst(PromotionOffer offer)
Offer promotion for subexpressions.
|
boolean |
replaceSubExpression(Expression original,
Expression replacement)
Replace one subexpression by a replacement subexpression
|
void |
setOnEmpty(Expression onEmpty)
Set the on-empty expression, which defines the value to be returned if the attribute would otherwise
be empty
|
void |
setRejectDuplicates()
Indicate that two attributes with the same name are not acceptable.
|
Expression |
simplify(ExpressionVisitor visitor)
Simplify an expression.
|
getOptions, getSchemaType, getValidationAction, setNoSpecialChars, setOptions, setSchemaType, setValidationAction, validateOrphanAttribute
checkContent, computeCardinality, createsNewNodes, getContentExpression, getStreamingAdjunct, iterate, processLeavingTail, setSelect, typeCheck
assembleParams, assembleTunnelParams, dynamicError, evaluateAsString, getConstructType, getExpressionName, getImplementationMethod, getInstructionName, getIteratorFromProcessMethod, getSourceLocator, isXSLT, process, promote
addToPathMap, adoptChildExpression, checkForUpdatingSubexpressions, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, evaluatePendingUpdates, explain, getColumnNumber, getColumnNumber, getContainer, getDependencies, getEvaluationMethod, getExecutable, getHostLanguage, getIntegerBounds, getIntrinsicDependencies, getLineNumber, getLineNumber, getLocationId, getLocationProvider, getObjectName, getProperties, getProperty, getPublicId, getSlotsUsed, getSpecialProperties, getStreamability, getSystemId, getSystemId, hasVariableBinding, implementsStaticTypeCheck, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, iterateEvents, markTailFunctionCalls, resetLocalStaticProperties, setContainer, setEvaluationMethod, setFiltered, setFlattened, setLocationId, staticTypeCheck, suppressValidation, toPattern, toStreamingPattern, toString, typeError
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getColumnNumber, getLineNumber, getPublicId, getSystemId
public ComputedAttribute(Expression attributeName, Expression namespace, NamespaceResolver nsContext, int validationAction, SimpleType schemaType, 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.allowNameAsQName
- true if the attributeName expression is allowed to evaluate to a value
of type xs:QName (true in XQuery, false in XSLT)public void setOnEmpty(Expression onEmpty)
onEmpty
- the expression to be evaluated if the attribute would otherwise be emptypublic Expression getOnEmpty()
public void setRejectDuplicates()
setRejectDuplicates
in class AttributeCreator
public int getInstructionNameCode()
getInstructionNameCode
in class Instruction
public Expression getNameExpression()
public Expression getNamespaceExpression()
public NamespaceResolver getNamespaceResolver()
public ItemType getItemType(TypeHierarchy th)
getItemType
in class AttributeCreator
th
- the type hierarchy cachepublic int getCardinality()
getCardinality
in class Expression
public boolean isAllowNameAsQName()
public int computeSpecialProperties()
computeSpecialProperties
in class AttributeCreator
public Expression simplify(ExpressionVisitor visitor) throws XPathException
Instruction
simplify
in class SimpleNodeConstructor
visitor
- an expression visitorXPathException
- if an error is discovered during expression
rewritingpublic void localTypeCheck(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) throws XPathException
SimpleNodeConstructor
localTypeCheck
in class SimpleNodeConstructor
visitor
- an expression visitorcontextItemType
- the static type of the context itemXPathException
- if a type error is detectedpublic Expression optimize(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) throws XPathException
Expression
This 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 SimpleNodeConstructor
visitor
- 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_TYPE
XPathException
- if an error is discovered during this phase
(typically a type error)public Expression copy()
copy
in class Expression
public Iterator<Expression> iterateSubExpressions()
iterateSubExpressions
in class SimpleNodeConstructor
public Iterator<SubExpressionInfo> iterateSubExpressionInfo()
SimpleNodeConstructor
iterateSubExpressionInfo
in class SimpleNodeConstructor
public boolean replaceSubExpression(Expression original, Expression replacement)
replaceSubExpression
in class SimpleNodeConstructor
original
- the original subexpressionreplacement
- the replacement subexpressionprotected void promoteInst(PromotionOffer offer) throws XPathException
promoteInst
in class SimpleNodeConstructor
offer
- 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 Expression
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 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 NodeName evaluateNodeName(XPathContext context) throws XPathException
evaluateNodeName
in class SimpleNodeConstructor
context
- Dynamic evaluation contextXPathException
public void processValue(CharSequence value, XPathContext context) throws XPathException
processValue
in class AttributeCreator
value
- the string value of the new nodecontext
- the dynamic evaluation contextXPathException
public Item evaluateItem(XPathContext context) throws XPathException
SimpleNodeConstructor
evaluateItem
in class SimpleNodeConstructor
context
- The context in which the expression is to be evaluatedXPathException
- if any dynamic error occurs evaluating the
expressionpublic ExpressionCompiler getExpressionCompiler()
getExpressionCompiler
in class Expression
public void explain(ExpressionPresenter out)
explain
in class Expression
out
- the expression presenter used to display the structureCopyright (c) 2004-2013 Saxonica Limited. All rights reserved.