WritableStrStream.h 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_WRITABLE_STR_STREAM_H_
  42. #define SINSY_WRITABLE_STR_STREAM_H_
  43. #include <sstream>
  44. #include <iostream>
  45. #include "util_types.h"
  46. #include "StreamException.h"
  47. #include "IWritableStream.h"
  48. namespace sinsy
  49. {
  50. class WritableStrStream
  51. {
  52. public:
  53. //! constructor
  54. explicit WritableStrStream(IWritableStream& s) : stream(s) {}
  55. //! destructor
  56. virtual ~WritableStrStream() {}
  57. /*!
  58. convert data to string and write to stream
  59. */
  60. template<class T>
  61. WritableStrStream& operator<<(const T& buf) throw (StreamException) {
  62. oss << buf;
  63. stream.write((const void*)oss.str().c_str(), oss.str().length());
  64. oss.str("");
  65. return *this;
  66. }
  67. private:
  68. //! copy constructor (donot use)
  69. WritableStrStream(const WritableStrStream&);
  70. //! assignment operator (donot use)
  71. WritableStrStream& operator=(const WritableStrStream&);
  72. //! stream
  73. IWritableStream& stream;
  74. //! stringstream for conversion to string
  75. std::ostringstream oss;
  76. };
  77. };
  78. #endif // SINSY_WRITABLE_STR_STREAM_H_