Move file utility function into pbd/file_utils.h and into PBD namespace
[ardour.git] / libs / pbd / filesystem.cc
index 4f0c8a204a36308f7dc2e4736527b24a7ae309f7..a154ed8b8eb70dbd454fc884c94312e11e52e096 100644 (file)
@@ -93,37 +93,6 @@ exists (const path & p)
        return Glib::file_test (p.to_string(), Glib::FILE_TEST_EXISTS);
 }
 
-bool
-exists_and_writable (const path & p)
-{
-       /* writable() really reflects the whole folder, but if for any
-          reason the session state file can't be written to, still
-          make us unwritable.
-       */
-
-       struct stat statbuf;
-
-       if (g_stat (p.to_string().c_str(), &statbuf) != 0) {
-               /* doesn't exist - not writable */
-               return false;
-       } else {
-               if (!(statbuf.st_mode & S_IWUSR)) {
-                       /* exists and is not writable */
-                       return false;
-               }
-               /* filesystem may be mounted read-only, so even though file
-                * permissions permit access, the mount status does not.
-                * access(2) seems like the best test for this.
-                */
-               if (g_access (p.to_string().c_str(), W_OK) != 0) {
-                       return false;
-               }
-       }
-
-       return true;
-}
-
-
 bool
 is_directory (const path & p)
 {
@@ -211,41 +180,6 @@ extension (const path & p)
 
 }
 
-path
-get_absolute_path (const path & p)
-{
-       Glib::RefPtr<Gio::File> f = Gio::File::create_for_path (p.to_string ());
-       return f->get_path ();
-}
-
-bool
-equivalent_paths (const std::string& a, const std::string& b)
-{
-       struct stat bA;
-       int const rA = g_stat (a.c_str(), &bA);
-       struct stat bB;
-       int const rB = g_stat (b.c_str(), &bB);
-
-       return (rA == 0 && rB == 0 && bA.st_dev == bB.st_dev && bA.st_ino == bB.st_ino);
-}
-
-bool
-path_is_within (std::string const & haystack, std::string needle)
-{
-       while (1) {
-               if (equivalent_paths (haystack, needle)) {
-                       return true;
-               }
-
-               needle = Glib::path_get_dirname (needle);
-               if (needle == "." || needle == "/") {
-                       break;
-               }
-       }
-
-       return false;
-}
-
 } // namespace sys
 
 } // namespace PBD