sndfile2k  1.2.0
sndfile2k.hpp
Go to the documentation of this file.
1 /*
2 ** Copyright (C) 2005-2017 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 
50 #pragma once
51 
52 #include "sndfile2k.h"
53 
54 #include <string>
55 #include <new> // for std::nothrow
56 
61 {
62  private:
63  struct SNDFILE_ref
64  {
65  SNDFILE_ref(void);
66  ~SNDFILE_ref(void);
67 
68  SNDFILE *sf;
69  SF_INFO sfinfo;
70  int ref;
71  };
72 
73  SNDFILE_ref *p;
74 
75  public:
79  SndfileHandle(void) : p(NULL){};
80 
108  SndfileHandle(const char *path, int mode = SFM_READ, int format = 0, int channels = 0,
109  int samplerate = 0);
110 
125  SndfileHandle(std::string const &path, int mode = SFM_READ, int format = 0, int channels = 0,
126  int samplerate = 0);
127 
161  SndfileHandle(int fd, bool close_desc, int mode = SFM_READ, int format = 0, int channels = 0,
162  int samplerate = 0);
163 
182  SndfileHandle(SF_VIRTUAL_IO &sfvirtual, void *user_data, int mode = SFM_READ, int format = 0,
183  int channels = 0, int samplerate = 0);
184 
185 #if (defined(_WIN32) || defined(__CYGWIN__))
186 
203  SndfileHandle(const wchar_t *wpath, int mode = SFM_READ, int format = 0, int channels = 0,
204  int samplerate = 0);
205 #endif
206 
209  ~SndfileHandle(void);
210 
213  SndfileHandle(const SndfileHandle &orig);
214 
218 
221  int refCount(void) const
222  {
223  return (p == NULL) ? 0 : p->ref;
224  }
225 
228  operator bool() const
229  {
230  return (p != NULL);
231  }
232 
235  bool operator==(const SndfileHandle &rhs) const
236  {
237  return (p == rhs.p);
238  }
239 
242  sf_count_t frames(void) const
243  {
244  return p ? p->sfinfo.frames : 0;
245  }
246 
251  int format(void) const
252  {
253  return p ? p->sfinfo.format : 0;
254  }
255 
258  int channels(void) const
259  {
260  return p ? p->sfinfo.channels : 0;
261  }
262 
265  int samplerate(void) const
266  {
267  return p ? p->sfinfo.samplerate : 0;
268  }
269 
285  int error(void) const;
286 
293  const char *strError(void) const;
294 
303  int command(int cmd, void *data, int datasize);
304 
331  sf_count_t seek(sf_count_t frames, int whence);
332 
339  void writeSync(void);
340 
356  int setString(int str_type, const char *str);
357 
366  const char *getString(int str_type) const;
367 
378  static int formatCheck(int format, int channels, int samplerate);
379 
387  sf_count_t read(short *ptr, sf_count_t items);
388 
396  sf_count_t read(int *ptr, sf_count_t items);
397 
405  sf_count_t read(float *ptr, sf_count_t items);
406 
414  sf_count_t read(double *ptr, sf_count_t items);
415 
423  sf_count_t write(const short *ptr, sf_count_t items);
424 
432  sf_count_t write(const int *ptr, sf_count_t items);
433 
441  sf_count_t write(const float *ptr, sf_count_t items);
442 
450  sf_count_t write(const double *ptr, sf_count_t items);
451 
459  sf_count_t readf(short *ptr, sf_count_t frames);
460 
468  sf_count_t readf(int *ptr, sf_count_t frames);
469 
477  sf_count_t readf(float *ptr, sf_count_t frames);
478 
486  sf_count_t readf(double *ptr, sf_count_t frames);
487 
495  sf_count_t writef(const short *ptr, sf_count_t frames);
496 
504  sf_count_t writef(const int *ptr, sf_count_t frames);
505 
513  sf_count_t writef(const float *ptr, sf_count_t frames);
514 
522  sf_count_t writef(const double *ptr, sf_count_t frames);
523 
534  sf_count_t readRaw(void *ptr, sf_count_t bytes);
535 
546  sf_count_t writeRaw(const void *ptr, sf_count_t bytes);
547 
550  SNDFILE *rawHandle(void);
551 
554  SNDFILE *takeOwnership(void);
555 };
556 
557 /*==============================================================================
558 ** Nothing but implementation below.
559 */
560 
561 inline SndfileHandle::SNDFILE_ref::SNDFILE_ref(void) : sf(NULL), sfinfo(), ref(1)
562 {
563 }
564 
565 inline SndfileHandle::SNDFILE_ref::~SNDFILE_ref(void)
566 {
567  if (sf != NULL)
568  sf_close(sf);
569 }
570 
571 inline SndfileHandle::SndfileHandle(const char *path, int mode, int fmt, int chans, int srate)
572  : p(NULL)
573 {
574  p = new (std::nothrow) SNDFILE_ref();
575 
576  if (p != NULL)
577  {
578  p->ref = 1;
579 
580  p->sfinfo.frames = 0;
581  p->sfinfo.channels = chans;
582  p->sfinfo.format = fmt;
583  p->sfinfo.samplerate = srate;
584  p->sfinfo.sections = 0;
585  p->sfinfo.seekable = 0;
586 
587  p->sf = sf_open(path, mode, &p->sfinfo);
588  };
589 
590  return;
591 } /* SndfileHandle const char * constructor */
592 
593 inline SndfileHandle::SndfileHandle(std::string const &path, int mode, int fmt, int chans,
594  int srate)
595  : p(NULL)
596 {
597  p = new (std::nothrow) SNDFILE_ref();
598 
599  if (p != NULL)
600  {
601  p->ref = 1;
602 
603  p->sfinfo.frames = 0;
604  p->sfinfo.channels = chans;
605  p->sfinfo.format = fmt;
606  p->sfinfo.samplerate = srate;
607  p->sfinfo.sections = 0;
608  p->sfinfo.seekable = 0;
609 
610  p->sf = sf_open(path.c_str(), mode, &p->sfinfo);
611  };
612 
613  return;
614 } /* SndfileHandle std::string constructor */
615 
616 inline SndfileHandle::SndfileHandle(int fd, bool close_desc, int mode, int fmt, int chans,
617  int srate)
618  : p(NULL)
619 {
620  if (fd < 0)
621  return;
622 
623  p = new (std::nothrow) SNDFILE_ref();
624 
625  if (p != NULL)
626  {
627  p->ref = 1;
628 
629  p->sfinfo.frames = 0;
630  p->sfinfo.channels = chans;
631  p->sfinfo.format = fmt;
632  p->sfinfo.samplerate = srate;
633  p->sfinfo.sections = 0;
634  p->sfinfo.seekable = 0;
635 
636  p->sf = sf_open_fd(fd, mode, &p->sfinfo, close_desc);
637  };
638 
639  return;
640 } /* SndfileHandle fd constructor */
641 
642 inline SndfileHandle::SndfileHandle(SF_VIRTUAL_IO &sfvirtual, void *user_data, int mode, int fmt,
643  int chans, int srate)
644  : p(NULL)
645 {
646  p = new (std::nothrow) SNDFILE_ref();
647 
648  if (p != NULL)
649  {
650  p->ref = 1;
651 
652  p->sfinfo.frames = 0;
653  p->sfinfo.channels = chans;
654  p->sfinfo.format = fmt;
655  p->sfinfo.samplerate = srate;
656  p->sfinfo.sections = 0;
657  p->sfinfo.seekable = 0;
658 
659  p->sf = sf_open_virtual(&sfvirtual, mode, &p->sfinfo, user_data);
660  };
661 
662  return;
663 } /* SndfileHandle std::string constructor */
664 
666 {
667  if (p != NULL && --p->ref == 0)
668  delete p;
669 } /* SndfileHandle destructor */
670 
671 inline SndfileHandle::SndfileHandle(const SndfileHandle &orig) : p(orig.p)
672 {
673  if (p != NULL)
674  ++p->ref;
675 } /* SndfileHandle copy constructor */
676 
678 {
679  if (&rhs == this)
680  return *this;
681  if (p != NULL && --p->ref == 0)
682  delete p;
683 
684  p = rhs.p;
685  if (p != NULL)
686  ++p->ref;
687 
688  return *this;
689 } /* SndfileHandle assignment operator */
690 
691 inline int SndfileHandle::error(void) const
692 {
693  return sf_error(p->sf);
694 }
695 
696 inline const char *SndfileHandle::strError(void) const
697 {
698  return sf_strerror(p->sf);
699 }
700 
701 inline int SndfileHandle::command(int cmd, void *data, int datasize)
702 {
703  return sf_command(p->sf, cmd, data, datasize);
704 }
705 
706 inline sf_count_t SndfileHandle::seek(sf_count_t frame_count, int whence)
707 {
708  return sf_seek(p->sf, frame_count, whence);
709 }
710 
711 inline void SndfileHandle::writeSync(void)
712 {
713  sf_write_sync(p->sf);
714 }
715 
731 inline int SndfileHandle::setString(int str_type, const char *str)
732 {
733  return sf_set_string(p->sf, str_type, str);
734 }
735 
743 inline const char *SndfileHandle::getString(int str_type) const
744 {
745  return sf_get_string(p->sf, str_type);
746 }
747 
748 inline int SndfileHandle::formatCheck(int fmt, int chans, int srate)
749 {
750  SF_INFO sfinfo;
751 
752  sfinfo.frames = 0;
753  sfinfo.channels = chans;
754  sfinfo.format = fmt;
755  sfinfo.samplerate = srate;
756  sfinfo.sections = 0;
757  sfinfo.seekable = 0;
758 
759  return sf_format_check(&sfinfo);
760 }
761 
762 /*---------------------------------------------------------------------*/
763 
764 inline sf_count_t SndfileHandle::read(short *ptr, sf_count_t items)
765 {
766  return sf_read_short(p->sf, ptr, items);
767 }
768 
770 {
771  return sf_read_int(p->sf, ptr, items);
772 }
773 
774 inline sf_count_t SndfileHandle::read(float *ptr, sf_count_t items)
775 {
776  return sf_read_float(p->sf, ptr, items);
777 }
778 
779 inline sf_count_t SndfileHandle::read(double *ptr, sf_count_t items)
780 {
781  return sf_read_double(p->sf, ptr, items);
782 }
783 
784 inline sf_count_t SndfileHandle::write(const short *ptr, sf_count_t items)
785 {
786  return sf_write_short(p->sf, ptr, items);
787 }
788 
789 inline sf_count_t SndfileHandle::write(const int *ptr, sf_count_t items)
790 {
791  return sf_write_int(p->sf, ptr, items);
792 }
793 
794 inline sf_count_t SndfileHandle::write(const float *ptr, sf_count_t items)
795 {
796  return sf_write_float(p->sf, ptr, items);
797 }
798 
799 inline sf_count_t SndfileHandle::write(const double *ptr, sf_count_t items)
800 {
801  return sf_write_double(p->sf, ptr, items);
802 }
803 
804 inline sf_count_t SndfileHandle::readf(short *ptr, sf_count_t frame_count)
805 {
806  return sf_readf_short(p->sf, ptr, frame_count);
807 }
808 
809 inline sf_count_t SndfileHandle::readf(int *ptr, sf_count_t frame_count)
810 {
811  return sf_readf_int(p->sf, ptr, frame_count);
812 }
813 
814 inline sf_count_t SndfileHandle::readf(float *ptr, sf_count_t frame_count)
815 {
816  return sf_readf_float(p->sf, ptr, frame_count);
817 }
818 
819 inline sf_count_t SndfileHandle::readf(double *ptr, sf_count_t frame_count)
820 {
821  return sf_readf_double(p->sf, ptr, frame_count);
822 }
823 
824 inline sf_count_t SndfileHandle::writef(const short *ptr, sf_count_t frame_count)
825 {
826  return sf_writef_short(p->sf, ptr, frame_count);
827 }
828 
829 inline sf_count_t SndfileHandle::writef(const int *ptr, sf_count_t frame_count)
830 {
831  return sf_writef_int(p->sf, ptr, frame_count);
832 }
833 
834 inline sf_count_t SndfileHandle::writef(const float *ptr, sf_count_t frame_count)
835 {
836  return sf_writef_float(p->sf, ptr, frame_count);
837 }
838 
839 inline sf_count_t SndfileHandle::writef(const double *ptr, sf_count_t frame_count)
840 {
841  return sf_writef_double(p->sf, ptr, frame_count);
842 }
843 
845 {
846  return sf_read_raw(p->sf, ptr, bytes);
847 }
848 
849 inline sf_count_t SndfileHandle::writeRaw(const void *ptr, sf_count_t bytes)
850 {
851  return sf_write_raw(p->sf, ptr, bytes);
852 }
853 
855 {
856  return (p ? p->sf : NULL);
857 }
858 
860 {
861  if (p == NULL || (p->ref != 1))
862  return NULL;
863 
864  SNDFILE *sf = p->sf;
865  p->sf = NULL;
866  delete p;
867  p = NULL;
868  return sf;
869 }
870 
871 #if (defined(_WIN32) || defined(__CYGWIN__))
872 
873 inline SndfileHandle::SndfileHandle(const wchar_t *wpath, int mode, int fmt, int chans, int srate)
874  : p(NULL)
875 {
876  p = new (std::nothrow) SNDFILE_ref();
877 
878  if (p != NULL)
879  {
880  p->ref = 1;
881 
882  p->sfinfo.frames = 0;
883  p->sfinfo.channels = chans;
884  p->sfinfo.format = fmt;
885  p->sfinfo.samplerate = srate;
886  p->sfinfo.sections = 0;
887  p->sfinfo.seekable = 0;
888 
889  p->sf = sf_wchar_open(wpath, mode, &p->sfinfo);
890  };
891 
892  return;
893 } /* SndfileHandle const wchar_t * constructor */
894 
895 #endif
SNDFILE * takeOwnership(void)
Takes ownership of handle, if reference count is 1.
Definition: sndfile2k.hpp:859
int seekable
Indicates that sound file is seekable if set to non-zero value.
Definition: sndfile2k.h:1099
SNDFILE2K_EXPORT sf_count_t sf_writef_float(SNDFILE *sndfile, const float *ptr, sf_count_t frames)
Writes float (32-bit) frames to file.
SNDFILE2K_EXPORT sf_count_t sf_read_short(SNDFILE *sndfile, short *ptr, sf_count_t items)
Reads short (16-bit) samples from file.
bool operator==(const SndfileHandle &rhs) const
Compares one sound file object with other.
Definition: sndfile2k.hpp:235
int64_t sf_count_t
Represents file offset type.
Definition: sndfile2k.h:1078
SNDFILE2K_EXPORT int sf_error(SNDFILE *sndfile)
Returns the current error code for the given SNDFILE.
SNDFILE2K_EXPORT sf_count_t sf_writef_short(SNDFILE *sndfile, const short *ptr, sf_count_t frames)
Writes short (16-bit) frames to file.
sf_count_t writef(const short *ptr, sf_count_t frames)
Writes short (16-bit) frames to file.
Definition: sndfile2k.hpp:824
sf_count_t read(short *ptr, sf_count_t items)
Reads short (16-bit) samples from file.
Definition: sndfile2k.hpp:764
int command(int cmd, void *data, int datasize)
Gets or sets parameters of library or sound file object.
Definition: sndfile2k.hpp:701
Read mode.
Definition: sndfile2k.h:978
SNDFILE2K_EXPORT int sf_command(SNDFILE *sndfile, int command, void *data, int datasize)
Gets or sets parameters of library or sound file.
SNDFILE2K_EXPORT sf_count_t sf_write_float(SNDFILE *sndfile, const float *ptr, sf_count_t items)
Writes float (32-bit) samples to file.
SNDFILE2K_EXPORT SNDFILE * sf_open_fd(int fd, int mode, SF_INFO *sfinfo, int close_desc)
Opens sound file using POSIX file descriptor.
int channels
The count of channels.
Definition: sndfile2k.h:1093
int setString(int str_type, const char *str)
Sets string field.
Definition: sndfile2k.hpp:731
SNDFILE2K_EXPORT sf_count_t sf_write_short(SNDFILE *sndfile, const short *ptr, sf_count_t items)
Writes short (16-bit) samples to file.
SNDFILE2K_EXPORT sf_count_t sf_read_int(SNDFILE *sndfile, int *ptr, sf_count_t items)
Reads integer (32-bit) samples from file.
int sections
Unused.
Definition: sndfile2k.h:1097
sf_count_t readf(short *ptr, sf_count_t frames)
Reads short (16-bit) frames from file.
Definition: sndfile2k.hpp:804
SNDFILE2K_EXPORT const char * sf_strerror(SNDFILE *sndfile)
Returns textual description of the current error code for the given SNDFILE.
SNDFILE2K_EXPORT SNDFILE * sf_open(const char *path, int mode, SF_INFO *sfinfo)
Opens the specified sound file using path.
sf_count_t readRaw(void *ptr, sf_count_t bytes)
Read raw bytes from sound file.
Definition: sndfile2k.hpp:844
SNDFILE2K_EXPORT int sf_set_string(SNDFILE *sndfile, int str_type, const char *str)
Sets string field for given sound file.
SNDFILE2K_EXPORT sf_count_t sf_write_double(SNDFILE *sndfile, const double *ptr, sf_count_t items)
Writes double (64-bit) samples to file.
int samplerate
The sampling rate in Hz.
Definition: sndfile2k.h:1091
SNDFILE2K_EXPORT SNDFILE * sf_open_virtual(SF_VIRTUAL_IO *sfvirtual, int mode, SF_INFO *sfinfo, void *user_data)
Opens sound file using Virtual I/O context.
SndFile2K C API reference.
static int formatCheck(int format, int channels, int samplerate)
Checks correctness of format parameters combination.
Definition: sndfile2k.hpp:748
SNDFILE2K_EXPORT sf_count_t sf_write_raw(SNDFILE *sndfile, const void *ptr, sf_count_t bytes)
Writes raw bytes to sound file.
SndFile class.
Definition: sndfile2k.hpp:60
SNDFILE2K_EXPORT sf_count_t sf_readf_int(SNDFILE *sndfile, int *ptr, sf_count_t frames)
Reads integer (32-bit) frames from file.
int samplerate(void) const
Gets samplerate.
Definition: sndfile2k.hpp:265
int channels(void) const
Gets number of channels.
Definition: sndfile2k.hpp:258
SNDFILE2K_EXPORT int sf_close(SNDFILE *sndfile)
Closes the SNDFILE object.
void writeSync(void)
Forces writing of data to disk.
Definition: sndfile2k.hpp:711
SNDFILE2K_EXPORT void sf_write_sync(SNDFILE *sndfile)
Forces writing of data to disk.
SNDFILE2K_EXPORT sf_count_t sf_writef_int(SNDFILE *sndfile, const int *ptr, sf_count_t frames)
Writes integer (32-bit) frames to file.
SNDFILE2K_EXPORT sf_count_t sf_read_raw(SNDFILE *sndfile, void *ptr, sf_count_t bytes)
Read raw bytes from sound file.
SndfileHandle(void)
SndFileHandle default constructor.
Definition: sndfile2k.hpp:79
SNDFILE2K_EXPORT sf_count_t sf_readf_short(SNDFILE *sndfile, short *ptr, sf_count_t frames)
Reads short (16-bit) frames from file.
int error(void) const
Gets the current error code of sound file object.
Definition: sndfile2k.hpp:691
SNDFILE2K_EXPORT sf_count_t sf_readf_double(SNDFILE *sndfile, double *ptr, sf_count_t frames)
Reads double (64-bit) frames from file.
Defines virtual file I/O context.
Definition: sndfile2k.h:1439
SNDFILE2K_EXPORT sf_count_t sf_write_int(SNDFILE *sndfile, const int *ptr, sf_count_t items)
Writes integer (32-bit) samples to file.
SNDFILE2K_EXPORT sf_count_t sf_read_double(SNDFILE *sndfile, double *ptr, sf_count_t items)
Reads double (64-bit) samples from file.
sf_count_t writeRaw(const void *ptr, sf_count_t bytes)
Writes raw bytes to sound file.
Definition: sndfile2k.hpp:849
int format
Combination of major and minor format flags. See SF_FORMAT for details.
Definition: sndfile2k.h:1095
SNDFILE2K_EXPORT sf_count_t sf_readf_float(SNDFILE *sndfile, float *ptr, sf_count_t frames)
Reads float (32-bit) frames from file.
struct sf_private_tag SNDFILE
Represents opened sound file.
Definition: sndfile2k.h:1072
const char * getString(int str_type) const
Gets string field.
Definition: sndfile2k.hpp:743
SNDFILE2K_EXPORT const char * sf_get_string(SNDFILE *sndfile, int str_type)
Gets string field from given sound file.
int refCount(void) const
Gets number of references to this sound file.
Definition: sndfile2k.hpp:221
SNDFILE2K_EXPORT sf_count_t sf_read_float(SNDFILE *sndfile, float *ptr, sf_count_t items)
Reads float (32-bit) samples from file.
SNDFILE2K_EXPORT sf_count_t sf_seek(SNDFILE *sndfile, sf_count_t frames, int whence)
Changes position of sound file.
~SndfileHandle(void)
SndfileHandle destructor.
Definition: sndfile2k.hpp:665
sf_count_t write(const short *ptr, sf_count_t items)
Writes short (16-bit) samples to file.
Definition: sndfile2k.hpp:784
sf_count_t frames
The count of frames.
Definition: sndfile2k.h:1089
int format(void) const
Gets format.
Definition: sndfile2k.hpp:251
Contains information about format of sound file.
Definition: sndfile2k.h:1086
sf_count_t frames(void) const
Gets number of frames.
Definition: sndfile2k.hpp:242
const char * strError(void) const
Returns textual description of the current error code.
Definition: sndfile2k.hpp:696
SNDFILE2K_EXPORT int sf_format_check(const SF_INFO *info)
Checks correctness of SF_INFO::format field.
sf_count_t seek(sf_count_t frames, int whence)
Changes position of sound file.
Definition: sndfile2k.hpp:706
SNDFILE2K_EXPORT sf_count_t sf_writef_double(SNDFILE *sndfile, const double *ptr, sf_count_t frames)
Writes double (64-bit) frames to file.
SndfileHandle & operator=(const SndfileHandle &rhs)
Assignment operator.
Definition: sndfile2k.hpp:677
SNDFILE * rawHandle(void)
Gets ccess to the raw sound file handle.
Definition: sndfile2k.hpp:854