Fix export, which has been broken since the boost::signals2 changes. Also update...
[ardour.git] / libs / audiographer / private / sndfile.hh
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 /*
34 ** The above modified BSD style license (GPL and LGPL compatible) applies to
35 ** this file. It does not apply to libsndfile itself which is released under
36 ** the GNU LGPL or the libsndfile test suite which is released under the GNU
37 ** GPL.
38 ** This means that this header file can be used under this modified BSD style
39 ** license, but the LGPL still holds for the libsndfile library itself.
40 */
41
42 /*
43 ** sndfile.hh -- A lightweight C++ wrapper for the libsndfile API.
44 **
45 ** All the methods are inlines and all functionality is contained in this
46 ** file. There is no separate implementation file.
47 **
48 ** API documentation is in the doc/ directory of the source code tarball
49 ** and at http://www.mega-nerd.com/libsndfile/api.html.
50 */
51
52 #ifndef SNDFILE_HH
53 #define SNDFILE_HH
54
55 #include <sndfile.h>
56
57 #include <string>
58 #include <new> // for std::nothrow
59
60 // Prevent conflicts
61 namespace AudioGrapher {
62
63 class SndfileHandle
64 {       private :
65                 struct SNDFILE_ref
66                 {       SNDFILE_ref (void) ;
67                         ~SNDFILE_ref (void) ;
68
69                         SNDFILE *sf ;
70                         SF_INFO sfinfo ;
71                         int ref ;
72                         } ;
73
74                 SNDFILE_ref *p ;
75
76         public :
77                         /* Default constructor */
78                         SndfileHandle (void) : p (NULL) {} ;
79                         SndfileHandle (const char *path, int mode = SFM_READ,
80                                                         int format = 0, int channels = 0, int samplerate = 0) ;
81                         SndfileHandle (std::string const & path, int mode = SFM_READ,
82                                                         int format = 0, int channels = 0, int samplerate = 0) ;
83                         SndfileHandle (int fd, bool close_desc, int mode = SFM_READ,
84                                                         int format = 0, int channels = 0, int samplerate = 0) ;
85                         ~SndfileHandle (void) ;
86
87                         SndfileHandle (const SndfileHandle &orig) ;
88                         SndfileHandle & operator = (const SndfileHandle &rhs) ;
89
90                 /* Mainly for debugging/testing. */
91                 int refCount (void) const { return (p == NULL) ? 0 : p->ref ; }
92
93                 operator bool () const { return (p != NULL) ; }
94
95                 bool operator == (const SndfileHandle &rhs) const { return (p == rhs.p) ; }
96
97                 sf_count_t      frames (void) const             { return p ? p->sfinfo.frames : 0 ; }
98                 int                     format (void) const             { return p ? p->sfinfo.format : 0 ; }
99                 int                     channels (void) const   { return p ? p->sfinfo.channels : 0 ; }
100                 int                     samplerate (void) const { return p ? p->sfinfo.samplerate : 0 ; }
101
102                 int error (void) const ;
103                 const char * strError (void) const ;
104
105                 int command (int cmd, void *data, int datasize) ;
106
107                 sf_count_t      seek (sf_count_t frames, int whence) ;
108
109                 void writeSync (void) ;
110
111                 int setString (int str_type, const char* str) ;
112
113                 const char* getString (int str_type) const ;
114
115                 static int formatCheck (int format, int channels, int samplerate) ;
116
117                 sf_count_t read (short *ptr, sf_count_t items) ;
118                 sf_count_t read (int *ptr, sf_count_t items) ;
119                 sf_count_t read (float *ptr, sf_count_t items) ;
120                 sf_count_t read (double *ptr, sf_count_t items) ;
121
122                 sf_count_t write (const short *ptr, sf_count_t items) ;
123                 sf_count_t write (const int *ptr, sf_count_t items) ;
124                 sf_count_t write (const float *ptr, sf_count_t items) ;
125                 sf_count_t write (const double *ptr, sf_count_t items) ;
126
127                 sf_count_t readf (short *ptr, sf_count_t frames) ;
128                 sf_count_t readf (int *ptr, sf_count_t frames) ;
129                 sf_count_t readf (float *ptr, sf_count_t frames) ;
130                 sf_count_t readf (double *ptr, sf_count_t frames) ;
131
132                 sf_count_t writef (const short *ptr, sf_count_t frames) ;
133                 sf_count_t writef (const int *ptr, sf_count_t frames) ;
134                 sf_count_t writef (const float *ptr, sf_count_t frames) ;
135                 sf_count_t writef (const double *ptr, sf_count_t frames) ;
136
137                 sf_count_t      readRaw         (void *ptr, sf_count_t bytes) ;
138                 sf_count_t      writeRaw        (const void *ptr, sf_count_t bytes) ;
139
140 } ;
141
142 /*==============================================================================
143 **      Nothing but implementation below.
144 */
145
146 inline
147 SndfileHandle::SNDFILE_ref::SNDFILE_ref (void)
148 : ref (1)
149 {}
150
151 inline
152 SndfileHandle::SNDFILE_ref::~SNDFILE_ref (void)
153 {       if (sf != NULL) sf_close (sf) ; }
154
155 inline
156 SndfileHandle::SndfileHandle (const char *path, int mode, int fmt, int chans, int srate)
157 : p (NULL)
158 {
159         p = new (std::nothrow) SNDFILE_ref () ;
160
161         if (p != NULL)
162         {       p->ref = 1 ;
163
164                 p->sfinfo.frames = 0 ;
165                 p->sfinfo.channels = chans ;
166                 p->sfinfo.format = fmt ;
167                 p->sfinfo.samplerate = srate ;
168                 p->sfinfo.sections = 0 ;
169                 p->sfinfo.seekable = 0 ;
170
171                 p->sf = sf_open (path, mode, &p->sfinfo) ;
172                 } ;
173
174         return ;
175 } /* SndfileHandle const char * constructor */
176
177 inline
178 SndfileHandle::SndfileHandle (std::string const & path, int mode, int fmt, int chans, int srate)
179 : p (NULL)
180 {
181         p = new (std::nothrow) SNDFILE_ref () ;
182
183         if (p != NULL)
184         {       p->ref = 1 ;
185
186                 p->sfinfo.frames = 0 ;
187                 p->sfinfo.channels = chans ;
188                 p->sfinfo.format = fmt ;
189                 p->sfinfo.samplerate = srate ;
190                 p->sfinfo.sections = 0 ;
191                 p->sfinfo.seekable = 0 ;
192
193                 p->sf = sf_open (path.c_str (), mode, &p->sfinfo) ;
194                 } ;
195
196         return ;
197 } /* SndfileHandle std::string constructor */
198
199 SndfileHandle::SndfileHandle (int fd, bool close_desc, int mode, int fmt, int chans, int srate)
200 : p (NULL)
201 {
202         if (fd < 0)
203                 return;
204
205         p = new (std::nothrow) SNDFILE_ref () ;
206
207         if (p != NULL)
208         {       p->ref = 1 ;
209
210                 p->sfinfo.frames = 0 ;
211                 p->sfinfo.channels = chans ;
212                 p->sfinfo.format = fmt ;
213                 p->sfinfo.samplerate = srate ;
214                 p->sfinfo.sections = 0 ;
215                 p->sfinfo.seekable = 0 ;
216
217                 p->sf = sf_open_fd (fd, mode, &p->sfinfo, close_desc) ;
218                 } ;
219
220         return ;
221 } /* SndfileHandle fd constructor */
222
223 inline
224 SndfileHandle::~SndfileHandle (void)
225 {       if (p != NULL && --p->ref == 0)
226                 delete p ;
227 } /* SndfileHandle destructor */
228
229
230 inline
231 SndfileHandle::SndfileHandle (const SndfileHandle &orig)
232 : p (orig.p)
233 {       if (p != NULL)
234                 ++p->ref ;
235 } /* SndfileHandle copy constructor */
236
237 inline SndfileHandle &
238 SndfileHandle::operator = (const SndfileHandle &rhs)
239 {
240         if (&rhs == this)
241                 return *this ;
242         if (p != NULL && --p->ref == 0)
243                 delete p ;
244
245         p = rhs.p ;
246         if (p != NULL)
247                 ++p->ref ;
248
249         return *this ;
250 } /* SndfileHandle assignment operator */
251
252 inline int
253 SndfileHandle::error (void) const
254 {       return sf_error (p->sf) ; }
255
256 inline const char *
257 SndfileHandle::strError (void) const
258 {       return sf_strerror (p->sf) ; }
259
260 inline int
261 SndfileHandle::command (int cmd, void *data, int datasize)
262 {       return sf_command (p->sf, cmd, data, datasize) ; }
263
264 inline sf_count_t
265 SndfileHandle::seek (sf_count_t frame_count, int whence)
266 {       return sf_seek (p->sf, frame_count, whence) ; }
267
268 inline void
269 SndfileHandle::writeSync (void)
270 {       sf_write_sync (p->sf) ; }
271
272 inline int
273 SndfileHandle::setString (int str_type, const char* str)
274 {       return sf_set_string (p->sf, str_type, str) ; }
275
276 inline const char*
277 SndfileHandle::getString (int str_type) const
278 {       return sf_get_string (p->sf, str_type) ; }
279
280 inline int
281 SndfileHandle::formatCheck(int fmt, int chans, int srate)
282 {
283         SF_INFO sfinfo ;
284
285         sfinfo.frames = 0 ;
286         sfinfo.channels = chans ;
287         sfinfo.format = fmt ;
288         sfinfo.samplerate = srate ;
289         sfinfo.sections = 0 ;
290         sfinfo.seekable = 0 ;
291
292         return sf_format_check (&sfinfo) ;
293 }
294
295 /*---------------------------------------------------------------------*/
296
297 inline sf_count_t
298 SndfileHandle::read (short *ptr, sf_count_t items)
299 {       return sf_read_short (p->sf, ptr, items) ; }
300
301 inline sf_count_t
302 SndfileHandle::read (int *ptr, sf_count_t items)
303 {       return sf_read_int (p->sf, ptr, items) ; }
304
305 inline sf_count_t
306 SndfileHandle::read (float *ptr, sf_count_t items)
307 {       return sf_read_float (p->sf, ptr, items) ; }
308
309 inline sf_count_t
310 SndfileHandle::read (double *ptr, sf_count_t items)
311 {       return sf_read_double (p->sf, ptr, items) ; }
312
313 inline sf_count_t
314 SndfileHandle::write (const short *ptr, sf_count_t items)
315 {       return sf_write_short (p->sf, ptr, items) ; }
316
317 inline sf_count_t
318 SndfileHandle::write (const int *ptr, sf_count_t items)
319 {       return sf_write_int (p->sf, ptr, items) ; }
320
321 inline sf_count_t
322 SndfileHandle::write (const float *ptr, sf_count_t items)
323 {       return sf_write_float (p->sf, ptr, items) ; }
324
325 inline sf_count_t
326 SndfileHandle::write (const double *ptr, sf_count_t items)
327 {       return sf_write_double (p->sf, ptr, items) ; }
328
329 inline sf_count_t
330 SndfileHandle::readf (short *ptr, sf_count_t frame_count)
331 {       return sf_readf_short (p->sf, ptr, frame_count) ; }
332
333 inline sf_count_t
334 SndfileHandle::readf (int *ptr, sf_count_t frame_count)
335 {       return sf_readf_int (p->sf, ptr, frame_count) ; }
336
337 inline sf_count_t
338 SndfileHandle::readf (float *ptr, sf_count_t frame_count)
339 {       return sf_readf_float (p->sf, ptr, frame_count) ; }
340
341 inline sf_count_t
342 SndfileHandle::readf (double *ptr, sf_count_t frame_count)
343 {       return sf_readf_double (p->sf, ptr, frame_count) ; }
344
345 inline sf_count_t
346 SndfileHandle::writef (const short *ptr, sf_count_t frame_count)
347 {       return sf_writef_short (p->sf, ptr, frame_count) ; }
348
349 inline sf_count_t
350 SndfileHandle::writef (const int *ptr, sf_count_t frame_count)
351 {       return sf_writef_int (p->sf, ptr, frame_count) ; }
352
353 inline sf_count_t
354 SndfileHandle::writef (const float *ptr, sf_count_t frame_count)
355 {       return sf_writef_float (p->sf, ptr, frame_count) ; }
356
357 inline sf_count_t
358 SndfileHandle::writef (const double *ptr, sf_count_t frame_count)
359 {       return sf_writef_double (p->sf, ptr, frame_count) ; }
360
361 inline sf_count_t
362 SndfileHandle::readRaw (void *ptr, sf_count_t bytes)
363 {       return sf_read_raw (p->sf, ptr, bytes) ; }
364
365 inline sf_count_t
366 SndfileHandle::writeRaw (const void *ptr, sf_count_t bytes)
367 {       return sf_write_raw (p->sf, ptr, bytes) ; }
368
369
370 #ifdef ENABLE_SNDFILE_WINDOWS_PROTOTYPES
371
372 inline
373 SndfileHandle::SndfileHandle (LPCWSTR wpath, int mode, int fmt, int chans, int srate)
374 : p (NULL)
375 {
376         p = new (std::nothrow) SNDFILE_ref () ;
377
378         if (p != NULL)
379         {       p->ref = 1 ;
380
381                 p->sfinfo.frames = 0 ;
382                 p->sfinfo.channels = chans ;
383                 p->sfinfo.format = fmt ;
384                 p->sfinfo.samplerate = srate ;
385                 p->sfinfo.sections = 0 ;
386                 p->sfinfo.seekable = 0 ;
387
388                 p->sf = sf_wchar_open (wpath, mode, &p->sfinfo) ;
389                 } ;
390
391         return ;
392 } /* SndfileHandle const wchar_t * constructor */
393
394 #endif
395
396 } // namespace AudioGrapher
397
398 #endif  /* SNDFILE_HH */
399