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