ardour
audiosource.h
Go to the documentation of this file.
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/shared_array.hpp>
25 #include <boost/enable_shared_from_this.hpp>
26 
27 #include <time.h>
28 
29 #include <glibmm/threads.h>
30 #include <boost/function.hpp>
31 #include <boost/scoped_array.hpp>
32 
33 #include "ardour/source.h"
34 #include "ardour/ardour.h"
35 #include "ardour/readable.h"
36 #include "pbd/stateful.h"
37 #include "pbd/xml++.h"
38 
39 namespace ARDOUR {
40 
41 class LIBARDOUR_API AudioSource : virtual public Source,
42  public ARDOUR::Readable,
43  public boost::enable_shared_from_this<ARDOUR::AudioSource>
44 {
45  public:
46  AudioSource (Session&, std::string name);
47  AudioSource (Session&, const XMLNode&);
48  virtual ~AudioSource ();
49 
50  framecnt_t readable_length() const { return _length; }
51  virtual uint32_t n_channels() const { return 1; }
52 
53  virtual bool empty() const;
54  framecnt_t length (framepos_t pos) const;
55  void update_length (framecnt_t cnt);
56 
57  virtual framecnt_t available_peaks (double zoom) const;
58 
59  virtual framecnt_t read (Sample *dst, framepos_t start, framecnt_t cnt, int channel=0) const;
60  virtual framecnt_t write (Sample *src, framecnt_t cnt);
61 
62  virtual float sample_rate () const = 0;
63 
64  virtual void mark_streaming_write_completed (const Lock& lock);
65 
66  virtual bool can_truncate_peaks() const { return true; }
67 
68  void set_captured_for (std::string str) { _captured_for = str; }
69  std::string captured_for() const { return _captured_for; }
70 
71  int read_peaks (PeakData *peaks, framecnt_t npeaks,
72  framepos_t start, framecnt_t cnt, double samples_per_visual_peak) const;
73 
74  int build_peaks ();
75  bool peaks_ready (boost::function<void()> callWhenReady, PBD::ScopedConnection** connection_created_if_not_ready, PBD::EventLoop* event_loop) const;
76 
77  mutable PBD::Signal0<void> PeaksReady;
78  mutable PBD::Signal2<void,framepos_t,framepos_t> PeakRangeReady;
79 
80  XMLNode& get_state ();
81  int set_state (const XMLNode&, int version);
82 
83  int rename_peakfile (std::string newpath);
84  void touch_peakfile ();
85 
86  static void set_build_missing_peakfiles (bool yn) {
87  _build_missing_peakfiles = yn;
88  }
89 
90  static void set_build_peakfiles (bool yn) {
91  _build_peakfiles = yn;
92  }
93 
94  static bool get_build_peakfiles () {
95  return _build_peakfiles;
96  }
97 
98  virtual int setup_peakfile () { return 0; }
99 
100  int prepare_for_peakfile_writes ();
101  void done_with_peakfile_writes (bool done = true);
102 
104  virtual bool clamped_at_unity () const = 0;
105 
106  static void allocate_working_buffers (framecnt_t framerate);
107 
108  protected:
110  static bool _build_peakfiles;
111 
112  static size_t _working_buffers_size;
113 
114  /* these collections of working buffers for supporting
115  playlist's reading from potentially nested/recursive
116  sources assume SINGLE THREADED reads by the butler
117  thread, or a lock around calls that use them.
118  */
119 
120  static std::vector<boost::shared_array<Sample> > _mixdown_buffers;
121  static std::vector<boost::shared_array<gain_t> > _gain_buffers;
122  static Glib::Threads::Mutex _level_buffer_lock;
123 
124  static void ensure_buffers_for_level (uint32_t, framecnt_t);
125  static void ensure_buffers_for_level_locked (uint32_t, framecnt_t);
126 
128  std::string peakpath;
129  std::string _captured_for;
130 
131  int initialize_peakfile (std::string path);
132  int build_peaks_from_scratch ();
133  int compute_and_write_peaks (Sample* buf, framecnt_t first_frame, framecnt_t cnt,
134  bool force, bool intermediate_peaks_ready_signal);
135  void truncate_peakfile();
136 
137  mutable off_t _peak_byte_max; // modified in compute_and_write_peak()
138 
139  virtual framecnt_t read_unlocked (Sample *dst, framepos_t start, framecnt_t cnt) const = 0;
140  virtual framecnt_t write_unlocked (Sample *dst, framecnt_t cnt) = 0;
141  virtual std::string peak_path(std::string audio_path) = 0;
142  virtual std::string find_broken_peakfile (std::string /* missing_peak_path */,
143  std::string audio_path) { return peak_path (audio_path); }
144 
145  virtual int read_peaks_with_fpp (PeakData *peaks,
146  framecnt_t npeaks, framepos_t start, framecnt_t cnt,
147  double samples_per_visual_peak, framecnt_t fpp) const;
148 
149  int compute_and_write_peaks (Sample* buf, framecnt_t first_frame, framecnt_t cnt,
150  bool force, bool intermediate_peaks_ready_signal,
152 
153  private:
161  mutable Glib::Threads::Mutex _peaks_ready_lock;
162 
168 
169  mutable bool _first_run;
170  mutable double _last_scale;
171  mutable off_t _last_map_off;
172  mutable size_t _last_raw_map_length;
173  mutable boost::scoped_array<PeakData> peak_cache;
174 };
175 
176 }
177 
178 #endif /* __ardour_audio_source_h__ */
framecnt_t _length
Definition: audiosource.h:127
virtual std::string find_broken_peakfile(std::string, std::string audio_path)
Definition: audiosource.h:142
virtual int setup_peakfile()
Definition: audiosource.h:98
static std::vector< boost::shared_array< Sample > > _mixdown_buffers
Definition: audiosource.h:120
static bool _build_peakfiles
Definition: audiosource.h:110
framepos_t peak_leftover_frame
Definition: audiosource.h:167
size_t _last_raw_map_length
Definition: audiosource.h:172
static size_t _working_buffers_size
Definition: audiosource.h:112
const uint32_t frames_per_peak
Definition: soundseq.h:34
std::string _captured_for
Definition: audiosource.h:129
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > start
Definition: region.cc:63
Sample * peak_leftovers
Definition: audiosource.h:166
int64_t framecnt_t
Definition: types.h:76
float Sample
Definition: types.h:54
PBD::Signal2< void, framepos_t, framepos_t > PeakRangeReady
Definition: audiosource.h:78
framecnt_t peak_leftover_cnt
Definition: audiosource.h:164
static bool get_build_peakfiles()
Definition: audiosource.h:94
Definition: amp.h:29
std::string peakpath
Definition: audiosource.h:128
static bool _build_missing_peakfiles
Definition: audiosource.h:109
virtual bool can_truncate_peaks() const
Definition: audiosource.h:66
PBD::Signal0< void > PeaksReady
Definition: audiosource.h:77
int64_t framepos_t
Definition: types.h:66
std::string captured_for() const
Definition: audiosource.h:69
boost::scoped_array< PeakData > peak_cache
Definition: audiosource.h:173
#define LIBARDOUR_API
static Glib::Threads::Mutex _level_buffer_lock
Definition: audiosource.h:122
const char * name
void set_captured_for(std::string str)
Definition: audiosource.h:68
Definition: xml++.h:95
virtual uint32_t n_channels() const
Definition: audiosource.h:51
static void set_build_peakfiles(bool yn)
Definition: audiosource.h:90
static std::vector< boost::shared_array< gain_t > > _gain_buffers
Definition: audiosource.h:121
static void set_build_missing_peakfiles(bool yn)
Definition: audiosource.h:86
framecnt_t peak_leftover_size
Definition: audiosource.h:165
framecnt_t readable_length() const
Definition: audiosource.h:50
Glib::Threads::Mutex _peaks_ready_lock
Definition: audiosource.h:161
LIBARDOUR_API PBD::PropertyDescriptor< framecnt_t > length
Definition: region.cc:64