Add normalization gain factor to Export Analysis
[ardour.git] / libs / ardour / ardour / export_graph_builder.h
1 /*
2     Copyright (C) 2009 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_export_graph_builder_h__
22 #define __ardour_export_graph_builder_h__
23
24 #include "ardour/export_handler.h"
25 #include "ardour/export_analysis.h"
26
27 #include "audiographer/utils/identity_vertex.h"
28
29 #include <boost/ptr_container/ptr_list.hpp>
30 #include <glibmm/threadpool.h>
31
32 namespace AudioGrapher {
33         class SampleRateConverter;
34         class PeakReader;
35         class Normalizer;
36         class Analyser;
37         template <typename T> class Chunker;
38         template <typename T> class SampleFormatConverter;
39         template <typename T> class Interleaver;
40         template <typename T> class SndfileWriter;
41         template <typename T> class SilenceTrimmer;
42         template <typename T> class TmpFile;
43         template <typename T> class Threader;
44         template <typename T> class AllocatingProcessContext;
45 }
46
47 namespace ARDOUR
48 {
49
50 class ExportTimespan;
51 class Session;
52
53 class LIBARDOUR_API ExportGraphBuilder
54 {
55   private:
56         typedef ExportHandler::FileSpec FileSpec;
57
58         typedef boost::shared_ptr<AudioGrapher::Sink<Sample> > FloatSinkPtr;
59         typedef boost::shared_ptr<AudioGrapher::IdentityVertex<Sample> > IdentityVertexPtr;
60         typedef boost::shared_ptr<AudioGrapher::Analyser> AnalysisPtr;
61         typedef std::map<ExportChannelPtr,  IdentityVertexPtr> ChannelMap;
62         typedef std::map<std::string, AnalysisPtr> AnalysisMap;
63
64   public:
65
66         ExportGraphBuilder (Session const & session);
67         ~ExportGraphBuilder ();
68
69         int process (framecnt_t frames, bool last_cycle);
70         bool process_normalize (); // returns true when finished
71         bool will_normalize() { return !normalizers.empty(); }
72         unsigned get_normalize_cycle_count() const;
73
74         void reset ();
75         void cleanup (bool remove_out_files = false);
76         void set_current_timespan (boost::shared_ptr<ExportTimespan> span);
77         void add_config (FileSpec const & config);
78         void get_analysis_results (AnalysisResults& results);
79
80   private:
81
82         void add_analyser (const std::string& fn, AnalysisPtr ap) {
83                 analysis_map.insert (std::make_pair (fn, ap));
84         }
85
86         void add_split_config (FileSpec const & config);
87
88         class Encoder {
89             public:
90                 template <typename T> boost::shared_ptr<AudioGrapher::Sink<T> > init (FileSpec const & new_config);
91                 void add_child (FileSpec const & new_config);
92                 void remove_children ();
93                 void destroy_writer (bool delete_out_file);
94                 bool operator== (FileSpec const & other_config) const;
95
96                 static int get_real_format (FileSpec const & config);
97
98                                                 private:
99                 typedef boost::shared_ptr<AudioGrapher::SndfileWriter<Sample> > FloatWriterPtr;
100                 typedef boost::shared_ptr<AudioGrapher::SndfileWriter<int> >    IntWriterPtr;
101                 typedef boost::shared_ptr<AudioGrapher::SndfileWriter<short> >  ShortWriterPtr;
102
103                 template<typename T> void init_writer (boost::shared_ptr<AudioGrapher::SndfileWriter<T> > & writer);
104                 void copy_files (std::string orig_path);
105
106                 FileSpec               config;
107                 std::list<ExportFilenamePtr> filenames;
108                 PBD::ScopedConnection  copy_files_connection;
109
110                 std::string writer_filename;
111
112                 // Only one of these should be available at a time
113                 FloatWriterPtr float_writer;
114                 IntWriterPtr   int_writer;
115                 ShortWriterPtr short_writer;
116         };
117
118         // sample format converter
119         class SFC {
120             public:
121                 // This constructor so that this can be constructed like a Normalizer
122                 SFC (ExportGraphBuilder &, FileSpec const & new_config, framecnt_t max_frames);
123                 FloatSinkPtr sink ();
124                 void add_child (FileSpec const & new_config);
125                 void remove_children (bool remove_out_files);
126                 bool operator== (FileSpec const & other_config) const;
127                 void set_peak (float);
128
129                                                 private:
130                 typedef boost::shared_ptr<AudioGrapher::SampleFormatConverter<Sample> > FloatConverterPtr;
131                 typedef boost::shared_ptr<AudioGrapher::SampleFormatConverter<int> >   IntConverterPtr;
132                 typedef boost::shared_ptr<AudioGrapher::SampleFormatConverter<short> > ShortConverterPtr;
133
134                 FileSpec           config;
135                 boost::ptr_list<Encoder> children;
136                 int                data_width;
137
138                 AnalysisPtr     analyser;
139                 bool            _analyse;
140                 // Only one of these should be available at a time
141                 FloatConverterPtr float_converter;
142                 IntConverterPtr int_converter;
143                 ShortConverterPtr short_converter;
144         };
145
146         class Normalizer {
147                                                 public:
148                 Normalizer (ExportGraphBuilder & parent, FileSpec const & new_config, framecnt_t max_frames);
149                 FloatSinkPtr sink ();
150                 void add_child (FileSpec const & new_config);
151                 void remove_children (bool remove_out_files);
152                 bool operator== (FileSpec const & other_config) const;
153
154                 unsigned get_normalize_cycle_count() const;
155
156                 /// Returns true when finished
157                 bool process ();
158
159                                                 private:
160                 typedef boost::shared_ptr<AudioGrapher::PeakReader> PeakReaderPtr;
161                 typedef boost::shared_ptr<AudioGrapher::Normalizer> NormalizerPtr;
162                 typedef boost::shared_ptr<AudioGrapher::TmpFile<Sample> > TmpFilePtr;
163                 typedef boost::shared_ptr<AudioGrapher::Threader<Sample> > ThreaderPtr;
164                 typedef boost::shared_ptr<AudioGrapher::AllocatingProcessContext<Sample> > BufferPtr;
165
166                 void start_post_processing();
167
168                 ExportGraphBuilder & parent;
169
170                 FileSpec        config;
171                 framecnt_t      max_frames_out;
172
173                 BufferPtr       buffer;
174                 PeakReaderPtr   peak_reader;
175                 TmpFilePtr      tmp_file;
176                 NormalizerPtr   normalizer;
177                 ThreaderPtr     threader;
178                 boost::ptr_list<SFC> children;
179
180                 PBD::ScopedConnection post_processing_connection;
181         };
182
183         // sample rate converter
184         class SRC {
185             public:
186                 SRC (ExportGraphBuilder & parent, FileSpec const & new_config, framecnt_t max_frames);
187                 FloatSinkPtr sink ();
188                 void add_child (FileSpec const & new_config);
189                 void remove_children (bool remove_out_files);
190
191                 bool operator== (FileSpec const & other_config) const;
192
193                                                 private:
194                 typedef boost::shared_ptr<AudioGrapher::SampleRateConverter> SRConverterPtr;
195
196                 template<typename T>
197                 void add_child_to_list (FileSpec const & new_config, boost::ptr_list<T> & list);
198
199                 ExportGraphBuilder &  parent;
200                 FileSpec              config;
201                 boost::ptr_list<SFC>  children;
202                 boost::ptr_list<Normalizer> normalized_children;
203                 SRConverterPtr        converter;
204                 framecnt_t            max_frames_out;
205         };
206
207         // Silence trimmer + adder
208         class SilenceHandler {
209             public:
210                 SilenceHandler (ExportGraphBuilder & parent, FileSpec const & new_config, framecnt_t max_frames);
211                 FloatSinkPtr sink ();
212                 void add_child (FileSpec const & new_config);
213                 void remove_children (bool remove_out_files);
214                 bool operator== (FileSpec const & other_config) const;
215
216                                                 private:
217                 typedef boost::shared_ptr<AudioGrapher::SilenceTrimmer<Sample> > SilenceTrimmerPtr;
218
219                 ExportGraphBuilder & parent;
220                 FileSpec             config;
221                 boost::ptr_list<SRC> children;
222                 SilenceTrimmerPtr    silence_trimmer;
223                 framecnt_t           max_frames_in;
224         };
225
226         // channel configuration
227         class ChannelConfig {
228             public:
229                 ChannelConfig (ExportGraphBuilder & parent, FileSpec const & new_config, ChannelMap & channel_map);
230                 void add_child (FileSpec const & new_config);
231                 void remove_children (bool remove_out_files);
232                 bool operator== (FileSpec const & other_config) const;
233
234                                                 private:
235                 typedef boost::shared_ptr<AudioGrapher::Interleaver<Sample> > InterleaverPtr;
236                 typedef boost::shared_ptr<AudioGrapher::Chunker<Sample> > ChunkerPtr;
237
238                 ExportGraphBuilder &      parent;
239                 FileSpec                  config;
240                 boost::ptr_list<SilenceHandler> children;
241                 InterleaverPtr            interleaver;
242                 ChunkerPtr                chunker;
243                 framecnt_t                max_frames_out;
244         };
245
246         Session const & session;
247         boost::shared_ptr<ExportTimespan> timespan;
248
249         // Roots for export processor trees
250         typedef boost::ptr_list<ChannelConfig> ChannelConfigList;
251         ChannelConfigList channel_configs;
252
253         // The sources of all data, each channel is read only once
254         ChannelMap channels;
255
256         framecnt_t process_buffer_frames;
257
258         std::list<Normalizer *> normalizers;
259
260         AnalysisMap analysis_map;
261
262         Glib::ThreadPool thread_pool;
263 };
264
265 } // namespace ARDOUR
266
267 #endif /* __ardour_export_graph_builder_h__ */