package org.apache.felix.resolver;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import org.osgi.framework.namespace.PackageNamespace;
import org.osgi.resource.Capability;
import org.osgi.resource.Resource;
import org.osgi.service.resolver.HostedCapability;
public class WrappedCapability implements HostedCapability
{
private final Resource m_host;
private final Capability m_cap;
private final Map<String, Object> m_augmentedAttrs;
public WrappedCapability(Resource host, Capability cap)
{
m_host = host;
m_cap = cap;
if ("osgi.content".equals(m_cap.getNamespace())) {
Map<String, Object> augmentedDirs = new HashMap<String, Object>(m_cap.getAttributes());
Object wrapperUrl = augmentedDirs.get("url");
wrapperUrl = "wrapper:" + wrapperUrl;
augmentedDirs.put("url", wrapperUrl);
m_augmentedAttrs = Collections.unmodifiableMap(augmentedDirs);
} else {
m_augmentedAttrs = m_cap.getAttributes();
}
}
@Override
public boolean equals(Object obj)
{
if (obj == null)
{
return false;
}
if (getClass() != obj.getClass())
{
return false;
}
final WrappedCapability other = (WrappedCapability) obj;
if (m_host != other.m_host && (m_host == null || !m_host.equals(other.m_host)))
{
return false;
}
if (m_cap != other.m_cap && (m_cap == null || !m_cap.equals(other.m_cap)))
{
return false;
}
return true;
}
@Override
public int hashCode()
{
int hash = 7;
hash = 37 * hash + (m_host != null ? m_host.hashCode() : 0);
hash = 37 * hash + (m_cap != null ? m_cap.hashCode() : 0);
return hash;
}
public Capability getDeclaredCapability()
{
return m_cap;
}
public Resource getResource()
{
return m_host;
}
public String getNamespace()
{
return m_cap.getNamespace();
}
public Map<String, String> getDirectives()
{
return m_cap.getDirectives();
}
public Map<String, Object> getAttributes()
{
return m_augmentedAttrs;
}
@Override
public String toString()
{
if (m_host == null)
{
return getAttributes().toString();
}
if (getNamespace().equals(PackageNamespace.PACKAGE_NAMESPACE))
{
return "[" + m_host + "] "
+ getNamespace()
+ "; "
+ getAttributes().get(PackageNamespace.PACKAGE_NAMESPACE);
}
return "[" + m_host + "] " + getNamespace() + "; " + getAttributes();
}
}