public class AccessQueryStartAndMaintain extends AccessQuery
AccessQuery
that can define separate constraints for starting and maintaining
access. This query will be considered satisfied after the StartQuery
(get
/ set
) is satisfied, and
for as long as the MaintainQuery
(get
/ set
) is satisfied.Constructor and Description |
---|
AccessQueryStartAndMaintain()
Initializes a new instance.
|
AccessQueryStartAndMaintain(AccessQuery startQuery,
AccessQuery maintainQuery)
Initializes a new instance representing the start and maintain queries.
|
AccessQueryStartAndMaintain(AccessQuery startQuery,
AccessQuery maintainQuery,
boolean allowAccessBeforeStart)
Initializes a new instance representing the start and maintain queries.
|
AccessQueryStartAndMaintain(AccessQuery startQuery,
AccessQuery maintainQuery,
boolean allowAccessBeforeStart,
JulianDate startQueryEvaluationStartDate)
Initializes a new instance representing the start and maintain queries.
|
AccessQueryStartAndMaintain(AccessQuery startQuery,
AccessQuery maintainQuery,
boolean allowAccessBeforeStart,
JulianDate startQueryEvaluationStartDate,
boolean useStartDateForIntervalEvaluation)
Initializes a new instance representing the start and maintain queries.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
checkForSameDefinition(AccessQuery other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
protected boolean |
checkForSameDefinition(AccessQueryStartAndMaintain 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.
|
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. |
boolean |
getAllowAccessBeforeStart()
|
int |
getEvaluationOrder()
Gets the suggested evaluation order of this query by adding up the evaluation orders
of this query's sub-queries, as returned by their
AccessQuery.getEvaluationOrder()
methods. |
AccessEvaluator |
getEvaluator(IServiceProvider timeObserver,
EvaluatorGroup group)
Gets an evaluator that can be used to evaluate this query for a given time or for intervals of time.
|
AccessQuery |
getMaintainQuery()
Gets the
AccessQuery that represents the condition for maintaining
access. |
AccessQuery |
getStartQuery()
Gets the
AccessQuery that represents the condition for establishing
access. |
JulianDate |
getStartQueryEvaluationStartDate()
Gets the
JulianDate that will be used as the start date for evaluation. |
boolean |
getUseStartDateForIntervalEvaluation()
Gets a value indicating whether calls to
AccessEvaluator.evaluate(TimeIntervalCollection,ITrackCalculationProgress)
will also start at StartQueryEvaluationStartDate (get / set ). |
void |
setAllowAccessBeforeStart(boolean value)
|
void |
setMaintainQuery(AccessQuery value)
Sets the
AccessQuery that represents the condition for maintaining
access. |
void |
setStartQuery(AccessQuery value)
Sets the
AccessQuery that represents the condition for establishing
access. |
void |
setStartQueryEvaluationStartDate(JulianDate value)
Sets the
JulianDate that will be used as the start date for evaluation. |
void |
setUseStartDateForIntervalEvaluation(boolean value)
Sets a value indicating whether calls to
AccessEvaluator.evaluate(TimeIntervalCollection,ITrackCalculationProgress)
will also start at StartQueryEvaluationStartDate (get / set ). |
AccessQuery |
toDisjunctiveNormalForm()
Transforms this query to disjunctive normal form (DNF).
|
and, and, anyPath, anyPath, anyPath, anyPath, anyPath, anyPath, atLeastN, atMostN, checkForSameDefinition, exactlyN, fromObject, fromObjectAllowNoConstraints, getDebuggingLogger, getEvaluator, getEvaluator, not, or, or, setDebuggingLogger
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 AccessQueryStartAndMaintain()
public AccessQueryStartAndMaintain(AccessQuery startQuery, AccessQuery maintainQuery)
startQuery
- The AccessQuery
that represents the condition for establishing access.
Whenever this query is satisfied, the AccessQueryStartAndMaintain
is
considered satisfied.maintainQuery
- The AccessQuery
that represents the condition for maintaining access.
Whenever this query is satisfied while the startQuery
is also
satisfied, the AccessQueryStartAndMaintain
will be satisfied for as long as
this query is satisfied, even after the startQuery
is no longer satisfied.public AccessQueryStartAndMaintain(AccessQuery startQuery, AccessQuery maintainQuery, boolean allowAccessBeforeStart)
startQuery
- The AccessQuery
that represents the condition for establishing access.
Whenever this query is satisfied, the AccessQueryStartAndMaintain
is
considered satisfied.maintainQuery
- The AccessQuery
that represents the condition for maintaining access.
Whenever this query is satisfied while the startQuery
is also
satisfied, the AccessQueryStartAndMaintain
will be satisfied for as long as
this query is satisfied, even after the startQuery
is no longer satisfied.allowAccessBeforeStart
- Determines whether the startQuery
is considered satisfied at the beginning of the considered intervals.public AccessQueryStartAndMaintain(AccessQuery startQuery, AccessQuery maintainQuery, boolean allowAccessBeforeStart, @Nonnull JulianDate startQueryEvaluationStartDate)
startQuery
- The AccessQuery
that represents the condition for establishing access.
Whenever this query is satisfied, the AccessQueryStartAndMaintain
is
considered satisfied.maintainQuery
- The AccessQuery
that represents the condition for maintaining access.
Whenever this query is satisfied while the startQuery
is also
satisfied, the AccessQueryStartAndMaintain
will be satisfied for as long as
this query is satisfied, even after the startQuery
is no longer satisfied.allowAccessBeforeStart
- Determines whether the startQuery
is considered satisfied at the beginning of the considered intervals.startQueryEvaluationStartDate
- When Evaluator.evaluate(JulianDate)
is called, the evaluator will start at this date to determine if the startQuery
is satisfied.public AccessQueryStartAndMaintain(AccessQuery startQuery, AccessQuery maintainQuery, boolean allowAccessBeforeStart, @Nonnull JulianDate startQueryEvaluationStartDate, boolean useStartDateForIntervalEvaluation)
startQuery
- The AccessQuery
that represents the condition for establishing access.
Whenever this query is satisfied, the AccessQueryStartAndMaintain
is
considered satisfied.maintainQuery
- The AccessQuery
that represents the condition for maintaining access.
Whenever this query is satisfied while the startQuery
is also
satisfied, the AccessQueryStartAndMaintain
will be satisfied for as long as
this query is satisfied, even after the startQuery
is no longer satisfied.allowAccessBeforeStart
- Determines whether the startQuery
is considered satisfied at the beginning of the considered intervals.startQueryEvaluationStartDate
- When Evaluator.evaluate(JulianDate)
is called, the evaluator will start at this date to determine if the startQuery
is satisfied.useStartDateForIntervalEvaluation
- If set to true, calls to
AccessEvaluator.evaluate(TimeIntervalCollection,ITrackCalculationProgress)
will also start
at startQueryEvaluationStartDate
.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(AccessQuery 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 AccessQuery
other
- The other instance to compare to this one.true
if the two objects are defined equivalently; otherwise false
.protected boolean checkForSameDefinition(@Nullable AccessQueryStartAndMaintain 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()
AccessQueryStartAndMaintain.checkForSameDefinition(agi.foundation.access.AccessQuery)
method.computeCurrentDefinitionHashCode
in class AccessQuery
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 AccessQuery getStartQuery()
AccessQuery
that represents the condition for establishing
access. Whenever this query is satisfied, the AccessQueryStartAndMaintain
is considered satisfied.public final void setStartQuery(AccessQuery value)
AccessQuery
that represents the condition for establishing
access. Whenever this query is satisfied, the AccessQueryStartAndMaintain
is considered satisfied.public final AccessQuery getMaintainQuery()
AccessQuery
that represents the condition for maintaining
access. Whenever this query is satisfied while the StartQuery
(get
/ set
) is also
satisfied, the AccessQueryStartAndMaintain
will be satisfied for as long as
this query is satisfied, even after the StartQuery
(get
/ set
) is no longer satisfied.public final void setMaintainQuery(AccessQuery value)
AccessQuery
that represents the condition for maintaining
access. Whenever this query is satisfied while the StartQuery
(get
/ set
) is also
satisfied, the AccessQueryStartAndMaintain
will be satisfied for as long as
this query is satisfied, even after the StartQuery
(get
/ set
) is no longer satisfied.public final boolean getAllowAccessBeforeStart()
public final void setAllowAccessBeforeStart(boolean value)
@Nonnull public final JulianDate getStartQueryEvaluationStartDate()
JulianDate
that will be used as the start date for evaluation.
When Evaluator.evaluate(JulianDate)
is called, the
evaluator will start at this date to determine if the StartQuery
(get
/ set
) is satisfied.
This must be set for evaluation at a single JulianDate
to work correctly.
When evaluating at a single JulianDate
evaluation before this date will result in an exception.
public final void setStartQueryEvaluationStartDate(@Nonnull JulianDate value)
JulianDate
that will be used as the start date for evaluation.
When Evaluator.evaluate(JulianDate)
is called, the
evaluator will start at this date to determine if the StartQuery
(get
/ set
) is satisfied.
This must be set for evaluation at a single JulianDate
to work correctly.
When evaluating at a single JulianDate
evaluation before this date will result in an exception.
public final boolean getUseStartDateForIntervalEvaluation()
AccessEvaluator.evaluate(TimeIntervalCollection,ITrackCalculationProgress)
will also start at StartQueryEvaluationStartDate
(get
/ set
). This setting either truncates the evaluation interval
if the StartQueryEvaluationStartDate
(get
/ set
) is after the interval start
or expands the interval if the StartQueryEvaluationStartDate
(get
/ set
) is before the interval start.public final void setUseStartDateForIntervalEvaluation(boolean value)
AccessEvaluator.evaluate(TimeIntervalCollection,ITrackCalculationProgress)
will also start at StartQueryEvaluationStartDate
(get
/ set
). This setting either truncates the evaluation interval
if the StartQueryEvaluationStartDate
(get
/ set
) is after the interval start
or expands the interval if the StartQueryEvaluationStartDate
(get
/ set
) is before the interval start.public int getEvaluationOrder()
AccessQuery.getEvaluationOrder()
methods.getEvaluationOrder
in class AccessQuery
public AccessQuery toDisjunctiveNormalForm()
toDisjunctiveNormalForm
in class AccessQuery
public AccessEvaluator getEvaluator(IServiceProvider timeObserver, EvaluatorGroup group)
getEvaluator
in class AccessQuery
timeObserver
- The IServiceProvider
time observer to use when evaluating this query.group
- The group with which to associate the new evaluator. By grouping evaluators
that are often evaluated at the same Julian dates, common computations can be performed only once
for the entire group instead of multiple times for each evaluator.ArgumentNullException
- Thrown when group
is null
.PropertyInvalidException
- Thrown when StartQuery
(get
/ set
) or MaintainQuery
(get
/ set
) is null
.