Replace use of PBD::sys::path in ExportProfileManager
authorTim Mayberry <mojofunk@gmail.com>
Sat, 23 Jun 2012 05:07:00 +0000 (05:07 +0000)
committerTim Mayberry <mojofunk@gmail.com>
Sat, 23 Jun 2012 05:07:00 +0000 (05:07 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12831 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ardour/export_profile_manager.h
libs/ardour/export_profile_manager.cc

index 0b8f7e9422113b482be0e7e108aeeff5cad58799..31e93a5b8974530a718c06f78d9552f08be7e251 100644 (file)
@@ -32,7 +32,6 @@
 #include "pbd/uuid.h"
 #include "pbd/file_utils.h"
 #include "pbd/xml++.h"
-#include "pbd/filesystem.h"
 
 #include "ardour/filesystem_paths.h"
 #include "ardour/location.h"
@@ -68,8 +67,8 @@ class ExportProfileManager
   private:
        typedef boost::shared_ptr<ExportHandler> HandlerPtr;
 
-       typedef std::pair<PBD::UUID, PBD::sys::path> FilePair;
-       typedef std::map<PBD::UUID, PBD::sys::path> FileMap;
+       typedef std::pair<PBD::UUID, std::string> FilePair;
+       typedef std::map<PBD::UUID, std::string> FileMap;
 
        std::string const xml_node_name;
        HandlerPtr  handler;
@@ -77,7 +76,7 @@ class ExportProfileManager
 
        std::string preset_filename (std::string const & preset_name);
        void load_presets ();
-       void load_preset_from_disk (PBD::sys::path const & path);
+       void load_preset_from_disk (std::string const & path);
 
        bool set_state (XMLNode const & root);
        bool set_global_state (XMLNode const & root);
@@ -93,7 +92,7 @@ class ExportProfileManager
 
        std::vector<std::string> find_file (std::string const & pattern);
 
-       PBD::sys::path  export_config_dir;
+       std::string  export_config_dir;
        PBD::SearchPath search_path;
 
 /* Timespans */
@@ -196,7 +195,7 @@ class ExportProfileManager
        FormatStatePtr duplicate_format_state (FormatStatePtr state);
        void remove_format_state (FormatStatePtr state);
 
-       PBD::sys::path save_format_to_disk (ExportFormatSpecPtr format);
+       std::string save_format_to_disk (ExportFormatSpecPtr format);
        void remove_format_profile (ExportFormatSpecPtr format);
        ExportFormatSpecPtr get_new_format (ExportFormatSpecPtr original);
 
@@ -213,7 +212,7 @@ class ExportProfileManager
        void load_formats ();
 
        ExportFormatSpecPtr load_format (XMLNode & node);
-       void load_format_from_disk (PBD::sys::path const & path);
+       void load_format_from_disk (std::string const & path);
 
        boost::shared_ptr<FormatList> format_list;
        FileMap                       format_file_map;
index 2fa0b7c76f978f19a6acdda09889be745f48add7..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"
 #include "pbd/convert.h"
-#include "pbd/filesystem.h"
 
 #include "ardour/export_profile_manager.h"
 #include "ardour/export_format_specification.h"
@@ -37,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"
@@ -64,8 +68,7 @@ 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();
 
@@ -73,8 +76,10 @@ ExportProfileManager::ExportProfileManager (Session & s, std::string xml_node_na
 
        /* 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 ();
@@ -177,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
@@ -229,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);
        }
 
@@ -238,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 */
 
@@ -518,7 +525,7 @@ ExportProfileManager::remove_format_state (FormatStatePtr state)
        }
 }
 
-sys::path
+std::string
 ExportProfileManager::save_format_to_disk (ExportFormatSpecPtr format)
 {
        // TODO filename character stripping
@@ -532,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();
 
@@ -552,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;
+                               };
                        }
                }
 
@@ -566,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();
        }
@@ -587,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);
        }
 
@@ -605,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);
 
@@ -678,9 +689,9 @@ ExportProfileManager::load_formats ()
 }
 
 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 */
@@ -838,20 +849,20 @@ ExportProfileManager::check_config (boost::shared_ptr<Warnings> warnings,
 
                string path = *path_it;
 
-               if (sys::exists (sys::path (path))) {
+               if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
                        warnings->conflicting_filenames.push_back (path);
                }
 
                if (format->with_toc()) {
                        string marker_file = handler->get_cd_marker_filename(path, CDMarkerTOC);
-                       if (sys::exists (sys::path (marker_file))) {
+                       if (Glib::file_test (marker_file, Glib::FILE_TEST_EXISTS)) {
                                warnings->conflicting_filenames.push_back (marker_file);
                        }
                }
 
                if (format->with_cue()) {
                        string marker_file = handler->get_cd_marker_filename(path, CDMarkerCUE);
-                       if (sys::exists (sys::path (marker_file))) {
+                       if (Glib::file_test (marker_file, Glib::FILE_TEST_EXISTS)) {
                                warnings->conflicting_filenames.push_back (marker_file);
                        }
                }