XmlData.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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_DATA_H_
  42. #define SINSY_XML_DATA_H_
  43. #include <vector>
  44. #include <map>
  45. #include <string>
  46. #include "StreamException.h"
  47. #include "IStringable.h"
  48. #include "Beat.h"
  49. namespace sinsy
  50. {
  51. class IReadableStream;
  52. class XmlData : public IStringWritable
  53. {
  54. public:
  55. typedef std::vector<XmlData*> Children;
  56. //! constructor
  57. XmlData(const std::string& t, const std::string& d = "");
  58. //! copy constructor
  59. XmlData(const XmlData&);
  60. //! destructor
  61. virtual ~XmlData();
  62. //! get tag
  63. const std::string& getTag() const;
  64. //! get data
  65. const std::string& getData() const;
  66. //! set data
  67. void setData(const std::string& str);
  68. //! add child
  69. Children::iterator addChild(XmlData* child);
  70. //! erase child
  71. XmlData::Children::iterator eraseChild(const Children::iterator& itr);
  72. //! add attribute
  73. bool addAttribute(const std::string& k, const std::string& v);
  74. //! get attribute
  75. const std::string& getAttribute(const std::string& k) const;
  76. //! push into stringstream
  77. std::ostream& toStringStream(std::ostream& os) const;
  78. //! get begin const iterator of children
  79. Children::const_iterator childBegin() const;
  80. //! get end const iterator of children
  81. Children::const_iterator childEnd() const;
  82. //! get begin iterator of children
  83. Children::iterator childBegin();
  84. //! get end iterator of children
  85. Children::iterator childEnd();
  86. private:
  87. //! assignment operator (donot use)
  88. XmlData& operator=(const XmlData&);
  89. //! tag
  90. std::string tag;
  91. //! data
  92. std::string data;
  93. //! children
  94. Children children;
  95. typedef std::map<std::string, std::string> Attributes;
  96. //! attributes
  97. Attributes attributes;
  98. };
  99. };
  100. #endif // SINSY_XML_DATA_H_