Class TLcd2DBoundsIndexedModel
- All Implemented Interfaces:
ILcd2DBoundsIndexedModel,ILcd2DBoundsInteractable,ILcdIntegerIndexedModel,ILcdModel,ILcdBounded,ILcdDisposable,Serializable,AutoCloseable
- Direct Known Subclasses:
TLcd2DBoundsIndexedModelTreeNode,TLcdMagneticNorthModel,TLcdNetCDFFilteredModel
ILcd2DBoundsIndexedModel that is also an
ILcdIntegerIndexedModel.
This model stores its elements in a spatial index, based on the bounds of the
elements. All elements contained in this model should therefore implement
ILcdBounded or expose it.
Users should notify this model whenever the bounds of an
element in the model are changed, to allow the model to update its index.
This can be done by means of the elementChanged(Object, int) method.
All elements are additionally stored in a linear index, allowing fast integer- based queries.
If it is unclear which model to use, this model is a good first choice that
has a good overall performance without using too much resources or adding
too much complexity to the application. The package
documentation provides a detailed overview of all model implementations that
are available in this package, and their usage.
The current implementation creates a spatial index based on an R-tree if no initial bounds are specified, or on a BSP-tree if initial bounds are specified. The R-tree is generally slower to build and to modify, but it is slightly faster to query and more memory-efficient.
Although the BSP-tree requires initial bounds, it automatically grows when an element is added outside these bounds. This is achieved by unfolding the bounding rectangle of the tree until the element is contained in it. This unfolding may lead to bounds that are significantly larger than the minimal bounds. Choosing proper initial bounds therefore helps achieving a good performance for accessing the model.
This class is thread-safe for read-only access of its elements.
For read-write access, external locking must be used, typically on the model
itself. The utility class TLcdLockUtil provides convenient methods
readLock(Object),
readUnlock(Object),
writeLock(Object), and
writeUnlock(Object) to do so.
Before LuciadLightspeed version 7.0, the methods for adding, updating, removing, and
accessing elements were synchronized. The current implementation no longer
performs this internal synchronization, mainly for allowing concurrent
read-only access and therefore better performance in multi-threaded
applications. Note that internal synchronization on its own was not
sufficient for safe concurrent reading and writing (e.g. due to the
elements() method, which returns an enumeration).
If internal synchronization is required for backward compatibility, one can
set the static compatibility flag with setSynchronized(boolean), or
one can define the system property
com.luciad.model.TLcd2DBoundsIndexedModel.synchronized
when starting up the Java Virtual Machine, typically as follows:
java -Dcom.luciad.model.TLcd2DBoundsIndexedModel.synchronized ....Internal synchronization will then be performed, as in previous versions.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.luciad.model.ILcdModel
ILcdModel.Query -
Field Summary
Fields inherited from class com.luciad.model.ALcdModel
fModelEventSupportFields inherited from interface com.luciad.model.ILcdModel
FIRE_LATER, FIRE_NOW, NO_EVENT -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new, emptyTLcd2DBoundsIndexedModelwith a defaultTLcdModelDescriptor.TLcd2DBoundsIndexedModel(ILcdModelReference aModelReference, ILcdModelDescriptor aModelDescriptor) Constructs a new, emptyTLcd2DBoundsIndexedModel, initialized with the specified model reference and model descriptor.TLcd2DBoundsIndexedModel(ILcdBounds aBounds) Constructs a new emptyTLcd2DBoundsIndexedModelwith a defaultTLcdModelDescriptor. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddElement(Object aElement, int aEventMode) Adds the specified element to this model.voidallElementsChanged(int aFireEventMode) Notifies this model that all elements have changed.intapplyOnInteract2DBounds(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY) Applies the specified function to all the model elements of which the 2D bounds overlap with the specified bounds.intapplyOnInteract2DBounds(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY, double aMinSizeX, double aMinSizeY, boolean aIncludePoints) Applies the specified function to all the elements of which the 2D bounds overlap with the specified bounds.booleancanAddElement(Object aElement) This implementation returnstrueif and only if all of the following criteria are met: The specified element implements or exposesILcdBounded. If an addition filter is set,filter.accept(aElement)returnstrue.booleancanRemoveElement(Object aElement) This implementation returnstrueif and only if all of the following criteria are met: The specified element implements or exposesILcdBounded. If a removal filter is set,filter.accept(aElement)returnstrue.booleanReturnstrueif the specified element is contained in this model,falseotherwise.elementAt(int aIndex) Returns the element at the specified index.voidelementChanged(Object aElement, int aFireEventMode) Notifies this model that the specified element has changed.elements()Returns an enumeration over all elements of this model.voidelementsChanged(Vector aElements, int aFireEventMode) Notifies this model that the elements in the specified vector have changed.Returns the filter that is used to control which elements are accepted for addition to this model.Returns theILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.Returns the filter that is used to control which elements are accepted for removal from this model.intReturns the index of the first occurrence of the specified element in the model, or -1 if this model does not contain the element.static booleanReturns whether accessing elements is synchronized.voidremoveAllElements(int aEventMode) Removes all elements from this model.voidremoveElement(Object aElement, int aEventMode) Removes the specified element from this model.voidsetAddElementFilter(ILcdFilter aFilter) Sets the filter that is used to control which elements are accepted for addition to this model.voidsetRemoveElementFilter(ILcdFilter aFilter) Sets the filter that is used to control which elements are accepted for removal from this model.static voidsetSynchronized(boolean aSynchronized) Specifies whether accessing elements should be synchronized, for backward compatibility.intsize()Returns the number of elements in this model.Methods inherited from class com.luciad.model.ALcdModel
addElements, addModelListener, allElementsRemoved, dispose, elementAdded, elementRemoved, elementsAdded, elementsRemoved, fireCollectedModelChanges, getModelDescriptor, getModelEncoder, getModelMetadata, getModelReference, initializeTransientValues, isClassTraceOn, isTraceOn, removeElements, removeModelListener, setClassTraceOn, setModelDescriptor, setModelDisposer, setModelEncoder, setModelMetadataFunction, setModelReference, setTraceOnMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.luciad.model.ILcd2DBoundsIndexedModel
queryMethods inherited from interface com.luciad.util.ILcdDisposable
closeMethods inherited from interface com.luciad.model.ILcdModel
addElements, addModelListener, dispose, fireCollectedModelChanges, getModelDescriptor, getModelEncoder, getModelMetadata, getModelReference, removeElements, removeModelListener
-
Constructor Details
-
TLcd2DBoundsIndexedModel
public TLcd2DBoundsIndexedModel()Constructs a new, emptyTLcd2DBoundsIndexedModelwith a defaultTLcdModelDescriptor. -
TLcd2DBoundsIndexedModel
public TLcd2DBoundsIndexedModel(ILcdModelReference aModelReference, ILcdModelDescriptor aModelDescriptor) Constructs a new, emptyTLcd2DBoundsIndexedModel, initialized with the specified model reference and model descriptor.- Parameters:
aModelReference- the model reference describing the coordinate system used in this model.aModelDescriptor- the model descriptor providing meta information about this model.
-
TLcd2DBoundsIndexedModel
Constructs a new emptyTLcd2DBoundsIndexedModelwith a defaultTLcdModelDescriptor.- Parameters:
aBounds- the initial bounds for the spatial indexing scheme of the model. They should ideally encompass all the elements the user plans to add to the model, although this model will extend its bounds when required, by 'unfolding' the rectangle in the appropriate direction, i.e. by doubling the size of the bounds. The bounds of the entire model space are a safe bet, although they will be less efficient when the model is much smaller.
-
-
Method Details
-
setSynchronized
public static void setSynchronized(boolean aSynchronized) Specifies whether accessing elements should be synchronized, for backward compatibility. The default isfalse. -
isSynchronized
public static boolean isSynchronized()Returns whether accessing elements is synchronized. -
setAddElementFilter
Sets the filter that is used to control which elements are accepted for addition to this model. This filter is used by thecanAddElement(Object)method, to decide whether an element can be added to this model or not. The filter should not explicitly check whether a specified element isILcdBounded, this check will always be performed by thecanAddElementmethod. If no filter is set, only theinstanceof ILcdBoundedtest will be performed. By default, no filter is set.- Parameters:
aFilter- the filter to be used to control which elements are accepted for addition to this model.- See Also:
-
getAddElementFilter
Returns the filter that is used to control which elements are accepted for addition to this model.- Returns:
- the filter that is used to control which elements are accepted for addition to this model.
- See Also:
-
setRemoveElementFilter
Sets the filter that is used to control which elements are accepted for removal from this model. This filter is used by thecanRemoveElement(Object)method, to decide whether an element can be removed from this model or not. The filter should not explicitly check whether a specified element isILcdBounded, this check will always be performed by thecanRemoveElementmethod. If no filter is set, only theinstanceof ILcdBoundedtest will be performed. By default, no filter is set.- Parameters:
aFilter- the filter to be used to control which elements are accepted for removal from this model.- See Also:
-
getRemoveElementFilter
Returns the filter that is used to control which elements are accepted for removal from this model.- Returns:
- the filter that is used to control which elements are accepted for removal from this model.
- See Also:
-
canAddElement
This implementation returns
trueif and only if all of the following criteria are met:- The specified element implements or exposes
ILcdBounded. - If an addition filter is set,
filter.accept(aElement)returnstrue.
- Specified by:
canAddElementin interfaceILcdModel- Overrides:
canAddElementin classALcdModel- Parameters:
aElement- theObjectto be checked.- Returns:
- true if the specified element can be added to this model, false otherwise.
- The specified element implements or exposes
-
addElement
Adds the specified element to this model.Models that support this operation may place limitations on what elements may be added to this model. For example, implementations that are based on a spatial indexing structure will require that elements implement
ILcdBounded.When adding an element, the user should make sure that
canAddElement(aElement)holds, and that the element's geometry is expressed in the same model reference as this model. It is generally undefined what happens if an invalid element is added.Implementations of this interface should clearly specify in their documentation any restrictions on what elements may be added. Although it is unspecified what happens if the preconditions are not met, implementations are encouraged to throw meaningful exceptions (for example,
NullPointerException, IllegalArgumentException, ClassCastException, UnsupportedOperationException), whenever possible.This implementation always throws an
UnsupportedOperationException.This implementation calls
ALcdModel.elementAdded(Object, int)after the element has been added, to send a model change event to this model's listeners.- Specified by:
addElementin interfaceILcdModel- Overrides:
addElementin classALcdModel- Parameters:
aElement- the element to be added to this model.aEventMode- the mode for sending out the model change event. This can beFIRE_LATERorNO_EVENT.- See Also:
-
canRemoveElement
This implementation returns
trueif and only if all of the following criteria are met:- The specified element implements or exposes
ILcdBounded. - If a removal filter is set,
filter.accept(aElement)returnstrue.
- Specified by:
canRemoveElementin interfaceILcdModel- Overrides:
canRemoveElementin classALcdModel- Parameters:
aElement- the element to be verified.- Returns:
trueif the specified element can be removed from this model,falseotherwise.
- The specified element implements or exposes
-
removeElement
Removes the specified element from this model. If the specified element is not contained in this model, this method has no effect.Although it is unspecified what happens if the preconditions are not met, implementations are encouraged to throw meaningful exceptions (for example,
NullPointerException, IllegalArgumentException, ClassCastException, UnsupportedOperationException), whenever possible.This implementation always throws an
UnsupportedOperationException.This implementation calls
ALcdModel.elementRemoved(Object, int)after the element has been removed, to sent a model change event to this model's listeners.- Specified by:
removeElementin interfaceILcdModel- Overrides:
removeElementin classALcdModel- Parameters:
aElement- the element to be removed from this model.aEventMode- the mode for sending out the model change event. This can beFIRE_LATERorNO_EVENT.- See Also:
-
removeAllElements
public void removeAllElements(int aEventMode) Removes all elements from this model.If an element cannot be removed, this method will return at the first failure. Succeeding elements won't be removed.
Although it is unspecified what happens if the preconditions are not met, implementations are encouraged to throw meaningful exceptions (for example,
NullPointerException, IllegalArgumentException, ClassCastException, UnsupportedOperationException), whenever possible.This implementation iterates over all elements in the model, and calls
removeElement(Object, int)for each element to be removed, using event modeNO_EVENTif the specified event mode isNO_EVENT,FIRE_LATERotherwise. If the specified event mode isFIRE_NOW,fireCollectedModelChanges()is called afterwards.This implementation calls
ALcdModel.allElementsRemoved(int)after the elements have been removed, to sent a model change event to this model's listeners.- Specified by:
removeAllElementsin interfaceILcdModel- Overrides:
removeAllElementsin classALcdModel- Parameters:
aEventMode- the mode for sending out the model change event. This can beFIRE_LATERorNO_EVENT.
-
elementsChanged
Description copied from class:ALcdModelNotifies this model that the elements in the specified vector have changed.This implementation calls
TLcdModelChangedEventSupport#elementsChanged(java.util.Vector, int).- Specified by:
elementsChangedin interfaceILcdModel- Overrides:
elementsChangedin classALcdModel- Parameters:
aElements- the vector of elements that have changed.aFireEventMode- the mode for sending out the model change event. This can beFIRE_LATERorNO_EVENT.
-
allElementsChanged
public void allElementsChanged(int aFireEventMode) Description copied from class:ALcdModelNotifies this model that all elements have changed.This implementation calls
TLcdModelChangedEventSupport#allElementsChanged(int).- Overrides:
allElementsChangedin classALcdModel- Parameters:
aFireEventMode- the mode for sending out the model change event. This can be one ofFIRE_NOW,FIRE_LATERorNO_EVENT. In case ofFIRE_NOWmode, only one event will be fired, containing all changes.
-
elementChanged
Description copied from class:ALcdModelNotifies this model that the specified element has changed.This implementation calls
TLcdModelChangedEventSupport#elementChanged(Object, int).- Specified by:
elementChangedin interfaceILcdModel- Overrides:
elementChangedin classALcdModel- Parameters:
aElement- the element that has changed.aFireEventMode- the mode for sending out the model change event. This can beFIRE_LATERorNO_EVENT.
-
contains
Returnstrueif the specified element is contained in this model,falseotherwise.- Parameters:
aElement- the element to be tested.- Returns:
trueif the specified element is contained in this model,falseotherwise.
-
size
public int size()Description copied from interface:ILcdIntegerIndexedModelReturns the number of elements in this model.- Specified by:
sizein interfaceILcdIntegerIndexedModel- Returns:
- the number of elements in this model.
-
elements
Description copied from interface:ILcdModelReturns an enumeration over all elements of this model. The order in which the elements are enumerated is unspecified by default. -
elementAt
Description copied from interface:ILcdIntegerIndexedModelReturns the element at the specified index.- Specified by:
elementAtin interfaceILcdIntegerIndexedModel- Parameters:
aIndex- an index into thisILcdModel.- Returns:
- the element at the specified index.
-
indexOf
Description copied from interface:ILcdIntegerIndexedModelReturns the index of the first occurrence of the specified element in the model, or -1 if this model does not contain the element. More formally: returns the smallestifor whichthis.elementAt(i).equals(aElement).- Specified by:
indexOfin interfaceILcdIntegerIndexedModel- Parameters:
aElement- the element to search for.- Returns:
- the index of the first occurrence of the specified element in model vector, or -1 if this model does not contain the element.
-
getBounds
Description copied from interface:ILcdBoundedReturns theILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.If the geometry does not allow retrieving valid bounds (for example a polyline with 0 points) the return value is unspecified. It is highly recommended to return an
undefinedbounds. You can create undefined bounds using the default constructors ofTLcdLonLatBoundsorTLcdXYBounds.- Specified by:
getBoundsin interfaceILcdBounded- Returns:
- the
ILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.
-
applyOnInteract2DBounds
public int applyOnInteract2DBounds(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY) Applies the specified function to all the model elements of which the 2D bounds overlap with the specified bounds. By default, the order in which the function is applied on the elements is unspecified and depends on the implementation. The return value of the specified function is used as a stop criterion: the spatial query is interrupted if the function returnsfalse.This implementation delegates to
applyOnInteract2DBounds(com.luciad.shape.ILcdBounds, boolean, com.luciad.util.ILcdFunction, double, double, double, double, boolean)using the same parameters, using0.0as a value foraMinSizeXandaMinSizeYandfalseforaIncludePoints.- Specified by:
applyOnInteract2DBoundsin interfaceILcd2DBoundsIndexedModel- Parameters:
aBounds- the rectangle to test overlap with.aStrictOverlap- iffalse, the spatial search may return more elements than the ones strictly overlapping; iftrue, the search only returns the elements that are overlapping. The latter mode is more precise, but it may be slower.aFunctionToApply- the function to apply on each element that overlaps with the given bounds. The return value of the specified function is used as a stop criterion: the spatial query is interrupted if the function returnsfalse.aPrecisionX- the precision required in the x dimension, expressed in model units. For example, for a cartesian grid system expressed in meters, the values should be expressed in meters as well, for a geodetic coordinate system the accuracy values should be expressed in degrees.The precision is useful in combination with multi-leveled data (multiple representations of the same object, but with varying accuracy), so that the most appropriate accuracy level can be used. 0 means best possible accuracy, but it might trigger lazy-loaded implementations to load lots of data.
aPrecisionY- the precision required in the y dimension, expressed in model units.- Returns:
- the number of elements to which the
ILcdFunctionhas been applied.
-
applyOnInteract2DBounds
public int applyOnInteract2DBounds(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY, double aMinSizeX, double aMinSizeY, boolean aIncludePoints) Description copied from interface:ILcd2DBoundsInteractableApplies the specified function to all the elements of which the 2D bounds overlap with the specified bounds. The order in which the function is applied on the elements is unspecified and depends on the implementation. Only elements that have at least the specified minimal size in the x dimension or in the y dimension are considered. This can be useful for quickly eliminating elements that are too small to be visible in a view, for instance. If required, an exception can be made for point elements, which have a size of 0 by 0. They can be forced to be considered, even though they would always be rejected as being too small for any sizes larger than 0. The return value of the specified function is used as a stop criterion: the spatial query will be interrupted as soon as the function returnsfalsefor an element it was applied on.- Specified by:
applyOnInteract2DBoundsin interfaceILcd2DBoundsIndexedModel- Specified by:
applyOnInteract2DBoundsin interfaceILcd2DBoundsInteractable- Parameters:
aBounds- the rectangle to test overlap with.aStrictOverlap- iffalse, the spatial search may return more elements than the ones strictly overlapping; iftrue, the search only returns the elements that are overlapping. The latter mode is more precise, but it may be slower.aFunctionToApply- the function to apply on each element that overlaps with the given bounds.aPrecisionX- the precision required in the x dimension, expressed in model units. For example, for a cartesian grid system expressed in meters, the values should be expressed in meters as well, for a geodetic coordinate system the accuracy values should be expressed in degrees.The precision is useful in combination with multi-leveled data (multiple representations of the same object, but with varying accuracy), so that the most appropriate accuracy level can be used. 0 means best possible accuracy, but it might trigger lazy-loaded implementations to load lots of data.
aPrecisionY- the precision required in the y dimension, expressed in model units.aMinSizeX- the minimal element size in the x dimension (as inILcdBounds.getWidth()), expressed in model units. Elements that are smaller than this size will be skipped. This may, for example, be useful when improving the efficiency of painting elements by skipping elements that are smaller than some threshold (e.g. one pixel, converted to model units).aMinSizeY- the minimal element size in the y dimension (as inILcdBounds.getHeight()), expressed in model units.aIncludePoints- iftrue, zero-sized elements (points) are considered as well, even though they might be smaller than the minimum size.- Returns:
- the number of elements to which the
ILcdFunctionhas been applied.
-