3dea7ee1a676e65bcb34051c1afc56e990608e5b
[ardour.git] / gtk2_ardour / export_dialog.cc
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
22 #include <sigc++/signal.h>
23
24 #include "pbd/filesystem.h"
25
26 #include "ardour/audioregion.h"
27 #include "ardour/export_status.h"
28 #include "ardour/export_handler.h"
29
30 #include "export_dialog.h"
31 #include "gui_thread.h"
32
33 #include "i18n.h"
34
35 using namespace ARDOUR;
36 using namespace PBD;
37 using std::string;
38
39 ExportDialog::ExportDialog (PublicEditor & editor, std::string title, std::string xml_node_name)
40   : ArdourDialog (title)
41   , xml_node_name (xml_node_name)
42   , editor (editor)
43
44   , warn_label ("", Gtk::ALIGN_LEFT)
45   , list_files_label (_("<span color=\"#ffa755\">Some already existing files will be overwritten.</span>"), Gtk::ALIGN_RIGHT)
46   , list_files_button (_("List files"))
47 { }
48
49 ExportDialog::~ExportDialog ()
50 { }
51
52 void
53 ExportDialog::set_session (ARDOUR::Session* s)
54 {
55         SessionHandlePtr::set_session (s);
56
57         if (!_session) {
58                 return;
59         }
60
61         /* Init handler and profile manager */
62
63         handler = _session->get_export_handler ();
64         status = _session->get_export_status ();
65
66         profile_manager.reset (new ExportProfileManager (*_session, xml_node_name));
67
68         /* Possibly init stuff in derived classes */
69
70         init ();
71
72         /* Rest of _session related initialization */
73
74         preset_selector->set_manager (profile_manager);
75         file_notebook->set_session_and_manager (_session, profile_manager);
76
77         /* Hand on selection range to profile manager  */
78
79         TimeSelection const & time (editor.get_selection().time);
80         if (!time.empty()) {
81                 profile_manager->set_selection_range (time.front().start, time.front().end);
82         } else {
83                 profile_manager->set_selection_range ();
84         }
85
86         /* Load states */
87
88         profile_manager->load_profile ();
89         sync_with_manager ();
90
91         /* Warnings */
92
93         preset_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::sync_with_manager));
94         timespan_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
95         channel_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
96         file_notebook->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
97
98         status->Aborting.connect (abort_connection, invalidator (*this), boost::bind (&ExportDialog::notify_errors, this), gui_context());
99
100         update_warnings ();
101 }
102
103 void
104 ExportDialog::init ()
105 {
106         init_components ();
107         init_gui ();
108
109         /* warnings */
110
111         warning_widget.pack_start (warn_hbox, true, true, 6);
112         warning_widget.pack_end (list_files_hbox, false, false, 0);
113
114         warn_hbox.pack_start (warn_label, true, true, 16);
115         warn_label.set_use_markup (true);
116
117         list_files_hbox.pack_end (list_files_button, false, false, 6);
118         list_files_hbox.pack_end (list_files_label, false, false, 6);
119         list_files_label.set_use_markup (true);
120
121         list_files_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::show_conflicting_files));
122
123         /* Progress indicators */
124
125         progress_widget.pack_start (progress_bar, false, false, 6);
126
127         /* Buttons */
128
129         cancel_button = add_button (Gtk::Stock::CANCEL, RESPONSE_CANCEL);
130         // Realtime export is disabled for now, as it will most probably not work
131         //rt_export_button = add_button (_("Realtime Export"), RESPONSE_RT);
132         //fast_export_button = add_button (_("Fast Export"), RESPONSE_FAST);
133         fast_export_button = add_button (_("Export"), RESPONSE_FAST);
134         set_default_response (RESPONSE_FAST);
135
136         list_files_button.set_name ("PaddedButton");
137
138         cancel_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::close_dialog));
139         //rt_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_rt));
140         fast_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_fw));
141
142         /* Done! */
143
144         show_all_children ();
145         progress_widget.hide_all();
146 }
147
148 void
149 ExportDialog::init_gui ()
150 {
151         Gtk::Alignment * preset_align = Gtk::manage (new Gtk::Alignment());
152         preset_align->add (*preset_selector);
153         preset_align->set_padding (0, 12, 0, 0);
154         get_vbox()->pack_start (*preset_align, false, false, 0);
155
156         Gtk::VBox* advanced_vbox = Gtk::manage (new Gtk::VBox());
157         advanced_vbox->set_spacing (12);
158         advanced_vbox->set_border_width (12);
159
160         Gtk::Alignment * timespan_align = Gtk::manage (new Gtk::Alignment());
161         timespan_label = Gtk::manage (new Gtk::Label (_("Time Span"), Gtk::ALIGN_LEFT));
162         timespan_align->add (*timespan_selector);
163         timespan_align->set_padding (0, 12, 18, 0);
164         advanced_vbox->pack_start (*timespan_label, false, false, 0);
165         advanced_vbox->pack_start (*timespan_align, true, true, 0);
166
167         Gtk::Alignment * channels_align = Gtk::manage (new Gtk::Alignment());
168         channels_label = Gtk::manage (new Gtk::Label (_("Channels"), Gtk::ALIGN_LEFT));
169         channels_align->add (*channel_selector);
170         channels_align->set_padding (0, 12, 18, 0);
171         advanced_vbox->pack_start (*channels_label, false, false, 0);
172         advanced_vbox->pack_start (*channels_align, false, false, 0);
173
174         get_vbox()->pack_start (*file_notebook, false, false, 0);
175         get_vbox()->pack_start (warning_widget, false, false, 0);
176         get_vbox()->pack_start (progress_widget, false, false, 0);
177
178         Gtk::Expander* advanced = Gtk::manage (new Gtk::Expander (_("Advanced options")));
179         advanced->add (*advanced_vbox);
180
181         get_vbox()->pack_start (*advanced, true, true);
182
183         Pango::AttrList bold;
184         Pango::Attribute b = Pango::Attribute::create_attr_weight (Pango::WEIGHT_BOLD);
185         bold.insert (b);
186
187         timespan_label->set_attributes (bold);
188         channels_label->set_attributes (bold);
189 }
190
191 void
192 ExportDialog::init_components ()
193 {
194         preset_selector.reset (new ExportPresetSelector ());
195         timespan_selector.reset (new ExportTimespanSelectorMultiple (_session, profile_manager));
196         channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
197         file_notebook.reset (new ExportFileNotebook ());
198 }
199
200 void
201 ExportDialog::notify_errors ()
202 {
203         if (status->errors()) {
204                 std::string txt = _("Export has been aborted due to an error!\nSee the Log for details.");
205                 Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
206                 msg.run();
207         }
208 }
209
210 void
211 ExportDialog::close_dialog ()
212 {
213         if (status->running) {
214                 status->abort();
215         }
216
217         hide_all ();
218         set_modal (false);
219
220 }
221
222 void
223 ExportDialog::sync_with_manager ()
224 {
225         timespan_selector->sync_with_manager();
226         channel_selector->sync_with_manager();
227         file_notebook->sync_with_manager ();
228
229         update_warnings ();
230 }
231
232 void
233 ExportDialog::update_warnings ()
234 {
235         /* Reset state */
236
237         warn_string = "";
238         warn_label.set_markup (warn_string);
239
240         list_files_hbox.hide ();
241         list_files_string = "";
242
243         fast_export_button->set_sensitive (true);
244         //rt_export_button->set_sensitive (true);
245
246         /* Add new warnings */
247
248         boost::shared_ptr<ExportProfileManager::Warnings> warnings = profile_manager->get_warnings();
249
250         for (std::list<string>::iterator it = warnings->errors.begin(); it != warnings->errors.end(); ++it) {
251                 add_error (*it);
252         }
253
254         for (std::list<string>::iterator it = warnings->warnings.begin(); it != warnings->warnings.end(); ++it) {
255                 add_warning (*it);
256         }
257
258         if (!warnings->conflicting_filenames.empty()) {
259                 list_files_hbox.show ();
260                 for (std::list<string>::iterator it = warnings->conflicting_filenames.begin(); it != warnings->conflicting_filenames.end(); ++it) {
261                         string::size_type pos = it->find_last_of ("/");
262                         list_files_string += it->substr (0, pos + 1) + "<b>" + it->substr (pos + 1) + "</b>\n";
263                 }
264         }
265
266         
267 }
268
269 void
270 ExportDialog::show_conflicting_files ()
271 {
272         ArdourDialog dialog (_("Files that will be overwritten"), true);
273
274         Gtk::Label label ("", Gtk::ALIGN_LEFT);
275         label.set_use_markup (true);
276         label.set_markup (list_files_string);
277
278         dialog.get_vbox()->pack_start (label);
279         dialog.add_button (Gtk::Stock::OK, 0);
280         dialog.show_all_children ();
281
282         dialog.run();
283 }
284
285 void
286 ExportDialog::export_rt ()
287 {
288         profile_manager->prepare_for_export ();
289         handler->do_export (true);
290         show_progress ();
291 }
292
293 void
294 ExportDialog::export_fw ()
295 {
296         profile_manager->prepare_for_export ();
297         handler->do_export (false);
298         show_progress ();
299 }
300
301 void
302 ExportDialog::show_progress ()
303 {
304         status->running = true;
305
306         cancel_button->set_label (_("Stop Export"));
307         //rt_export_button->set_sensitive (false);
308         fast_export_button->set_sensitive (false);
309
310         progress_bar.set_fraction (0.0);
311         warning_widget.hide_all();
312         progress_widget.show ();
313         progress_widget.show_all_children ();
314         progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &ExportDialog::progress_timeout), 100);
315
316         gtk_main_iteration ();
317         while (status->running) {
318                 if (gtk_events_pending()) {
319                         gtk_main_iteration ();
320                 } else {
321                         usleep (10000);
322                 }
323         }
324
325         if (!status->aborted()) {
326                 status->finish ();
327         }
328 }
329
330 gint
331 ExportDialog::progress_timeout ()
332 {
333         std::string status_text;
334         float progress = 0.0;
335         if (status->normalizing) {
336                 status_text = string_compose (_("Normalizing '%3' (timespan %1 of %2)"),
337                                               status->timespan, status->total_timespans, status->timespan_name);
338                 progress = ((float) status->current_normalize_cycle) / status->total_normalize_cycles;
339         } else {
340                 status_text = string_compose (_("Exporting '%3' (timespan %1 of %2)"),
341                                               status->timespan, status->total_timespans, status->timespan_name);
342                 progress = ((float) status->processed_frames_current_timespan) / status->total_frames_current_timespan;
343         }
344         progress_bar.set_text (status_text);
345
346         if (progress < previous_progress) {
347                 // Work around gtk bug
348                 progress_bar.hide();
349                 progress_bar.show();
350         }
351         previous_progress = progress;
352
353         progress_bar.set_fraction (progress);
354         return TRUE;
355 }
356
357 void
358 ExportDialog::add_error (string const & text)
359 {
360         fast_export_button->set_sensitive (false);
361         //rt_export_button->set_sensitive (false);
362
363         if (warn_string.empty()) {
364                 warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>";
365         } else {
366                 warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>\n" + warn_string;
367         }
368
369         warn_label.set_markup (warn_string);
370 }
371
372 void
373 ExportDialog::add_warning (string const & text)
374 {
375         if (warn_string.empty()) {
376                 warn_string = _("<span color=\"#ffa755\">Warning: ") + text + "</span>";
377         } else {
378                 warn_string = warn_string + _("\n<span color=\"#ffa755\">Warning: ") + text + "</span>";
379         }
380
381         warn_label.set_markup (warn_string);
382 }
383
384 /*** Dialog specializations ***/
385
386 ExportRangeDialog::ExportRangeDialog (PublicEditor & editor, string range_id) :
387   ExportDialog (editor, _("Export Range"), X_("RangeExportProfile")),
388   range_id (range_id)
389 {}
390
391 void
392 ExportRangeDialog::init_components ()
393 {
394         preset_selector.reset (new ExportPresetSelector ());
395         timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, range_id));
396         channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
397         file_notebook.reset (new ExportFileNotebook ());
398 }
399
400 ExportSelectionDialog::ExportSelectionDialog (PublicEditor & editor) :
401   ExportDialog (editor, _("Export Selection"), X_("SelectionExportProfile"))
402 {}
403
404 void
405 ExportSelectionDialog::init_components ()
406 {
407         preset_selector.reset (new ExportPresetSelector ());
408         timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, X_("selection")));
409         channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
410         file_notebook.reset (new ExportFileNotebook ());
411 }
412
413 ExportRegionDialog::ExportRegionDialog (PublicEditor & editor, ARDOUR::AudioRegion const & region, ARDOUR::AudioTrack & track) :
414   ExportDialog (editor, _("Export Region"), X_("RegionExportProfile")),
415   region (region),
416   track (track)
417 {}
418
419 void
420 ExportRegionDialog::init_gui ()
421 {
422         ExportDialog::init_gui ();
423
424         channels_label->set_text (_("Source"));
425 }
426
427 void
428 ExportRegionDialog::init_components ()
429 {
430         string loc_id = profile_manager->set_single_range (region.position(), region.position() + region.length(), region.name());
431
432         preset_selector.reset (new ExportPresetSelector ());
433         timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, loc_id));
434         channel_selector.reset (new RegionExportChannelSelector (_session, profile_manager, region, track));
435         file_notebook.reset (new ExportFileNotebook ());
436 }
437
438 StemExportDialog::StemExportDialog (PublicEditor & editor)
439   : ExportDialog(editor, _("Stem Export"), X_("StemExportProfile"))
440 {
441
442 }
443
444 void
445 StemExportDialog::init_components ()
446 {
447         preset_selector.reset (new ExportPresetSelector ());
448         timespan_selector.reset (new ExportTimespanSelectorMultiple (_session, profile_manager));
449         channel_selector.reset (new TrackExportChannelSelector (_session, profile_manager));
450         file_notebook.reset (new ExportFileNotebook ());
451 }