Merged with trunk R920.
[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 (Session&, string name);
51         AudioSource (Session&, const XMLNode&);
52         virtual ~AudioSource ();
53         
54         virtual jack_nframes_t available_peaks (double zoom) const;
55
56         virtual jack_nframes_t read (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const;
57         virtual jack_nframes_t write (Sample *src, jack_nframes_t cnt);
58
59         virtual float sample_rate () const = 0;
60
61         virtual void mark_for_remove() = 0;
62         virtual void mark_streaming_write_completed () {}
63
64         void set_captured_for (string str) { _captured_for = str; }
65         string captured_for() const { return _captured_for; }
66
67         uint32_t read_data_count() const { return _read_data_count; }
68         uint32_t write_data_count() const { return _write_data_count; }
69
70         int  read_peaks (PeakData *peaks, jack_nframes_t npeaks, jack_nframes_t start, jack_nframes_t cnt, double samples_per_unit) const;
71         int  build_peaks ();
72         bool peaks_ready (sigc::slot<void>, sigc::connection&) const;
73
74         mutable sigc::signal<void>  PeaksReady;
75         mutable sigc::signal<void,jack_nframes_t,jack_nframes_t>  PeakRangeReady;
76         
77         XMLNode& get_state ();
78         int set_state (const XMLNode&);
79
80         static int  start_peak_thread ();
81         static void stop_peak_thread ();
82
83         int rename_peakfile (std::string newpath);
84
85         static void set_build_missing_peakfiles (bool yn) {
86                 _build_missing_peakfiles = yn;
87         }
88
89         static void set_build_peakfiles (bool yn) {
90                 _build_peakfiles = yn;
91         }
92
93   protected:
94         static bool _build_missing_peakfiles;
95         static bool _build_peakfiles;
96
97         bool                _peaks_built;
98         mutable Glib::Mutex _lock;
99         bool                 next_peak_clear_should_notify;
100         string               peakpath;
101         string              _captured_for;
102
103         mutable uint32_t _read_data_count;  // modified in read()
104         mutable uint32_t _write_data_count; // modified in write()
105
106         int initialize_peakfile (bool newfile, string path);
107         void build_peaks_from_scratch ();
108
109         int  do_build_peak (jack_nframes_t, jack_nframes_t);
110
111         virtual jack_nframes_t read_unlocked (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const = 0;
112         virtual jack_nframes_t write_unlocked (Sample *dst, jack_nframes_t cnt) = 0;
113         virtual string peak_path(string audio_path) = 0;
114         virtual string old_peak_path(string audio_path) = 0;
115         
116         static pthread_t peak_thread;
117         static bool      have_peak_thread;
118         static void*     peak_thread_work(void*);
119
120         static int peak_request_pipe[2];
121
122         struct PeakRequest {
123             enum Type {
124                     Build,
125                     Quit
126             };
127         };
128
129         static vector<AudioSource*> pending_peak_sources;
130         static Glib::Mutex* pending_peak_sources_lock;
131
132         static void queue_for_peaks (AudioSource*);
133         static void clear_queue_for_peaks ();
134         
135         struct PeakBuildRecord {
136             jack_nframes_t frame;
137             jack_nframes_t cnt;
138
139             PeakBuildRecord (jack_nframes_t f, jack_nframes_t c) 
140                     : frame (f), cnt (c) {}
141             PeakBuildRecord (const PeakBuildRecord& other) {
142                     frame = other.frame;
143                     cnt = other.cnt;
144             }
145         };
146
147         list<AudioSource::PeakBuildRecord *> pending_peak_builds;
148
149   private:
150         bool file_changed (string path);
151 };
152
153 }
154
155 #endif /* __ardour_audio_source_h__ */