Verovio
Source code documentation
functor.h
1 // Name: functor.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_FUNCTOR_H__
9 #define __VRV_FUNCTOR_H__
10 
11 #include "comparison.h"
12 #include "functorinterface.h"
13 #include "vrvdef.h"
14 
15 namespace vrv {
16 
17 class Doc;
18 
19 //----------------------------------------------------------------------------
20 // FunctorBase
21 //----------------------------------------------------------------------------
22 
26 class FunctorBase {
27 public:
31  FunctorBase() {}
33  virtual ~FunctorBase() = default;
35 
39  FunctorCode GetCode() const { return m_code; }
41  void ResetCode() { m_code = FUNCTOR_CONTINUE; }
42  void SetCode(FunctorCode code) { m_code = code; }
44 
48  bool VisibleOnly() const { return m_visibleOnly; }
50  void SetVisibleOnly(bool visibleOnly) { m_visibleOnly = visibleOnly; }
52 
57  Filters *GetFilters() const { return m_filters; }
59  Filters *SetFilters(Filters *filters)
60  {
61  Filters *previous = m_filters;
62  m_filters = filters;
63  return previous;
64  }
65  bool GetDirection() const { return m_direction; }
66  bool SetDirection(bool direction)
67  {
68  bool previous = m_direction;
69  m_direction = direction;
70  return previous;
71  }
73 
77  virtual bool ImplementsEndInterface() const = 0;
78 
79 private:
80  //
81 public:
82  //
83 private:
84  // The functor code
85  FunctorCode m_code = FUNCTOR_CONTINUE;
86  // The filters
87  Filters *m_filters = NULL;
88  // Visible only flag
89  bool m_visibleOnly = true;
90  // Direction
91  bool m_direction = FORWARD;
92 };
93 
94 //----------------------------------------------------------------------------
95 // Functor
96 //----------------------------------------------------------------------------
97 
101 class Functor : public FunctorBase, public FunctorInterface {
102 public:
106  Functor() {}
108  virtual ~Functor() = default;
110 
111 private:
112  //
113 public:
114  //
115 private:
116  //
117 };
118 
119 //----------------------------------------------------------------------------
120 // ConstFunctor
121 //----------------------------------------------------------------------------
122 
127 public:
131  ConstFunctor() {}
133  virtual ~ConstFunctor() = default;
135 
136 private:
137  //
138 public:
139  //
140 private:
141  //
142 };
143 
144 //----------------------------------------------------------------------------
145 // DocFunctor
146 //----------------------------------------------------------------------------
147 
151 class DocFunctor : public Functor {
152 public:
156  DocFunctor(Doc *doc) { m_doc = doc; }
158  virtual ~DocFunctor() = default;
160 
161  /*
162  * Getter for the document
163  */
164  Doc *GetDoc() { return m_doc; }
165 
166 private:
167  //
168 public:
169  //
170 protected:
171  //
172  Doc *m_doc;
173 
174 private:
175  //
176 };
177 
178 //----------------------------------------------------------------------------
179 // DocConstFunctor
180 //----------------------------------------------------------------------------
181 
186 public:
190  DocConstFunctor(const Doc *doc) { m_doc = doc; }
192  virtual ~DocConstFunctor() = default;
194 
195  /*
196  * Getter for the document
197  */
198  const Doc *GetDoc() const { return m_doc; }
199 
200 private:
201  //
202 public:
203  //
204 protected:
205  //
206  const Doc *m_doc;
207 
208 private:
209  //
210 };
211 
212 //----------------------------------------------------------------------------
213 // CollectAndProcess
214 //----------------------------------------------------------------------------
215 
221 protected:
225  CollectAndProcess() = default;
227  ~CollectAndProcess() = default;
229 
230 public:
234  bool IsCollectingData() const { return !m_processingData; }
236  bool IsProcessingData() const { return m_processingData; }
237  void SetDataCollectionCompleted() { m_processingData = true; }
239 
240 private:
241  //
242 public:
243  //
244 protected:
245  //
246 private:
247  // Indicates the current phase: collecting vs processing data
248  bool m_processingData = false;
249 };
250 
251 } // namespace vrv
252 
253 #endif // __VRV_FUNCTOR_H__
vrv::CollectAndProcess::IsCollectingData
bool IsCollectingData() const
Check and switch the current phase.
Definition: functor.h:235
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::DocConstFunctor
This abstract class is the base class for all const functors that need access to the document.
Definition: functor.h:185
vrv::FunctorBase::VisibleOnly
bool VisibleOnly() const
Getter/Setter for the visibility.
Definition: functor.h:49
vrv::FunctorBase::GetCode
FunctorCode GetCode() const
Getter/Setter for the functor code which controls traversal.
Definition: functor.h:40
vrv::Filters
This class is used to store comparison filters and apply them when necessary.
Definition: comparison.h:588
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::FunctorBase::ImplementsEndInterface
virtual bool ImplementsEndInterface() const =0
Return true if the functor implements the end interface.
vrv::FunctorBase::GetFilters
Filters * GetFilters() const
Getters/Setters for the filters and direction Here setters return the previous value.
Definition: functor.h:58
vrv::CollectAndProcess
This class is a mixin for all functors that require two step processing: (1) Collecing data.
Definition: functor.h:220
vrv::FunctorInterface
This class is an interface for functors based on a visitor pattern.
Definition: functorinterface.h:159
vrv::ConstFunctorInterface
This class is an interface for const functors based on a visitor pattern.
Definition: functorinterface.h:534
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::FunctorBase
This abstract class contains functionality that is common to all functors.
Definition: functor.h:26