public class CoverageDefinitionOnSingleObject extends DefinitionalObject
Modifier | Constructor and Description |
---|---|
|
CoverageDefinitionOnSingleObject()
Initializes a new instance with default values.
|
protected |
CoverageDefinitionOnSingleObject(CoverageDefinitionOnSingleObject existingInstance,
CopyContext context)
Initializes a new instance as a copy of an existing instance.
|
|
CoverageDefinitionOnSingleObject(IServiceProvider coverageTarget)
Initializes a new instance with a specified coverage target.
|
Modifier and Type | Method and Description |
---|---|
void |
addAsset(AssetDefinition assetDefinition)
Add an asset to the coverage definition.
|
void |
addAsset(Object assetKey,
AccessQuery query)
Add an asset to the coverage definition.
|
void |
addAssetRange(Iterable<? extends AssetDefinition> assets)
Add a range of assets to the coverage definition.
|
protected boolean |
checkForSameDefinition(CoverageDefinitionOnSingleObject other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
protected boolean |
checkForSameDefinition(DefinitionalObject other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
Object |
clone(CopyContext context)
Clones this object using the specified context.
|
CoverageQueryResult |
computeCoverage(JulianDate start,
JulianDate stop)
Computes the coverage intervals.
|
CoverageQueryResult |
computeCoverage(JulianDate start,
JulianDate stop,
ITrackCalculationProgress tracker)
Computes the coverage intervals.
|
CoverageQueryResult |
computeCoverage(TimeIntervalCollection consideredIntervals)
Computes the coverage intervals.
|
CoverageQueryResult |
computeCoverage(TimeIntervalCollection consideredIntervals,
ITrackCalculationProgress tracker)
Computes the coverage intervals.
|
protected int |
computeCurrentDefinitionHashCode()
Computes a hash code based on the current properties of this object.
|
void |
enumerateDependencies(DependencyEnumerator enumerator)
Enumerates the dependencies of this object by calling
DependencyEnumerator#enumerate(T) for each object that this object directly depends upon. |
List<AssetDefinition> |
getAssets()
|
IServiceProvider |
getCoverageTarget()
Gets the object which is the target of the coverage calculation
|
CoverageFilter |
getFilter()
Gets a constraint indicating how many assets must have access in order to have coverage
|
void |
removeAllAssets()
Remove all assets from the coverage definition.
|
void |
removeAsset(AssetDefinition assetDefinition)
Removes the specified asset definition from the list of assets.
|
void |
removeAsset(Object asset)
Removes the specified asset from the list of assets.
|
void |
setCoverageTarget(IServiceProvider value)
Sets the object which is the target of the coverage calculation
|
void |
setFilter(CoverageFilter value)
Sets a constraint indicating how many assets must have access in order to have coverage
|
areSameDefinition, areSameDefinition, areSameDefinition, areSameDefinition, areSameDefinition, collectionItemsAreSameDefinition, collectionItemsAreSameDefinition, collectionItemsAreSameDefinition, dictionaryItemsAreSameDefinition, freeze, freezeAggregatedObjects, getCollectionHashCode, getCollectionHashCode, getCollectionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDictionaryHashCode, getIsFrozen, isSameDefinition, throwIfFrozen
public CoverageDefinitionOnSingleObject()
Filter
(get
/ set
) defaults to CoverageFilterType.AT_LEAST_N
where N is 1.public CoverageDefinitionOnSingleObject(IServiceProvider coverageTarget)
coverageTarget
- The coverage target to analyze.protected CoverageDefinitionOnSingleObject(@Nonnull CoverageDefinitionOnSingleObject existingInstance, @Nonnull CopyContext context)
See ICloneWithContext.clone(CopyContext)
for more information about how to implement this constructor
in a derived class.
existingInstance
- The existing instance to copy.context
- A CopyContext
that controls the depth of the copy.ArgumentNullException
- Thrown when existingInstance
or context
is null
.public Object clone(CopyContext context)
This method should be implemented to call a copy constructor on the class of the
object being cloned. The copy constructor should take the CopyContext
as a parameter
in addition to the existing instance to copy. The copy constructor should first call
CopyContext.addObjectMapping(T, T)
to identify the newly constructed instance
as a copy of the existing instance. It should then copy all fields, using
CopyContext.updateReference(T)
to copy any reference fields.
A typical implementation of ICloneWithContext
:
public static class MyClass implements ICloneWithContext {
public MyClass(MyClass existingInstance, CopyContext context) {
context.addObjectMapping(existingInstance, this);
someReference = context.updateReference(existingInstance.someReference);
}
@Override
public final Object clone(CopyContext context) {
return new MyClass(this, context);
}
private Object someReference;
}
In general, all fields that are reference types should be copied with a call to
CopyContext.updateReference(T)
. There are a couple of exceptions:
If one of these exceptions applies, the CopyContext
should be given an opportunity
to update the reference before the reference is copied explicitly. Use
CopyContext.updateReference(T)
to update the reference. If CopyContext.updateReference(T)
returns
the original object, indicating that the context does not have a replacement registered,
then copy the object manually by invoking a Clone method, a copy constructor, or by manually
constructing a new instance and copying the values.
alwaysCopy = context.updateReference(existingInstance.alwaysCopy);
if (existingInstance.alwaysCopy != null && alwaysCopy == existingInstance.alwaysCopy) {
alwaysCopy = (AlwaysCopy) existingInstance.alwaysCopy.clone(context);
}
If you are implementing an evaluator (a class that implements IEvaluator
), the
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
method shares some responsibilities with the
copy context constructor. Code duplication can be avoided by doing the following:
CopyContext.updateReference(T)
. You should still call CopyContext.updateReference(T)
on any references to
non-evaluators.
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
as the last line in the constructor and pass it the
same CopyContext
passed to the constructor.
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
as normal. See the reference documentation for
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
for more information on implementing that method.
public MyClass(MyClass existingInstance, CopyContext context) {
super(existingInstance, context);
someReference = context.updateReference(existingInstance.someReference);
evaluatorReference = existingInstance.evaluatorReference;
updateEvaluatorReferences(context);
}
@Override
public void updateEvaluatorReferences(CopyContext context) {
evaluatorReference = context.updateReference(evaluatorReference);
}
@Override
public Object clone(CopyContext context) {
return new MyClass(this, context);
}
private Object someReference;
private IEvaluator evaluatorReference;
clone
in interface ICloneWithContext
clone
in class DefinitionalObject
context
- The context to use to perform the copy.protected final boolean checkForSameDefinition(DefinitionalObject other)
true
if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false
for all derived-class instances.
Derived classes should check the type of other
to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object)
.checkForSameDefinition
in class DefinitionalObject
other
- The other instance to compare to this one.true
if the two objects are defined equivalently; otherwise false
.protected boolean checkForSameDefinition(@Nullable CoverageDefinitionOnSingleObject other)
true
if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false
for all derived-class instances.
Derived classes should check the type of other
to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object)
.other
- The other instance to compare to this one.true
if the two objects are defined equivalently; otherwise false
.protected int computeCurrentDefinitionHashCode()
CoverageDefinitionOnSingleObject.checkForSameDefinition(agi.foundation.infrastructure.DefinitionalObject)
method.computeCurrentDefinitionHashCode
in class DefinitionalObject
public void enumerateDependencies(DependencyEnumerator enumerator)
DependencyEnumerator#enumerate(T)
for each object that this object directly depends upon.
Derived classes which contain additional dependencies MUST override this method, call the base
implementation, and enumerate dependencies introduced by the derived class.enumerateDependencies
in interface IEnumerateDependencies
enumerateDependencies
in class DefinitionalObject
enumerator
- The enumerator that is informed of the dependencies of this object.public final IServiceProvider getCoverageTarget()
public final void setCoverageTarget(IServiceProvider value)
@Nonnull public final List<AssetDefinition> getAssets()
public final CoverageFilter getFilter()
public final void setFilter(CoverageFilter value)
public final void addAsset(AssetDefinition assetDefinition)
assetDefinition
- The asset definition to add.public final void addAsset(Object assetKey, AccessQuery query)
assetKey
- The asset to add, which will be used as a reference key when retrieving data.query
- The query that must be satisfied for the asset to provide coverage.public final void removeAsset(AssetDefinition assetDefinition)
If the specified definition has been added to the list multiple times, this method will remove the first occurrence.
assetDefinition
- The asset definition to remove.public final void removeAsset(Object asset)
If the list of assets contains multiple AssetDefinition
instances involving this
asset, all of them will be removed by this method.
asset
- The asset to remove.public final void removeAllAssets()
public final void addAssetRange(@Nonnull Iterable<? extends AssetDefinition> assets)
assets
- The set of assets to add.public final CoverageQueryResult computeCoverage(@Nonnull JulianDate start, @Nonnull JulianDate stop)
start
- The start time of the interval to consider.stop
- The stop time of the interval to consider.CoverageTarget
(get
/ set
) has satisfactory coverage.PropertyInvalidException
- The Filter
(get
/ set
) property is null
.IllegalStateException
- No Assets
(get
) have been specified, or a particular AssetObject
(get
/ set
) exists
twice in the Assets
(get
) list.public final CoverageQueryResult computeCoverage(@Nonnull TimeIntervalCollection consideredIntervals)
consideredIntervals
- The intervals to consider.CoverageTarget
(get
/ set
) has satisfactory coverage.PropertyInvalidException
- The Filter
(get
/ set
) property is null
.IllegalStateException
- No Assets
(get
) have been specified, or a particular AssetObject
(get
/ set
) exists
twice in the Assets
(get
) list.public final CoverageQueryResult computeCoverage(@Nonnull JulianDate start, @Nonnull JulianDate stop, @Nullable ITrackCalculationProgress tracker)
start
- The start time of the interval to consider.stop
- The stop time of the interval to consider.tracker
- A tracker which can track the progress of the calculation and
provides a way to smoothly cancel execution.CoverageTarget
(get
/ set
) has satisfactory coverage.PropertyInvalidException
- The Filter
(get
/ set
) property is null
.IllegalStateException
- No Assets
(get
) have been specified, or a particular AssetObject
(get
/ set
) exists
twice in the Assets
(get
) list.public final CoverageQueryResult computeCoverage(@Nonnull TimeIntervalCollection consideredIntervals, @Nullable ITrackCalculationProgress tracker)
consideredIntervals
- The intervals to consider.tracker
- A tracker which can track the progress of the calculation and
provides a way to smoothly cancel execution.CoverageTarget
(get
/ set
) has satisfactory coverage.PropertyInvalidException
- The Filter
(get
/ set
) property is null
.IllegalStateException
- No Assets
(get
) have been specified, or a particular AssetObject
(get
/ set
) exists
twice in the Assets
(get
) list.