org.expath.pkg.repo.CompositeUniverse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkg-java Show documentation
Show all versions of pkg-java Show documentation
Java Library implementing the core EXPath Packaging features
/****************************************************************************/
/* File: CompositeUniverse.java */
/* Author: F. Georges - H2O Consulting */
/* Date: 2011-01-30 */
/* Tags: */
/* Copyright (c) 2011 Florent Georges (see end of file.) */
/* ------------------------------------------------------------------------ */
package org.expath.pkg.repo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.Collection;
import javax.xml.transform.Source;
/**
* Create a universe by assembling several sub-universes.
*
* The "dependency-recursive" property is set at construction, i.e. do the
* resolving mechanism look into the declared dependencies, recursively?
*
* @author Florent Georges
*/
public class CompositeUniverse
implements Universe
{
public CompositeUniverse(boolean transitive)
{
myTransitive = transitive;
}
public void addUniverse(Universe universe)
{
mySubUniverses.add(universe);
}
@Override
public Source resolve(String href, URISpace space)
throws PackageException
{
return resolve(href, space, myTransitive);
}
@Override
public Source resolve(String href, URISpace space, boolean transitive)
throws PackageException
{
LOG.debug("Composite universe, resolve in {}: '{}' ({})", space, href, transitive);
for ( Universe sub : mySubUniverses ) {
Source src = sub.resolve(href, space, transitive);
if ( src != null ) {
return src;
}
}
return null;
}
private boolean myTransitive;
private Collection mySubUniverses = new ArrayList();
private static final Logger LOG = LoggerFactory.getLogger(CompositeUniverse.class);
}
/* ------------------------------------------------------------------------ */
/* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS COMMENT. */
/* */
/* The contents of this file are subject to the Mozilla Public License */
/* Version 1.0 (the "License"); you may not use this file except in */
/* compliance with the License. You may obtain a copy of the License at */
/* http://www.mozilla.org/MPL/. */
/* */
/* Software distributed under the License is distributed on an "AS IS" */
/* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See */
/* the License for the specific language governing rights and limitations */
/* under the License. */
/* */
/* The Original Code is: all this file. */
/* */
/* The Initial Developer of the Original Code is Florent Georges. */
/* */
/* Contributor(s): none. */
/* ------------------------------------------------------------------------ */
© 2015 - 2024 Weber Informatics LLC | Privacy Policy