org.jboss.dependency.plugins.graph.ScopeKeyLookupStrategy Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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 software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.dependency.plugins.graph;
import java.util.Set;
import org.jboss.dependency.plugins.AbstractController;
import org.jboss.dependency.plugins.ScopedController;
import org.jboss.dependency.spi.ControllerContext;
import org.jboss.dependency.spi.ControllerState;
import org.jboss.metadata.spi.scope.ScopeKey;
/**
* ScopeKey lookup strategy.
* It only matches exact scope key level.
*
* @author Ales Justin
*/
public class ScopeKeyLookupStrategy extends HierarchyLookupStrategy
{
private ScopeKey scopeKey;
public ScopeKeyLookupStrategy(ScopeKey scopeKey)
{
if (scopeKey == null)
throw new IllegalArgumentException("Null scope key");
this.scopeKey = scopeKey;
}
protected ControllerContext getContextInternal(AbstractController controller, Object name, ControllerState state)
{
// go all the way to the top
AbstractController parent = controller.getParentController();
while (parent != null)
{
controller = parent;
parent = controller.getParentController();
}
AbstractController match = findMatchingScopedController(controller);
if (match != null)
return getLocalContext(match, name, state);
return null;
}
/**
* Find scope key matching scoped controller.
*
* @param current the current controller
* @return match or null if no match
*/
private AbstractController findMatchingScopedController(AbstractController current)
{
boolean related = true; // by default it's related
if (current instanceof ScopedController)
{
ScopedController scopedController = (ScopedController)current;
ScopeKey key = scopedController.getScopeKey();
// see if this is even related, so that we don't go fwd for nothing
if (key != null)
{
// exact match
if (scopeKey.equals(key))
return current;
related = false; // we have key, should prove that it's related
ScopeKey ck = scopeKey;
int keySize = key.getScopes().size();
int ckSize = ck.getScopes().size();
while (ck != null && keySize < ckSize)
{
if (key.isParent(ck))
{
related = true;
break;
}
ck = ck.getParent();
ckSize--;
}
}
}
if (related)
{
Set children = current.getControllers();
for (AbstractController child : children)
{
AbstractController found = findMatchingScopedController(child);
if (found != null)
return found;
}
}
return null;
}
}