XmlWriter.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /* ----------------------------------------------------------------- */
  2. /* The HMM-Based Singing Voice Synthesis System "Sinsy" */
  3. /* developed by Sinsy Working Group */
  4. /* http://sinsy.sourceforge.net/ */
  5. /* ----------------------------------------------------------------- */
  6. /* */
  7. /* Copyright (c) 2009-2015 Nagoya Institute of Technology */
  8. /* Department of Computer Science */
  9. /* */
  10. /* All rights reserved. */
  11. /* */
  12. /* Redistribution and use in source and binary forms, with or */
  13. /* without modification, are permitted provided that the following */
  14. /* conditions are met: */
  15. /* */
  16. /* - Redistributions of source code must retain the above copyright */
  17. /* notice, this list of conditions and the following disclaimer. */
  18. /* - Redistributions in binary form must reproduce the above */
  19. /* copyright notice, this list of conditions and the following */
  20. /* disclaimer in the documentation and/or other materials provided */
  21. /* with the distribution. */
  22. /* - Neither the name of the Sinsy working group nor the names of */
  23. /* its contributors may be used to endorse or promote products */
  24. /* derived from this software without specific prior written */
  25. /* permission. */
  26. /* */
  27. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */
  28. /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */
  29. /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
  30. /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
  31. /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */
  32. /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */
  33. /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */
  34. /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  35. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
  36. /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */
  37. /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */
  38. /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
  39. /* POSSIBILITY OF SUCH DAMAGE. */
  40. /* ----------------------------------------------------------------- */
  41. #ifndef SINSY_XML_WRITER_H_
  42. #define SINSY_XML_WRITER_H_
  43. #include "ForEachAdapter.h"
  44. #include "Beat.h"
  45. #include "TempScore.h"
  46. #include "XmlData.h"
  47. #include "IScoreWritable.h"
  48. namespace sinsy
  49. {
  50. class WritableStrStream;
  51. class Converter;
  52. class XmlWriter : public IScoreWritable
  53. {
  54. public:
  55. typedef size_t Clef;
  56. static const Clef CLEF_DEFAULT;
  57. static const Clef CLEF_G;
  58. static const Clef CLEF_F;
  59. static const Clef CLEF_C;
  60. public:
  61. //! constructor
  62. XmlWriter();
  63. //! destructor
  64. virtual ~XmlWriter();
  65. //! clear;
  66. void clear();
  67. //! get xml data
  68. const XmlData* getXmlData() const;
  69. // set encoding
  70. virtual void setEncoding(const std::string& encoding);
  71. //! change tempo
  72. virtual void changeTempo(double tempo);
  73. //! change beat
  74. virtual void changeBeat(const Beat& beat);
  75. //! change dynamics
  76. virtual void changeDynamics(const Dynamics& dynamics);
  77. //! change key
  78. virtual void changeKey(const Key& key);
  79. //! start crescendo
  80. virtual void startCrescendo();
  81. //! start diminuendo
  82. virtual void startDiminuendo();
  83. //! stop crescendo
  84. virtual void stopCrescendo();
  85. //! stop diminuendo
  86. virtual void stopDiminuendo();
  87. //! add note
  88. virtual void addNote(const Note& note);
  89. //! write xml to stream
  90. bool writeXml(WritableStrStream& stream) const;
  91. //! set clef
  92. void setClef(Clef clef);
  93. private:
  94. //! copy constructor (donot use)
  95. XmlWriter(const XmlWriter&);
  96. //! assignment operator (donot use)
  97. XmlWriter& operator=(const XmlWriter&);
  98. //! set note tag
  99. void setNoteTag(const Note& note);
  100. //! set wedge tag
  101. void setWedgeTag(const std::string& type);
  102. //! set tags of head measure
  103. void setHeadMeasureTag();
  104. //! initialize xml data
  105. void initXmlData();
  106. //! fix measure
  107. void fixMeasure();
  108. //! get last measure
  109. XmlData* getLastMeasure();
  110. //! add xml data
  111. void addXmlData(XmlData* att);
  112. //! xml data
  113. XmlData* xmlData;
  114. //! encoding
  115. std::string encoding;
  116. //! part tag
  117. XmlData* part;
  118. //! last beat
  119. Beat lastBeat;
  120. //! last key
  121. Key lastKey;
  122. //! last measure
  123. XmlData* lastMeasure;
  124. //! number of last measure
  125. size_t lastMeasureNumber;
  126. //! last syllabic
  127. Syllabic lastSyllabic;
  128. //! duration to check end of measure
  129. size_t duration;
  130. Clef clef;
  131. };
  132. };
  133. #endif // SINSY_XML_CONVERTER_H_