org.exist.xslt.XsltURIResolverHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exist-core Show documentation
Show all versions of exist-core Show documentation
eXist-db NoSQL Database Core
/*
* eXist-db Open Source Native XML Database
* Copyright (C) 2001 The eXist-db Authors
*
* [email protected]
* http://www.exist-db.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.exist.xslt;
import org.exist.repo.PkgXsltModuleURIResolver;
import org.exist.storage.BrokerPool;
import org.exist.util.EXistURISchemeURIResolver;
import org.exist.util.URIResolverHierarchy;
import javax.annotation.Nullable;
import javax.xml.transform.URIResolver;
import java.util.ArrayList;
import java.util.List;
/**
* Utilities for XSLT URI Resolution.
*
* @author Adam Retter
*/
public class XsltURIResolverHelper {
/**
* Get a URI Resolver for XSLT Modules.
*
* @param brokerPool the database
* @param defaultResolver the default fallback resolver, or null
* @param base the URI base, or null
* @param avoidSelf true to avoid nesting {@link URIResolverHierarchy}
*
* @return the URIResolver, or null if there is no resolver
*/
public static @Nullable URIResolver getXsltURIResolver(final BrokerPool brokerPool,
@Nullable final URIResolver defaultResolver, @Nullable final String base, final boolean avoidSelf) {
final List resolvers = new ArrayList<>();
if (base != null) {
// database resolver
resolvers.add(new EXistURISchemeURIResolver(new EXistURIResolver(brokerPool, base)));
}
// EXpath Pkg resolver
brokerPool.getExpathRepo().map(repo -> resolvers.add(new PkgXsltModuleURIResolver(repo)));
// default resolver
if (defaultResolver != null) {
if (avoidSelf) {
if (!defaultResolver.getClass().getName().equals(URIResolverHierarchy.class.getName())) {
resolvers.add(defaultResolver);
}
} else {
resolvers.add(defaultResolver);
}
}
if (resolvers.size() > 0) {
return new URIResolverHierarchy(resolvers);
} else {
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy