Verovio
Source code documentation
ioabc.h
1 // Name: ioabc.h
3 // Author: Klaus Rettinghaus
4 // Created: 2017
5 // Copyright (c) Klaus Rettinghaus. All rights reserved.
7 
8 #ifndef __VRV_IOABC_H__
9 #define __VRV_IOABC_H__
10 
11 #include <string>
12 #include <vector>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "iobase.h"
17 #include "pugixml.hpp"
18 #include "vrvdef.h"
19 
20 namespace vrv {
21 
22 class BarLine;
23 class Beam;
24 class Clef;
25 class ControlElement;
26 class Harm;
27 class KeySig;
28 class Layer;
29 class LayerElement;
30 class Mdiv;
31 class Measure;
32 class MeterSig;
33 class Note;
34 class Score;
35 class Section;
36 class Slur;
37 class Staff;
38 class Tie;
39 
40 //----------------------------------------------------------------------------
41 // ABCInput
42 //----------------------------------------------------------------------------
43 
44 class ABCInput : public Input {
45 public:
46  // constructors and destructors
47  ABCInput(Doc *doc);
48  virtual ~ABCInput();
49 
50  bool Import(const std::string &abc) override;
51 
52 #ifndef NO_ABC_SUPPORT
53 
54 private:
55  // function declarations:
56 
57  void ParseABC(std::istream &infile);
58 
59  // parsing functions
60  int SetBarLine(const std::string &musicCode, int index);
61  void CalcUnitNoteLength();
62  void AddAnnot(const std::string &remark);
63  void AddLayerElement();
64  void AddTie();
65  void StartSlur();
66  void EndSlur();
67  int ParseTuplet(const std::string &musicCode, int index);
68 
69  // parse information fields
70  void parseInstruction(const std::string &keyString); // I:
71  void parseKey(std::string &keyString); // K:
72  void parseUnitNoteLength(const std::string &unitNoteLength); // L:
73  void parseMeter(const std::string &meterString); // M:
74  void parseTempo(const std::string &tempoString); // Q:
75  void parseReferenceNumber(const std::string &referenceNumberString); // X:
76  void parseLyrics(); // w:
77 
78  // input functions
79  void readInformationField(const char &dataKey, std::string dataValue);
80  void readMusicCode(const std::string &musicCode, Section *section);
81 
82  // decoration functions
83  void parseDecoration(const std::string &decorationString);
84  void AddArticulation(LayerElement *element);
85  void AddChordSymbol(LayerElement *element);
86  void AddDynamic(LayerElement *element);
87  void AddFermata(LayerElement *element);
88  void AddOrnaments(LayerElement *element);
89 
90  // additional functions
91  void PrintInformationFields(Score *score);
92  void CreateHeader();
93  void CreateWorkEntry();
94  void FlushControlElements(Score *score, Section *section);
95  void InitScoreAndSection(Score *&score, Section *&section);
96 
97 #endif // NO_ABC_SUPPORT
98 
99 public:
100  //
101 private:
102  enum class ElementType { Default, Tuplet };
103  struct ContainerElement {
104  ElementType m_type = ElementType::Default;
105  LayerElement *m_element = NULL;
106  int m_count = 0;
107  };
108 
109  std::string m_filename;
110  Mdiv *m_mdiv = NULL;
111  Clef *m_clef = NULL;
112  KeySig *m_key = NULL;
113  MeterSig *m_meter = NULL;
114  Layer *m_layer = NULL;
115 
116  data_DURATION m_durDefault;
117  std::string m_ID;
118  int m_unitDur;
119  std::pair<data_BARRENDITION, data_BARRENDITION> m_barLines
120  = std::make_pair(BARRENDITION_NONE, BARRENDITION_NONE); //
121  /*
122  * ABC variables with default values
123  */
124  char m_decoration = '!';
125  char m_linebreak = '$';
126  int m_lineNum = 1;
127  int m_broken = 0;
128  int m_gracecount = 0;
129  int m_stafflines = 5;
130  int m_transpose = 0;
131  ContainerElement m_containerElement;
132  /*
133  * ABC metadata stacks
134  */
135  std::vector<std::pair<std::string, int>> m_composer; // C:
136  std::vector<std::pair<std::string, int>> m_history; // H:
137  std::vector<std::pair<std::string, int>> m_notes; // N:
138  std::vector<std::pair<std::string, int>> m_origin; // O:
139  std::vector<std::pair<std::string, int>> m_title; // T:
140  std::vector<std::pair<std::pair<std::string, int>, char>> m_info;
141 
142  std::vector<ControlElement *> m_tempoStack;
143  std::vector<Harm *> m_harmStack;
144  std::vector<Slur *> m_slurStack;
145  std::vector<Tie *> m_tieStack;
146 
147  std::vector<LayerElement *> m_layerElements;
148  std::vector<LayerElement *> m_noteStack;
149  // Array of added notes in one line of ABC file. Used to track elements that might require adding verse to
150  std::vector<LayerElement *> m_lineNoteArray;
151  int m_verseNumber = 1;
152  /*
153  * ABC decoration stacks
154  */
155  std::vector<data_ARTICULATION> m_artic;
156  std::vector<std::string> m_dynam;
157  std::string m_ornam;
158  data_STAFFREL m_fermata = STAFFREL_NONE;
159  /*
160  * The stack of control elements to be added at the end of each measure
161  */
162  std::vector<std::pair<std::string, ControlElement *>> m_controlElements;
163  /*
164  * container for work entries
165  */
166  pugi::xml_node m_workList;
167 };
168 
169 } // namespace vrv
170 
171 #endif
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::MeterSig
This class models the MEI <meterSig> element.
Definition: metersig.h:27
vrv::Section
This class represents a MEI section.
Definition: section.h:28
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::Input
This class is a base class for input classes.
Definition: iobase.h:63
vrv::Mdiv
This class represent a <mdiv> in page-based MEI.
Definition: mdiv.h:24
vrv::ABCInput
Definition: ioabc.h:44
vrv::Tuplet
Definition: tuplet.h:28
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::KeySig
This class models the MEI <keySig> element.
Definition: keysig.h:44
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