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