Syllabic.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. #include <algorithm>
  42. #include <string>
  43. #include <stdexcept>
  44. #include "Syllabic.h"
  45. #include "util_log.h"
  46. #include "util_string.h"
  47. namespace sinsy
  48. {
  49. namespace
  50. {
  51. const int SYLLABIC_NUM = 4;
  52. const std::string STR_SINGLE = "single";
  53. const std::string STR_BEGIN = "begin";
  54. const std::string STR_END = "end";
  55. const std::string STR_MIDDLE = "middle";
  56. const std::string SYLLABICS[] = {
  57. STR_SINGLE, STR_BEGIN, STR_END, STR_MIDDLE
  58. };
  59. class CompSyllabic
  60. {
  61. public:
  62. //! constructor
  63. explicit CompSyllabic(const std::string& str) : target(str) {}
  64. //! destructor
  65. virtual ~CompSyllabic() {}
  66. //! ...
  67. bool operator()(const std::string& str) const {
  68. return (0 == target.compare(str)) ? true : false;
  69. }
  70. //! target
  71. const std::string& target;
  72. };
  73. };
  74. const Syllabic Syllabic::SINGLE(STR_SINGLE);
  75. const Syllabic Syllabic::BEGIN(STR_BEGIN);
  76. const Syllabic Syllabic::END(STR_END);
  77. const Syllabic Syllabic::MIDDLE(STR_MIDDLE);
  78. /*!
  79. constructor
  80. */
  81. Syllabic::Syllabic() : value(0)
  82. {
  83. }
  84. /*!
  85. constructor
  86. */
  87. Syllabic::Syllabic(const std::string& str)
  88. {
  89. set(str);
  90. }
  91. /*!
  92. copy constructor
  93. */
  94. Syllabic::Syllabic(const Syllabic& obj) : value(obj.value)
  95. {
  96. }
  97. /*!
  98. destructor
  99. */
  100. Syllabic::~Syllabic()
  101. {
  102. }
  103. /*!
  104. assignment operator
  105. */
  106. Syllabic& Syllabic::operator=(const Syllabic & obj)
  107. {
  108. if (this != &obj) {
  109. value = obj.value;
  110. }
  111. return *this;
  112. }
  113. /*!
  114. equal
  115. */
  116. bool Syllabic::operator==(const Syllabic& obj) const
  117. {
  118. return (obj.value == this->value);
  119. }
  120. /*!
  121. not equal
  122. */
  123. bool Syllabic::operator!=(const Syllabic& obj) const
  124. {
  125. return !(obj == *this);
  126. }
  127. /*!
  128. set
  129. */
  130. void Syllabic::set(const std::string& s)
  131. {
  132. std::string str(s);
  133. toLower(str);
  134. const std::string* itr(std::find_if(SYLLABICS, SYLLABICS + SYLLABIC_NUM, CompSyllabic(str)));
  135. if (itr < SYLLABICS + SYLLABIC_NUM) {
  136. value = itr - SYLLABICS;
  137. return;
  138. }
  139. ERR_MSG("Unexpected syllabic : " << str);
  140. throw std::runtime_error("Syllabic::set() invalid argument");
  141. }
  142. /*!
  143. get syllabic
  144. */
  145. const std::string& Syllabic::get() const
  146. {
  147. return SYLLABICS[value];
  148. }
  149. /*!
  150. to stream
  151. */
  152. std::ostream& operator<<(std::ostream& os, const Syllabic& syllabic)
  153. {
  154. return os << syllabic.get();
  155. }
  156. }; // namespace sinsy