8 #ifndef __VRV_IOPAE_H__
9 #define __VRV_IOPAE_H__
44 class DurationInterface;
82 bool Export(std::string &output);
97 static std::string
GetPaeDur(data_DURATION dur,
int ndots);
103 void WriteMdiv(
Mdiv *mDiv);
105 void WriteMdivEnd(
Mdiv *mDiv);
106 void WriteScoreDef(
ScoreDef *scoreDef);
107 void WriteStaffDef(
StaffDef *staffDef);
108 void WriteMeasure(
Measure *measure);
109 void WriteMeasureEnd(
Measure *measure);
110 void WriteStaff(
Staff *staff);
111 void WriteLayer(
Layer *layer);
118 void WriteBarLine(
BarLine *barLine);
120 void WriteBeam(
Beam *beam);
121 void WriteBeamEnd(
Beam *beam);
122 void WriteChord(
Chord *chord);
123 void WriteClef(
Clef *clef);
124 void WriteGraceGrp(
GraceGrp *graceGrp);
125 void WriteKeyAccid(
KeyAccid *keyAccid);
126 void WriteKeySig(
KeySig *keySig);
127 void WriteMensur(
Mensur *mensur);
128 void WriteMeterSig(
MeterSig *meterSig);
129 void WriteMRest(
MRest *mRest);
130 void WriteMultiRest(
MultiRest *multiRest);
131 void WriteNote(
Note *note);
132 void WriteRest(
Rest *rest);
133 void WriteSpace(
Space *space);
134 void WriteTuplet(
Tuplet *tuplet);
135 void WriteTupletEnd(
Tuplet *tuplet);
174 void WriteGrace(AttGraced *attGraced);
175 bool HasFermata(
Object *
object);
181 std::ostringstream m_streamStringOutput;
196 #ifdef USE_PAE_OLD_PARSER
211 Note(
const pae::Note &old)
216 acciaccatura = old.acciaccatura;
217 appoggiatura = old.appoggiatura;
218 fermata = old.fermata;
225 duration = old.duration;
226 accidental = old.accidental;
227 accidGes = old.accidGes;
236 tuplet_notes = old.tuplet_notes;
237 tuplet_note = old.tuplet_note;
238 tuplet_val = old.tuplet_val;
244 acciaccatura = fermata = tie = trill = chord =
false;
248 pitch = PITCHNAME_NONE;
249 duration = DURATION_NONE;
250 accidental = ACCIDENTAL_WRITTEN_NONE;
265 Note &operator=(
const Note &d)
270 acciaccatura = d.acciaccatura;
271 appoggiatura = d.appoggiatura;
279 duration = d.duration;
280 accidental = d.accidental;
281 accidGes = d.accidGes;
290 tuplet_notes = d.tuplet_notes;
291 tuplet_note = d.tuplet_note;
292 tuplet_val = d.tuplet_val;
314 data_PITCHNAME pitch;
315 data_DURATION duration;
316 data_ACCIDENTAL_WRITTEN accidental;
330 Measure(
const Measure &d)
339 durations = d.durations;
341 durations_offset = d.durations_offset;
343 abbreviation_offset = d.abbreviation_offset;
344 wholerest = d.wholerest;
346 Measure() { clear(); }
348 Measure &operator=(
const Measure &d)
357 durations = d.durations;
359 durations_offset = d.durations_offset;
361 abbreviation_offset = d.abbreviation_offset;
362 wholerest = d.wholerest;
371 durations_offset = DURATION_long;
381 barLine = BARRENDITION_invis;
383 abbreviation_offset = -1;
390 std::vector<pae::Note> notes;
392 std::vector<data_DURATION> durations;
393 std::vector<int> dots;
394 char durations_offset;
395 data_BARRENDITION barLine;
396 int abbreviation_offset;
406 class PAEInput :
public Input {
418 #ifndef NO_PAE_SUPPORT
419 bool Import(
const std::string &pae)
override;
424 void parsePlainAndEasy(std::istream &infile);
427 int getKeyInfo(
const char *incipit, KeySig *key,
int index = 0);
428 int getTimeInfo(
const char *incipit, MeterSig *meter, Mensur *mensur,
int index = 0);
429 int getClefInfo(
const char *incipit, Clef *mus_clef,
int index = 0);
430 int getBarLine(
const char *incipit, data_BARRENDITION *output,
int index);
431 int getAccidental(
const char *incipit, data_ACCIDENTAL_WRITTEN *accident,
int index = 0);
432 int getOctave(
const char *incipit,
char *octave,
int index = 0);
433 int getDurations(
const char *incipit, pae::Measure *measure,
int index = 0);
434 int getDuration(
const char *incipit, data_DURATION *duration,
int *dot,
int index);
435 int getTupletFermata(
const char *incipit, pae::Note *note,
int index = 0);
436 int getTupletFermataEnd(
const char *incipit, pae::Note *note,
int index = 0);
437 int getGraceNote(
const char *incipit, pae::Note *note,
int index = 0);
438 int getWholeRest(
const char *incipit,
int *wholerest,
int index);
439 int getAbbreviation(
const char *incipit, pae::Measure *measure,
int index = 0);
440 int getNote(
const char *incipit, pae::Note *note, pae::Measure *measure,
int index = 0);
442 data_PITCHNAME getPitch(
char c_note);
445 void addLayerElement(LayerElement *element);
446 void parseNote(pae::Note *note);
448 void convertMeasure(pae::Measure *measure);
449 void pushContainer(LayerElement *container);
452 void getAtRecordKeyValue(
char *key,
char *value,
const char *input);
454 #endif // NO_PAE_SUPPORT
466 MapOfOctavedPitchAccid m_currentAccids;
467 KeySig *m_currentKeySig;
468 std::pair<int, data_ACCIDENTAL_WRITTEN> m_tieAccid;
470 std::vector<LayerElement *> m_nested_objects;
475 #else // USE_PAE_OLD_PARSER
487 Token(
char c,
int position, Object *
object = NULL);
493 bool IsContainerEnd();
504 std::string GetName();
511 Object *m_treeObject;
540 #ifndef NO_PAE_SUPPORT
541 bool Import(
const std::string &input)
override;
547 jsonxx::Object InputKeysToJson(
const std::string &inputKeys);
552 jsonxx::Object SingleLineToJson(
const std::string &singleLine);
560 void AddToken(
char c,
int &position);
574 void ParseHeader(jsonxx::Object &header);
583 bool ConvertKeySig();
586 bool ConvertMeterSigOrMensur();
587 bool ConvertMeasure();
588 bool ConvertRepeatedFigure();
589 bool ConvertRepeatedMeasure();
590 bool ConvertMRestOrMultiRest();
592 bool ConvertOctave();
594 bool ConvertFermata();
595 bool ConvertAccidental();
600 bool ConvertGraceGrp();
601 bool ConvertTuplet();
602 bool ConvertDuration();
604 bool ConvertLigature();
605 bool ConvertAccidGes();
612 bool Is(pae::Token &token,
const std::string &map);
614 bool Was(pae::Token &token,
const std::string &map);
615 bool HasInput(
char inputChar);
621 bool ParseKeySig(
KeySig *keySig,
const std::string &paeStr, pae::Token &token);
623 bool ParseClef(
Clef *clef,
const std::string &paeStr, pae::Token &token,
bool *mensuralScoreDef = NULL);
624 bool ParseMeterSig(
MeterSig *meterSig,
const std::string &paeStr, pae::Token &token);
625 bool ParseMensur(
Mensur *mensur,
const std::string &paeStr, pae::Token &token);
626 bool ParseMeasure(
Measure *measure,
const std::string &paeStr, pae::Token &token);
628 std::list<std::pair<data_DURATION, int>> &durations,
const std::string &paeStr, pae::Token &token);
636 bool CheckPAEChars(
const std::string &input, std::string &invalidChars,
const std::string &validChars =
"");
645 void PrepareInsertion(
int position, std::list<pae::Token> &insertion);
652 bool CheckHierarchy();
658 bool CheckContentPreBuild();
663 bool CheckContentPostBuild();
668 void RemoveContainerToken(
Object *
object);
674 pae::Token *GetTokenForTreeObject(
Object *
object);
679 void LogPAE(
int errCode, pae::Token &token, std::string value =
"");
681 void LogDebugTokens(
bool vertical =
false);
684 #endif // NO_PAE_SUPPORT
690 void ClearTokenObjects();
693 static const std::map<int, std::string> s_errCodes;
708 std::list<pae::Token> m_pae;
753 jsonxx::Object m_clefLog;
755 jsonxx::Object m_keysigLog;
756 jsonxx::Object m_timesigLog;
757 jsonxx::Object m_inputLog;
758 jsonxx::Array m_dataLog;
764 #endif // USE_PAE_OLD_PARSER