net.sf.saxon.expr.ListCastableFunction 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-2023 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.expr;
import net.sf.saxon.lib.ConversionRules;
import net.sf.saxon.om.NamespaceResolver;
import net.sf.saxon.om.Sequence;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.om.StructuredQName;
import net.sf.saxon.str.UnicodeString;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.type.*;
import net.sf.saxon.value.*;
/**
* A function item representing a castability test for a list type
*/
public class ListCastableFunction extends ListConstructorFunction {
/**
* Create the constructor function.
*
* @param targetType the type to which the function will convert its input
* @param resolver namespace resolver for use if the target type is namespace-sensitive
* @param allowEmpty if the operand can be an empty sequence
* @throws MissingComponentException if the item type has not been declared
*/
public ListCastableFunction(ListType targetType, NamespaceResolver resolver, boolean allowEmpty) throws MissingComponentException {
super(targetType, resolver, allowEmpty);
}
/**
* Get the item type of the function item
*
* @return the function item's type
*/
@Override
public FunctionItemType getFunctionItemType() {
return new SpecificFunctionType(
new SequenceType[]{SequenceType.ANY_SEQUENCE},
SequenceType.SINGLE_BOOLEAN);
}
/**
* Get the name of the function, or null if it is anonymous
*
* @return the function name, or null for an anonymous inline function
*/
@Override
public StructuredQName getFunctionName() {
return null;
}
/**
* Invoke the function
*
* @param context the XPath dynamic evaluation context
* @param args the actual arguments to be supplied
* @return the result of invoking the function
* @throws net.sf.saxon.trans.XPathException
* if a dynamic error occurs within the function
*/
@Override
public BooleanValue call(XPathContext context, Sequence[] args) throws XPathException {
SequenceIterator iter = args[0].iterate();
AtomicValue val = (AtomicValue) iter.next();
if (val == null) {
return BooleanValue.get(allowEmpty);
}
if (iter.next() != null) {
return BooleanValue.FALSE;
}
if (!(val instanceof StringValue) || val instanceof AnyURIValue) {
return BooleanValue.FALSE;
}
ConversionRules rules = context.getConfiguration().getConversionRules();
UnicodeString cs = val.getUnicodeStringValue();
ValidationFailure failure = targetType.validateContent(cs, nsResolver, rules);
return BooleanValue.get(failure == null);
}
}