net.sf.saxon.trans.rules.DeepSkipRuleSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2022 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.trans.rules;
import net.sf.saxon.event.Outputter;
import net.sf.saxon.expr.XPathContext;
import net.sf.saxon.expr.XPathContextMajor;
import net.sf.saxon.expr.instruct.ParameterSet;
import net.sf.saxon.expr.instruct.TailCall;
import net.sf.saxon.s9api.Location;
import net.sf.saxon.om.*;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.type.Type;
/**
* The rule set introduced in XSLT 3.0, which (for any kind of node) simply ignores the node
* and its descendants.
*/
public class DeepSkipRuleSet implements BuiltInRuleSet {
private static final DeepSkipRuleSet THE_INSTANCE = new DeepSkipRuleSet();
/**
* Get the singleton instance of this class
*
* @return the singleton instance
*/
public static DeepSkipRuleSet getInstance() {
return THE_INSTANCE;
}
private DeepSkipRuleSet() {
}
/**
* Perform the built-in template action for a given item.
* @param item the item to be processed
* @param parameters the parameters supplied to apply-templates
* @param tunnelParams the tunnel parameters to be passed through
* @param output the destination for the result
* @param context the dynamic evaluation context
* @param locationId location of the instruction (apply-templates, apply-imports etc) that caused
*/
@Override
public void process(Item item, ParameterSet parameters,
ParameterSet tunnelParams, Outputter output, XPathContext context,
Location locationId) throws XPathException {
if (item instanceof NodeInfo && ((NodeInfo) item).getNodeKind() == Type.DOCUMENT) {
XPathContextMajor c2 = context.newContext();
c2.setOrigin(this);
c2.trackFocus(((NodeInfo) item).iterateAxis(AxisInfo.CHILD));
c2.setCurrentComponent(c2.getCurrentMode());
TailCall tc = c2.getCurrentMode().getActor().applyTemplates(parameters, tunnelParams, null, output, c2, locationId);
while (tc != null) {
tc = tc.processLeavingTail();
}
}
// otherwise, do nothing
}
/**
* Identify this built-in rule set
*
* @return "deep-skip"
*/
@Override
public String getName() {
return "deep-skip";
}
/**
* Get the default action for unmatched nodes
*
* @param nodeKind the node kind
* @return the default action for unmatched element nodes: one of DEEP_COPY, APPLY_TEMPLATES, DEEP_SKIP, FAIL
*/
@Override
public BuiltInRules[] getActionForParentNodes(int nodeKind) {
if (nodeKind == Type.DOCUMENT) {
return new BuiltInRules[]{BuiltInRules.APPLY_TEMPLATES_TO_CHILDREN};
} else {
return new BuiltInRules[]{BuiltInRules.DEEP_SKIP};
}
}
}