Verovio
Source code documentation
findfunctor.h
1 // Name: findfunctor.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_FINDFUNCTOR_H__
9 #define __VRV_FINDFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 class Comparison;
16 class Object;
17 
18 //----------------------------------------------------------------------------
19 // FindAllByComparisonFunctor
20 //----------------------------------------------------------------------------
21 
26 public:
30  FindAllByComparisonFunctor(Comparison *comparison, ListOfObjects *elements);
32  virtual ~FindAllByComparisonFunctor() = default;
34 
35  /*
36  * Abstract base implementation
37  */
38  bool ImplementsEndInterface() const override { return false; }
39 
40  /*
41  * Configure depth search
42  */
43  void SetContinueDepthSearchForMatches(bool continueDepthSearchForMatches);
44 
45  /*
46  * Functor interface
47  */
49  FunctorCode VisitObject(Object *object) override;
51 
52 protected:
53  //
54 private:
55  //
56 public:
57  //
58 private:
59  // The comparison
60  Comparison *m_comparison;
61  // True if search should be continued for matches
62  bool m_continueDepthSearchForMatches;
63  // The element list where the search result is appended
64  ListOfObjects *m_elements;
65 };
66 
67 //----------------------------------------------------------------------------
68 // FindAllConstByComparisonFunctor
69 //----------------------------------------------------------------------------
70 
75 public:
79  FindAllConstByComparisonFunctor(Comparison *comparison, ListOfConstObjects *elements);
81  virtual ~FindAllConstByComparisonFunctor() = default;
83 
84  /*
85  * Abstract base implementation
86  */
87  bool ImplementsEndInterface() const override { return false; }
88 
89  /*
90  * Configure depth search
91  */
92  void SetContinueDepthSearchForMatches(bool continueDepthSearchForMatches);
93 
94  /*
95  * Functor interface
96  */
98  FunctorCode VisitObject(const Object *object) override;
100 
101 protected:
102  //
103 private:
104  //
105 public:
106  //
107 private:
108  // The comparison
109  Comparison *m_comparison;
110  // True if search should be continued for matches
111  bool m_continueDepthSearchForMatches;
112  // The element list where the search result is appended
113  ListOfConstObjects *m_elements;
114 };
115 
116 //----------------------------------------------------------------------------
117 // FindAllBetweenFunctor
118 //----------------------------------------------------------------------------
119 
124 public:
128  FindAllBetweenFunctor(Comparison *comparison, ListOfConstObjects *elements, const Object *start, const Object *end);
130  virtual ~FindAllBetweenFunctor() = default;
132 
133  /*
134  * Abstract base implementation
135  */
136  bool ImplementsEndInterface() const override { return false; }
137 
138  /*
139  * Functor interface
140  */
142  FunctorCode VisitObject(const Object *object) override;
144 
145 protected:
146  //
147 private:
148  //
149 public:
150  //
151 private:
152  // The comparison
153  Comparison *m_comparison;
154  // The start and end object
155  const Object *m_start, *m_end;
156  // The element list where the search result is appended
157  ListOfConstObjects *m_elements;
158 };
159 
160 //----------------------------------------------------------------------------
161 // FindByComparisonFunctor
162 //----------------------------------------------------------------------------
163 
168 public:
172  FindByComparisonFunctor(Comparison *comparison);
174  virtual ~FindByComparisonFunctor() = default;
176 
177  /*
178  * Abstract base implementation
179  */
180  bool ImplementsEndInterface() const override { return false; }
181 
182  /*
183  * Retrieve the search result
184  */
185  const Object *GetElement() const { return m_element; }
186 
187  /*
188  * Functor interface
189  */
191  FunctorCode VisitObject(const Object *object) override;
193 
194 protected:
195  //
196 private:
197  //
198 public:
199  //
200 private:
201  // The comparison
202  Comparison *m_comparison;
203  // The search result
204  const Object *m_element;
205 };
206 
207 //----------------------------------------------------------------------------
208 // FindByIDFunctor
209 //----------------------------------------------------------------------------
210 
215 public:
219  FindByIDFunctor(const std::string &id);
221  virtual ~FindByIDFunctor() = default;
223 
224  /*
225  * Abstract base implementation
226  */
227  bool ImplementsEndInterface() const override { return false; }
228 
229  /*
230  * Retrieve the search result
231  */
232  const Object *GetElement() const { return m_element; }
233 
234  /*
235  * Functor interface
236  */
238  FunctorCode VisitObject(const Object *object) override;
240 
241 protected:
242  //
243 private:
244  //
245 public:
246  //
247 private:
248  // The id we are looking for
249  std::string m_id;
250  // The search result
251  const Object *m_element;
252 };
253 
254 //----------------------------------------------------------------------------
255 // FindNextChildByComparisonFunctor
256 //----------------------------------------------------------------------------
257 
262 public:
266  FindNextChildByComparisonFunctor(Comparison *comparison, const Object *start);
268  virtual ~FindNextChildByComparisonFunctor() = default;
270 
271  /*
272  * Abstract base implementation
273  */
274  bool ImplementsEndInterface() const override { return false; }
275 
276  /*
277  * Retrieve the search result
278  */
279  const Object *GetElement() const { return m_element; }
280 
281  /*
282  * Functor interface
283  */
285  FunctorCode VisitObject(const Object *object) override;
287 
288 protected:
289  //
290 private:
291  //
292 public:
293  //
294 private:
295  // The comparison
296  Comparison *m_comparison;
297  // The object to start with
298  const Object *m_start;
299  // The search result
300  const Object *m_element;
301 };
302 
303 //----------------------------------------------------------------------------
304 // FindPreviousChildByComparisonFunctor
305 //----------------------------------------------------------------------------
306 
311 public:
315  FindPreviousChildByComparisonFunctor(Comparison *comparison, const Object *start);
317  virtual ~FindPreviousChildByComparisonFunctor() = default;
319 
320  /*
321  * Abstract base implementation
322  */
323  bool ImplementsEndInterface() const override { return false; }
324 
325  /*
326  * Retrieve the search result
327  */
328  const Object *GetElement() const { return m_element; }
329 
330  /*
331  * Functor interface
332  */
334  FunctorCode VisitObject(const Object *object) override;
336 
337 protected:
338  //
339 private:
340  //
341 public:
342  //
343 private:
344  // The comparison
345  Comparison *m_comparison;
346  // The object to start with
347  const Object *m_start;
348  // The search result
349  const Object *m_element;
350 };
351 
352 //----------------------------------------------------------------------------
353 // FindExtremeByComparisonFunctor
354 //----------------------------------------------------------------------------
355 
360 public:
366  virtual ~FindExtremeByComparisonFunctor() = default;
368 
369  /*
370  * Abstract base implementation
371  */
372  bool ImplementsEndInterface() const override { return false; }
373 
374  /*
375  * Retrieve the search result
376  */
377  const Object *GetElement() const { return m_element; }
378 
379  /*
380  * Functor interface
381  */
383  FunctorCode VisitObject(const Object *object) override;
385 
386 protected:
387  //
388 private:
389  //
390 public:
391  //
392 private:
393  // The comparison
394  Comparison *m_comparison;
395  // The search result
396  const Object *m_element;
397 };
398 
399 //----------------------------------------------------------------------------
400 // FindAllReferencedObjectsFunctor
401 //----------------------------------------------------------------------------
402 
408 public:
412  FindAllReferencedObjectsFunctor(SetOfObjects *elements, ListOfObjectAttNamePairs *listWithAttName);
414  virtual ~FindAllReferencedObjectsFunctor() = default;
416 
417  /*
418  * Abstract base implementation
419  */
420  bool ImplementsEndInterface() const override { return false; }
421 
422  /*
423  * Include milestone references?
424  */
425  void IncludeMilestoneReferences(bool included) { m_milestoneReferences = included; }
426 
427  /*
428  * Functor interface
429  */
431  FunctorCode VisitObject(Object *object) override;
433 
434 protected:
435  //
436 private:
437  //
438  void AddObject(Object *object, const std::string &attribute);
439 
440 public:
441  //
442 private:
443  // The set of all matching objects
444  SetOfObjects *m_elements;
445  // The list of pairs of matching objects with the attribute name
446  ListOfObjectAttNamePairs *m_listWithAttName;
447  // A flag indicating if milestone references should be included as well
448  bool m_milestoneReferences;
449 };
450 
451 //----------------------------------------------------------------------------
452 // FindAllReferringObjectsFunctor
453 //----------------------------------------------------------------------------
454 
459 public:
463  FindAllReferringObjectsFunctor(const Object *object, ListOfObjectAttNamePairs *elements);
465  virtual ~FindAllReferringObjectsFunctor() = default;
467 
468  /*
469  * Abstract base implementation
470  */
471  bool ImplementsEndInterface() const override { return false; }
472 
473  /*
474  * Functor interface
475  */
477  FunctorCode VisitObject(Object *object) override;
479 
480 protected:
481  //
482 private:
483  //
484 public:
485  //
486 private:
487  // The object referred to
488  const Object *m_object;
489  // The set of all objects with the attribute name they are referring through
490  ListOfObjectAttNamePairs *m_elements;
491 };
492 
493 //----------------------------------------------------------------------------
494 // FindElementInLayerStaffDefFunctor
495 //----------------------------------------------------------------------------
496 
501 public:
505  FindElementInLayerStaffDefFunctor(const std::string &xmlId);
507  virtual ~FindElementInLayerStaffDefFunctor() = default;
509 
510  /*
511  * Abstract base implementation
512  */
513  bool ImplementsEndInterface() const override { return false; }
514 
515  /*
516  * Retrieve the search result
517  */
518  const Object *GetElement() const { return m_element; }
519 
520  /*
521  * Functor interface
522  */
524  FunctorCode VisitLayer(const Layer *layer) override;
525  FunctorCode VisitScore(const Score *score) override;
527 
528 protected:
529  //
530 private:
531  //
532 public:
533  //
534 private:
535  // The search result
536  const Object *m_element;
537  // ID of the element to be found
538  std::string m_id;
539 };
540 
541 //----------------------------------------------------------------------------
542 // AddToFlatListFunctor
543 //----------------------------------------------------------------------------
544 
549 public:
553  AddToFlatListFunctor(ListOfConstObjects *flatList);
555  virtual ~AddToFlatListFunctor() = default;
557 
558  /*
559  * Abstract base implementation
560  */
561  bool ImplementsEndInterface() const override { return false; }
562 
563  /*
564  * Functor interface
565  */
567  FunctorCode VisitObject(const Object *object) override;
569 
570 protected:
571  //
572 private:
573  //
574 public:
575  //
576 private:
577  // The list of elements
578  ListOfConstObjects *m_flatList;
579 };
580 
581 } // namespace vrv
582 
583 #endif // __VRV_FINDFUNCTOR_H__
vrv::FindExtremeByComparisonFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:372
vrv::FindAllReferencedObjectsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:420
vrv::FindElementInLayerStaffDefFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:513
vrv::FindAllBetweenFunctor
This class finds all elements in the tree by comparison between start and end objects.
Definition: findfunctor.h:123
vrv::FindElementInLayerStaffDefFunctor
This class looks for an element with given ID in StaffDef elements (Clef, KeySig, etc....
Definition: findfunctor.h:500
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::FindExtremeByComparisonFunctor
This class finds the last object matching the comparison.
Definition: findfunctor.h:359
vrv::FindByComparisonFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:180
vrv::FindNextChildByComparisonFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:274
vrv::FindAllConstByComparisonFunctor
This class finds all elements in the tree by comparison.
Definition: findfunctor.h:74
vrv::FindAllByComparisonFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:38
vrv::FindAllReferencedObjectsFunctor
This class finds all objects to which another object refers to.
Definition: findfunctor.h:407
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::FindNextChildByComparisonFunctor
This class finds the next child matching the comparison object.
Definition: findfunctor.h:261
vrv::FindAllBetweenFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:136
vrv::AddToFlatListFunctor
This class adds elements and its children to a flat list.
Definition: findfunctor.h:548
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::FindByComparisonFunctor
This class finds an element in the tree by comparison.
Definition: findfunctor.h:167
vrv::FindAllConstByComparisonFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:87
vrv::FindByIDFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:227
vrv::FindPreviousChildByComparisonFunctor
This class finds the previous child matching the comparison object.
Definition: findfunctor.h:310
vrv::FindAllReferringObjectsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:471
vrv::FindAllReferringObjectsFunctor
This class finds all objects referring to a specific object.
Definition: findfunctor.h:458
vrv::FindPreviousChildByComparisonFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:323
vrv::FindByIDFunctor
This class finds an element with a specified id.
Definition: findfunctor.h:214
vrv::Comparison
Definition: comparison.h:31
vrv::AddToFlatListFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findfunctor.h:561
vrv::FindAllByComparisonFunctor
This class finds all elements in the tree by comparison.
Definition: findfunctor.h:25