public class Copy extends ElementCreator
inheritNamespacesFromParent, inheritNamespacesToChildrencontentOp, preservingTypesEFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, PROCESS_METHOD, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, UPDATE_METHOD, WATCH_METHOD| Constructor and Description |
|---|
Copy(boolean copyNamespaces,
boolean inheritNamespaces,
SchemaType schemaType,
int validation)
Create a shallow copy instruction
param select selects the node (or other item) to be copied.
|
| Modifier and Type | Method and Description |
|---|---|
Expression |
copy(RebindingMap rebindings)
Copy an expression.
|
static void |
copyUnparsedEntities(NodeInfo source,
SequenceReceiver out) |
Item |
evaluateItem(XPathContext context)
Evaluate as an expression.
|
void |
export(ExpressionPresenter out)
Diagnostic print of expression structure.
|
NamespaceBinding[] |
getActiveNamespaces()
Callback to get a list of the intrinsic namespaces that need to be generated for the element.
|
NodeName |
getElementName(XPathContext context,
NodeInfo copiedNode)
Callback from ElementCreator when constructing an element
|
int |
getInstructionNameCode()
Get the name of this instruction for diagnostic and tracing purposes
|
int |
getIntrinsicDependencies()
Determine which aspects of the context the expression depends on.
|
ItemType |
getItemType()
Get the item type of the result of this instruction.
|
java.lang.String |
getNewBaseURI(XPathContext context,
NodeInfo copiedNode)
Get the base URI of a copied element node (the base URI is retained in the new copy)
|
java.lang.String |
getStreamerName()
Get the (partial) name of a class that supports streaming of this kind of expression
|
boolean |
isCopyNamespaces()
Ask whether namespace nodes are to be copied (in the case of an element)
|
java.lang.Iterable<Operand> |
operands()
Get the immediate sub-expressions of this expression, with information about the relationship
of each expression to its parent expression.
|
Expression |
optimize(ExpressionVisitor visitor,
ContextItemStaticInfo contextItemType)
Perform optimisation of an expression and its subexpressions.
|
void |
outputNamespaceNodes(XPathContext context,
Receiver receiver,
NodeName nodeName,
NodeInfo copiedNode)
Callback to output namespace nodes for the new element.
|
TailCall |
processLeavingTail(XPathContext context)
Evaluate the instruction to produce a new element node.
|
void |
setCopyNamespaces(boolean copy)
Say whether namespace nodes are to be copied (in the case of an element)
|
Expression |
simplify()
Simplify an expression.
|
Expression |
typeCheck(ExpressionVisitor visitor,
ContextItemStaticInfo contextInfo)
Perform type checking of an expression and its subexpressions.
|
checkContentSequence, computeSpecialProperties, exportValidationAndType, getCardinality, getImplementationMethod, getInheritanceFlags, isInheritNamespacesFromParent, isInheritNamespacesToChildren, processLeavingTail, setInheritanceFlags, setInheritNamespacesFromParent, setInheritNamespacesToChildren, suppressValidationaddToPathMap, allowExtractingCommonSubexpressions, alwaysCreatesNewNodes, computeCardinality, getContentExpression, getContentOperand, getSchemaType, getValidationAction, getValidationOptions, isLazyConstruction, isLocal, isPreservingTypes, mayCreateNewNodes, setBaseURI, setContentExpression, setLazyConstruction, setNoNeedToStrip, setValidationActionassembleParams, assembleTunnelParams, dynamicError, evaluateAsString, getConstructType, getExpressionName, getInstructionName, getNetCost, getSourceLocator, isInstruction, isXSLT, iterate, process, someOperandCreatesNewNodesadoptChildExpression, checkedOperands, checkForUpdatingSubexpressions, checkPermittedContents, computeDependencies, computeHashCode, computeStaticProperties, dynamicError, effectiveBooleanValue, evaluatePendingUpdates, explain, getConfiguration, getCost, getDependencies, getEvaluationMethod, getExtraProperty, getIntegerBounds, getInterpretedExpression, getLocalRetainedStaticContext, getLocation, getObjectName, getPackageData, getParentExpression, getProperties, getProperty, getRetainedStaticContext, getScopingExpression, getSlotsUsed, getSpecialProperties, getStaticBaseURI, getStaticBaseURIString, getStaticType, getStaticUType, hasCompatibleStaticContext, hashCode, hasVariableBinding, identityHashCode, implementsStaticTypeCheck, isCallOn, isCallOnSystemFunction, isIdentical, isLiftable, isMultiThreaded, isSameExpression, isStaticPropertiesKnown, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, markTailFunctionCalls, operandList, operandSparseList, optimizeChildren, resetLocalStaticProperties, restoreParentPointers, setEvaluationMethod, setExtraProperty, setFiltered, setFlattened, setLocation, setParentExpression, setRetainedStaticContext, setRetainedStaticContextLocally, setRetainedStaticContextThoroughly, setStaticProperty, simplifyChildren, staticTypeCheck, toPattern, toShortString, toString, typeCheckChildren, typeError, unordered, verifyParentPointers, verifyParentPointerspublic Copy(boolean copyNamespaces,
boolean inheritNamespaces,
SchemaType schemaType,
int validation)
copyNamespaces - true if namespace nodes are to be copied when copying an elementinheritNamespaces - true if child elements are to inherit the namespace nodes of their parentschemaType - the Schema type against which the content is to be validatedvalidation - the schema validation modepublic void setCopyNamespaces(boolean copy)
copy - set to true if namespace nodes are to be copiedpublic boolean isCopyNamespaces()
public Expression simplify() throws XPathException
simplify in class ExpressionXPathException - if an error is discovered during expression rewritingpublic Expression typeCheck(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) throws XPathException
ExpressionThis 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.
typeCheck in class ParentNodeConstructorvisitor - an expression visitorcontextInfo - Information available statically about the context item: whether it is (possibly)
absent; its static type; its streaming posture.XPathException - if an error is discovered during this phase
(typically a type error)public Expression copy(RebindingMap rebindings)
copy in class Expressionrebindings - public int getIntrinsicDependencies()
getIntrinsicDependencies in class Expressionpublic int getInstructionNameCode()
getInstructionNameCode in class Instructionpublic java.lang.Iterable<Operand> operands()
operands in class Instructionpublic ItemType getItemType()
getItemType in class ElementCreatorpublic Expression optimize(ExpressionVisitor visitor, ContextItemStaticInfo 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 ParentNodeConstructorvisitor - 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 NodeName getElementName(XPathContext context, NodeInfo copiedNode) throws XPathException
getElementName in class ElementCreatorcontext - XPath dynamic evaluation contextcopiedNode - the node being copiedXPathExceptionpublic java.lang.String getNewBaseURI(XPathContext context, NodeInfo copiedNode)
getNewBaseURI in class ElementCreatorcontext - XPath dynamic evaluation contextcopiedNode - the node being copied (for xsl:copy), otherwise nullpublic void outputNamespaceNodes(XPathContext context, Receiver receiver, NodeName nodeName, NodeInfo copiedNode) throws XPathException
outputNamespaceNodes in class ElementCreatorcontext - The execution contextreceiver - the Receiver where the namespace nodes are to be writtennodeName - the element namecopiedNode - the node being copied (for xsl:copy), otherwise nullXPathExceptionpublic NamespaceBinding[] getActiveNamespaces() throws XPathException
getActiveNamespaces in class ElementCreatorXPathException - if an error occurspublic TailCall processLeavingTail(XPathContext context) throws XPathException
ElementCreatorprocessLeavingTail in interface TailCallReturnerprocessLeavingTail in class ElementCreatorcontext - XPath dynamic evaluation contextXPathException - if a dynamic error occurs during the evaluation
of the instructionpublic static void copyUnparsedEntities(NodeInfo source, SequenceReceiver out) throws XPathException
XPathExceptionpublic Item evaluateItem(XPathContext context) throws XPathException
evaluateItem in class ElementCreatorcontext - The context in which the expression is to be evaluatedXPathException - if any dynamic error occurs evaluating the
expressionpublic java.lang.String getStreamerName()
getStreamerName in class ElementCreatorpublic void export(ExpressionPresenter out) throws XPathException
export in interface ExportAgentexport in class Expressionout - the expression presenter used to display the structureXPathException - if the export fails, for example if an expression is found that won't work
in the target environment.Copyright (c) 2004-2018 Saxonica Limited. All rights reserved.