Converter.cpp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 <exception>
  43. #include <stdexcept>
  44. #include "Converter.h"
  45. #include "IConvertable.h"
  46. #include "ConfGroup.h"
  47. #include "util_log.h"
  48. #include "util_converter.h"
  49. #include "Deleter.h"
  50. namespace sinsy
  51. {
  52. namespace
  53. {
  54. /*!
  55. convert resets
  56. */
  57. void convertRests(IConf::ConvertableList::iterator begin, IConf::ConvertableList::iterator end, const std::string& silStr)
  58. {
  59. if (begin == end) {
  60. return;
  61. }
  62. IConf::ConvertableList::iterator itr(begin);
  63. for (; itr != end; ++itr) {
  64. IConvertable& convertable(**itr);
  65. if (convertable.isRest() && !convertable.isConverted()) {
  66. std::vector<PhonemeInfo> phonemes;
  67. std::string restType(PhonemeInfo::TYPE_SILENT);
  68. std::string restStr(silStr);
  69. if (begin != itr) { // not head
  70. if (!(*(itr - 1))->isRest()) { // prev note is not rest
  71. restStr = DEFAULT_PAU_STR;
  72. restType = PhonemeInfo::TYPE_PAUSE;
  73. }
  74. }
  75. if (end - 1 != itr) { // not tail
  76. if (!(*(itr + 1))->isRest()) { // prev note is not rest
  77. restStr = DEFAULT_PAU_STR;
  78. restType = PhonemeInfo::TYPE_PAUSE;
  79. }
  80. }
  81. phonemes.push_back(PhonemeInfo(restType, restStr));
  82. convertable.addInfo(phonemes);
  83. }
  84. }
  85. }
  86. };
  87. /*!
  88. constructor
  89. */
  90. Converter::Converter()
  91. {
  92. }
  93. /*!
  94. destructor
  95. */
  96. Converter::~Converter()
  97. {
  98. clear();
  99. }
  100. /*!
  101. clear
  102. */
  103. void Converter::clear()
  104. {
  105. confs.clear();
  106. }
  107. /*!
  108. set confs to converter
  109. */
  110. bool Converter::setLanguages(const std::string& languages, const std::string& dirPath)
  111. {
  112. return confManager.setLanguages(languages, dirPath);
  113. }
  114. /*!
  115. get sil string
  116. */
  117. std::string Converter::getSilStr() const
  118. {
  119. if (!confs.empty()) {
  120. return confs.front()->getSilStr();
  121. }
  122. return DEFAULT_SIL_STR;
  123. }
  124. /*!
  125. convert
  126. */
  127. bool Converter::convert(const std::string& enc, IConf::ConvertableList::iterator begin, IConf::ConvertableList::iterator end) const
  128. {
  129. // convert rests
  130. convertRests(begin, end, this->getSilStr());
  131. // convert pitches
  132. ConfGroup confs;
  133. confManager.setDefaultConfs(confs);
  134. IConf::ConvertableList::iterator b(begin);
  135. while (end != b) {
  136. IConvertable& bConv(**b);
  137. if (bConv.isConverted()) {
  138. ++b;
  139. continue;
  140. }
  141. IConf::ConvertableList::iterator e(b);
  142. for (++e; end != e; ++e) {
  143. IConvertable& eConv(**e);
  144. if (eConv.isConverted()) {
  145. confs.convert(enc, b, e);
  146. b = e + 1;
  147. break;
  148. }
  149. }
  150. if (end == e) {
  151. confs.convert(enc, b, e);
  152. b = e;
  153. }
  154. }
  155. return true;
  156. }
  157. }; // namespace sinsy