@ConsumerType
public interface ResolverHook
Framework Resolver Hook Factory
service.
A Resolver Hook instance is called by the framework during a resolve process.
A resolver hook may influence the outcome of a resolve process by removing
entries from shrinkable collections that are passed to the hook during a
resolve process. A shrinkable collection is a Collection
that
supports all remove operations. Any other attempts to modify a shrinkable
collection will result in an UnsupportedOperationException
being
thrown.
The following steps outline the way a framework uses the resolver hooks during a resolve process.
ResolverHookFactory.begin(Collection)
method to inform the hooks
about a resolve process beginning and to obtain a Resolver Hook instance that
will be used for the duration of the resolve process.Resolvable
.
For each resolver hook call the filterResolvable(Collection)
method
with the shrinkable collection Resolvable
.Resolvable
now contains all the
unresolved bundle revisions that may end up as resolved at the end of the
current resolve process. Any other bundle revisions that got removed from the
shrinkable collection Resolvable
must not end up as resolved at the
end of the current resolve process.B
left in the shrinkable collection
Resolvable
and any bundle revision B
which is currently
resolved that represents a singleton bundle do the following:
osgi.identity
, are singletons, and have the same
symbolic name as the singleton bundle revision B
and place each of
the matching capabilities into a shrinkable collection Collisions
.osgi.identity
capability provided by
bundle revision B
from shrinkable collection Collisions
. A
singleton bundle cannot collide with itself.filterSingletonCollisions(BundleCapability, Collection)
with the
osgi.identity
capability provided by bundle
revision B
and the shrinkable collection Collisions
Collisions
now contains all singleton
osgi.identity
capabilities that can influence the
ability of bundle revision B
to resolve.B
is already resolved then any resolvable
bundle revision contained in the collection Collisions
is not allowed
to resolve.Resolvable
. For each
bundle revision B
left in the shrinkable collection
Resolvable
which the framework attempts to resolve the following
steps must be followed:
R
specified by bundle revision B
determine the collection of capabilities that satisfy (or match) the
requirement and place each matching capability into a shrinkable collection
Candidates
. A capability is considered to match a particular
requirement if its attributes satisfy a specified requirement and the
requirer bundle has permission to access the capability.filterMatches(BundleRequirement, Collection)
with the requirement
R
and the shrinkable collection Candidates
.Candidates
now contains all the
capabilities that may be used to satisfy the requirement R
. Any other
capabilities that got removed from the shrinkable collection
Candidates
must not be used to satisfy requirement R
.end()
method to inform the hooks
about a resolve process ending.
Resolver hooks are low level. Implementations of the resolver hook must be
careful not to create an unresolvable state which is very hard for a
developer or a provisioner to diagnose. Resolver hooks also must not be
allowed to start another synchronous resolve process (e.g. by calling
Bundle.start()
or FrameworkWiring.resolveBundles(Collection)
). The framework must detect this and throw an IllegalStateException
.
ResolverHookFactory
Modifier and Type | Method and Description |
---|---|
void |
end()
This method is called once at the end of the resolve process.
|
void |
filterMatches(BundleRequirement requirement,
java.util.Collection<BundleCapability> candidates)
Filter matches hook method.
|
void |
filterResolvable(java.util.Collection<BundleRevision> candidates)
Filter resolvable candidates hook method.
|
void |
filterSingletonCollisions(BundleCapability singleton,
java.util.Collection<BundleCapability> collisionCandidates)
Filter singleton collisions hook method.
|
void filterResolvable(java.util.Collection<BundleRevision> candidates)
candidates
- the collection of resolvable candidates available
during a resolve process.void filterSingletonCollisions(BundleCapability singleton, java.util.Collection<BundleCapability> collisionCandidates)
Currently only capabilities with the namespace of osgi.wiring.bundle
and osgi.identity
can be
singletons. The collision candidates will all have the same namespace, be
singletons, and have the same symbolic name as the specified singleton
capability.
In the future, capabilities in other namespaces may support the singleton
concept. Hook implementations should be prepared to receive calls to this
method for capabilities in namespaces other than osgi.wiring.bundle
or osgi.identity
.
This method can filter the list of collision candidates by removing potential collisions. Removing a collision candidate will allow the specified singleton to resolve regardless of the resolution state of the removed collision candidate.
singleton
- the singleton involved in a resolve processcollisionCandidates
- a collection of singleton collision candidatesvoid filterMatches(BundleRequirement requirement, java.util.Collection<BundleCapability> candidates)
All of the candidates will have the same namespace and will match the specified requirement.
If the Java Runtime Environment supports permissions then the collection of candidates will only contain candidates for which the requirer has permission to access.
requirement
- the requirement to filter candidates forcandidates
- a collection of candidates that match the requirementvoid end()
Copyright © OSGi Alliance (2000, 2020). All Rights Reserved. Licensed under the OSGi Specification License, Version 2.0