r258@gwythaint (orig r798): fugalh | 2006-08-12 15:50:33 -0600
[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     $Id: audio_source.h 486 2006-04-27 09:04:24Z pauld $
19 */
20
21 #ifndef __ardour_audio_source_h__
22 #define __ardour_audio_source_h__
23
24 #include <list>
25 #include <vector>
26 #include <string>
27
28 #include <time.h>
29
30 #include <glibmm/thread.h>
31
32 #include <sigc++/signal.h>
33
34 #include <ardour/source.h>
35 #include <ardour/ardour.h>
36 #include <pbd/stateful.h> 
37 #include <pbd/xml++.h>
38
39 using std::list;
40 using std::vector;
41 using std::string;
42
43 namespace ARDOUR {
44
45 const jack_nframes_t frames_per_peak = 256;
46
47 class AudioSource : public Source
48 {
49   public:
50         AudioSource (string name);
51         AudioSource (const XMLNode&);
52         virtual ~AudioSource ();
53
54         /* one could argue that this should belong to Source, but other data types
55            generally do not come with a model of "offset along an audio timeline"
56            so its here in AudioSource for now.
57         */
58
59         virtual jack_nframes_t natural_position() const { return 0; }
60         
61         /* returns the number of items in this `audio_source' */
62
63         virtual jack_nframes_t length() const {
64                 return _length;
65         }
66
67         virtual jack_nframes_t available_peaks (double zoom) const;
68
69         virtual jack_nframes_t read (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const;
70         virtual jack_nframes_t write (Sample *src, jack_nframes_t cnt);
71
72         virtual float sample_rate () const = 0;
73
74         virtual void mark_for_remove() = 0;
75         virtual void mark_streaming_write_completed () {}
76
77         void set_captured_for (string str) { _captured_for = str; }
78         string captured_for() const { return _captured_for; }
79
80         uint32_t read_data_count() const { return _read_data_count; }
81         uint32_t write_data_count() const { return _write_data_count; }
82
83         int  read_peaks (PeakData *peaks, jack_nframes_t npeaks, jack_nframes_t start, jack_nframes_t cnt, double samples_per_unit) const;
84         int  build_peaks ();
85         bool peaks_ready (sigc::slot<void>, sigc::connection&) const;
86
87         static sigc::signal<void,AudioSource*> AudioSourceCreated;
88                
89         mutable sigc::signal<void>  PeaksReady;
90         mutable sigc::signal<void,jack_nframes_t,jack_nframes_t>  PeakRangeReady;
91         
92         XMLNode& get_state ();
93         int set_state (const XMLNode&);
94
95         static int  start_peak_thread ();
96         static void stop_peak_thread ();
97
98         int rename_peakfile (std::string newpath);
99
100         static void set_build_missing_peakfiles (bool yn) {
101                 _build_missing_peakfiles = yn;
102         }
103
104         static void set_build_peakfiles (bool yn) {
105                 _build_peakfiles = yn;
106         }
107
108   protected:
109         static bool _build_missing_peakfiles;
110         static bool _build_peakfiles;
111
112         bool                _peaks_built;
113         mutable Glib::Mutex _lock;
114         jack_nframes_t      _length;
115         bool                 next_peak_clear_should_notify;
116         string               peakpath;
117         string              _captured_for;
118
119         mutable uint32_t _read_data_count;  // modified in read()
120         mutable uint32_t _write_data_count; // modified in write()
121
122         int initialize_peakfile (bool newfile, string path);
123         void build_peaks_from_scratch ();
124
125         int  do_build_peak (jack_nframes_t, jack_nframes_t);
126
127         virtual jack_nframes_t read_unlocked (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const = 0;
128         virtual jack_nframes_t write_unlocked (Sample *dst, jack_nframes_t cnt) = 0;
129         virtual string peak_path(string audio_path) = 0;
130         virtual string old_peak_path(string audio_path) = 0;
131         
132         void update_length (jack_nframes_t pos, jack_nframes_t cnt);
133
134         static pthread_t peak_thread;
135         static bool      have_peak_thread;
136         static void*     peak_thread_work(void*);
137
138         static int peak_request_pipe[2];
139
140         struct PeakRequest {
141             enum Type {
142                     Build,
143                     Quit
144             };
145         };
146
147         static vector<AudioSource*> pending_peak_sources;
148         static Glib::Mutex* pending_peak_sources_lock;
149
150         static void queue_for_peaks (AudioSource&);
151         static void clear_queue_for_peaks ();
152         
153         struct PeakBuildRecord {
154             jack_nframes_t frame;
155             jack_nframes_t cnt;
156
157             PeakBuildRecord (jack_nframes_t f, jack_nframes_t c) 
158                     : frame (f), cnt (c) {}
159             PeakBuildRecord (const PeakBuildRecord& other) {
160                     frame = other.frame;
161                     cnt = other.cnt;
162             }
163         };
164
165         list<AudioSource::PeakBuildRecord *> pending_peak_builds;
166
167   private:
168         bool file_changed (string path);
169 };
170
171 }
172
173 #endif /* __ardour_audio_source_h__ */