sndfile.hh
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:10k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2005-2007 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** All rights reserved.
  5. **
  6. ** Redistribution and use in source and binary forms, with or without
  7. ** modification, are permitted provided that the following conditions are
  8. ** met:
  9. **
  10. **     * Redistributions of source code must retain the above copyright
  11. **       notice, this list of conditions and the following disclaimer.
  12. **     * Redistributions in binary form must reproduce the above copyright
  13. **       notice, this list of conditions and the following disclaimer in
  14. **       the documentation and/or other materials provided with the
  15. **       distribution.
  16. **     * Neither the author nor the names of any contributors may be used
  17. **       to endorse or promote products derived from this software without
  18. **       specific prior written permission.
  19. **
  20. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  22. ** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  24. ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27. ** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29. ** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  30. ** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. /*
  33. ** The above modified BSD style license (GPL and LGPL compatible) applies to
  34. ** this file. It does not apply to libsndfile itself which is released under
  35. ** the GNU LGPL or the libsndfile test suite which is released under the GNU
  36. ** GPL.
  37. ** This means that this header file can be used under this modified BSD style
  38. ** license, but the LGPL still holds for the libsndfile library itself.
  39. */
  40. /*
  41. ** sndfile.hh -- A lightweight C++ wrapper for the libsndfile API.
  42. **
  43. ** All the methods are inlines and all functionality is contained in this
  44. ** file. There is no separate implementation file.
  45. **
  46. ** API documentation is in the doc/ directory of the source code tarball
  47. ** and at http://www.mega-nerd.com/libsndfile/api.html.
  48. */
  49. #ifndef SNDFILE_HH
  50. #define SNDFILE_HH
  51. #include <sndfile.h>
  52. #include <string>
  53. #include <new> // for std::nothrow
  54. class SndfileHandle
  55. { private :
  56. struct SNDFILE_ref
  57. { SNDFILE_ref (void) ;
  58. ~SNDFILE_ref (void) ;
  59. SNDFILE *sf ;
  60. SF_INFO sfinfo ;
  61. int ref ;
  62. } ;
  63. SNDFILE_ref *p ;
  64. public :
  65. /* Default constructor */
  66. SndfileHandle (void) : p (NULL) {} ;
  67. SndfileHandle (const char *path, int mode = SFM_READ,
  68. int format = 0, int channels = 0, int samplerate = 0) ;
  69. SndfileHandle (std::string const & path, int mode = SFM_READ,
  70. int format = 0, int channels = 0, int samplerate = 0) ;
  71. ~SndfileHandle (void) ;
  72. SndfileHandle (const SndfileHandle &orig) ;
  73. SndfileHandle & operator = (const SndfileHandle &rhs) ;
  74. /* Mainly for debugging/testing. */
  75. int refCount (void) const { return (p == NULL) ? 0 : p->ref ; }
  76. operator bool () const { return (p != NULL) ; }
  77. bool operator == (const SndfileHandle &rhs) const { return (p == rhs.p) ; }
  78. sf_count_t frames (void) const { return p ? p->sfinfo.frames : 0 ; }
  79. int format (void) const { return p ? p->sfinfo.format : 0 ; }
  80. int channels (void) const { return p ? p->sfinfo.channels : 0 ; }
  81. int samplerate (void) const { return p ? p->sfinfo.samplerate : 0 ; }
  82. int error (void) const ;
  83. const char * strError (void) const ;
  84. int command (int cmd, void *data, int datasize) ;
  85. sf_count_t seek (sf_count_t frames, int whence) ;
  86. void writeSync (void) ;
  87. int setString (int str_type, const char* str) ;
  88. const char* getString (int str_type) const ;
  89. static int formatCheck (int format, int channels, int samplerate) ;
  90. sf_count_t read (short *ptr, sf_count_t items) ;
  91. sf_count_t read (int *ptr, sf_count_t items) ;
  92. sf_count_t read (float *ptr, sf_count_t items) ;
  93. sf_count_t read (double *ptr, sf_count_t items) ;
  94. sf_count_t write (const short *ptr, sf_count_t items) ;
  95. sf_count_t write (const int *ptr, sf_count_t items) ;
  96. sf_count_t write (const float *ptr, sf_count_t items) ;
  97. sf_count_t write (const double *ptr, sf_count_t items) ;
  98. sf_count_t readf (short *ptr, sf_count_t frames) ;
  99. sf_count_t readf (int *ptr, sf_count_t frames) ;
  100. sf_count_t readf (float *ptr, sf_count_t frames) ;
  101. sf_count_t readf (double *ptr, sf_count_t frames) ;
  102. sf_count_t writef (const short *ptr, sf_count_t frames) ;
  103. sf_count_t writef (const int *ptr, sf_count_t frames) ;
  104. sf_count_t writef (const float *ptr, sf_count_t frames) ;
  105. sf_count_t writef (const double *ptr, sf_count_t frames) ;
  106. sf_count_t readRaw (void *ptr, sf_count_t bytes) ;
  107. sf_count_t writeRaw (const void *ptr, sf_count_t bytes) ;
  108. } ;
  109. /*==============================================================================
  110. ** Nothing but implementation below.
  111. */
  112. inline
  113. SndfileHandle::SNDFILE_ref::SNDFILE_ref (void)
  114. : ref (1)
  115. {}
  116. inline
  117. SndfileHandle::SNDFILE_ref::~SNDFILE_ref (void)
  118. { if (sf != NULL) sf_close (sf) ; }
  119. inline
  120. SndfileHandle::SndfileHandle (const char *path, int mode, int fmt, int chans, int srate)
  121. : p (NULL)
  122. {
  123. p = new (std::nothrow) SNDFILE_ref () ;
  124. if (p != NULL)
  125. { p->ref = 1 ;
  126. p->sfinfo.frames = 0 ;
  127. p->sfinfo.channels = chans ;
  128. p->sfinfo.format = fmt ;
  129. p->sfinfo.samplerate = srate ;
  130. p->sfinfo.sections = 0 ;
  131. p->sfinfo.seekable = 0 ;
  132. p->sf = sf_open (path, mode, &p->sfinfo) ;
  133. } ;
  134. return ;
  135. } /* SndfileHandle const char * constructor */
  136. inline
  137. SndfileHandle::SndfileHandle (std::string const & path, int mode, int fmt, int chans, int srate)
  138. : p (NULL)
  139. {
  140. p = new (std::nothrow) SNDFILE_ref () ;
  141. if (p != NULL)
  142. { p->ref = 1 ;
  143. p->sfinfo.frames = 0 ;
  144. p->sfinfo.channels = chans ;
  145. p->sfinfo.format = fmt ;
  146. p->sfinfo.samplerate = srate ;
  147. p->sfinfo.sections = 0 ;
  148. p->sfinfo.seekable = 0 ;
  149. p->sf = sf_open (path.c_str (), mode, &p->sfinfo) ;
  150. } ;
  151. return ;
  152. } /* SndfileHandle std::string constructor */
  153. inline
  154. SndfileHandle::~SndfileHandle (void)
  155. { if (p != NULL && --p->ref == 0)
  156. delete p ;
  157. } /* SndfileHandle destructor */
  158. inline
  159. SndfileHandle::SndfileHandle (const SndfileHandle &orig)
  160. : p (orig.p)
  161. { if (p != NULL)
  162. ++p->ref ;
  163. } /* SndfileHandle copy constructor */
  164. inline SndfileHandle &
  165. SndfileHandle::operator = (const SndfileHandle &rhs)
  166. {
  167. if (&rhs == this)
  168. return *this ;
  169. if (p != NULL && --p->ref == 0)
  170. delete p ;
  171. p = rhs.p ;
  172. if (p != NULL)
  173. ++p->ref ;
  174. return *this ;
  175. } /* SndfileHandle assignment operator */
  176. inline int
  177. SndfileHandle::error (void) const
  178. { return sf_error (p->sf) ; }
  179. inline const char *
  180. SndfileHandle::strError (void) const
  181. { return sf_strerror (p->sf) ; }
  182. inline int
  183. SndfileHandle::command (int cmd, void *data, int datasize)
  184. { return sf_command (p->sf, cmd, data, datasize) ; }
  185. inline sf_count_t
  186. SndfileHandle::seek (sf_count_t frame_count, int whence)
  187. { return sf_seek (p->sf, frame_count, whence) ; }
  188. inline void
  189. SndfileHandle::writeSync (void)
  190. { sf_write_sync (p->sf) ; }
  191. inline int
  192. SndfileHandle::setString (int str_type, const char* str)
  193. { return sf_set_string (p->sf, str_type, str) ; }
  194. inline const char*
  195. SndfileHandle::getString (int str_type) const
  196. { return sf_get_string (p->sf, str_type) ; }
  197. inline int
  198. SndfileHandle::formatCheck(int fmt, int chans, int srate)
  199. {
  200. SF_INFO sfinfo ;
  201. sfinfo.frames = 0 ;
  202. sfinfo.channels = chans ;
  203. sfinfo.format = fmt ;
  204. sfinfo.samplerate = srate ;
  205. sfinfo.sections = 0 ;
  206. sfinfo.seekable = 0 ;
  207. return sf_format_check (&sfinfo) ;
  208. }
  209. /*---------------------------------------------------------------------*/
  210. inline sf_count_t
  211. SndfileHandle::read (short *ptr, sf_count_t items)
  212. { return sf_read_short (p->sf, ptr, items) ; }
  213. inline sf_count_t
  214. SndfileHandle::read (int *ptr, sf_count_t items)
  215. { return sf_read_int (p->sf, ptr, items) ; }
  216. inline sf_count_t
  217. SndfileHandle::read (float *ptr, sf_count_t items)
  218. { return sf_read_float (p->sf, ptr, items) ; }
  219. inline sf_count_t
  220. SndfileHandle::read (double *ptr, sf_count_t items)
  221. { return sf_read_double (p->sf, ptr, items) ; }
  222. inline sf_count_t
  223. SndfileHandle::write (const short *ptr, sf_count_t items)
  224. { return sf_write_short (p->sf, ptr, items) ; }
  225. inline sf_count_t
  226. SndfileHandle::write (const int *ptr, sf_count_t items)
  227. { return sf_write_int (p->sf, ptr, items) ; }
  228. inline sf_count_t
  229. SndfileHandle::write (const float *ptr, sf_count_t items)
  230. { return sf_write_float (p->sf, ptr, items) ; }
  231. inline sf_count_t
  232. SndfileHandle::write (const double *ptr, sf_count_t items)
  233. { return sf_write_double (p->sf, ptr, items) ; }
  234. inline sf_count_t
  235. SndfileHandle::readf (short *ptr, sf_count_t frame_count)
  236. { return sf_readf_short (p->sf, ptr, frame_count) ; }
  237. inline sf_count_t
  238. SndfileHandle::readf (int *ptr, sf_count_t frame_count)
  239. { return sf_readf_int (p->sf, ptr, frame_count) ; }
  240. inline sf_count_t
  241. SndfileHandle::readf (float *ptr, sf_count_t frame_count)
  242. { return sf_readf_float (p->sf, ptr, frame_count) ; }
  243. inline sf_count_t
  244. SndfileHandle::readf (double *ptr, sf_count_t frame_count)
  245. { return sf_readf_double (p->sf, ptr, frame_count) ; }
  246. inline sf_count_t
  247. SndfileHandle::writef (const short *ptr, sf_count_t frame_count)
  248. { return sf_writef_short (p->sf, ptr, frame_count) ; }
  249. inline sf_count_t
  250. SndfileHandle::writef (const int *ptr, sf_count_t frame_count)
  251. { return sf_writef_int (p->sf, ptr, frame_count) ; }
  252. inline sf_count_t
  253. SndfileHandle::writef (const float *ptr, sf_count_t frame_count)
  254. { return sf_writef_float (p->sf, ptr, frame_count) ; }
  255. inline sf_count_t
  256. SndfileHandle::writef (const double *ptr, sf_count_t frame_count)
  257. { return sf_writef_double (p->sf, ptr, frame_count) ; }
  258. inline sf_count_t
  259. SndfileHandle::readRaw (void *ptr, sf_count_t bytes)
  260. { return sf_read_raw (p->sf, ptr, bytes) ; }
  261. inline sf_count_t
  262. SndfileHandle::writeRaw (const void *ptr, sf_count_t bytes)
  263. { return sf_write_raw (p->sf, ptr, bytes) ; }
  264. #ifdef ENABLE_SNDFILE_WINDOWS_PROTOTYPES
  265. inline
  266. SndfileHandle::SndfileHandle (LPCWSTR wpath, int mode, int fmt, int chans, int srate)
  267. : p (NULL)
  268. {
  269. p = new (std::nothrow) SNDFILE_ref () ;
  270. if (p != NULL)
  271. { p->ref = 1 ;
  272. p->sfinfo.frames = 0 ;
  273. p->sfinfo.channels = chans ;
  274. p->sfinfo.format = fmt ;
  275. p->sfinfo.samplerate = srate ;
  276. p->sfinfo.sections = 0 ;
  277. p->sfinfo.seekable = 0 ;
  278. p->sf = sf_wchar_open (wpath, mode, &p->sfinfo) ;
  279. } ;
  280. return ;
  281. } /* SndfileHandle const wchar_t * constructor */
  282. #endif
  283. #endif /* SNDFILE_HH */