LabelData.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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_LABEL_DATA_H_
  42. #define SINSY_LABEL_DATA_H_
  43. #include <string>
  44. #include <vector>
  45. #include <map>
  46. #include <sstream>
  47. #include <stdexcept>
  48. #include "util_types.h"
  49. namespace sinsy
  50. {
  51. class LabelData
  52. {
  53. public:
  54. static const INT64 INVALID_TIME;
  55. //! constructor
  56. LabelData();
  57. //! destructor
  58. virtual ~LabelData();
  59. //! set monophone flag
  60. void setMonophoneFlag(bool b);
  61. //! set output time flag
  62. void setOutputTimeFlag(bool b);
  63. //! set begin time
  64. void setBeginTime(double d);
  65. //! set end time
  66. void setEndTime(double d);
  67. //! set label data
  68. template <class T>
  69. void set(char category, size_t number, const T&);
  70. //! get label data
  71. const std::string& get(char category, size_t number) const;
  72. private:
  73. //! monophone flag
  74. bool monophoneFlag;
  75. //! output time flag
  76. bool outputTimeFlag;
  77. //! begin time
  78. INT64 beginTime;
  79. //! end time
  80. INT64 endTime;
  81. typedef std::vector<std::string> List;
  82. typedef std::map<char, List*> Data;
  83. //! label data
  84. Data data;
  85. friend std::ostream& operator<<(std::ostream&, const LabelData&);
  86. };
  87. //! set data
  88. template <class T>
  89. void LabelData::set(char category, size_t number, const T& value)
  90. {
  91. std::ostringstream oss;
  92. oss << value;
  93. set(category, number, oss.str());
  94. }
  95. //! set data (std::string)
  96. template<>
  97. void LabelData::set<std::string>(char category, size_t number, const std::string& value);
  98. //! set data (bool)
  99. template<>
  100. void LabelData::set<bool>(char category, size_t number, const bool& value);
  101. //! to stream
  102. std::ostream& operator<<(std::ostream&, const LabelData&);
  103. };
  104. #endif // SINSY_LABEL_DATA_H_