Merging from trunk
[ardour.git] / libs / ardour / ardour / sndfilesource.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __sndfile_source_h__ 
22 #define __sndfile_source_h__
23
24 #include <sndfile.h>
25
26 #include <ardour/audiofilesource.h>
27
28 namespace ARDOUR {
29
30 class SndFileSource : public AudioFileSource {
31   public:
32         /* constructor to be called for existing external-to-session files */
33
34         SndFileSource (std::string path, Flag flags);
35
36         /* constructor to be called for new in-session files */
37
38         SndFileSource (std::string path, SampleFormat samp_format, HeaderFormat hdr_format, jack_nframes_t rate, 
39                        Flag flags = AudioFileSource::Flag (AudioFileSource::Writable|
40                                                            AudioFileSource::Removable|
41                                                            AudioFileSource::RemovableIfEmpty|
42                                                            AudioFileSource::CanRename|
43                                                            AudioFileSource::BuildPeaks));
44                        
45         /* constructor to be called for existing in-session files */
46         
47         SndFileSource (const XMLNode&);
48
49         ~SndFileSource ();
50
51         float sample_rate () const;
52         int update_header (jack_nframes_t when, struct tm&, time_t);
53         int flush_header ();
54
55         static Flag default_in_session_flags();
56
57   protected:
58         void set_header_timeline_position ();
59
60         jack_nframes_t read_unlocked (Sample *dst, jack_nframes_t start, jack_nframes_t cnt, char * workbuf) const;
61         jack_nframes_t write_unlocked (Sample *dst, jack_nframes_t cnt, char * workbuf);
62
63         jack_nframes_t write_float (Sample* data, jack_nframes_t pos, jack_nframes_t cnt);
64
65   private:
66         SNDFILE *sf;
67         SF_INFO _info;
68         SF_BROADCAST_INFO *_broadcast_info;
69
70         mutable float *interleave_buf;
71         mutable jack_nframes_t interleave_bufsize;
72
73         void init (const string &str);
74         int open();
75         void close();
76         int setup_broadcast_info (jack_nframes_t when, struct tm&, time_t);
77 };
78
79 }; /* namespace ARDOUR */
80
81 #endif /* __sndfile_source_h__ */
82