Verovio
Source code documentation
convertfunctor.h
1 // Name: convertfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CONVERTFUNCTOR_H__
9 #define __VRV_CONVERTFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 //----------------------------------------------------------------------------
14 
15 #include "alignfunctor.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // ConvertToPageBasedFunctor
21 //----------------------------------------------------------------------------
22 
27 public:
33  virtual ~ConvertToPageBasedFunctor() = default;
35 
36  /*
37  * Abstract base implementation
38  */
39  bool ImplementsEndInterface() const override { return true; }
40 
41  /*
42  * Functor interface
43  */
45  FunctorCode VisitDiv(Div *div) override;
46  FunctorCode VisitEditorialElement(EditorialElement *editorialElement) override;
47  FunctorCode VisitEditorialElementEnd(EditorialElement *editorialElement) override;
48  FunctorCode VisitEnding(Ending *ending) override;
49  FunctorCode VisitEndingEnd(Ending *ending) override;
50  FunctorCode VisitMeasure(Measure *measure) override;
51  FunctorCode VisitMdiv(Mdiv *mdiv) override;
52  FunctorCode VisitMdivEnd(Mdiv *mdiv) override;
53  FunctorCode VisitScore(Score *score) override;
54  FunctorCode VisitScoreEnd(Score *score) override;
55  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
56  FunctorCode VisitSection(Section *section) override;
57  FunctorCode VisitSectionEnd(Section *section) override;
58  FunctorCode VisitSystemElement(SystemElement *systemElement) override;
60 
61 protected:
62  //
63 private:
64  //
65 public:
66  //
67 private:
68  // The system we are moving the content to
69  System *m_currentSystem;
70  // The page being processed
71  Page *m_page;
72 };
73 
74 //----------------------------------------------------------------------------
75 // ConvertToCastOffMensuralFunctor
76 //----------------------------------------------------------------------------
77 
83 public:
87  ConvertToCastOffMensuralFunctor(Doc *doc, System *targetSystem);
89  virtual ~ConvertToCastOffMensuralFunctor() = default;
91 
92  /*
93  * Abstract base implementation
94  */
95  bool ImplementsEndInterface() const override { return false; }
96 
97  /*
98  * Functor interface
99  */
101  FunctorCode VisitLayer(Layer *layer) override;
102  FunctorCode VisitMeasure(Measure *measure) override;
103  FunctorCode VisitObject(Object *object) override;
104  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
105  FunctorCode VisitStaff(Staff *staff) override;
106  FunctorCode VisitSystemElement(SystemElement *systemElement) override;
108 
109 protected:
110  //
111 private:
113  bool IsValidBreakPoint(const Alignment *alignment, const int nbLayers);
115  void InitSegment(Object *object);
116 
117 public:
118  //
119 private:
121  std::list<Measure *> m_segments;
123  std::list<Measure *>::iterator m_currentSegment;
125  std::list<const Alignment *> m_breakPoints;
127  std::list<const Alignment *>::const_iterator m_currentBreakPoint;
128  // The content layer from which we are copying the elements
129  Staff *m_contentStaff;
130  Layer *m_contentLayer;
131  // The target system, measure, staff & layer
132  System *m_targetSystem;
133  Staff *m_targetStaff;
134  Layer *m_targetLayer;
135 };
136 
137 //----------------------------------------------------------------------------
138 // ConvertToUnCastOffMensuralFunctor
139 //----------------------------------------------------------------------------
140 
145 public:
151  virtual ~ConvertToUnCastOffMensuralFunctor() = default;
153 
154  /*
155  * Abstract base implementation
156  */
157  bool ImplementsEndInterface() const override { return false; }
158 
159  /*
160  * Getter and setter for various properties
161  */
163  void ResetContent();
164  void TrackSegmentsToDelete(bool trackSegments) { m_trackSegmentsToDelete = trackSegments; }
165  const ArrayOfObjects &GetSegmentsToDelete() const { return m_segmentsToDelete; }
167 
168  /*
169  * Functor interface
170  */
172  FunctorCode VisitLayer(Layer *layer) override;
173  FunctorCode VisitMeasure(Measure *measure) override;
174  FunctorCode VisitSection(Section *section) override;
176 
177 protected:
178  //
179 private:
180  //
181 public:
182  //
183 private:
184  // The content/target measure and layer => NULL at the beginning of a section
185  Measure *m_contentMeasure;
186  Layer *m_contentLayer;
187  // Indicates if we keep a reference of the measure segments to delete at the end
188  bool m_trackSegmentsToDelete;
189  // Measure segments to delete at the end (fill in the first pass only)
190  ArrayOfObjects m_segmentsToDelete;
191 };
192 
193 //----------------------------------------------------------------------------
194 // ConvertToCmnFunctor
195 //----------------------------------------------------------------------------
196 
202 public:
206  ConvertToCmnFunctor(Doc *doc, System *targetSystem, Score *score);
208  virtual ~ConvertToCmnFunctor() = default;
210 
211  /*
212  * Abstract base implementation
213  */
214  bool ImplementsEndInterface() const override { return true; }
215 
216  /*
217  * Functor interface
218  */
220  FunctorCode VisitChord(Chord *chord) override;
221  FunctorCode VisitLayer(Layer *layer) override;
222  FunctorCode VisitLayerElement(LayerElement *object) override;
223  FunctorCode VisitLigature(Ligature *ligature) override;
224  FunctorCode VisitLigatureEnd(Ligature *ligature) override;
225  FunctorCode VisitMeasure(Measure *measure) override;
226  FunctorCode VisitMeasureEnd(Measure *measure) override;
227  FunctorCode VisitNote(Note *note) override;
228  FunctorCode VisitRest(Rest *rest) override;
229  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
230  FunctorCode VisitStaff(Staff *staff) override;
231  FunctorCode VisitStaffEnd(Staff *staff) override;
232  FunctorCode VisitSystemElement(SystemElement *systemElement) override;
233  FunctorCode VisitSystemEnd(System *system) override;
235 
236 protected:
237  //
238 private:
240  bool IsGlobalMensur(const Alignment *alignment, const int nbLayers, Mensur &mensur);
242  Fraction CalcMeasureDuration(const Mensur &mensur);
244  void ConvertDurationInterface(DurationInterface *interface, ClassId classId);
246  void SplitDurationInterface(ClassId classId, data_DURATION elementDur, Fraction time, Fraction duration);
248  void ConvertAccid(Note *cmnNote, const Accid *accid, bool &isFirstNote);
250  void ConvertClef(Clef *cmnClef, const Clef *clef);
252  void ConvertMensur(const Mensur *mensur);
253 
255  class MensurInfo {
256  public:
257  Mensur m_mensur;
258  Fraction m_time;
259  };
260 
262  class MeasureInfo {
263  public:
264  MeasureInfo(const Fraction &time, const Fraction &duration) : m_time(time), m_duration(duration)
265  {
266  m_measure = NULL;
267  }
268 
269  public:
270  Measure *m_measure;
271  Fraction m_time;
272  Fraction m_duration;
273  };
274 
276  class CmnDuration {
277  public:
278  CmnDuration(data_DURATION duration, int dots, int num = 1, int numbase = 1)
279  : m_duration(duration), m_dots(dots), m_num(num), m_numbase(numbase)
280  {
281  }
282 
283  public:
284  data_DURATION m_duration;
285  int m_dots;
286  int m_num;
287  int m_numbase;
288  };
289 
293  void SplitDurationIntoCmn(
294  data_DURATION elementDur, Fraction duration, const Mensur *mensur, std::list<CmnDuration> &cmnDurations);
295 
296 public:
297  //
298 private:
300  Score *m_score;
302  std::vector<MeasureInfo> m_measures;
304  std::vector<MeasureInfo>::iterator m_currentMeasure;
306  std::vector<Layer *> m_layers;
308  std::vector<Layer *>::iterator m_currentLayer;
310  std::list<Clef *> m_clefs;
312  Clef *m_layerClef;
314  System *m_targetSystem;
316  AlignMeterParams m_currentParams;
318  ListOfObjects m_durationElements;
320  BracketSpan *m_ligature;
322  BracketSpan *m_coloration;
324  Tuplet *m_proportTuplet;
326  Staff *m_currentStaff;
328  std::string m_startid;
330  int m_n;
331 };
332 
333 //----------------------------------------------------------------------------
334 // ConvertMarkupAnalyticalFunctor
335 //----------------------------------------------------------------------------
336 
341 public:
345  ConvertMarkupAnalyticalFunctor(bool permanent);
347  virtual ~ConvertMarkupAnalyticalFunctor() = default;
349 
350  /*
351  * Abstract base implementation
352  */
353  bool ImplementsEndInterface() const override { return true; }
354 
355  /*
356  * Get the notes with unresolved open ties
357  */
358  const std::vector<Note *> &GetCurrentNotes() const { return m_currentNotes; }
359 
360  /*
361  * Functor interface
362  */
364  FunctorCode VisitChord(Chord *chord) override;
365  FunctorCode VisitChordEnd(Chord *chord) override;
366  FunctorCode VisitMeasureEnd(Measure *measure) override;
367  FunctorCode VisitMRest(MRest *mRest) override;
368  FunctorCode VisitNote(Note *note) override;
369  FunctorCode VisitRest(Rest *rest) override;
371 
372 protected:
373  //
374 private:
375  // Helper for converting markup
376  void ConvertToFermata(Fermata *fermata, AttFermataPresent *fermataPresent, const std::string &id);
377 
378 public:
379  //
380 private:
381  // The current notes with open ties
382  std::vector<Note *> m_currentNotes;
383  // The current chord (if in a chord)
384  Chord *m_currentChord;
385  // Control events to be added to the measure (at its end)
386  ArrayOfObjects m_controlEvents;
387  // Indicates whether the conversion is permanent
388  bool m_permanent;
389 };
390 
391 //----------------------------------------------------------------------------
392 // ConvertMarkupArticFunctor
393 //----------------------------------------------------------------------------
394 
399 public:
405  virtual ~ConvertMarkupArticFunctor() = default;
407 
408  /*
409  * Abstract base implementation
410  */
411  bool ImplementsEndInterface() const override { return true; }
412 
413  /*
414  * Functor interface
415  */
417  FunctorCode VisitArtic(Artic *artic) override;
418  FunctorCode VisitLayerEnd(Layer *layer) override;
420 
421 protected:
422  //
423 private:
427  void SplitMultival(Artic *artic) const;
428 
429 public:
430  //
431 private:
432  // The articulations that need to be converted
433  std::vector<Artic *> m_articsToConvert;
434 };
435 
436 //----------------------------------------------------------------------------
437 // ConvertMarkupScoreDefFunctor
438 //----------------------------------------------------------------------------
439 
445 public:
451  virtual ~ConvertMarkupScoreDefFunctor() = default;
453 
454  /*
455  * Abstract base implementation
456  */
457  bool ImplementsEndInterface() const override { return true; }
458 
459  /*
460  * Functor interface
461  */
463  FunctorCode VisitScore(Score *score) override;
464  FunctorCode VisitScoreDefElement(ScoreDefElement *scoreDefElement) override;
465  FunctorCode VisitScoreDefElementEnd(ScoreDefElement *scoreDefElement) override;
467 
468 protected:
469  //
470 private:
471  //
472 public:
473  //
474 private:
475  // The scoreDef we are moving the content from
476  ScoreDefElement *m_currentScoreDef;
477 };
478 
479 //----------------------------------------------------------------------------
480 // ConvertToMensuralViewFunctor
481 //----------------------------------------------------------------------------
482 
488 public:
494  virtual ~ConvertToMensuralViewFunctor() = default;
496 
497  /*
498  * Abstract base implementation
499  */
500  bool ImplementsEndInterface() const override { return true; }
501 
502  /*
503  * Functor interface
504  */
506  FunctorCode VisitEditorialElement(EditorialElement *editorialElement) override;
507  FunctorCode VisitLayer(Layer *layer) override;
508  FunctorCode VisitLayerEnd(Layer *layer) override;
509  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
510  FunctorCode VisitLayerElementEnd(LayerElement *layerElement) override;
511  FunctorCode VisitLigature(Ligature *ligature) override;
512  FunctorCode VisitLigatureEnd(Ligature *ligature) override;
514 
515 protected:
516  //
517 private:
518  //
519 public:
520  //
521 private:
523  Layer *m_viewLayer;
525  ListOfObjects m_stack;
526 };
527 
528 } // namespace vrv
529 
530 #endif // __VRV_CONVERTFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::ConvertMarkupArticFunctor
This class converts markup of artic@artic multi value into distinct artic elements.
Definition: convertfunctor.h:398
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::SystemElement
This class represents elements appearing within a measure.
Definition: systemelement.h:25
vrv::ConvertMarkupArticFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:411
vrv::Div
This class represents an MEI Div.
Definition: div.h:24
vrv::Ending
This class represents a MEI ending.
Definition: ending.h:28
vrv::ConvertToUnCastOffMensuralFunctor
This class converts cast-off (measure) mensural segments MEI into mensural.
Definition: convertfunctor.h:144
vrv::ConvertMarkupAnalyticalFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:353
vrv::Section
This class represents a MEI section.
Definition: section.h:28
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::Accid
This class models the MEI <accid> element.
Definition: accid.h:27
vrv::ScoreDefElement
This class is a base class for MEI scoreDef or staffDef elements.
Definition: scoredef.h:42
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::ConvertToPageBasedFunctor
This class converts all top-level containers (section, endings) and editorial elements to milestone e...
Definition: convertfunctor.h:26
vrv::ConvertMarkupScoreDefFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:457
vrv::ConvertToCmnFunctor
This class converts mensural MEI into cast-off (measure) segments looking at the barLine objects.
Definition: convertfunctor.h:201
vrv::Ligature
This class represents a collection of notes in the same layer with successive onset times,...
Definition: ligature.h:28
vrv::Fraction
Definition: fraction.h:19
vrv::Mensur
This class models the MEI <mensur> element.
Definition: mensur.h:27
vrv::ConvertToPageBasedFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:39
vrv::ConvertToCastOffMensuralFunctor
This class converts mensural MEI into cast-off (measure) segments looking at the barLine objects.
Definition: convertfunctor.h:82
vrv::ConvertToMensuralViewFunctor
This class moves scoreDef clef, keySig, meterSig and mensur to staffDef.
Definition: convertfunctor.h:487
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::Artic
Definition: artic.h:22
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::ConvertToUnCastOffMensuralFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:157
vrv::ConvertToMensuralViewFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:500
vrv::Alignment
This class stores an alignment position elements will point to.
Definition: horizontalaligner.h:73
vrv::ConvertMarkupAnalyticalFunctor
This class converts analytical markup (@fermata, @tie) to elements.
Definition: convertfunctor.h:340
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::Mdiv
This class represent a <mdiv> in page-based MEI.
Definition: mdiv.h:24
vrv::Page
This class represents a page in a laid-out score (Doc).
Definition: page.h:31
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::ConvertToCmnFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:214
vrv::ConvertToCastOffMensuralFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: convertfunctor.h:95
vrv::EditorialElement
This class is a base class for the editorial element containing musical content, for example <rgd> or...
Definition: editorial.h:38
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::Rest
This class models the MEI <rest> element.
Definition: rest.h:37
vrv::DurationInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::ConvertMarkupScoreDefFunctor
This class moves scoreDef clef, keySig, meterSig and mensur to staffDef.
Definition: convertfunctor.h:444