fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / ardour / export_format_manager.h
1 /*
2     Copyright (C) 2008 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_format_manager_h__
22 #define __ardour_export_format_manager_h__
23
24 #include <list>
25 #include <string>
26
27 #include <boost/shared_ptr.hpp>
28
29 #include "pbd/signals.h"
30
31 #include "ardour/export_formats.h"
32 #include "ardour/export_pointers.h"
33
34 namespace ARDOUR
35 {
36
37 class ExportFormat;
38 class ExportFormatCompatibility;
39 class ExportFormatSpecification;
40 class AnyTime;
41
42 class LIBARDOUR_API ExportFormatManager : public PBD::ScopedConnectionList
43 {
44   public:
45
46         typedef std::list<ExportFormatCompatibilityPtr> CompatList;
47         typedef std::list<ExportFormatPtr> FormatList;
48
49         typedef HasSampleFormat::SampleFormatPtr SampleFormatPtr;
50         typedef HasSampleFormat::SampleFormatList SampleFormatList;
51         typedef HasSampleFormat::WeakSampleFormatPtr WeakSampleFormatPtr;
52
53         typedef HasSampleFormat::DitherTypePtr DitherTypePtr;
54         typedef HasSampleFormat::WeakDitherTypePtr WeakDitherTypePtr;
55
56         /* Quality states */
57
58         class QualityState : public ExportFormatBase::SelectableCompatible {
59         public:
60                 QualityState (ExportFormatBase::Quality quality, std::string name) :
61                         quality (quality) { set_name (name); }
62                 ExportFormatBase::Quality  quality;
63         };
64         typedef boost::shared_ptr<QualityState> QualityPtr;
65         typedef boost::weak_ptr<QualityState> WeakQualityPtr;
66         typedef std::list<QualityPtr> QualityList;
67
68         /* Sample rate states */
69
70         class SampleRateState : public ExportFormatBase::SelectableCompatible {
71           public:
72                 SampleRateState (ExportFormatBase::SampleRate rate, std::string name)
73                         : rate (rate) { set_name (name); }
74                 ExportFormatBase::SampleRate  rate;
75         };
76         typedef boost::shared_ptr<SampleRateState> SampleRatePtr;
77         typedef boost::weak_ptr<SampleRateState> WeakSampleRatePtr;
78         typedef std::list<SampleRatePtr> SampleRateList;
79
80   public:
81
82         explicit ExportFormatManager (ExportFormatSpecPtr specification);
83         ~ExportFormatManager ();
84
85         /* Signals */
86
87         PBD::Signal1<void,bool> CompleteChanged;
88         PBD::Signal0<void> DescriptionChanged;
89
90         /* Access to lists */
91
92         CompatList const & get_compatibilities () { return compatibilities; }
93         QualityList const & get_qualities () { return qualities; }
94         FormatList const & get_formats () { return formats; }
95         SampleRateList const & get_sample_rates () { return sample_rates; }
96
97         /* Non interactive selections */
98
99         void set_name (std::string name);
100
101         void select_with_cue (bool);
102         void select_with_toc (bool);
103         void select_with_mp4chaps (bool);
104         void select_upload (bool);
105         void set_command (std::string);
106         void select_src_quality (ExportFormatBase::SRCQuality value);
107         void select_trim_beginning (bool value);
108         void select_silence_beginning (AnyTime const & time);
109         void select_trim_end (bool value);
110         void select_silence_end (AnyTime const & time);
111         void select_normalize (bool value);
112         void select_normalize_loudness (bool value);
113         void select_normalize_dbfs (float value);
114         void select_normalize_lufs (float value);
115         void select_normalize_dbtp (float value);
116         void select_tagging (bool tag);
117
118   private:
119
120         void init_compatibilities ();
121         void init_qualities ();
122         void init_formats ();
123         void init_sample_rates ();
124
125         void add_compatibility (ExportFormatCompatibilityPtr ptr);
126         void add_quality (QualityPtr ptr);
127         void add_format (ExportFormatPtr ptr);
128         void add_sample_rate (SampleRatePtr ptr);
129
130         /* Connected to signals */
131
132         void change_compatibility_selection (bool select, WeakExportFormatCompatibilityPtr const & compat);
133         void change_quality_selection (bool select, WeakQualityPtr const & quality);
134         void change_format_selection (bool select, WeakExportFormatPtr const & format);
135         void change_sample_rate_selection (bool select, WeakSampleRatePtr const & rate);
136
137         void change_sample_format_selection (bool select, WeakSampleFormatPtr const & format);
138         void change_dither_type_selection (bool select, WeakDitherTypePtr const & type);
139
140         /* Do actual selection */
141
142         void select_compatibility (WeakExportFormatCompatibilityPtr const & compat);
143         void select_quality (QualityPtr const & quality);
144         void select_format (ExportFormatPtr const & format);
145         void select_sample_rate (SampleRatePtr const & rate);
146
147         void select_sample_format (SampleFormatPtr const & format);
148         void select_dither_type (DitherTypePtr const & type);
149
150         bool pending_selection_change;
151         void selection_changed ();
152         void check_for_description_change ();
153
154         /* Formats and compatibilities */
155
156         QualityPtr    get_selected_quality ();
157         ExportFormatPtr     get_selected_format ();
158         SampleRatePtr get_selected_sample_rate ();
159
160         SampleFormatPtr get_selected_sample_format ();
161
162         ExportFormatBasePtr get_compatibility_intersection ();
163
164         ExportFormatBasePtr   universal_set;
165         ExportFormatSpecPtr   current_selection;
166
167         CompatList      compatibilities;
168         QualityList     qualities;
169         FormatList      formats;
170         SampleRateList  sample_rates;
171
172         std::string     prev_description;
173
174 };
175
176 } // namespace ARDOUR
177
178 #endif /* __ardour_export_format_manager_h__ */