net.sf.saxon.style.XSLArray 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.style;
import net.sf.saxon.Configuration;
import net.sf.saxon.expr.Expression;
import net.sf.saxon.expr.parser.ExpressionTool;
import net.sf.saxon.functions.SystemFunction;
import net.sf.saxon.lib.NamespaceConstant;
import net.sf.saxon.ma.arrays.ArrayFunctionSet;
import net.sf.saxon.om.AttributeInfo;
import net.sf.saxon.om.NodeName;
import net.sf.saxon.trans.XPathException;
/**
* xsl:array element in stylesheet - proposed XSLT 4.0 instruction
* The xsl:array element has the same content model as xsl:sequence. It evaluates the expression
* in its select attribute or its contained sequence constructor, and turns the resulting sequence
* into an array of single-item members.
*/
public class XSLArray extends XSLSequence {
private boolean composite;
@Override
protected void prepareAttributes() {
for (AttributeInfo att : attributes()) {
NodeName attName = att.getNodeName();
String value = att.getValue();
String f = attName.getDisplayName();
if (f.equals("select")) {
setSelectExpression(makeExpression(value, att));
} else if (f.equals("composite")) {
composite = processBooleanAttribute("composite", value);
} else {
checkUnknownAttribute(attName);
}
}
}
@Override
public Expression compile(Compilation exec, ComponentDeclaration decl) throws XPathException {
if (getURI().equals(NamespaceConstant.XSLT)) {
requireXslt40(null);
} else if (!getConfiguration().isLicensedFeature(Configuration.LicenseFeature.PROFESSIONAL_EDITION)) {
compileError("saxon:array requires a Saxon-PE or -EE license");
}
if (getSelectExpression() == null) {
setSelectExpression(compileSequenceConstructor(exec, decl, false));
}
Expression functionCall;
if (composite) {
SystemFunction arrayOf = ArrayFunctionSet.getInstance().makeFunction("of", 1);
functionCall = arrayOf.makeFunctionCall(getSelectExpression());
} else {
SystemFunction arrayFromSeq = ArrayFunctionSet.getInstance().makeFunction("_from-sequence", 1);
functionCall = arrayFromSeq.makeFunctionCall(getSelectExpression());
}
ExpressionTool.copyLocationInfo(getSelectExpression(), functionCall);
return functionCall;
}
}