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