rename only the main outs of a route when its name changes, not inserts or sends...
[ardour2.git] / libs / audiographer / private / sndfile.hh
blob91e99875acfa5bb01611bd563e0b47f3fe763cf3
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.
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.
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.
43 ** sndfile.hh -- A lightweight C++ wrapper for the libsndfile API.
45 ** All the methods are inlines and all functionality is contained in this
46 ** file. There is no separate implementation file.
48 ** API documentation is in the doc/ directory of the source code tarball
49 ** and at http://www.mega-nerd.com/libsndfile/api.html.
52 #ifndef SNDFILE_HH
53 #define SNDFILE_HH
55 #include <sndfile.h>
57 #include <string>
58 #include <new> // for std::nothrow
60 // Prevent conflicts
61 namespace AudioGrapher {
63 class SndfileHandle
64 { private :
65 struct SNDFILE_ref
66 { SNDFILE_ref (void) ;
67 ~SNDFILE_ref (void) ;
69 SNDFILE *sf ;
70 SF_INFO sfinfo ;
71 int ref ;
72 } ;
74 SNDFILE_ref *p ;
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) ;
87 SndfileHandle (const SndfileHandle &orig) ;
88 SndfileHandle & operator = (const SndfileHandle &rhs) ;
90 /* Mainly for debugging/testing. */
91 int refCount (void) const { return (p == NULL) ? 0 : p->ref ; }
93 operator bool () const { return (p != NULL) ; }
95 bool operator == (const SndfileHandle &rhs) const { return (p == rhs.p) ; }
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 ; }
102 int error (void) const ;
103 const char * strError (void) const ;
105 int command (int cmd, void *data, int datasize) ;
107 sf_count_t seek (sf_count_t frames, int whence) ;
109 void writeSync (void) ;
111 int setString (int str_type, const char* str) ;
113 const char* getString (int str_type) const ;
115 static int formatCheck (int format, int channels, int samplerate) ;
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) ;
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) ;
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) ;
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) ;
137 sf_count_t readRaw (void *ptr, sf_count_t bytes) ;
138 sf_count_t writeRaw (const void *ptr, sf_count_t bytes) ;
142 /*==============================================================================
143 ** Nothing but implementation below.
146 inline
147 SndfileHandle::SNDFILE_ref::SNDFILE_ref (void)
148 : ref (1)
151 inline
152 SndfileHandle::SNDFILE_ref::~SNDFILE_ref (void)
153 { if (sf != NULL) sf_close (sf) ; }
155 inline
156 SndfileHandle::SndfileHandle (const char *path, int mode, int fmt, int chans, int srate)
157 : p (NULL)
159 p = new (std::nothrow) SNDFILE_ref () ;
161 if (p != NULL)
162 { p->ref = 1 ;
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 ;
171 p->sf = sf_open (path, mode, &p->sfinfo) ;
174 return ;
175 } /* SndfileHandle const char * constructor */
177 inline
178 SndfileHandle::SndfileHandle (std::string const & path, int mode, int fmt, int chans, int srate)
179 : p (NULL)
181 p = new (std::nothrow) SNDFILE_ref () ;
183 if (p != NULL)
184 { p->ref = 1 ;
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 ;
193 p->sf = sf_open (path.c_str (), mode, &p->sfinfo) ;
196 return ;
197 } /* SndfileHandle std::string constructor */
199 inline
200 SndfileHandle::SndfileHandle (int fd, bool close_desc, int mode, int fmt, int chans, int srate)
201 : p (NULL)
203 if (fd < 0)
204 return;
206 p = new (std::nothrow) SNDFILE_ref () ;
208 if (p != NULL)
209 { p->ref = 1 ;
211 p->sfinfo.frames = 0 ;
212 p->sfinfo.channels = chans ;
213 p->sfinfo.format = fmt ;
214 p->sfinfo.samplerate = srate ;
215 p->sfinfo.sections = 0 ;
216 p->sfinfo.seekable = 0 ;
218 p->sf = sf_open_fd (fd, mode, &p->sfinfo, close_desc) ;
221 return ;
222 } /* SndfileHandle fd constructor */
224 inline
225 SndfileHandle::~SndfileHandle (void)
226 { if (p != NULL && --p->ref == 0)
227 delete p ;
228 } /* SndfileHandle destructor */
231 inline
232 SndfileHandle::SndfileHandle (const SndfileHandle &orig)
233 : p (orig.p)
234 { if (p != NULL)
235 ++p->ref ;
236 } /* SndfileHandle copy constructor */
238 inline SndfileHandle &
239 SndfileHandle::operator = (const SndfileHandle &rhs)
241 if (&rhs == this)
242 return *this ;
243 if (p != NULL && --p->ref == 0)
244 delete p ;
246 p = rhs.p ;
247 if (p != NULL)
248 ++p->ref ;
250 return *this ;
251 } /* SndfileHandle assignment operator */
253 inline int
254 SndfileHandle::error (void) const
255 { return sf_error (p->sf) ; }
257 inline const char *
258 SndfileHandle::strError (void) const
259 { return sf_strerror (p->sf) ; }
261 inline int
262 SndfileHandle::command (int cmd, void *data, int datasize)
263 { return sf_command (p->sf, cmd, data, datasize) ; }
265 inline sf_count_t
266 SndfileHandle::seek (sf_count_t frame_count, int whence)
267 { return sf_seek (p->sf, frame_count, whence) ; }
269 inline void
270 SndfileHandle::writeSync (void)
271 { sf_write_sync (p->sf) ; }
273 inline int
274 SndfileHandle::setString (int str_type, const char* str)
275 { return sf_set_string (p->sf, str_type, str) ; }
277 inline const char*
278 SndfileHandle::getString (int str_type) const
279 { return sf_get_string (p->sf, str_type) ; }
281 inline int
282 SndfileHandle::formatCheck(int fmt, int chans, int srate)
284 SF_INFO sfinfo ;
286 sfinfo.frames = 0 ;
287 sfinfo.channels = chans ;
288 sfinfo.format = fmt ;
289 sfinfo.samplerate = srate ;
290 sfinfo.sections = 0 ;
291 sfinfo.seekable = 0 ;
293 return sf_format_check (&sfinfo) ;
296 /*---------------------------------------------------------------------*/
298 inline sf_count_t
299 SndfileHandle::read (short *ptr, sf_count_t items)
300 { return sf_read_short (p->sf, ptr, items) ; }
302 inline sf_count_t
303 SndfileHandle::read (int *ptr, sf_count_t items)
304 { return sf_read_int (p->sf, ptr, items) ; }
306 inline sf_count_t
307 SndfileHandle::read (float *ptr, sf_count_t items)
308 { return sf_read_float (p->sf, ptr, items) ; }
310 inline sf_count_t
311 SndfileHandle::read (double *ptr, sf_count_t items)
312 { return sf_read_double (p->sf, ptr, items) ; }
314 inline sf_count_t
315 SndfileHandle::write (const short *ptr, sf_count_t items)
316 { return sf_write_short (p->sf, ptr, items) ; }
318 inline sf_count_t
319 SndfileHandle::write (const int *ptr, sf_count_t items)
320 { return sf_write_int (p->sf, ptr, items) ; }
322 inline sf_count_t
323 SndfileHandle::write (const float *ptr, sf_count_t items)
324 { return sf_write_float (p->sf, ptr, items) ; }
326 inline sf_count_t
327 SndfileHandle::write (const double *ptr, sf_count_t items)
328 { return sf_write_double (p->sf, ptr, items) ; }
330 inline sf_count_t
331 SndfileHandle::readf (short *ptr, sf_count_t frame_count)
332 { return sf_readf_short (p->sf, ptr, frame_count) ; }
334 inline sf_count_t
335 SndfileHandle::readf (int *ptr, sf_count_t frame_count)
336 { return sf_readf_int (p->sf, ptr, frame_count) ; }
338 inline sf_count_t
339 SndfileHandle::readf (float *ptr, sf_count_t frame_count)
340 { return sf_readf_float (p->sf, ptr, frame_count) ; }
342 inline sf_count_t
343 SndfileHandle::readf (double *ptr, sf_count_t frame_count)
344 { return sf_readf_double (p->sf, ptr, frame_count) ; }
346 inline sf_count_t
347 SndfileHandle::writef (const short *ptr, sf_count_t frame_count)
348 { return sf_writef_short (p->sf, ptr, frame_count) ; }
350 inline sf_count_t
351 SndfileHandle::writef (const int *ptr, sf_count_t frame_count)
352 { return sf_writef_int (p->sf, ptr, frame_count) ; }
354 inline sf_count_t
355 SndfileHandle::writef (const float *ptr, sf_count_t frame_count)
356 { return sf_writef_float (p->sf, ptr, frame_count) ; }
358 inline sf_count_t
359 SndfileHandle::writef (const double *ptr, sf_count_t frame_count)
360 { return sf_writef_double (p->sf, ptr, frame_count) ; }
362 inline sf_count_t
363 SndfileHandle::readRaw (void *ptr, sf_count_t bytes)
364 { return sf_read_raw (p->sf, ptr, bytes) ; }
366 inline sf_count_t
367 SndfileHandle::writeRaw (const void *ptr, sf_count_t bytes)
368 { return sf_write_raw (p->sf, ptr, bytes) ; }
371 #ifdef ENABLE_SNDFILE_WINDOWS_PROTOTYPES
373 inline
374 SndfileHandle::SndfileHandle (LPCWSTR wpath, int mode, int fmt, int chans, int srate)
375 : p (NULL)
377 p = new (std::nothrow) SNDFILE_ref () ;
379 if (p != NULL)
380 { p->ref = 1 ;
382 p->sfinfo.frames = 0 ;
383 p->sfinfo.channels = chans ;
384 p->sfinfo.format = fmt ;
385 p->sfinfo.samplerate = srate ;
386 p->sfinfo.sections = 0 ;
387 p->sfinfo.seekable = 0 ;
389 p->sf = sf_wchar_open (wpath, mode, &p->sfinfo) ;
392 return ;
393 } /* SndfileHandle const wchar_t * constructor */
395 #endif
397 } // namespace AudioGrapher
399 #endif /* SNDFILE_HH */