]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/dir.cpp
Exception rework for fs components
[libs/core.git] / source / fs / dir.cpp
index 08328548440ae6a18fdf8668d7db2aaeda182c87..c53c156fec68b6e2df51c2afdb09396281ae92bd 100644 (file)
@@ -5,7 +5,7 @@
 #ifdef WIN32
 #include <shlobj.h>
 #endif
 #ifdef WIN32
 #include <shlobj.h>
 #endif
-#include <msp/core/except.h>
+#include <msp/core/systemerror.h>
 #include <msp/strings/regex.h>
 #include <msp/strings/utils.h>
 #include "dir.h"
 #include <msp/strings/regex.h>
 #include <msp/strings/utils.h>
 #include "dir.h"
@@ -54,6 +54,12 @@ const Path &get_bin_dir(const string &argv0)
 
 }
 
 
 }
 
+
+not_a_directory::not_a_directory(const Path &p):
+       runtime_error(p.str())
+{ }
+
+
 void mkdir(const Path &path, int mode)
 {
        int err;
 void mkdir(const Path &path, int mode)
 {
        int err;
@@ -66,7 +72,7 @@ void mkdir(const Path &path, int mode)
 #endif
 
        if(err==-1)
 #endif
 
        if(err==-1)
-               throw SystemError("mkdir failed", errno);
+               throw system_error("mkdir");
 }
 
 void mkpath(const Path &path, int mode)
 }
 
 void mkpath(const Path &path, int mode)
@@ -84,11 +90,11 @@ void mkpath(const Path &path, int mode)
                if(err==0)
                {
                        if(!S_ISDIR(st.st_mode))
                if(err==0)
                {
                        if(!S_ISDIR(st.st_mode))
-                               throw Exception("A component exists and is not a directory");
+                               throw not_a_directory(p);
                        continue;
                }
                else if(errno!=ENOENT)
                        continue;
                }
                else if(errno!=ENOENT)
-                       throw SystemError("stat failed", errno);
+                       throw system_error("mkpath:stat");
                else
                        mkdir(p, mode);
        }
                else
                        mkdir(p, mode);
        }
@@ -97,7 +103,7 @@ void mkpath(const Path &path, int mode)
 void rmdir(const Path &path)
 {
        if(::rmdir(path.str().c_str())==-1)
 void rmdir(const Path &path)
 {
        if(::rmdir(path.str().c_str())==-1)
-               throw SystemError("rmdir failed", errno);
+               throw system_error("rmdir");
 }
 
 void rmdirs(const Path &path)
 }
 
 void rmdirs(const Path &path)
@@ -213,7 +219,7 @@ Path get_sys_lib_dir(const string &argv0, const string &appname)
 void chdir(const Path &path)
 {
        if(::chdir(path.str().c_str())==-1)
 void chdir(const Path &path)
 {
        if(::chdir(path.str().c_str())==-1)
-               throw SystemError("chdir failed", errno);
+               throw system_error("chdir");
 }
 
 } // namespace FS
 }
 
 } // namespace FS