set fader and plugin parameter automation curve default values - what else needs...
[ardour.git] / libs / ardour / export_profile_manager.cc
index 18886bc573e7ffc47a507c6f19739d6580a449cf..6c4f829bb89fca383e02a54fc106cd93fac7a9ec 100644 (file)
 #include <cassert>
 #include <stdexcept>
 
+#include <glib.h>
+#include <glib/gstdio.h>
+
 #include <glibmm/fileutils.h>
+#include <glibmm/miscutils.h>
 
 #include "pbd/enumwriter.h"
 #include "pbd/xml++.h"
@@ -36,6 +40,7 @@
 #include "ardour/export_preset.h"
 #include "ardour/export_handler.h"
 #include "ardour/export_failed.h"
+#include "ardour/directory_names.h"
 #include "ardour/filename_extensions.h"
 #include "ardour/route.h"
 #include "ardour/session.h"
@@ -63,18 +68,18 @@ ExportProfileManager::ExportProfileManager (Session & s, std::string xml_node_na
 {
        /* Initialize path variables */
 
-       export_config_dir = user_config_directory();
-       export_config_dir /= "export";
+       export_config_dir = Glib::build_filename (user_config_directory(), export_dir_name);
 
        search_path += export_formats_search_path();
 
-       cerr << string_compose (_("Searching for export formats in %1"), search_path.to_string()) << endl;
        info << string_compose (_("Searching for export formats in %1"), search_path.to_string()) << endmsg;
 
        /* create export config directory if necessary */
 
-       if (!sys::exists (export_config_dir)) {
-               sys::create_directory (export_config_dir);
+       if (!Glib::file_test (export_config_dir, Glib::FILE_TEST_EXISTS)) {
+               if (g_mkdir_with_parents (export_config_dir.c_str(), 0755) != 0) {
+                       error << string_compose (_("Unable to create export format directory %1: %2"), export_config_dir, g_strerror(errno)) << endmsg;
+               }
        }
 
        load_presets ();
@@ -91,8 +96,6 @@ ExportProfileManager::ExportProfileManager (Session & s, std::string xml_node_na
 
 ExportProfileManager::~ExportProfileManager ()
 {
-       if (single_range_mode) { return; }
-
        XMLNode * instant_xml (new XMLNode (xml_node_name));
        serialize_profile (*instant_xml);
        session.add_instant_xml (*instant_xml, false);
@@ -168,9 +171,9 @@ ExportProfileManager::load_preset (ExportPresetPtr preset)
 void
 ExportProfileManager::load_presets ()
 {
-       vector<sys::path> found = find_file (string_compose (X_("*%1"),export_preset_suffix));
+       vector<std::string> found = find_file (string_compose (X_("*%1"),export_preset_suffix));
 
-       for (vector<sys::path>::iterator it = found.begin(); it != found.end(); ++it) {
+       for (vector<std::string>::iterator it = found.begin(); it != found.end(); ++it) {
                load_preset_from_disk (*it);
        }
 }
@@ -179,7 +182,7 @@ std::string
 ExportProfileManager::preset_filename (std::string const & preset_name)
 {
        string safe_name = legalize_for_path (preset_name);
-       return export_config_dir.to_string() + "/" + safe_name + export_preset_suffix;
+       return Glib::build_filename (export_config_dir, safe_name + export_preset_suffix);
 }
 
 ExportPresetPtr
@@ -231,7 +234,9 @@ ExportProfileManager::remove_preset ()
 
        FileMap::iterator it = preset_file_map.find (current_preset->id());
        if (it != preset_file_map.end()) {
-               sys::remove (it->second);
+               if (g_remove (it->second.c_str()) != 0) {
+                       error << string_compose (_("Unable to remove export preset %1: %2"), it->second, g_strerror(errno)) << endmsg;
+               }
                preset_file_map.erase (it);
        }
 
@@ -240,9 +245,9 @@ ExportProfileManager::remove_preset ()
 }
 
 void
-ExportProfileManager::load_preset_from_disk (PBD::sys::path const & path)
+ExportProfileManager::load_preset_from_disk (std::string const & path)
 {
-       ExportPresetPtr preset (new ExportPreset (path.to_string(), session));
+       ExportPresetPtr preset (new ExportPreset (path, session));
 
        /* Handle id to filename mapping and don't add duplicates to list */
 
@@ -303,10 +308,10 @@ ExportProfileManager::serialize_local_profile (XMLNode & root)
        }
 }
 
-std::vector<sys::path>
+std::vector<std::string>
 ExportProfileManager::find_file (std::string const & pattern)
 {
-       vector<sys::path> found;
+       vector<std::string> found;
 
        Glib::PatternSpec pattern_spec (pattern);
        find_matching_files_in_search_path (search_path, pattern_spec, found);
@@ -520,7 +525,7 @@ ExportProfileManager::remove_format_state (FormatStatePtr state)
        }
 }
 
-sys::path
+std::string
 ExportProfileManager::save_format_to_disk (ExportFormatSpecPtr format)
 {
        // TODO filename character stripping
@@ -534,19 +539,18 @@ ExportProfileManager::save_format_to_disk (ExportFormatSpecPtr format)
 
         new_name = legalize_for_path (new_name);
 
-       sys::path new_path (export_config_dir);
-       new_path /= new_name;
+       std::string new_path = Glib::build_filename (export_config_dir, new_name);
 
        /* Check if format is on disk already */
        FileMap::iterator it;
        if ((it = format_file_map.find (format->id())) != format_file_map.end()) {
 
                /* Check if config is not in user config dir */
-               if (it->second.branch_path().to_string().compare (export_config_dir.to_string())) {
+               if (Glib::path_get_dirname (it->second) != export_config_dir) {
 
                        /* Write new file */
 
-                       XMLTree tree (new_path.to_string());
+                       XMLTree tree (new_path);
                        tree.set_root (&format->get_state());
                        tree.write();
 
@@ -554,12 +558,14 @@ ExportProfileManager::save_format_to_disk (ExportFormatSpecPtr format)
 
                        /* Update file and rename if necessary */
 
-                       XMLTree tree (it->second.to_string());
+                       XMLTree tree (it->second);
                        tree.set_root (&format->get_state());
                        tree.write();
 
-                       if (new_name.compare (it->second.leaf())) {
-                               sys::rename (it->second, new_path);
+                       if (new_name != Glib::path_get_basename (it->second)) {
+                               if (g_rename (it->second.c_str(), new_path.c_str()) != 0) {
+                                       error << string_compose (_("Unable to rename export format %1 to %2: %3"), it->second, new_path, g_strerror(errno)) << endmsg;
+                               };
                        }
                }
 
@@ -568,7 +574,7 @@ ExportProfileManager::save_format_to_disk (ExportFormatSpecPtr format)
        } else {
                /* Write new file */
 
-               XMLTree tree (new_path.to_string());
+               XMLTree tree (new_path);
                tree.set_root (&format->get_state());
                tree.write();
        }
@@ -589,7 +595,10 @@ ExportProfileManager::remove_format_profile (ExportFormatSpecPtr format)
 
        FileMap::iterator it = format_file_map.find (format->id());
        if (it != format_file_map.end()) {
-               sys::remove (it->second);
+               if (g_remove (it->second.c_str()) != 0) {
+                       error << string_compose (_("Unable to remove export profile %1: %2"), it->second, g_strerror(errno)) << endmsg;
+                       return;
+               }
                format_file_map.erase (it);
        }
 
@@ -607,7 +616,7 @@ ExportProfileManager::get_new_format (ExportFormatSpecPtr original)
                format->set_name ("empty format");
        }
 
-       sys::path path = save_format_to_disk (format);
+       std::string path = save_format_to_disk (format);
        FilePair pair (format->id(), path);
        format_file_map.insert (pair);
 
@@ -672,17 +681,17 @@ ExportProfileManager::serialize_format (FormatStatePtr state)
 void
 ExportProfileManager::load_formats ()
 {
-       vector<sys::path> found = find_file (string_compose ("*%1", export_format_suffix));
+       vector<std::string> found = find_file (string_compose ("*%1", export_format_suffix));
 
-       for (vector<sys::path>::iterator it = found.begin(); it != found.end(); ++it) {
+       for (vector<std::string>::iterator it = found.begin(); it != found.end(); ++it) {
                load_format_from_disk (*it);
        }
 }
 
 void
-ExportProfileManager::load_format_from_disk (PBD::sys::path const & path)
+ExportProfileManager::load_format_from_disk (std::string const & path)
 {
-       XMLTree const tree (path.to_string());
+       XMLTree const tree (path);
        ExportFormatSpecPtr format = handler->add_format (*tree.root());
 
        /* Handle id to filename mapping and don't add duplicates to list */
@@ -714,6 +723,21 @@ ExportProfileManager::remove_filename_state (FilenameStatePtr state)
        }
 }
 
+std::string
+ExportProfileManager::get_sample_filename_for_format (ExportFilenamePtr filename, ExportFormatSpecPtr format)
+{
+       assert (format);
+       
+       if (channel_configs.empty()) { return ""; }
+
+       std::list<string> filenames;
+       build_filenames (filenames, filename, timespans.front()->timespans,
+                        channel_configs.front()->config, format);
+
+       if (filenames.empty()) { return ""; }
+       return filenames.front();
+}
+
 bool
 ExportProfileManager::init_filenames (XMLNodeList nodes)
 {
@@ -818,27 +842,28 @@ ExportProfileManager::check_config (boost::shared_ptr<Warnings> warnings,
 
 //     filename->include_timespan = (timespans->size() > 1); Disabled for now...
 
-       for (std::list<ExportTimespanPtr>::iterator timespan_it = timespans->begin(); timespan_it != timespans->end(); ++timespan_it) {
-               filename->set_timespan (*timespan_it);
+       std::list<string> paths;
+       build_filenames(paths, filename, timespans, channel_config, format);
 
-               if (channel_config->get_split()) {
-                       filename->include_channel = true;
+       for (std::list<string>::const_iterator path_it = paths.begin(); path_it != paths.end(); ++path_it) {
 
-                       for (uint32_t chan = 1; chan <= channel_config->get_n_chans(); ++chan) {
-                               filename->set_channel (chan);
+               string path = *path_it;
 
-                               string path = filename->get_path (format);
+               if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
+                       warnings->conflicting_filenames.push_back (path);
+               }
 
-                               if (sys::exists (sys::path (path))) {
-                                       warnings->conflicting_filenames.push_back (path);
-                               }
+               if (format->with_toc()) {
+                       string marker_file = handler->get_cd_marker_filename(path, CDMarkerTOC);
+                       if (Glib::file_test (marker_file, Glib::FILE_TEST_EXISTS)) {
+                               warnings->conflicting_filenames.push_back (marker_file);
                        }
+               }
 
-               } else {
-                       string path = filename->get_path (format);
-
-                       if (sys::exists (sys::path (path))) {
-                               warnings->conflicting_filenames.push_back (path);
+               if (format->with_cue()) {
+                       string marker_file = handler->get_cd_marker_filename(path, CDMarkerCUE);
+                       if (Glib::file_test (marker_file, Glib::FILE_TEST_EXISTS)) {
+                               warnings->conflicting_filenames.push_back (marker_file);
                        }
                }
        }
@@ -867,4 +892,28 @@ ExportProfileManager::check_sndfile_format (ExportFormatSpecPtr format, unsigned
        return (sf_format_check (&sf_info) == SF_TRUE ? true : false);
 }
 
+void
+ExportProfileManager::build_filenames(std::list<std::string> & result, ExportFilenamePtr filename,
+                                      TimespanListPtr timespans, ExportChannelConfigPtr channel_config,
+                                      ExportFormatSpecPtr format)
+{
+       for (std::list<ExportTimespanPtr>::iterator timespan_it = timespans->begin();
+            timespan_it != timespans->end(); ++timespan_it) {
+               filename->set_timespan (*timespan_it);
+
+               if (channel_config->get_split()) {
+                       filename->include_channel = true;
+
+                       for (uint32_t chan = 1; chan <= channel_config->get_n_chans(); ++chan) {
+                               filename->set_channel (chan);
+                               result.push_back(filename->get_path (format));
+                       }
+
+               } else {
+                       filename->include_channel = false;
+                       result.push_back(filename->get_path (format));
+               }
+       }
+}
+
 }; // namespace ARDOUR