add required header
[ardour.git] / libs / ardour / export_profile_manager.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 #include <cassert>
22 #include <stdexcept>
23 #include <cerrno>
24
25 #include <glib.h>
26 #include <glib/gstdio.h>
27
28 #include <glibmm/fileutils.h>
29 #include <glibmm/miscutils.h>
30
31 #include "pbd/enumwriter.h"
32 #include "pbd/xml++.h"
33 #include "pbd/convert.h"
34
35 #include "ardour/export_profile_manager.h"
36 #include "ardour/export_format_specification.h"
37 #include "ardour/search_paths.h"
38 #include "ardour/export_timespan.h"
39 #include "ardour/export_channel_configuration.h"
40 #include "ardour/export_filename.h"
41 #include "ardour/export_preset.h"
42 #include "ardour/export_handler.h"
43 #include "ardour/export_failed.h"
44 #include "ardour/directory_names.h"
45 #include "ardour/filename_extensions.h"
46 #include "ardour/profile.h"
47 #include "ardour/route.h"
48 #include "ardour/session.h"
49 #include "ardour/broadcast_info.h"
50
51 #include "i18n.h"
52
53 using namespace std;
54 using namespace Glib;
55 using namespace PBD;
56
57 namespace ARDOUR
58 {
59
60 ExportProfileManager::ExportProfileManager (Session & s, ExportType type)
61   : type(type)
62   , handler (s.get_export_handler())
63   , session (s)
64
65   , ranges (new LocationList ())
66   , single_range_mode (false)
67
68   , format_list (new FormatList ())
69 {
70         switch(type) {
71         case RegularExport:
72                 xml_node_name = X_("ExportProfile");
73                 break;
74         case RangeExport:
75                 xml_node_name = X_("RangeExportProfile");
76                 break;
77         case SelectionExport:
78                 xml_node_name = X_("SelectionExportProfile");
79                 break;
80         case RegionExport:
81                 xml_node_name = X_("RegionExportProfile");
82                 break;
83         case StemExport:
84                 xml_node_name = X_("StemExportProfile");
85                 break;
86         }
87
88         /* Initialize path variables */
89
90         export_config_dir = Glib::build_filename (user_config_directory(), export_dir_name);
91
92         search_path += export_formats_search_path();
93
94         info << string_compose (_("Searching for export formats in %1"), search_path.to_string()) << endmsg;
95
96         /* create export config directory if necessary */
97
98         if (!Glib::file_test (export_config_dir, Glib::FILE_TEST_EXISTS)) {
99                 if (g_mkdir_with_parents (export_config_dir.c_str(), 0755) != 0) {
100                         error << string_compose (_("Unable to create export format directory %1: %2"), export_config_dir, g_strerror(errno)) << endmsg;
101                 }
102         }
103
104         load_presets ();
105         load_formats ();
106
107         /* Initialize all lists with an empty config */
108
109         XMLNodeList dummy;
110         init_timespans (dummy);
111         init_channel_configs (dummy);
112         init_formats (dummy);
113         init_filenames (dummy);
114 }
115
116 ExportProfileManager::~ExportProfileManager ()
117 {
118         XMLNode * extra_xml (new XMLNode (xml_node_name));
119         serialize_profile (*extra_xml);
120         session.add_extra_xml (*extra_xml);
121 }
122
123 void
124 ExportProfileManager::load_profile ()
125 {
126         XMLNode * extra_node = session.extra_xml (xml_node_name);
127         /* Legacy sessions used Session instant.xml for this */
128         if (!extra_node) {
129                 extra_node = session.instant_xml (xml_node_name);
130         }
131
132         if (extra_node) {
133                 set_state (*extra_node);
134         } else {
135                 XMLNode empty_node (xml_node_name);
136                 set_state (empty_node);
137         }
138 }
139
140 void
141 ExportProfileManager::prepare_for_export ()
142 {
143         TimespanListPtr ts_list = timespans.front()->timespans;
144
145         FormatStateList::const_iterator format_it;
146         FilenameStateList::const_iterator filename_it;
147
148         // For each timespan
149         for (TimespanList::iterator ts_it = ts_list->begin(); ts_it != ts_list->end(); ++ts_it) {
150                 // ..., each format-filename pair
151                 for (format_it = formats.begin(), filename_it = filenames.begin();
152                      format_it != formats.end() && filename_it != filenames.end();
153                      ++format_it, ++filename_it) {
154
155                         ExportFilenamePtr filename = (*filename_it)->filename;
156 //                      filename->include_timespan = (ts_list->size() > 1); Disabled for now...
157
158                         boost::shared_ptr<BroadcastInfo> b;
159                         if ((*format_it)->format->has_broadcast_info()) {
160                                 b.reset (new BroadcastInfo);
161                                 b->set_from_session (session, (*ts_it)->get_start());
162                         }
163
164                         // ...and each channel config
165                         filename->include_channel_config = (type == StemExport) ||
166                                                            (channel_configs.size() > 1);
167                         for(ChannelConfigStateList::iterator cc_it = channel_configs.begin(); cc_it != channel_configs.end(); ++cc_it) {
168                                 handler->add_export_config (*ts_it, (*cc_it)->config, (*format_it)->format, filename, b);
169                         }
170                 }
171         }
172 }
173
174 bool
175 ExportProfileManager::load_preset (ExportPresetPtr preset)
176 {
177         bool ok = true;
178
179         current_preset = preset;
180         if (!preset) { return false; }
181
182         XMLNode const * state;
183         if ((state = preset->get_local_state())) {
184                 set_local_state (*state);
185         } else { ok = false; }
186
187         if ((state = preset->get_global_state())) {
188                 if (!set_global_state (*state)) {
189                         ok = false;
190                 }
191         } else { ok = false; }
192
193         return ok;
194 }
195
196 void
197 ExportProfileManager::load_presets ()
198 {
199         vector<std::string> found = find_file (string_compose (X_("*%1"),export_preset_suffix));
200
201         for (vector<std::string>::iterator it = found.begin(); it != found.end(); ++it) {
202                 load_preset_from_disk (*it);
203         }
204 }
205
206 std::string
207 ExportProfileManager::preset_filename (std::string const & preset_name)
208 {
209         string safe_name = legalize_for_path (preset_name);
210         return Glib::build_filename (export_config_dir, safe_name + export_preset_suffix);
211 }
212
213 ExportPresetPtr
214 ExportProfileManager::new_preset (string const & name)
215 {
216         // Generate new ID and do regular save
217         string filename = preset_filename (name);
218         current_preset.reset (new ExportPreset (filename, session));
219         preset_list.push_back (current_preset);
220         return save_preset (name);
221 }
222
223 ExportPresetPtr
224 ExportProfileManager::save_preset (string const & name)
225 {
226         string filename = preset_filename (name);
227
228         if (!current_preset) {
229                 current_preset.reset (new ExportPreset (filename, session));
230                 preset_list.push_back (current_preset);
231         }
232
233         XMLNode * global_preset = new XMLNode ("ExportPreset");
234         XMLNode * local_preset = new XMLNode ("ExportPreset");
235
236         serialize_global_profile (*global_preset);
237         serialize_local_profile (*local_preset);
238
239         current_preset->set_name (name);
240         current_preset->set_global_state (*global_preset);
241         current_preset->set_local_state (*local_preset);
242
243         current_preset->save (filename);
244
245         return current_preset;
246 }
247
248 void
249 ExportProfileManager::remove_preset ()
250 {
251         if (!current_preset) { return; }
252
253         for (PresetList::iterator it = preset_list.begin(); it != preset_list.end(); ++it) {
254                 if (*it == current_preset) {
255                         preset_list.erase (it);
256                         break;
257                 }
258         }
259
260         FileMap::iterator it = preset_file_map.find (current_preset->id());
261         if (it != preset_file_map.end()) {
262                 if (g_remove (it->second.c_str()) != 0) {
263                         error << string_compose (_("Unable to remove export preset %1: %2"), it->second, g_strerror(errno)) << endmsg;
264                 }
265                 preset_file_map.erase (it);
266         }
267
268         current_preset->remove_local();
269         current_preset.reset();
270 }
271
272 void
273 ExportProfileManager::load_preset_from_disk (std::string const & path)
274 {
275         ExportPresetPtr preset (new ExportPreset (path, session));
276
277         /* Handle id to filename mapping and don't add duplicates to list */
278
279         FilePair pair (preset->id(), path);
280         if (preset_file_map.insert (pair).second) {
281                 preset_list.push_back (preset);
282         }
283 }
284
285 bool
286 ExportProfileManager::set_state (XMLNode const & root)
287 {
288         return set_global_state (root) & set_local_state (root);
289 }
290
291 bool
292 ExportProfileManager::set_global_state (XMLNode const & root)
293 {
294         return init_filenames (root.children ("ExportFilename")) &
295                init_formats (root.children ("ExportFormat"));
296 }
297
298 bool
299 ExportProfileManager::set_local_state (XMLNode const & root)
300 {
301         return init_timespans (root.children ("ExportTimespan")) &
302                init_channel_configs (root.children ("ExportChannelConfiguration"));
303 }
304
305 void
306 ExportProfileManager::serialize_profile (XMLNode & root)
307 {
308         serialize_local_profile (root);
309         serialize_global_profile (root);
310 }
311
312 void
313 ExportProfileManager::serialize_global_profile (XMLNode & root)
314 {
315         for (FormatStateList::iterator it = formats.begin(); it != formats.end(); ++it) {
316                 root.add_child_nocopy (serialize_format (*it));
317         }
318
319         for (FilenameStateList::iterator it = filenames.begin(); it != filenames.end(); ++it) {
320                 root.add_child_nocopy ((*it)->filename->get_state());
321         }
322 }
323
324 void
325 ExportProfileManager::serialize_local_profile (XMLNode & root)
326 {
327         for (TimespanStateList::iterator it = timespans.begin(); it != timespans.end(); ++it) {
328                 root.add_child_nocopy (serialize_timespan (*it));
329         }
330
331         for (ChannelConfigStateList::iterator it = channel_configs.begin(); it != channel_configs.end(); ++it) {
332                 root.add_child_nocopy ((*it)->config->get_state());
333         }
334 }
335
336 std::vector<std::string>
337 ExportProfileManager::find_file (std::string const & pattern)
338 {
339         vector<std::string> found;
340
341         find_files_matching_pattern (found, search_path, pattern);
342
343         return found;
344 }
345
346 void
347 ExportProfileManager::set_selection_range (framepos_t start, framepos_t end)
348 {
349
350         if (start || end) {
351                 selection_range.reset (new Location (session));
352                 selection_range->set_name (_("Selection"));
353                 selection_range->set (start, end);
354         } else {
355                 selection_range.reset();
356         }
357
358         for (TimespanStateList::iterator it = timespans.begin(); it != timespans.end(); ++it) {
359                 (*it)->selection_range = selection_range;
360         }
361 }
362
363 std::string
364 ExportProfileManager::set_single_range (framepos_t start, framepos_t end, string name)
365 {
366         single_range_mode = true;
367
368         single_range.reset (new Location (session));
369         single_range->set_name (name);
370         single_range->set (start, end);
371
372         update_ranges ();
373
374         return single_range->id().to_s();
375 }
376
377 bool
378 ExportProfileManager::init_timespans (XMLNodeList nodes)
379 {
380         timespans.clear ();
381         update_ranges ();
382
383         bool ok = true;
384         for (XMLNodeList::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
385                 TimespanStatePtr span = deserialize_timespan (**it);
386                 if (span) {
387                         timespans.push_back (span);
388                 } else { ok = false; }
389         }
390
391         if (timespans.empty()) {
392                 TimespanStatePtr state (new TimespanState (selection_range, ranges));
393                 timespans.push_back (state);
394
395                 // Add session as default selection
396                 Location * session_range;
397
398                 if (Profile->get_trx()) {
399                         session_range = (session.get_play_loop () ? session.locations()->auto_loop_location () : session.locations()->session_range_location());
400                 } else {
401                         session_range = session.locations()->session_range_location();
402                 }
403                         
404                 if (!session_range) { return false; }
405
406                 ExportTimespanPtr timespan = handler->add_timespan();
407                 timespan->set_name (session_range->name());
408                 timespan->set_range_id (session_range->id().to_s());
409                 timespan->set_range (session_range->start(), session_range->end());
410                 state->timespans->push_back (timespan);
411                 return false;
412         }
413
414         return ok;
415 }
416
417 ExportProfileManager::TimespanStatePtr
418 ExportProfileManager::deserialize_timespan (XMLNode & root)
419 {
420         TimespanStatePtr state (new TimespanState (selection_range, ranges));
421         XMLProperty const * prop;
422
423         XMLNodeList spans = root.children ("Range");
424         for (XMLNodeList::iterator node_it = spans.begin(); node_it != spans.end(); ++node_it) {
425
426                 prop = (*node_it)->property ("id");
427                 if (!prop) { continue; }
428                 string id = prop->value();
429
430                 Location * location = 0;
431                 for (LocationList::iterator it = ranges->begin(); it != ranges->end(); ++it) {
432                         if ((id == "selection" && *it == selection_range.get()) ||
433                             (id == (*it)->id().to_s())) {
434                                 location = *it;
435                                 break;
436                         }
437                 }
438
439                 if (!location) { continue; }
440
441                 ExportTimespanPtr timespan = handler->add_timespan();
442                 timespan->set_name (location->name());
443                 timespan->set_range_id (location->id().to_s());
444                 timespan->set_range (location->start(), location->end());
445                 state->timespans->push_back (timespan);
446         }
447
448         if ((prop = root.property ("format"))) {
449                 state->time_format = (TimeFormat) string_2_enum (prop->value(), TimeFormat);
450         }
451
452         if (state->timespans->empty()) {
453                 return TimespanStatePtr();
454         }
455
456         return state;
457 }
458
459 XMLNode &
460 ExportProfileManager::serialize_timespan (TimespanStatePtr state)
461 {
462         XMLNode & root = *(new XMLNode ("ExportTimespan"));
463         XMLNode * span;
464
465         update_ranges ();
466         for (TimespanList::iterator it = state->timespans->begin(); it != state->timespans->end(); ++it) {
467                 if ((span = root.add_child ("Range"))) {
468                         span->add_property ("id", (*it)->range_id());
469                 }
470         }
471
472         root.add_property ("format", enum_2_string (state->time_format));
473
474         return root;
475 }
476
477 void
478 ExportProfileManager::update_ranges () {
479         ranges->clear();
480
481         if (single_range_mode) {
482                 ranges->push_back (single_range.get());
483                 return;
484         }
485
486         /* Session */
487
488         Location * session_range = (session.get_play_loop () ? session.locations()->auto_loop_location () : 
489                                                                                                                    session.locations()->session_range_location());
490         if (session_range) {
491                 ranges->push_back (session_range);
492         }
493
494         /* Selection */
495
496         if (selection_range) {
497                 ranges->push_back (selection_range.get());
498         }
499
500         /* ranges */
501
502         LocationList const & list (session.locations()->list());
503         for (LocationList::const_iterator it = list.begin(); it != list.end(); ++it) {
504                 if ((*it)->is_range_marker()) {
505                         ranges->push_back (*it);
506                 }
507         }
508 }
509
510 ExportProfileManager::ChannelConfigStatePtr
511 ExportProfileManager::add_channel_config ()
512 {
513         ChannelConfigStatePtr ptr(new ChannelConfigState(handler->add_channel_config()));
514         channel_configs.push_back(ptr);
515         return ptr;
516 }
517
518 bool
519 ExportProfileManager::init_channel_configs (XMLNodeList nodes)
520 {
521         channel_configs.clear();
522
523         if (nodes.empty()) {
524                 ChannelConfigStatePtr config (new ChannelConfigState (handler->add_channel_config()));
525                 channel_configs.push_back (config);
526
527                 // Add master outs as default
528                 if (!session.master_out()) { return false; }
529
530                 IO* master_out = session.master_out()->output().get();
531                 if (!master_out) { return false; }
532
533                 for (uint32_t n = 0; n < master_out->n_ports().n_audio(); ++n) {
534                         PortExportChannel * channel = new PortExportChannel ();
535                         channel->add_port (master_out->audio (n));
536
537                         ExportChannelPtr chan_ptr (channel);
538                         config->config->register_channel (chan_ptr);
539                 }
540                 return false;
541         }
542
543         for (XMLNodeList::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
544                 ChannelConfigStatePtr config (new ChannelConfigState (handler->add_channel_config()));
545                 config->config->set_state (**it);
546                 channel_configs.push_back (config);
547         }
548
549         return true;
550 }
551
552 ExportProfileManager::FormatStatePtr
553 ExportProfileManager::duplicate_format_state (FormatStatePtr state)
554 {
555         /* Note: The pointer in the new FormatState should point to the same format spec
556                  as the original state's pointer. The spec itself should not be copied!   */
557
558         FormatStatePtr format (new FormatState (format_list, state->format));
559         formats.push_back (format);
560         return format;
561 }
562
563 void
564 ExportProfileManager::remove_format_state (FormatStatePtr state)
565 {
566         for (FormatStateList::iterator it = formats.begin(); it != formats.end(); ++it) {
567                 if (*it == state) {
568                         formats.erase (it);
569                         return;
570                 }
571         }
572 }
573
574 std::string
575 ExportProfileManager::save_format_to_disk (ExportFormatSpecPtr format)
576 {
577         // TODO filename character stripping
578
579         /* Get filename for file */
580
581         string new_name = format->name();
582         new_name += export_format_suffix;
583
584         /* make sure its legal for the filesystem */
585
586         new_name = legalize_for_path (new_name);
587
588         std::string new_path = Glib::build_filename (export_config_dir, new_name);
589
590         /* Check if format is on disk already */
591         FileMap::iterator it;
592         if ((it = format_file_map.find (format->id())) != format_file_map.end()) {
593
594                 /* Check if config is not in user config dir */
595                 if (Glib::path_get_dirname (it->second) != export_config_dir) {
596
597                         /* Write new file */
598
599                         XMLTree tree (new_path);
600                         tree.set_root (&format->get_state());
601                         tree.write();
602
603                 } else {
604
605                         /* Update file and rename if necessary */
606
607                         XMLTree tree (it->second);
608                         tree.set_root (&format->get_state());
609                         tree.write();
610
611                         if (new_name != Glib::path_get_basename (it->second)) {
612                                 if (g_rename (it->second.c_str(), new_path.c_str()) != 0) {
613                                         error << string_compose (_("Unable to rename export format %1 to %2: %3"), it->second, new_path, g_strerror(errno)) << endmsg;
614                                 };
615                         }
616                 }
617
618                 it->second = new_path;
619
620         } else {
621                 /* Write new file */
622
623                 XMLTree tree (new_path);
624                 tree.set_root (&format->get_state());
625                 tree.write();
626         }
627
628         FormatListChanged ();
629         return new_path;
630 }
631
632 void
633 ExportProfileManager::remove_format_profile (ExportFormatSpecPtr format)
634 {
635         for (FormatList::iterator it = format_list->begin(); it != format_list->end(); ++it) {
636                 if (*it == format) {
637                         format_list->erase (it);
638                         break;
639                 }
640         }
641
642         FileMap::iterator it = format_file_map.find (format->id());
643         if (it != format_file_map.end()) {
644                 if (g_remove (it->second.c_str()) != 0) {
645                         error << string_compose (_("Unable to remove export profile %1: %2"), it->second, g_strerror(errno)) << endmsg;
646                         return;
647                 }
648                 format_file_map.erase (it);
649         }
650
651         FormatListChanged ();
652 }
653
654 ExportFormatSpecPtr
655 ExportProfileManager::get_new_format (ExportFormatSpecPtr original)
656 {
657         ExportFormatSpecPtr format;
658         if (original) {
659                 format.reset (new ExportFormatSpecification (*original));
660                 std::cerr << "After new format created from original, format has id [" << format->id().to_s() << ']' << std::endl;
661         } else {
662                 format = handler->add_format();
663                 format->set_name (_("empty format"));
664         }
665
666         std::string path = save_format_to_disk (format);
667         FilePair pair (format->id(), path);
668         format_file_map.insert (pair);
669
670         format_list->push_back (format);
671         FormatListChanged ();
672
673         return format;
674 }
675
676 bool
677 ExportProfileManager::init_formats (XMLNodeList nodes)
678 {
679         formats.clear();
680
681         bool ok = true;
682         for (XMLNodeList::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
683                 FormatStatePtr format = deserialize_format (**it);
684                 if (format) {
685                         formats.push_back (format);
686                 } else { ok = false; }
687         }
688
689         if (formats.empty ()) {
690                 FormatStatePtr format (new FormatState (format_list, ExportFormatSpecPtr ()));
691                 formats.push_back (format);
692                 return false;
693         }
694
695         return ok;
696 }
697
698 ExportProfileManager::FormatStatePtr
699 ExportProfileManager::deserialize_format (XMLNode & root)
700 {
701         XMLProperty * prop;
702         PBD::UUID id;
703
704         if ((prop = root.property ("id"))) {
705                 id = prop->value();
706         }
707
708         for (FormatList::iterator it = format_list->begin(); it != format_list->end(); ++it) {
709                 if ((*it)->id() == id) {
710                         return FormatStatePtr (new FormatState (format_list, *it));
711                 }
712         }
713
714         return FormatStatePtr ();
715 }
716
717 XMLNode &
718 ExportProfileManager::serialize_format (FormatStatePtr state)
719 {
720         XMLNode * root = new XMLNode ("ExportFormat");
721
722         string id = state->format ? state->format->id().to_s() : "";
723         root->add_property ("id", id);
724
725         return *root;
726 }
727
728 void
729 ExportProfileManager::load_formats ()
730 {
731         vector<std::string> found = find_file (string_compose ("*%1", export_format_suffix));
732
733         for (vector<std::string>::iterator it = found.begin(); it != found.end(); ++it) {
734                 load_format_from_disk (*it);
735         }
736 }
737
738 void
739 ExportProfileManager::load_format_from_disk (std::string const & path)
740 {
741         XMLTree tree;
742
743         if (!tree.read (path)) {
744                 error << string_compose (_("Cannot load export format from %1"), path) << endmsg;
745                 return;
746         }
747
748         XMLNode* root = tree.root();
749         if (!root) {
750                 error << string_compose (_("Cannot export format read from %1"), path) << endmsg;
751                 return;
752         }
753
754         ExportFormatSpecPtr format = handler->add_format (*root);
755
756         /* Handle id to filename mapping and don't add duplicates to list */
757
758         FilePair pair (format->id(), path);
759         if (format_file_map.insert (pair).second) {
760                 format_list->push_back (format);
761         }
762
763         FormatListChanged ();
764 }
765
766 ExportProfileManager::FilenameStatePtr
767 ExportProfileManager::duplicate_filename_state (FilenameStatePtr state)
768 {
769         FilenameStatePtr filename (new FilenameState (handler->add_filename_copy (state->filename)));
770         filenames.push_back (filename);
771         return filename;
772 }
773
774 void
775 ExportProfileManager::remove_filename_state (FilenameStatePtr state)
776 {
777         for (FilenameStateList::iterator it = filenames.begin(); it != filenames.end(); ++it) {
778                 if (*it == state) {
779                         filenames.erase (it);
780                         return;
781                 }
782         }
783 }
784
785 std::string
786 ExportProfileManager::get_sample_filename_for_format (ExportFilenamePtr filename, ExportFormatSpecPtr format)
787 {
788         assert (format);
789         
790         if (channel_configs.empty()) { return ""; }
791
792         std::list<string> filenames;
793         build_filenames (filenames, filename, timespans.front()->timespans,
794                          channel_configs.front()->config, format);
795
796         if (filenames.empty()) { return ""; }
797         return filenames.front();
798 }
799
800 bool
801 ExportProfileManager::init_filenames (XMLNodeList nodes)
802 {
803         filenames.clear ();
804
805         for (XMLNodeList::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
806                 ExportFilenamePtr filename = handler->add_filename();
807                 filename->set_state (**it);
808                 filenames.push_back (FilenameStatePtr (new FilenameState (filename)));
809         }
810
811         if (filenames.empty()) {
812                 FilenameStatePtr filename (new FilenameState (handler->add_filename()));
813                 filenames.push_back (filename);
814                 return false;
815         }
816
817         return true;
818 }
819
820 boost::shared_ptr<ExportProfileManager::Warnings>
821 ExportProfileManager::get_warnings ()
822 {
823         boost::shared_ptr<Warnings> warnings (new Warnings ());
824
825         ChannelConfigStatePtr channel_config_state;
826         if (!channel_configs.empty ()) {
827                 channel_config_state = channel_configs.front();
828         }
829         
830         TimespanStatePtr timespan_state = timespans.front();
831
832         /*** Check "global" config ***/
833
834         TimespanListPtr timespans = timespan_state->timespans;
835
836         ExportChannelConfigPtr channel_config;
837         if (channel_config_state) {
838                 channel_config = channel_config_state->config;
839         }
840
841         /* Check Timespans are not empty */
842
843         if (timespans->empty()) {
844                 warnings->errors.push_back (_("No timespan has been selected!"));
845         }
846
847         if (channel_config_state == 0) {
848                 warnings->errors.push_back (_("No channels have been selected!"));
849         } else {
850                 /* Check channel config ports */
851                 if (!channel_config->all_channels_have_ports ()) {
852                         warnings->warnings.push_back (_("Some channels are empty"));
853                 }
854         }
855
856         /*** Check files ***/
857
858         if (channel_config_state) {
859                 FormatStateList::const_iterator format_it;
860                 FilenameStateList::const_iterator filename_it;
861                 for (format_it = formats.begin(), filename_it = filenames.begin();
862                      format_it != formats.end() && filename_it != filenames.end();
863                      ++format_it, ++filename_it) {
864                         check_config (warnings, timespan_state, channel_config_state, *format_it, *filename_it);
865                 }
866         }
867         
868         return warnings;
869 }
870
871 void
872 ExportProfileManager::check_config (boost::shared_ptr<Warnings> warnings,
873                                     TimespanStatePtr timespan_state,
874                                     ChannelConfigStatePtr channel_config_state,
875                                     FormatStatePtr format_state,
876                                     FilenameStatePtr filename_state)
877 {
878         TimespanListPtr timespans = timespan_state->timespans;
879         ExportChannelConfigPtr channel_config = channel_config_state->config;
880         ExportFormatSpecPtr format = format_state->format;
881         ExportFilenamePtr filename = filename_state->filename;
882
883         /* Check format and maximum channel count */
884         if (!format || !format->type()) {
885                 warnings->errors.push_back (_("No format selected!"));
886         } else if (!channel_config->get_n_chans()) {
887                 warnings->errors.push_back (_("All channels are empty!"));
888         } else if (!check_format (format, channel_config->get_n_chans())) {
889                 warnings->errors.push_back (_("One or more of the selected formats is not compatible with this system!"));
890         } else if (format->channel_limit() < channel_config->get_n_chans()) {
891                 warnings->errors.push_back
892                   (string_compose (_("%1 supports only %2 channels, but you have %3 channels in your channel configuration"),
893                                      format->format_name(),
894                                      format->channel_limit(),
895                                      channel_config->get_n_chans()));
896         }
897
898         if (!warnings->errors.empty()) { return; }
899
900         /* Check filenames */
901
902 //      filename->include_timespan = (timespans->size() > 1); Disabled for now...
903
904         std::list<string> paths;
905         build_filenames(paths, filename, timespans, channel_config, format);
906
907         for (std::list<string>::const_iterator path_it = paths.begin(); path_it != paths.end(); ++path_it) {
908
909                 string path = *path_it;
910
911                 if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
912                         warnings->conflicting_filenames.push_back (path);
913                 }
914
915                 if (format->with_toc()) {
916                         string marker_file = handler->get_cd_marker_filename(path, CDMarkerTOC);
917                         if (Glib::file_test (marker_file, Glib::FILE_TEST_EXISTS)) {
918                                 warnings->conflicting_filenames.push_back (marker_file);
919                         }
920                 }
921
922                 if (format->with_cue()) {
923                         string marker_file = handler->get_cd_marker_filename(path, CDMarkerCUE);
924                         if (Glib::file_test (marker_file, Glib::FILE_TEST_EXISTS)) {
925                                 warnings->conflicting_filenames.push_back (marker_file);
926                         }
927                 }
928         }
929 }
930
931 bool
932 ExportProfileManager::check_format (ExportFormatSpecPtr format, uint32_t channels)
933 {
934         switch (format->type()) {
935           case ExportFormatBase::T_Sndfile:
936                 return check_sndfile_format (format, channels);
937
938           default:
939                 throw ExportFailed (X_("Invalid format given for ExportFileFactory::check!"));
940         }
941 }
942
943 bool
944 ExportProfileManager::check_sndfile_format (ExportFormatSpecPtr format, unsigned int channels)
945 {
946         SF_INFO sf_info;
947         sf_info.channels = channels;
948         sf_info.samplerate = format->sample_rate ();
949         sf_info.format = format->format_id () | format->sample_format ();
950
951         return (sf_format_check (&sf_info) == SF_TRUE ? true : false);
952 }
953
954 void
955 ExportProfileManager::build_filenames(std::list<std::string> & result, ExportFilenamePtr filename,
956                                       TimespanListPtr timespans, ExportChannelConfigPtr channel_config,
957                                       ExportFormatSpecPtr format)
958 {
959         for (std::list<ExportTimespanPtr>::iterator timespan_it = timespans->begin();
960              timespan_it != timespans->end(); ++timespan_it) {
961                 filename->set_timespan (*timespan_it);
962
963                 if (channel_config->get_split()) {
964                         filename->include_channel = true;
965
966                         for (uint32_t chan = 1; chan <= channel_config->get_n_chans(); ++chan) {
967                                 filename->set_channel (chan);
968                                 result.push_back(filename->get_path (format));
969                         }
970
971                 } else {
972                         filename->include_channel = false;
973                         result.push_back(filename->get_path (format));
974                 }
975         }
976 }
977
978 }; // namespace ARDOUR