MultibyteCharRange.cpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 "util_log.h"
  42. #include "util_string.h"
  43. #include "StringTokenizer.h"
  44. #include "MultibyteCharRange.h"
  45. namespace sinsy
  46. {
  47. /*!
  48. constructor
  49. */
  50. MultibyteCharRange::MultibyteCharRange()
  51. {
  52. }
  53. /*!
  54. destructor
  55. */
  56. MultibyteCharRange::~MultibyteCharRange()
  57. {
  58. }
  59. /*!
  60. add multibyte char range
  61. */
  62. bool MultibyteCharRange::addRange(size_t sz, unsigned char b, unsigned char e)
  63. {
  64. if (sz <= 0) {
  65. ERR_MSG("Multibyte char size is set to zero");
  66. return false;
  67. }
  68. if (e < b) {
  69. unsigned char tmp = b;
  70. b = e;
  71. e = tmp;
  72. }
  73. // check overlapping
  74. const RangeList::const_iterator itrEnd(rangeList.end());
  75. RangeList::const_iterator itr(rangeList.begin());
  76. for (; itrEnd != itr; ++itr) {
  77. if ((itr->begin <= b && b <= itr->end) || (itr->begin <= e && e <= itr->end)) {
  78. ERR_MSG("Multibyte char ranges are overlapped");
  79. return false;
  80. }
  81. }
  82. // add
  83. rangeList.push_back(Range(sz, b, e));
  84. return true;
  85. }
  86. /*!
  87. get char size (if 1 or unknown, return 1)
  88. */
  89. size_t MultibyteCharRange::getCharSize(unsigned char firstChar) const
  90. {
  91. const RangeList::const_iterator itrEnd(rangeList.end());
  92. RangeList::const_iterator itr(rangeList.begin());
  93. for (; itrEnd != itr; ++itr) {
  94. if (itr->begin <= firstChar && firstChar <= itr->end) {
  95. return itr->size;
  96. }
  97. }
  98. return 1;
  99. }
  100. }; // namespace sinsy