Verovio
Source code documentation
object.h
1 // Name: object.h
3 // Author: Laurent Pugin
4 // Created: 2005
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_OBJECT_H__
9 #define __VRV_OBJECT_H__
10 
11 #include <cstdlib>
12 #include <functional>
13 #include <iterator>
14 #include <map>
15 #include <string>
16 
17 //----------------------------------------------------------------------------
18 
19 #include "attclasses.h"
20 #include "attmodule.h"
21 #include "boundingbox.h"
22 #include "vrvdef.h"
23 
24 namespace vrv {
25 
26 class AltSymInterface;
27 class AreaPosInterface;
28 class Doc;
29 class DurationInterface;
30 class EditorialElement;
31 class Output;
32 class Filters;
33 class Functor;
34 class Functor;
35 class ConstFunctor;
36 class LinkingInterface;
37 class FacsimileInterface;
38 class PitchInterface;
39 class PositionInterface;
40 class Resources;
41 class ScoreDefInterface;
42 class StemmedDrawingInterface;
43 class TextDirInterface;
44 class TimePointInterface;
45 class TimeSpanningInterface;
46 class Zone;
47 
48 #define UNLIMITED_DEPTH -10000
49 #define FORWARD true
50 #define BACKWARD false
51 
52 //----------------------------------------------------------------------------
53 // Object
54 //----------------------------------------------------------------------------
55 
59 class Object : public BoundingBox {
60 public:
65  Object();
67  Object(ClassId classId);
68  virtual ~Object();
69  ClassId GetClassId() const final { return m_classId; }
70  virtual std::string GetClassName() const { return "[MISSING]"; }
72 
77  void SetAsReferenceObject();
79  bool IsReferenceObject() const { return m_isReferenceObject; }
81 
85  bool IsFloatingObject() const { return (this->IsSystemElement() || this->IsControlElement()); }
86 
90  bool IsMilestoneElement();
92  Object *GetMilestoneEnd();
94 
99  bool IsControlElement() const { return Object::IsControlElement(m_classId); }
101  bool IsEditorialElement() const { return Object::IsEditorialElement(m_classId); }
102  bool IsLayerElement() const { return Object::IsLayerElement(m_classId); }
103  bool IsPageElement() const { return Object::IsPageElement(m_classId); }
104  bool IsRunningElement() const { return Object::IsRunningElement(m_classId); }
105  bool IsScoreDefElement() const { return Object::IsScoreDefElement(m_classId); }
106  bool IsSystemElement() const { return Object::IsSystemElement(m_classId); }
107  bool IsTextElement() const { return Object::IsTextElement(m_classId); }
109 
115  static bool IsControlElement(ClassId classId)
117  {
118  return ((classId > CONTROL_ELEMENT) && (classId < CONTROL_ELEMENT_max));
119  }
120  static bool IsEditorialElement(ClassId classId)
121  {
122  return ((classId > EDITORIAL_ELEMENT) && (classId < EDITORIAL_ELEMENT_max));
123  }
124  static bool IsLayerElement(ClassId classId) { return ((classId > LAYER_ELEMENT) && (classId < LAYER_ELEMENT_max)); }
125  static bool IsPageElement(ClassId classId) { return ((classId > PAGE_ELEMENT) && (classId < PAGE_ELEMENT_max)); }
126  static bool IsRunningElement(ClassId classId)
127  {
128  return ((classId > RUNNING_ELEMENT) && (classId < RUNNING_ELEMENT_max));
129  }
130  static bool IsScoreDefElement(ClassId classId)
131  {
132  return ((classId > SCOREDEF_ELEMENT) && (classId < SCOREDEF_ELEMENT_max));
133  }
134  static bool IsSystemElement(ClassId classId)
135  {
136  return ((classId > SYSTEM_ELEMENT) && (classId < SYSTEM_ELEMENT_max));
137  }
138  static bool IsTextElement(ClassId classId) { return ((classId > TEXT_ELEMENT) && (classId < TEXT_ELEMENT_max)); }
140 
144  void RegisterAttClass(AttClassId attClassId) { m_attClasses.push_back(attClassId); }
146  bool HasAttClass(AttClassId attClassId) const
147  {
148  return std::find(m_attClasses.begin(), m_attClasses.end(), attClassId) != m_attClasses.end();
149  }
150  void RegisterInterface(std::vector<AttClassId> *attClasses, InterfaceId interfaceId);
151  bool HasInterface(InterfaceId interfaceId) const
152  {
153  return std::find(m_interfaces.begin(), m_interfaces.end(), interfaceId) != m_interfaces.end();
154  }
156 
160  virtual AltSymInterface *GetAltSymInterface() { return NULL; }
162  virtual const AltSymInterface *GetAltSymInterface() const { return NULL; }
163  virtual AreaPosInterface *GetAreaPosInterface() { return NULL; }
164  virtual const AreaPosInterface *GetAreaPosInterface() const { return NULL; }
165  virtual BeamDrawingInterface *GetBeamDrawingInterface() { return NULL; }
166  virtual const BeamDrawingInterface *GetBeamDrawingInterface() const { return NULL; }
167  virtual DurationInterface *GetDurationInterface() { return NULL; }
168  virtual const DurationInterface *GetDurationInterface() const { return NULL; }
169  virtual LinkingInterface *GetLinkingInterface() { return NULL; }
170  virtual const LinkingInterface *GetLinkingInterface() const { return NULL; }
171  virtual FacsimileInterface *GetFacsimileInterface() { return NULL; }
172  virtual const FacsimileInterface *GetFacsimileInterface() const { return NULL; }
173  virtual PitchInterface *GetPitchInterface() { return NULL; }
174  virtual const PitchInterface *GetPitchInterface() const { return NULL; }
175  virtual PlistInterface *GetPlistInterface() { return NULL; }
176  virtual const PlistInterface *GetPlistInterface() const { return NULL; }
177  virtual PositionInterface *GetPositionInterface() { return NULL; }
178  virtual const PositionInterface *GetPositionInterface() const { return NULL; }
179  virtual ScoreDefInterface *GetScoreDefInterface() { return NULL; }
180  virtual const ScoreDefInterface *GetScoreDefInterface() const { return NULL; }
181  virtual StemmedDrawingInterface *GetStemmedDrawingInterface() { return NULL; }
182  virtual const StemmedDrawingInterface *GetStemmedDrawingInterface() const { return NULL; }
183  virtual TextDirInterface *GetTextDirInterface() { return NULL; }
184  virtual const TextDirInterface *GetTextDirInterface() const { return NULL; }
185  virtual TimePointInterface *GetTimePointInterface() { return NULL; }
186  virtual const TimePointInterface *GetTimePointInterface() const { return NULL; }
187  virtual TimeSpanningInterface *GetTimeSpanningInterface() { return NULL; }
188  virtual const TimeSpanningInterface *GetTimeSpanningInterface() const { return NULL; }
190 
194  const Resources *GetDocResources() const;
195 
200  virtual void Reset();
201 
210  Object(const Object &object);
211 
215  Object &operator=(const Object &object);
216 
224  void MoveChildrenFrom(Object *sourceParent, int idx = -1, bool allowTypeChange = false);
225 
230  void ReplaceChild(Object *currentChild, Object *replacingChild);
231 
235  void InsertBefore(Object *child, Object *newChild);
237  void InsertAfter(Object *child, Object *newChild);
239 
245  typedef bool (*binaryComp)(Object *, Object *);
246  void SortChildren(binaryComp comp);
247 
252  void MoveItselfTo(Object *targetParent);
253 
258  virtual Object *Clone() const;
259 
264  virtual bool CopyChildren() const { return true; }
265 
271  virtual void CloneReset();
272 
273  const std::string &GetID() const { return m_id; }
274  void SetID(const std::string &id) { m_id = id; }
275  void SwapID(Object *other);
276  void ResetID();
277 
281  std::string GetComment() const { return m_comment; }
282  void SetComment(std::string comment) { m_comment = comment; }
283  bool HasComment() const { return !m_comment.empty(); }
284  std::string GetClosingComment() const { return m_closingComment; }
285  void SetClosingComment(std::string endComment) { m_closingComment = endComment; }
286  bool HasClosingComment() const { return !m_closingComment.empty(); }
287 
293  int GetChildCount() const { return (int)m_children.size(); }
295  int GetChildCount(const ClassId classId) const;
296  int GetChildCount(const ClassId classId, int depth) const;
297  int GetDescendantCount(const ClassId classId) const;
299 
303  Object *GetChild(int idx);
305  const Object *GetChild(int idx) const;
306  Object *GetChild(int idx, const ClassId classId);
307  const Object *GetChild(int idx, const ClassId classId) const;
309 
313  ArrayOfConstObjects GetChildren() const;
315  const ArrayOfObjects &GetChildren() { return m_children; }
317 
322  ArrayOfObjects &GetChildrenForModification() { return m_children; }
323 
329  void CopyAttributesTo(Object *target) const;
330 
335  int GetAttributes(ArrayOfStrAttr *attributes) const;
336 
340  bool HasAttribute(std::string attribute, std::string value) const;
341 
349  Object *GetFirst(const ClassId classId = UNSPECIFIED);
351  const Object *GetFirst(const ClassId classId = UNSPECIFIED) const;
352  Object *GetNext();
353  const Object *GetNext() const;
355 
360  Object *GetNext(const Object *child, const ClassId classId = UNSPECIFIED);
362  const Object *GetNext(const Object *child, const ClassId classId = UNSPECIFIED) const;
363  Object *GetPrevious(const Object *child, const ClassId classId = UNSPECIFIED);
364  const Object *GetPrevious(const Object *child, const ClassId classId = UNSPECIFIED) const;
366 
370  Object *GetLast(const ClassId classId = UNSPECIFIED);
372  const Object *GetLast(const ClassId classId = UNSPECIFIED) const;
374 
378  Object *GetParent() { return m_parent; }
380  const Object *GetParent() const { return m_parent; }
382 
387  void SetParent(Object *parent);
388 
393  void ResetParent() { m_parent = NULL; }
394 
399  virtual bool IsSupportedChild(ClassId classId);
400 
405  virtual void AddChild(Object *object);
406 
410  virtual bool AddChildAdditionalCheck(Object *child) { return true; };
411 
417  virtual int GetInsertOrderFor(ClassId classId) const { return VRV_UNSET; }
418 
422  int GetInsertOrderForIn(ClassId classId, const std::vector<ClassId> &order) const;
423 
427  int GetIdx() const;
428 
432  int GetDrawingX() const override;
434  int GetDrawingY() const override;
436 
441  void ResetCachedDrawingX() const override;
443  void ResetCachedDrawingY() const override;
445 
449  int GetChildIndex(const Object *child) const;
450 
454  int GetDescendantIndex(const Object *child, const ClassId classId, int depth);
455 
459  void InsertChild(Object *element, int idx);
460 
466  void RotateChildren(int first, int middle, int last);
467 
472  Object *DetachChild(int idx);
473 
478  void ReplaceWithCopyOf(Object *object);
479 
484  bool HasDescendant(const Object *child, int deepness = UNLIMITED_DEPTH) const;
485 
490  Object *FindDescendantByID(const std::string &id, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD);
492  const Object *FindDescendantByID(
493  const std::string &id, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD) const;
495 
500  Object *FindDescendantByType(ClassId classId, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD);
502  const Object *FindDescendantByType(ClassId classId, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD) const;
504 
511  Comparison *comparison, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD);
513  Comparison *comparison, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD) const;
515 
522  Comparison *comparison, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD);
524  Comparison *comparison, int deepness = UNLIMITED_DEPTH, bool direction = FORWARD) const;
526 
530  ListOfObjects FindAllDescendantsByType(
532  ClassId classId, bool continueDepthSearchForMatches = true, int deepness = UNLIMITED_DEPTH);
533  ListOfConstObjects FindAllDescendantsByType(
534  ClassId classId, bool continueDepthSearchForMatches = true, int deepness = UNLIMITED_DEPTH) const;
536 
541  void FindAllDescendantsByComparison(ListOfObjects *objects, Comparison *comparison, int deepness = UNLIMITED_DEPTH,
543  bool direction = FORWARD, bool clear = true);
544  void FindAllDescendantsByComparison(ListOfConstObjects *objects, Comparison *comparison,
545  int deepness = UNLIMITED_DEPTH, bool direction = FORWARD, bool clear = true) const;
547 
552  void FindAllDescendantsBetween(ListOfObjects *objects, Comparison *comparison, const Object *start,
554  const Object *end, bool clear = true, int depth = UNLIMITED_DEPTH);
555  void FindAllDescendantsBetween(ListOfConstObjects *objects, Comparison *comparison, const Object *start,
556  const Object *end, bool clear = true, int depth = UNLIMITED_DEPTH) const;
558 
568  Object *Relinquish(int idx);
569 
575 
579  void ClearChildren();
580 
585  bool DeleteChild(Object *child);
586 
591  int DeleteChildrenByComparison(Comparison *comparison);
592 
596  ListOfObjects GetAncestors();
598  ListOfConstObjects GetAncestors() const;
600 
605  Object *GetFirstAncestor(const ClassId classId, int maxSteps = -1);
607  const Object *GetFirstAncestor(const ClassId classId, int maxSteps = -1) const;
609 
611  Object *GetFirstAncestorInRange(const ClassId classIdMin, const ClassId classIdMax, int maxDepth = -1);
612  const Object *GetFirstAncestorInRange(const ClassId classIdMin, const ClassId classIdMax, int maxDepth = -1) const;
614 
619  Object *GetLastAncestorNot(const ClassId classId, int maxSteps = -1);
621  const Object *GetLastAncestorNot(const ClassId classId, int maxSteps = -1) const;
623 
627  Object *GetFirstChildNot(const ClassId classId);
629  const Object *GetFirstChildNot(const ClassId classId) const;
631 
636  void FillFlatList(ListOfConstObjects &list) const;
637 
641  bool IsModified() const { return m_isModified; }
642 
646  void Modify(bool modified = true) const;
647 
651  bool IsAttribute() const { return m_isAttribute; }
653  void IsAttribute(bool isAttribute) { m_isAttribute = isAttribute; }
655 
659  bool IsExpansion() const { return m_isExpansion; }
661  void IsExpansion(bool isExpansion) { m_isExpansion = isExpansion; }
663 
667  bool HasEditorialContent();
668 
672  bool HasNonEditorialContent();
673 
677  void SaveObject(Output *output, bool basic);
678 
682  template <class Compare> void StableSort(Compare comp)
683  {
684  std::stable_sort(m_children.begin(), m_children.end(), comp);
685  }
686 
687  void ReorderByXPos();
688 
689  Object *FindNextChild(Comparison *comp, Object *start);
690 
691  Object *FindPreviousChild(Comparison *comp, Object *start);
692 
701  void Process(Functor &functor, int deepness = UNLIMITED_DEPTH, bool skipFirst = false);
703  void Process(ConstFunctor &functor, int deepness = UNLIMITED_DEPTH, bool skipFirst = false) const;
705 
709  virtual FunctorCode Accept(Functor &functor);
711  virtual FunctorCode Accept(ConstFunctor &functor) const;
712  virtual FunctorCode AcceptEnd(Functor &functor);
713  virtual FunctorCode AcceptEnd(ConstFunctor &functor) const;
715 
719  void LogDebugTree(int maxDepth = UNLIMITED_DEPTH, int level = 0);
721  virtual std::string LogDebugTreeMsg() { return this->GetClassName(); }
723 
724  //----------------//
725  // Static methods //
726  //----------------//
727 
728  static void SeedID(uint32_t seed = 0);
729 
730  static std::string GenerateHashID();
731 
732  static uint32_t Hash(uint32_t number, bool reverse = false);
733 
734  static bool sortByUlx(Object *a, Object *b);
735 
739  static bool IsPreOrdered(const Object *left, const Object *right);
740 
741 private:
745  void GenerateID();
746 
750  void Init(ClassId classId);
751 
755  bool SkipChildren(bool visibleOnly) const;
757  bool FiltersApply(const Filters *filters, Object *object) const;
759 
760 public:
765  ArrayOfStrAttr m_unsupported;
766 
767 protected:
768  //
769 private:
774  ArrayOfObjects m_children;
775 
779  Object *m_parent;
780 
784  ClassId m_classId;
785 
789  std::string m_id;
792 
797  bool m_isReferenceObject;
798 
805  mutable bool m_isModified;
806 
812  mutable ArrayOfObjects::const_iterator m_iteratorEnd, m_iteratorCurrent;
814  mutable ClassId m_iteratorElementType;
816 
820  std::vector<AttClassId> m_attClasses;
821 
825  std::vector<InterfaceId> m_interfaces;
826 
832  std::string m_comment;
833  std::string m_closingComment;
835 
840  bool m_isAttribute;
841 
845  bool m_isExpansion;
846 
847  //----------------//
848  // Static members //
849  //----------------//
850 
854  static thread_local unsigned long s_objectCounter;
855 
859  static thread_local uint32_t s_xmlIDCounter;
860 };
861 
862 //----------------------------------------------------------------------------
863 // ObjectListInterface
864 //----------------------------------------------------------------------------
865 
874 public:
875  // constructors and destructors
876  ObjectListInterface() = default;
877  virtual ~ObjectListInterface() = default;
878  ObjectListInterface(const ObjectListInterface &listInterface); // copy constructor;
879  ObjectListInterface &operator=(const ObjectListInterface &listInterface); // copy assignment;
880 
884  int GetListIndex(const Object *listElement) const;
885 
889  const Object *GetListFirst(const Object *startFrom, const ClassId classId = UNSPECIFIED) const;
891  Object *GetListFirst(const Object *startFrom, const ClassId classId = UNSPECIFIED);
892  const Object *GetListFirstBackward(const Object *startFrom, const ClassId classId = UNSPECIFIED) const;
893  Object *GetListFirstBackward(const Object *startFrom, const ClassId classId = UNSPECIFIED);
895 
899  const Object *GetListPrevious(const Object *listElement) const;
901  Object *GetListPrevious(const Object *listElement);
903 
907  const Object *GetListNext(const Object *listElement) const;
909  Object *GetListNext(const Object *listElement);
911 
917  const ListOfConstObjects &GetList() const;
919  ListOfObjects GetList();
921 
925  void ResetList() const;
926 
931  bool HasEmptyList() const;
933  int GetListSize() const;
934  const Object *GetListFront() const;
935  Object *GetListFront();
936  const Object *GetListBack() const;
937  Object *GetListBack();
939 
940 protected:
945  virtual void FilterList(ListOfConstObjects &childList) const {};
946 
947 private:
951  const Object *GetInterfaceOwner() const;
952 
953 public:
954  //
955 private:
956  // The flat list of children
957  mutable ListOfConstObjects m_list;
958  // The owner object
959  mutable const Object *m_owner = NULL;
960 };
961 
962 //----------------------------------------------------------------------------
963 // TextListInterface
964 //----------------------------------------------------------------------------
965 
973 public:
974  // constructors and destructors
975  TextListInterface() = default;
976  virtual ~TextListInterface() = default;
977 
981  std::u32string GetText() const;
982 
986  void GetTextLines(std::vector<std::u32string> &lines) const;
987 
988 protected:
993  void FilterList(ListOfConstObjects &childList) const override;
994 
995 private:
996  //
997 public:
998  //
999 private:
1000  //
1001 };
1002 
1003 //----------------------------------------------------------------------------
1004 // ObjectComparison
1005 //----------------------------------------------------------------------------
1006 
1013 
1014 public:
1015  ObjectComparison(const ClassId classId) { m_classId = classId; }
1016 
1017  bool operator()(const Object *object)
1018  {
1019  if (m_classId == UNSPECIFIED) {
1020  return true;
1021  }
1022  return (object->GetClassId() == m_classId);
1023  }
1024 
1025 private:
1026  //
1027 public:
1028  //
1029 private:
1030  ClassId m_classId;
1031 };
1032 
1033 //----------------------------------------------------------------------------
1034 // ObjectFactory
1035 //----------------------------------------------------------------------------
1036 
1038 
1039 public:
1043  static ObjectFactory *GetInstance();
1044 
1048  Object *Create(std::string name);
1049 
1053  Object *Create(ClassId classId);
1054 
1058  void Register(std::string name, ClassId classId, std::function<Object *(void)> function);
1059 
1063  ClassId GetClassId(std::string name);
1064 
1068  void GetClassIds(const std::vector<std::string> &classStrings, std::vector<ClassId> &classIds);
1069 
1070 public:
1071  static thread_local MapOfClassIdConstructors s_ctorsRegistry;
1072  static thread_local MapOfStrClassIds s_classIdsRegistry;
1073 };
1074 
1075 //----------------------------------------------------------------------------
1076 // ClassRegistrar
1077 //----------------------------------------------------------------------------
1078 
1079 template <class T> class ClassRegistrar {
1080 public:
1084  ClassRegistrar(std::string name, ClassId classId)
1085  {
1086  ObjectFactory::GetInstance()->Register(name, classId, []() -> Object * { return new T(); });
1087  }
1088 };
1089 
1090 } // namespace vrv
1091 
1092 #endif
vrv::Object::CopyAttributesTo
void CopyAttributesTo(Object *target) const
Copy all the attributes of an obejct to target.
vrv::Object::Process
void Process(Functor &functor, int deepness=UNLIMITED_DEPTH, bool skipFirst=false)
Main method that processes functors.
vrv::ObjectFactory::GetClassId
ClassId GetClassId(std::string name)
Get the ClassId from the MEI element string name by making a lookup in the register.
vrv::Object::GetParent
Object * GetParent()
Get the parent of the Object.
Definition: object.h:379
vrv::ClassRegistrar::ClassRegistrar
ClassRegistrar(std::string name, ClassId classId)
The contructor registering the name / constructor map.
Definition: object.h:1084
vrv::Object::IsMilestoneElement
bool IsMilestoneElement()
Wrapper for checking if an element has a milestone start interface and also if is set as a milestone ...
vrv::Object::GetAncestors
ListOfObjects GetAncestors()
Returns all ancestors.
vrv::Object::MoveItselfTo
void MoveItselfTo(Object *targetParent)
Move an object to another parent.
vrv::ObjectListInterface::GetListPrevious
const Object * GetListPrevious(const Object *listElement) const
Returns the previous object in the list (NULL if not found)
vrv::Object::AddChild
virtual void AddChild(Object *object)
Base method for adding children.
vrv::ObjectListInterface::FilterList
virtual void FilterList(ListOfConstObjects &childList) const
Filter the list for a specific class.
Definition: object.h:945
vrv::Object::FindDescendantByID
Object * FindDescendantByID(const std::string &id, int deepness=UNLIMITED_DEPTH, bool direction=FORWARD)
Look for a descendant with the specified id (returns NULL if not found) This method is a wrapper for ...
vrv::Object::SaveObject
void SaveObject(Output *output, bool basic)
Saves the object (and its children) using the specified output stream.
vrv::Object::GetChildIndex
int GetChildIndex(const Object *child) const
Look for the Object in the children and return its position (-1 if not found)
vrv::Object::binaryComp
bool(* binaryComp)(Object *, Object *)
Sort children by a function that takes two arguments and returns true if the first argument is less t...
Definition: object.h:245
vrv::ObjectListInterface::GetListFirst
const Object * GetListFirst(const Object *startFrom, const ClassId classId=UNSPECIFIED) const
Gets the first item of type elementType starting at startFrom.
vrv::Object::Accept
virtual FunctorCode Accept(Functor &functor)
Interface for class functor visitation.
vrv::ObjectComparison
Unary predicate for comparing object types.
Definition: object.h:1012
vrv::ObjectListInterface::HasEmptyList
bool HasEmptyList() const
Convenience functions that check if the list is up-to-date If not, the list is updated before returni...
vrv::Object::RotateChildren
void RotateChildren(int first, int middle, int last)
Rotates the child elements of the object leftwards, using std::rotate() with the given indices.
vrv::Object::GetIdx
int GetIdx() const
Return the index position of the object in its parent (-1 if not found)
vrv::Object::GetFirstChildNot
Object * GetFirstChildNot(const ClassId classId)
Return the first child that is NOT of the specified type.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Object::CloneReset
virtual void CloneReset()
Reset pointers after a copy and assignment constructor call.
vrv::ObjectFactory::Create
Object * Create(std::string name)
Create the object from the MEI element string name by making a lookup in the register.
vrv::ObjectListInterface::ResetList
void ResetList() const
Reset the list of children and call FilterList().
vrv::ObjectListInterface::GetListIndex
int GetListIndex(const Object *listElement) const
Look for the Object in the list and return its position (-1 if not found)
vrv::TextListInterface::GetTextLines
void GetTextLines(std::vector< std::u32string > &lines) const
Fill an array of lines with concatenated content of each line.
vrv::Object::HasNonEditorialContent
bool HasNonEditorialContent()
Return true if the object contains anything that is not editorial content.
vrv::Object::GetChild
Object * GetChild(int idx)
Child access (generic)
vrv::Object::GetFirstAncestor
Object * GetFirstAncestor(const ClassId classId, int maxSteps=-1)
Return the first ancestor of the specified type.
vrv::TextListInterface::FilterList
void FilterList(ListOfConstObjects &childList) const override
Filter the list for a specific class.
vrv::Object::FindAllDescendantsByComparison
void FindAllDescendantsByComparison(ListOfObjects *objects, Comparison *comparison, int deepness=UNLIMITED_DEPTH, bool direction=FORWARD, bool clear=true)
Return all the objects matching the Comparison functor Deepness allow to limit the depth search (Edit...
vrv::Object::FillFlatList
void FillFlatList(ListOfConstObjects &list) const
Fill the list of all the children LayerElement.
vrv::Object::IsPreOrdered
static bool IsPreOrdered(const Object *left, const Object *right)
Return true if left appears before right in preorder traversal.
vrv::ObjectListInterface::GetList
const ListOfConstObjects & GetList() const
Return the list.
vrv::Object::MoveChildrenFrom
void MoveChildrenFrom(Object *sourceParent, int idx=-1, bool allowTypeChange=false)
Move all the children of the object passed as parameter to this one.
vrv::Object::ReplaceChild
void ReplaceChild(Object *currentChild, Object *replacingChild)
Replace the currentChild with the replacingChild.
vrv::Object::IsSupportedChild
virtual bool IsSupportedChild(ClassId classId)
Base method for checking if a child can be added.
vrv::Object::DeleteChild
bool DeleteChild(Object *child)
Remove and delete the child.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Object::Modify
void Modify(bool modified=true) const
Mark the object and its parent (if any) as modified.
vrv::Object::Clone
virtual Object * Clone() const
Method call for copying child classes.
vrv::Object::GetDescendantIndex
int GetDescendantIndex(const Object *child, const ClassId classId, int depth)
Look for all Objects of a class and return its position (-1 if not found)
vrv::Object::GetChildrenForModification
ArrayOfObjects & GetChildrenForModification()
Return a reference to the children that allows modification.
Definition: object.h:322
vrv::Object::FindAllDescendantsByType
ListOfObjects FindAllDescendantsByType(ClassId classId, bool continueDepthSearchForMatches=true, int deepness=UNLIMITED_DEPTH)
Return all the objects with specified type.
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::Object::DetachChild
Object * DetachChild(int idx)
Detach the child at the idx position (NULL if not found) The parent pointer is set to NULL.
vrv::Object::SetParent
void SetParent(Object *parent)
Set the parent of the Object.
vrv::Object::operator=
Object & operator=(const Object &object)
Copy assignement - see copy constructor.
vrv::Object::m_unsupported
ArrayOfStrAttr m_unsupported
Keep an array of unsupported attributes as pairs.
Definition: object.h:765
vrv::ObjectFactory
Definition: object.h:1037
vrv::Object::Reset
virtual void Reset()
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Object::FindDescendantExtremeByComparison
Object * FindDescendantExtremeByComparison(Comparison *comparison, int deepness=UNLIMITED_DEPTH, bool direction=FORWARD)
Return the element matching the extreme value with an Comparison functor Deepness allow to limit the ...
vrv::ClassRegistrar
Definition: object.h:1079
vrv::Object::HasAttribute
bool HasAttribute(std::string attribute, std::string value) const
Check if an Object has an attribute with the specified value.
vrv::Object::IsFloatingObject
bool IsFloatingObject() const
Wrapper for checking if an element is a floating object (system elements and control elements)
Definition: object.h:85
vrv::ObjectFactory::GetInstance
static ObjectFactory * GetInstance()
A static method returning a static object in order to guarantee initialisation.
vrv::Object::ClearRelinquishedChildren
void ClearRelinquishedChildren()
Removes all the children that were previously relinquished.
vrv::ObjectListInterface::GetListNext
const Object * GetListNext(const Object *listElement) const
Returns the next object in the list (NULL if not found)
vrv::Object::GetAttributes
int GetAttributes(ArrayOfStrAttr *attributes) const
Fill an array of pairs with all attributes and their values.
vrv::Object::ReplaceWithCopyOf
void ReplaceWithCopyOf(Object *object)
Replace an object with a copy of the other.
vrv::Object::GetLastAncestorNot
Object * GetLastAncestorNot(const ClassId classId, int maxSteps=-1)
Return the last ancestor that is NOT of the specified type.
vrv::Object::HasEditorialContent
bool HasEditorialContent()
Return true if the object contains any editorial content.
vrv::ObjectFactory::GetClassIds
void GetClassIds(const std::vector< std::string > &classStrings, std::vector< ClassId > &classIds)
Get the correspondings ClassIds from the vector of MEI element string names.
vrv::Object::AddChildAdditionalCheck
virtual bool AddChildAdditionalCheck(Object *child)
Additional check when adding a child.
Definition: object.h:410
vrv::Object::GetLast
Object * GetLast(const ClassId classId=UNSPECIFIED)
Return the last child of the object (if any, NULL otherwise)
vrv::Object::StableSort
void StableSort(Compare comp)
Sort the child elements using std::stable_sort.
Definition: object.h:682
vrv::Object::LogDebugTree
void LogDebugTree(int maxDepth=UNLIMITED_DEPTH, int level=0)
Output the class name of the object (or a custom msg) and of its children recursively.
vrv::Object::FindDescendantByComparison
Object * FindDescendantByComparison(Comparison *comparison, int deepness=UNLIMITED_DEPTH, bool direction=FORWARD)
Return the first element matching the Comparison functor Deepness allow to limit the depth search (Ed...
vrv::Object::IsModified
bool IsModified() const
Check if the content was modified or not.
Definition: object.h:641
vrv::TextListInterface::GetText
std::u32string GetText() const
Returns a contatenated version of all the text children.
vrv::Object::Relinquish
Object * Relinquish(int idx)
Give up ownership of the child at the idx position (NULL if not found) This is a method to be used on...
vrv::Object::GetDocResources
const Resources * GetDocResources() const
Resource access from the document.
vrv::Object::HasDescendant
bool HasDescendant(const Object *child, int deepness=UNLIMITED_DEPTH) const
Return true if the object has the child Object as descendant (reference of direct).
vrv::Object::GetChildren
ArrayOfConstObjects GetChildren() const
Return the children as const reference or copy.
vrv::BoundingBox
This class represents a basic object in the layout domain.
Definition: boundingbox.h:32
vrv::Object::CopyChildren
virtual bool CopyChildren() const
Indicate whereas children have to be copied in copy / assignment constructors.
Definition: object.h:264
vrv::Object::ClearChildren
void ClearChildren()
Clear the children vector and delete all the objects.
vrv::Object::GetComment
std::string GetComment() const
Methods for setting / getting comments.
Definition: object.h:281
vrv::Object::SetAsReferenceObject
void SetAsReferenceObject()
Make an object a reference object that do not own children.
vrv::Object::ResetParent
void ResetParent()
Reset the parent of the Object.
Definition: object.h:393
vrv::Object::GetInsertOrderForIn
int GetInsertOrderForIn(ClassId classId, const std::vector< ClassId > &order) const
Find the order from an overriden GetInsertOrderFor method.
vrv::ObjectFactory::Register
void Register(std::string name, ClassId classId, std::function< Object *(void)> function)
Add the name / constructor map entry to the static register.
vrv::Object::DeleteChildrenByComparison
int DeleteChildrenByComparison(Comparison *comparison)
Delete the children that match the comparison.
vrv::Comparison
Definition: comparison.h:31
vrv::Object::GetInsertOrderFor
virtual int GetInsertOrderFor(ClassId classId) const
Return the child order for a the given ClassId.
Definition: object.h:417
vrv::Object::FindDescendantByType
Object * FindDescendantByType(ClassId classId, int deepness=UNLIMITED_DEPTH, bool direction=FORWARD)
Look for a descendant with the specified type (returns NULL if not found) This method is a wrapper fo...
vrv::Object::FindAllDescendantsBetween
void FindAllDescendantsBetween(ListOfObjects *objects, Comparison *comparison, const Object *start, const Object *end, bool clear=true, int depth=UNLIMITED_DEPTH)
Return all the objects matching the Comparison functor and being between start and end in the tree.
vrv::Object::InsertChild
void InsertChild(Object *element, int idx)
Insert an element at the idx position.