- java.lang.Object
-
- javax.imageio.spi.ServiceRegistry
-
- Direct Known Subclasses:
- IIORegistry
public class ServiceRegistry extends Object
A registry for service provider instances.A service is a well-known set of interfaces and (usually abstract) classes. A service provider is a specific implementation of a service. The classes in a provider typically implement the interface or subclass the class defined by the service itself.
Service providers are stored in one or more categories, each of which is defined by a class of interface (described by a
Class
object) that all of its members must implement. The set of categories may be changed dynamically.Only a single instance of a given leaf class (that is, the actual class returned by
getClass()
, as opposed to any inherited classes or interfaces) may be registered. That is, suppose that thecom.mycompany.mypkg.GreenServiceProvider
class implements thecom.mycompany.mypkg.MyService
interface. If aGreenServiceProvider
instance is registered, it will be stored in the category defined by theMyService
class. If a new instance ofGreenServiceProvider
is registered, it will replace the previous instance. In practice, service provider objects are usually singletons so this behavior is appropriate.To declare a service provider, a
services
subdirectory is placed within theMETA-INF
directory that is present in every JAR file. This directory contains a file for each service provider interface that has one or more implementation classes present in the JAR file. For example, if the JAR file contained a class namedcom.mycompany.mypkg.MyServiceImpl
which implements thejavax.someapi.SomeService
interface, the JAR file would contain a file named:META-INF/services/javax.someapi.SomeService
containing the line:com.mycompany.mypkg.MyService
The service provider classes should be to be lightweight and quick to load. Implementations of these interfaces should avoid complex dependencies on other classes and on native code. The usual pattern for more complex services is to register a lightweight proxy for the heavyweight service.
An application may customize the contents of a registry as it sees fit, so long as it has the appropriate runtime permission.
For more details on declaring service providers, and the JAR format in general, see the JAR File Specification.
- See Also:
RegisterableService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static interface
ServiceRegistry.Filter
A simple filter interface used byServiceRegistry.getServiceProviders
to select providers matching an arbitrary criterion.
-
Constructor Summary
Constructors Constructor and Description ServiceRegistry(Iterator<Class<?>> categories)
Constructs aServiceRegistry
instance with a set of categories taken from thecategories
argument.
-
Method Summary
Methods Modifier and Type Method and Description boolean
contains(Object provider)
Returnstrue
ifprovider
is currently registered.void
deregisterAll()
Deregisters all currently registered service providers from all categories.void
deregisterAll(Class<?> category)
Deregisters all service provider object currently registered under the given category.void
deregisterServiceProvider(Object provider)
Removes a service provider object from all categories that contain it.<T> boolean
deregisterServiceProvider(T provider, Class<T> category)
Removes a service provider object from the given category.void
finalize()
Finalizes this object prior to garbage collection.Iterator<Class<?>>
getCategories()
Returns anIterator
ofClass
objects indicating the current set of categories.<T> T
getServiceProviderByClass(Class<T> providerClass)
Returns the currently registered service provider object that is of the given class type.<T> Iterator<T>
getServiceProviders(Class<T> category, boolean useOrdering)
Returns anIterator
containing all registered service providers in the given category.<T> Iterator<T>
getServiceProviders(Class<T> category, ServiceRegistry.Filter filter, boolean useOrdering)
Returns anIterator
containing service provider objects within a given category that satisfy a criterion imposed by the suppliedServiceRegistry.Filter
object'sfilter
method.static <T> Iterator<T>
lookupProviders(Class<T> providerClass)
Locates and incrementally instantiates the available providers of a given service using the context class loader.static <T> Iterator<T>
lookupProviders(Class<T> providerClass, ClassLoader loader)
Searches for implementations of a particular service class using the given class loader.void
registerServiceProvider(Object provider)
Adds a service provider object to the registry.<T> boolean
registerServiceProvider(T provider, Class<T> category)
Adds a service provider object to the registry.void
registerServiceProviders(Iterator<?> providers)
Adds a set of service provider objects, taken from anIterator
to the registry.<T> boolean
setOrdering(Class<T> category, T firstProvider, T secondProvider)
Sets a pairwise ordering between two service provider objects within a given category.<T> boolean
unsetOrdering(Class<T> category, T firstProvider, T secondProvider)
Sets a pairwise ordering between two service provider objects within a given category.
-
-
-
Constructor Detail
-
ServiceRegistry
public ServiceRegistry(Iterator<Class<?>> categories)
Constructs aServiceRegistry
instance with a set of categories taken from thecategories
argument.- Parameters:
categories
- anIterator
containingClass
objects to be used to define categories.- Throws:
IllegalArgumentException
- ifcategories
isnull
.
-
-
Method Detail
-
lookupProviders
public static <T> Iterator<T> lookupProviders(Class<T> providerClass, ClassLoader loader)
Searches for implementations of a particular service class using the given class loader.This method transforms the name of the given service class into a provider-configuration filename as described in the class comment and then uses the
getResources
method of the given class loader to find all available files with that name. These files are then read and parsed to produce a list of provider-class names. The iterator that is returned uses the given class loader to look up and then instantiate each element of the list.Because it is possible for extensions to be installed into a running Java virtual machine, this method may return different results each time it is invoked.
- Parameters:
providerClass
- aClass
object indicating the class or interface of the service providers being detected.loader
- the class loader to be used to load provider-configuration files and instantiate provider classes, ornull
if the system class loader (or, failing that the bootstrap class loader) is to be used.- Returns:
- An
Iterator
that yields provider objects for the given service, in some arbitrary order. The iterator will throw anError
if a provider-configuration file violates the specified format or if a provider class cannot be found and instantiated. - Throws:
IllegalArgumentException
- ifproviderClass
isnull
.
-
lookupProviders
public static <T> Iterator<T> lookupProviders(Class<T> providerClass)
Locates and incrementally instantiates the available providers of a given service using the context class loader. This convenience method is equivalent to:ClassLoader cl = Thread.currentThread().getContextClassLoader(); return Service.providers(service, cl);
- Parameters:
providerClass
- aClass
object indicating the class or interface of the service providers being detected.- Returns:
- An
Iterator
that yields provider objects for the given service, in some arbitrary order. The iterator will throw anError
if a provider-configuration file violates the specified format or if a provider class cannot be found and instantiated. - Throws:
IllegalArgumentException
- ifproviderClass
isnull
.
-
getCategories
public Iterator<Class<?>> getCategories()
Returns anIterator
ofClass
objects indicating the current set of categories. The iterator will be empty if no categories exist.- Returns:
- an
Iterator
containingClass
objects.
-
registerServiceProvider
public <T> boolean registerServiceProvider(T provider, Class<T> category)
Adds a service provider object to the registry. The provider is associated with the given category.If
provider
implements theRegisterableService
interface, itsonRegistration
method will be called. ItsonDeregistration
method will be called each time it is deregistered from a category, for example if a category is removed or the registry is garbage collected.- Parameters:
provider
- the service provide object to be registered.category
- the category under which to register the provider.- Returns:
- true if no provider of the same class was previously registered in the same category category.
- Throws:
IllegalArgumentException
- ifprovider
isnull
.IllegalArgumentException
- if there is no category corresponding tocategory
.ClassCastException
- if provider does not implement theClass
defined bycategory
.
-
registerServiceProvider
public void registerServiceProvider(Object provider)
Adds a service provider object to the registry. The provider is associated within each category present in the registry whoseClass
it implements.If
provider
implements theRegisterableService
interface, itsonRegistration
method will be called once for each category it is registered under. ItsonDeregistration
method will be called each time it is deregistered from a category or when the registry is finalized.- Parameters:
provider
- the service provider object to be registered.- Throws:
IllegalArgumentException
- ifprovider
isnull
.
-
registerServiceProviders
public void registerServiceProviders(Iterator<?> providers)
Adds a set of service provider objects, taken from anIterator
to the registry. Each provider is associated within each category present in the registry whoseClass
it implements.For each entry of
providers
that implements theRegisterableService
interface, itsonRegistration
method will be called once for each category it is registered under. ItsonDeregistration
method will be called each time it is deregistered from a category or when the registry is finalized.- Parameters:
providers
- an Iterator containing service provider objects to be registered.- Throws:
IllegalArgumentException
- ifproviders
isnull
or contains anull
entry.
-
deregisterServiceProvider
public <T> boolean deregisterServiceProvider(T provider, Class<T> category)
Removes a service provider object from the given category. If the provider was not previously registered, nothing happens andfalse
is returned. Otherwise,true
is returned. If an object of the same class asprovider
but not equal (using==
) toprovider
is registered, it will not be deregistered.If
provider
implements theRegisterableService
interface, itsonDeregistration
method will be called.- Parameters:
provider
- the service provider object to be deregistered.category
- the category from which to deregister the provider.- Returns:
true
if the provider was previously registered in the same category category,false
otherwise.- Throws:
IllegalArgumentException
- ifprovider
isnull
.IllegalArgumentException
- if there is no category corresponding tocategory
.ClassCastException
- if provider does not implement the class defined bycategory
.
-
deregisterServiceProvider
public void deregisterServiceProvider(Object provider)
Removes a service provider object from all categories that contain it.- Parameters:
provider
- the service provider object to be deregistered.- Throws:
IllegalArgumentException
- ifprovider
isnull
.
-
contains
public boolean contains(Object provider)
Returnstrue
ifprovider
is currently registered.- Parameters:
provider
- the service provider object to be queried.- Returns:
true
if the given provider has been registered.- Throws:
IllegalArgumentException
- ifprovider
isnull
.
-
getServiceProviders
public <T> Iterator<T> getServiceProviders(Class<T> category, boolean useOrdering)
Returns anIterator
containing all registered service providers in the given category. IfuseOrdering
isfalse
, the iterator will return all of the server provider objects in an arbitrary order. Otherwise, the ordering will respect any pairwise orderings that have been set. If the graph of pairwise orderings contains cycles, any providers that belong to a cycle will not be returned.- Parameters:
category
- the category to be retrieved from.useOrdering
-true
if pairwise orderings should be taken account in ordering the returned objects.- Returns:
- an
Iterator
containing service provider objects from the given category, possibly in order. - Throws:
IllegalArgumentException
- if there is no category corresponding tocategory
.
-
getServiceProviders
public <T> Iterator<T> getServiceProviders(Class<T> category, ServiceRegistry.Filter filter, boolean useOrdering)
Returns anIterator
containing service provider objects within a given category that satisfy a criterion imposed by the suppliedServiceRegistry.Filter
object'sfilter
method.The
useOrdering
argument controls the ordering of the results using the same rules asgetServiceProviders(Class, boolean)
.- Parameters:
category
- the category to be retrieved from.filter
- an instance ofServiceRegistry.Filter
whosefilter
method will be invoked.useOrdering
-true
if pairwise orderings should be taken account in ordering the returned objects.- Returns:
- an
Iterator
containing service provider objects from the given category, possibly in order. - Throws:
IllegalArgumentException
- if there is no category corresponding tocategory
.
-
getServiceProviderByClass
public <T> T getServiceProviderByClass(Class<T> providerClass)
Returns the currently registered service provider object that is of the given class type. At most one object of a given class is allowed to be registered at any given time. If no registered object has the desired class type,null
is returned.- Parameters:
providerClass
- theClass
of the desired service provider object.- Returns:
- a currently registered service provider object with the
desired
Class
type, ornull
is none is present. - Throws:
IllegalArgumentException
- ifproviderClass
isnull
.
-
setOrdering
public <T> boolean setOrdering(Class<T> category, T firstProvider, T secondProvider)
Sets a pairwise ordering between two service provider objects within a given category. If one or both objects are not currently registered within the given category, or if the desired ordering is already set, nothing happens andfalse
is returned. If the providers previously were ordered in the reverse direction, that ordering is removed.The ordering will be used by the
getServiceProviders
methods when theiruseOrdering
argument istrue
.- Parameters:
category
- aClass
object indicating the category under which the preference is to be established.firstProvider
- the preferred provider.secondProvider
- the provider to whichfirstProvider
is preferred.- Returns:
true
if a previously unset ordering was established.- Throws:
IllegalArgumentException
- if either provider isnull
or they are the same object.IllegalArgumentException
- if there is no category corresponding tocategory
.
-
unsetOrdering
public <T> boolean unsetOrdering(Class<T> category, T firstProvider, T secondProvider)
Sets a pairwise ordering between two service provider objects within a given category. If one or both objects are not currently registered within the given category, or if no ordering is currently set between them, nothing happens andfalse
is returned.The ordering will be used by the
getServiceProviders
methods when theiruseOrdering
argument istrue
.- Parameters:
category
- aClass
object indicating the category under which the preference is to be disestablished.firstProvider
- the formerly preferred provider.secondProvider
- the provider to whichfirstProvider
was formerly preferred.- Returns:
true
if a previously set ordering was disestablished.- Throws:
IllegalArgumentException
- if either provider isnull
or they are the same object.IllegalArgumentException
- if there is no category corresponding tocategory
.
-
deregisterAll
public void deregisterAll(Class<?> category)
Deregisters all service provider object currently registered under the given category.- Parameters:
category
- the category to be emptied.- Throws:
IllegalArgumentException
- if there is no category corresponding tocategory
.
-
deregisterAll
public void deregisterAll()
Deregisters all currently registered service providers from all categories.
-
finalize
public void finalize() throws Throwable
Finalizes this object prior to garbage collection. ThederegisterAll
method is called to deregister all currently registered service providers. This method should not be called from application code.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/imageio/spi/serviceregistry.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.