Module org.apache.sis.referencing
Class IdentifiedObjectSet<T extends IdentifiedObject>
Object
AbstractCollection<T>
AbstractSet<T>
IdentifiedObjectSet<T>
- Type Parameters:
T
- the type of objects to be included in this set.
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,Set<T>
,CheckedContainer<T>
,Localized
public class IdentifiedObjectSet<T extends IdentifiedObject>
extends AbstractSet<T>
implements CheckedContainer<T>, Localized
A lazy set of
IdentifiedObject
instances created from their authority codes only when first needed.
This set delegates IdentifiedObject
creation to the most appropriate createFoo(String)
method
of the AuthorityFactory
given at construction time.
Elements can be added to this collection with calls to addAuthorityCode(String)
for deferred
object creation, or to add(IdentifiedObject)
for objects
that are already instantiated. This collection cannot contain two IdentifiedObject
instances
having the same identifier. However, the identifiers used by this class can be controlled by overriding
getAuthorityCode(IdentifiedObject)
.
Iterations over elements in this collection preserve insertion order.
Purpose
IdentifiedObjectSet
can be used as the set returned by implementations of the
GeodeticAuthorityFactory.createFromCoordinateReferenceSystemCodes(String, String)
method.
Deferred creation can have great performance impact since some set may contain as much as 40 entries
(e.g. transformations from "ED50" (EPSG:4230) to "WGS 84" (EPSG:4326))
while some users only want to look for the first entry.
Exception handling
If the underlying factory failed to creates an object because of an unsupported operation method (NoSuchIdentifierException
), the exception is logged at Level.WARNING
and the iteration continue.
If the operation creation failed for any other kind of reason (FactoryException
), then the exception is
re-thrown as an unchecked BackingStoreException
. This default behavior can be changed by overriding
the isRecoverableFailure(FactoryException)
method.
Thread safety
This class is thread-safe is the underlying factory is also thread-safe. However, implementers are encouraged to wrap in unmodifiable set if they intent to cacheIdentifiedObjectSet
instances.- Since:
- 0.7
-
Field Summary
Modifier and TypeFieldDescriptionprotected final AuthorityFactory
The factory to use for creatingIdentifiedObject
s when first needed. -
Constructor Summary
ConstructorDescriptionIdentifiedObjectSet
(AuthorityFactory factory, Class<T> type) Creates an initially empty set. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Ensures that this collection contains the specified object.void
addAuthorityCode
(String code) Ensures that this collection contains an object for the specified authority code.void
clear()
Removes all of the elements from this collection.boolean
Returnstrue
if this collection contains the specifiedIdentifiedObject
.protected T
createObject
(String code) Creates an object for the specified authority code.protected String
getAuthorityCode
(T object) Returns the identifier for the specified object.String[]
Returns the authority codes of allIdentifiedObject
s contained in this collection, in insertion order.Returns the type ofIdentifiedObject
included in this set.Returns the locale to use for error messages and warnings.protected boolean
isRecoverableFailure
(FactoryException exception) Returnstrue
if the specified exception should be handled as a recoverable failure.iterator()
Returns an iterator over the objects in this set.boolean
Removes the specifiedIdentifiedObject
from this collection, if it is present.boolean
removeAll
(Collection<?> collection) Removes from this collection all of its elements that are contained in the specified collection.void
resolve
(int n) Ensures that the n first objects in this set are created.void
setAuthorityCodes
(String... codes) Sets the content of this collection to the object identified by the given codes.int
size()
Returns the number of objects available in this set.Methods inherited from class AbstractSet
equals, hashCode
Methods inherited from class AbstractCollection
addAll, containsAll, isEmpty, retainAll, toArray, toArray, toString
Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface Set
addAll, containsAll, isEmpty, retainAll, spliterator, toArray, toArray
-
Field Details
-
factory
The factory to use for creatingIdentifiedObject
s when first needed. This is the authority factory given at construction time.
-
-
Constructor Details
-
IdentifiedObjectSet
Creates an initially empty set. The set can be populated after construction by calls toaddAuthorityCode(String)
for deferredIdentifiedObject
creation, or toadd(IdentifiedObject)
for already instantiated objects.- Parameters:
factory
- the factory to use for deferredIdentifiedObject
instances creation.type
- the type of objects included in this set.
-
-
Method Details
-
getLocale
Returns the locale to use for error messages and warnings. The default implementation inherits thefactory
locale, if any.- Specified by:
getLocale
in interfaceLocalized
- Returns:
- the locale, or
null
if not explicitly defined.
-
getElementType
Returns the type ofIdentifiedObject
included in this set.- Specified by:
getElementType
in interfaceCheckedContainer<T extends IdentifiedObject>
- Returns:
- the type of
IdentifiedObject
included in this set.
-
clear
public void clear()Removes all of the elements from this collection.- Specified by:
clear
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
clear
in interfaceSet<T extends IdentifiedObject>
- Overrides:
clear
in classAbstractCollection<T extends IdentifiedObject>
-
size
public int size()Returns the number of objects available in this set. Note that this number may decrease during the iteration process if the creation of someIdentifiedObject
s failed.- Specified by:
size
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
size
in interfaceSet<T extends IdentifiedObject>
- Specified by:
size
in classAbstractCollection<T extends IdentifiedObject>
- Returns:
- the number of objects available in this set.
-
getAuthorityCodes
Returns the authority codes of allIdentifiedObject
s contained in this collection, in insertion order. This method does not trig the creation of any object.- Returns:
- the authority codes in iteration order.
-
setAuthorityCodes
Sets the content of this collection to the object identified by the given codes. For any code in the given sequence, this method will preserve the correspondingIdentifiedObject
instance if it was already created. Otherwise objects will be created only when first needed.Use case
This method is typically used together withgetAuthorityCodes()
for altering the iteration order on the basis of authority codes. If the specifiedcodes
sequence contains the same elements than the ones in the array returned bygetAuthorityCodes()
but in a different order, then this method just sets the new ordering.- Parameters:
codes
- the authority codes of identified objects to store in this set.- See Also:
-
addAuthorityCode
Ensures that this collection contains an object for the specified authority code. If this collection does not contain any element for the given code, then this method will instantiate anIdentifiedObject
for the given code only when first needed. Otherwise this collection is unchanged.- Parameters:
code
- the code authority code of theIdentifiedObject
to include in this set.
-
add
Ensures that this collection contains the specified object. This collection does not allow multiple objects for the same authority code. If this collection already contains an object using the same authority code than the given object, then the old object is replaced by the new one regardless of whether the objects themselves are equal or not.- Specified by:
add
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
add
in interfaceSet<T extends IdentifiedObject>
- Overrides:
add
in classAbstractCollection<T extends IdentifiedObject>
- Parameters:
object
- the object to add to the set.- Returns:
true
if this set changed as a result of this call.- See Also:
-
contains
Returnstrue
if this collection contains the specifiedIdentifiedObject
.- Specified by:
contains
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
contains
in interfaceSet<T extends IdentifiedObject>
- Overrides:
contains
in classAbstractCollection<T extends IdentifiedObject>
- Parameters:
object
- theIdentifiedObject
to test for presence in this set.- Returns:
true
if the given object is presents in this set.
-
remove
Removes the specifiedIdentifiedObject
from this collection, if it is present.- Specified by:
remove
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
remove
in interfaceSet<T extends IdentifiedObject>
- Overrides:
remove
in classAbstractCollection<T extends IdentifiedObject>
- Parameters:
object
- theIdentifiedObject
to remove from this set.- Returns:
true
if this set changed as a result of this call.
-
removeAll
Removes from this collection all of its elements that are contained in the specified collection.- Specified by:
removeAll
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
removeAll
in interfaceSet<T extends IdentifiedObject>
- Overrides:
removeAll
in classAbstractSet<T extends IdentifiedObject>
- Parameters:
collection
- theIdentifiedObject
s to remove from this set.- Returns:
true
if this set changed as a result of this call.
-
iterator
Returns an iterator over the objects in this set. If the iteration encounter any kind ofFactoryException
other thanNoSuchIdentifierException
, then the exception will be re-thrown as an uncheckedBackingStoreException
.This iterator is not thread safe – iteration should be done in a single thread. However, the iterator is robust to concurrent changes in
IdentifiedObjectSet
during iteration.- Specified by:
iterator
in interfaceCollection<T extends IdentifiedObject>
- Specified by:
iterator
in interfaceIterable<T extends IdentifiedObject>
- Specified by:
iterator
in interfaceSet<T extends IdentifiedObject>
- Specified by:
iterator
in classAbstractCollection<T extends IdentifiedObject>
- Returns:
- an iterator over all
IdentifiedObject
instances in this set, in insertion order. - Throws:
BackingStoreException
- if an error occurred while creating the iterator.
-
resolve
Ensures that the n first objects in this set are created. This method can be invoked for making sure that the underlying factory is really capable to create at least one object.FactoryException
(except the ones accepted as recoverable failures) are thrown as if they were never wrapped intoBackingStoreException
.- Parameters:
n
- the number of object to resolve. If this number is equal or greater thansize()
, then this method ensures that allIdentifiedObject
instances in this collection are created.- Throws:
FactoryException
- if an object creation failed.
-
getAuthorityCode
Returns the identifier for the specified object. The default implementation takes the first of the following identifier which is found:- An identifier allocated by the authority given by
factory.getAuthority()
. - The first object identifier, regardless its authority.
- The first object name, regardless its authority.
- Parameters:
object
- the object for which to get the authority code.- Returns:
- the authority code of the given identified object.
- An identifier allocated by the authority given by
-
createObject
Creates an object for the specified authority code. This method is invoked during the iteration process if an object was not already created.- Parameters:
code
- the code for which to create the identified object.- Returns:
- the identified object created from the given code.
- Throws:
FactoryException
- if the object creation failed.
-
isRecoverableFailure
Returnstrue
if the specified exception should be handled as a recoverable failure. This method is invoked during the iteration process if the factory failed to create some objects. If this method returnstrue
for the given exception, then the exception will be logged atLevel.WARNING
. If this method returnsfalse
, then the exception will be re-thrown as aBackingStoreException
.The default implementation applies the following rules:
- If
NoSuchAuthorityCodeException
, returnsfalse
since failure to find a code declared in the collection would be an inconsistency. Note that this exception is a subtype ofNoSuchIdentifierException
, so it must be tested before the last case below. - If
NoSuchIdentifierException
, returnstrue
since this exception is caused by an attempt to create a parameterized transform for an unimplemented operation. - If
MissingFactoryResourceException
, returnstrue
. - Otherwise returns
false
.
- Parameters:
exception
- the exception that occurred while creating an object.- Returns:
true
if the given exception should be considered recoverable, orfalse
if it should be considered fatal.
- If
-