8 #ifndef __VRV_COMPARISON_H__
9 #define __VRV_COMPARISON_H__
12 #include "atts_shared.h"
13 #include "durationinterface.h"
14 #include "horizontalaligner.h"
21 #include "timeinterface.h"
25 enum DurExtreme { LONGEST = 0, SHORTEST };
34 virtual bool operator()(
const Object *
object) = 0;
36 bool Result(
bool comparison) {
return (m_reverse) ? !comparison : comparison; }
39 void ReverseComparison()
41 assert(m_supportReverse);
47 bool m_supportReverse =
false;
51 bool m_reverse =
false;
64 m_supportReverse =
true;
67 bool operator()(
const Object *
object)
override {
return Result(this->MatchesType(
object)); }
69 ClassId GetType() {
return m_classId; }
71 bool MatchesType(
const Object *
object) {
return (object->Is(m_classId)); }
86 m_classIds = classIds;
87 m_supportReverse =
true;
90 bool operator()(
const Object *
object)
override {
return Result(this->MatchesType(
object)); }
92 bool MatchesType(
const Object *
object) {
return (object->Is(m_classIds)); }
95 std::vector<ClassId> m_classIds;
107 bool operator()(
const Object *
object)
override
109 if (object->HasInterface(m_interfaceId)) {
116 InterfaceId m_interfaceId;
128 bool operator()(
const Object *
object)
override
146 m_pointingTo = pointingTo;
149 bool operator()(
const Object *
object)
override
151 if (!MatchesType(
object))
return false;
153 if (!interface)
return false;
154 return (interface->GetStart() == m_pointingTo);
158 const Object *m_pointingTo;
170 m_pointingTo = pointingTo;
173 bool operator()(
const Object *
object)
override
175 if (!MatchesType(
object))
return false;
177 if (!interface)
return false;
178 return (interface->GetEnd() == m_pointingTo);
182 const Object *m_pointingTo;
197 bool operator()(
const Object *
object)
override
199 if (object->IsEditorialElement())
return Result(
true);
200 return Result(
false);
216 bool operator()(
const Object *
object)
override
218 if (!MatchesType(
object))
return false;
219 if (object->GetChildCount() == 0) {
223 return Result(
false);
240 bool operator()(
const Object *
object)
override
242 if (!MatchesType(
object))
return false;
243 if (object->IsAttribute())
return true;
260 void SetN(
int n) { m_n = n; }
262 bool operator()(
const Object *
object)
override
264 if (!MatchesType(
object))
return false;
266 if (!object->HasAttClass(ATT_NINTEGER))
return false;
267 const AttNInteger *element =
dynamic_cast<const AttNInteger *
>(object);
269 return (element->GetN() == m_n);
288 void SetNs(std::vector<int> ns) { m_ns = ns; }
289 void AppendN(
int n) { m_ns.push_back(n); }
291 bool operator()(
const Object *
object)
override
293 if (!MatchesType(
object))
return false;
295 if (!object->HasAttClass(ATT_NINTEGER))
return false;
296 const AttNInteger *element =
dynamic_cast<const AttNInteger *
>(object);
298 return (std::find(m_ns.begin(), m_ns.end(), element->GetN()) != m_ns.end());
302 std::vector<int> m_ns;
317 void SetN(std::string n) { m_n = n; }
319 bool operator()(
const Object *
object)
override
321 if (!MatchesType(
object))
return false;
323 if (!object->HasAttClass(ATT_NNUMBERLIKE))
return false;
324 const AttNNumberLike *element =
dynamic_cast<const AttNNumberLike *
>(object);
326 return (element->GetN() == m_n);
347 m_extremeType = extremeType;
348 m_extremeDur = (m_extremeType == LONGEST) ? -VRV_UNSET : VRV_UNSET;
351 bool operator()(
const Object *
object)
override
353 if (!object->HasInterface(INTERFACE_DURATION))
return false;
356 if (interface->HasDur()) {
357 if ((m_extremeType == LONGEST) && (interface->GetActualDur() < m_extremeDur)) {
358 m_extremeDur = interface->GetActualDur();
361 else if ((m_extremeType == SHORTEST) && (interface->GetActualDur() > m_extremeDur)) {
362 m_extremeDur = interface->GetActualDur();
371 DurExtreme m_extremeType;
385 m_isVisible = isVisible;
388 bool operator()(
const Object *
object)
override
390 if (!MatchesType(
object))
return false;
391 if (!object->HasAttClass(ATT_VISIBILITY))
return false;
392 const AttVisibility *visibility =
dynamic_cast<const AttVisibility *
>(object);
394 return (visibility->GetVisible() == m_isVisible);
398 data_BOOLEAN m_isVisible;
413 bool operator()(
const Object *
object)
override
415 if (!MatchesType(
object))
return false;
417 if (!object->HasAttClass(ATT_FORMEWORK))
return false;
418 const AttFormework *element =
dynamic_cast<const AttFormework *
>(object);
420 return (element->GetFunc() == m_func);
438 bool operator()(
const Object *
object)
override
440 if (!this->MatchesType(
object))
return false;
459 void SetType(AlignmentType type) { m_type = type; }
461 bool operator()(
const Object *
object)
override
463 if (!MatchesType(
object))
return false;
464 const Alignment *alignment = vrv_cast<const Alignment *>(
object);
466 return (alignment->GetType() == m_type);
470 AlignmentType m_type;
485 void SetTime(
int time) { m_time = time; }
487 bool operator()(
const Object *
object)
override
489 if (!MatchesType(
object))
return false;
490 const Measure *measure = vrv_cast<const Measure *>(
object);
511 void SetTime(
int time) { m_time = time; }
513 bool operator()(
const Object *
object)
override
515 if (!MatchesType(
object))
return false;
518 return ((m_time >= interface->GetRealTimeOnsetMilliseconds())
519 && (m_time <= interface->GetRealTimeOffsetMilliseconds()));
538 void SetID(
const std::string &
id) { m_id = id; }
540 bool operator()(
const Object *
object)
override
542 if (!MatchesType(
object))
return false;
543 return (object->GetID() == m_id);
562 void Skip(
const Object *objectToExclude) { m_objectToExclude = objectToExclude; }
564 bool operator()(
const Object *
object)
override
566 if (
object == m_objectToExclude || !ClassIdsComparison::operator()(
object))
return false;
568 if (object->Is(STAFFDEF)) {
569 const StaffDef *staffDef = vrv_cast<const StaffDef *>(
object);
570 return staffDef && staffDef->GetDrawingVisibility() != OPTIMIZATION_HIDDEN;
573 const StaffGrp *staffGrp = vrv_cast<const StaffGrp *>(
object);
574 return staffGrp && staffGrp->GetDrawingVisibility() != OPTIMIZATION_HIDDEN;
578 const Object *m_objectToExclude;
590 enum class Type { AllOf, AnyOf };
594 explicit Filters(
const std::initializer_list<Comparison *> &comp)
596 std::copy(comp.begin(), comp.end(), std::back_inserter(m_filters));
600 void Clear() { m_filters.clear(); }
601 void SetType(Type type) { m_type = type; }
611 if (!cmp || (cmp->GetType() !=
object->GetClassId())) {
614 return (*iter)(object);
618 return std::any_of(m_filters.cbegin(), m_filters.cend(), condition);
622 return std::all_of(m_filters.cbegin(), m_filters.cend(), condition);
627 Filters &operator=(
const std::initializer_list<Comparison *> &other)
630 std::copy(other.begin(), other.end(), std::back_inserter(m_filters));
635 std::vector<Comparison *> m_filters;
636 Type m_type = Type::AllOf;