eff21b898c7ffc284fbe153c99cda7e2a6f4a473
[ardour.git] / libs / ardour / ardour / audiosource.h
1 /*
2     Copyright (C) 2000 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 */
19
20 #ifndef __ardour_audio_source_h__
21 #define __ardour_audio_source_h__
22
23 #include <list>
24 #include <vector>
25
26 #include <boost/shared_ptr.hpp>
27 #include <boost/enable_shared_from_this.hpp>
28
29 #include <time.h>
30
31 #include <glibmm/thread.h>
32 #include <glibmm/ustring.h>
33
34 #include <sigc++/signal.h>
35
36 #include <ardour/source.h>
37 #include <ardour/ardour.h>
38 #include <pbd/stateful.h> 
39 #include <pbd/xml++.h>
40
41 using std::list;
42 using std::vector;
43
44 namespace ARDOUR {
45
46 class AudioSource : virtual public Source, public boost::enable_shared_from_this<ARDOUR::AudioSource>
47 {
48   public:
49         AudioSource (Session&, Glib::ustring name);
50         AudioSource (Session&, const XMLNode&);
51         virtual ~AudioSource ();
52
53         nframes64_t readable_length() const { return _length; }
54         uint32_t    n_channels()      const { return 1; }
55
56         virtual nframes_t available_peaks (double zoom) const;
57
58         /** Stopgap for Readable until nframes_t becomes nframes64_t. */
59         virtual nframes64_t read (Sample *dst, nframes64_t start, nframes64_t cnt, int channel) const {
60                 /* XXX currently ignores channel, assuming that source is always mono, which
61                    historically has been true.
62                 */
63                 return read (dst, (nframes_t) start, (nframes_t) cnt);
64         }
65
66         virtual nframes_t read (Sample *dst, nframes_t start, nframes_t cnt) const;
67         virtual nframes_t write (Sample *src, nframes_t cnt);
68
69         virtual float sample_rate () const = 0;
70
71         virtual void mark_streaming_write_completed () {}
72
73         virtual bool can_truncate_peaks() const { return true; }
74
75         void set_captured_for (Glib::ustring str) { _captured_for = str; }
76         Glib::ustring captured_for() const { return _captured_for; }
77
78         uint32_t read_data_count() const { return _read_data_count; }
79         uint32_t write_data_count() const { return _write_data_count; }
80
81         int read_peaks (PeakData *peaks, nframes_t npeaks,
82                         nframes_t start, nframes_t cnt, double samples_per_visual_peak) const;
83
84         int  build_peaks ();
85         bool peaks_ready (sigc::slot<void>, sigc::connection&) const;
86
87         mutable sigc::signal<void>  PeaksReady;
88         mutable sigc::signal<void,nframes_t,nframes_t>  PeakRangeReady;
89         
90         XMLNode& get_state ();
91         int set_state (const XMLNode&);
92
93         int rename_peakfile (Glib::ustring newpath);
94         void touch_peakfile ();
95
96         static void set_build_missing_peakfiles (bool yn) {
97                 _build_missing_peakfiles = yn;
98         }
99
100         static void set_build_peakfiles (bool yn) {
101                 _build_peakfiles = yn;
102         }
103
104         static bool get_build_peakfiles () {
105                 return _build_peakfiles;
106         }
107
108         virtual int setup_peakfile () { return 0; }
109
110         int prepare_for_peakfile_writes ();
111         void done_with_peakfile_writes (bool done = true);
112
113   protected:
114         static bool _build_missing_peakfiles;
115         static bool _build_peakfiles;
116
117         bool                 _peaks_built;
118         mutable Glib::Mutex  _peaks_ready_lock;
119         Glib::ustring         peakpath;
120         Glib::ustring        _captured_for;
121
122         mutable uint32_t _read_data_count;  // modified in read()
123         mutable uint32_t _write_data_count; // modified in write()
124
125         int initialize_peakfile (bool newfile, Glib::ustring path);
126         int build_peaks_from_scratch ();
127         int compute_and_write_peaks (Sample* buf, nframes_t first_frame, nframes_t cnt,
128                         bool force, bool intermediate_peaks_ready_signal);
129         void truncate_peakfile();
130
131         mutable off_t _peak_byte_max; // modified in compute_and_write_peak()
132
133         virtual nframes_t read_unlocked (Sample *dst, nframes_t start, nframes_t cnt) const = 0;
134         virtual nframes_t write_unlocked (Sample *dst, nframes_t cnt) = 0;
135         virtual Glib::ustring peak_path(Glib::ustring audio_path) = 0;
136         virtual Glib::ustring find_broken_peakfile (Glib::ustring missing_peak_path,
137                                                     Glib::ustring audio_path) = 0;
138         
139         virtual int read_peaks_with_fpp (PeakData *peaks,
140                         nframes_t npeaks, nframes_t start, nframes_t cnt, 
141                         double samples_per_visual_peak, nframes_t fpp) const;
142
143         int compute_and_write_peaks (Sample* buf, nframes_t first_frame, nframes_t cnt,
144                         bool force, bool intermediate_peaks_ready_signal, nframes_t frames_per_peak);   
145
146   private:
147         int       peakfile;
148         nframes_t peak_leftover_cnt;
149         nframes_t peak_leftover_size;
150         Sample*   peak_leftovers;
151         nframes_t peak_leftover_frame;
152
153         bool file_changed (Glib::ustring path);
154 };
155
156 }
157
158 #endif /* __ardour_audio_source_h__ */