net.sf.saxon.functions.UriCollection 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) 2015 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.functions;
import net.sf.saxon.expr.XPathContext;
import net.sf.saxon.lib.ResourceCollection;
import net.sf.saxon.om.Item;
import net.sf.saxon.om.LazySequence;
import net.sf.saxon.om.Sequence;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.value.AnyURIValue;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Iterator;
/**
* Implement the fn:uri-collection() function (new in XQuery 3.0/XSLT 3.0). This is responsible for calling the
* registered {@link net.sf.saxon.lib.CollectionURIResolver}. For the effect of the default
* system-supplied CollectionURIResolver, see {@link net.sf.saxon.lib.StandardCollectionURIResolver}
*/
public class UriCollection extends SystemFunction {
private SequenceIterator getUris(final String href, final XPathContext context) throws XPathException {
ResourceCollection rCollection = context.getConfiguration().getCollectionFinder().findCollection(context, href);
if (rCollection == null) {
// Should not happen, we're calling user code so we check for it.
XPathException err = new XPathException("No collection has been defined for href: " + (href == null ? "" : href));
err.setErrorCode("FODC0002");
err.setXPathContext(context);
throw err;
}
final Iterator sources = rCollection.getResourceURIs(context);
return new SequenceIterator() {
public SequenceIterator getAnother() throws XPathException {
return getUris(href, context);
}
public Item next() {
if (sources.hasNext()) {
return new AnyURIValue(sources.next());
} else {
return null;
}
}
public void close() {
// no action;
}
public int getProperties() {
return 0;
}
};
}
/**
* Evaluate the expression
*
* @param context the dynamic evaluation context
* @param arguments the values of the arguments, supplied as SequenceIterators
* @return the result of the evaluation, in the form of a SequenceIterator
* @throws net.sf.saxon.trans.XPathException
* if a dynamic error occurs during the evaluation of the expression
*/
public Sequence call(XPathContext context, Sequence[] arguments) throws XPathException {
if (arguments.length == 0) {
return getDefaultUriCollection(context);
} else {
Item arg = arguments[0].head();
if (arg == null) {
return getDefaultUriCollection(context);
}
String href = arg.getStringValue();
URI hrefURI;
try {
hrefURI = new URI(href);
} catch (URISyntaxException e) {
throw new XPathException("Invalid URI passed to uri-collection: " + href, "FODC0004");
}
if (!hrefURI.isAbsolute()) {
URI staticBaseUri = getRetainedStaticContext().getStaticBaseUri();
if (staticBaseUri == null) {
throw new XPathException("No base URI available for uri-collection", "FODC0002");
}
hrefURI = staticBaseUri.resolve(hrefURI);
}
return new LazySequence(getUris(hrefURI.toString(), context));
}
}
private Sequence getDefaultUriCollection(XPathContext context) throws XPathException {
String href = context.getConfiguration().getDefaultCollection();
if (href == null) {
throw new XPathException("No default collection has been defined", "FODC0002");
} else {
return new LazySequence(getUris(href, context));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy