X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Futils.cpp;h=d34a750903a45dd64864e11f56cd48947a097fb9;hp=0c29a5306cf591d7f10abf053c65651804f6a942;hb=19edaf3b45bc4c23459fc8ddd552dcfa33eecc71;hpb=82f9f26dde92ea0e9714fd8878db8dad186ce7af diff --git a/source/fs/utils.cpp b/source/fs/utils.cpp index 0c29a53..d34a750 100644 --- a/source/fs/utils.cpp +++ b/source/fs/utils.cpp @@ -1,6 +1,5 @@ -#include #include -#include +#include #ifndef WIN32 #include #else @@ -83,12 +82,12 @@ Path readlink(const Path &link) { #ifdef WIN32 (void)link; - throw Exception("No symbolic links on win32"); + throw logic_error("no symbolic links on win32"); #else char buf[4096]; int len = ::readlink(link.str().c_str(), buf, sizeof(buf)); if(len==-1) - throw SystemError("readlink failed", errno); + throw system_error("readlink"); return string(buf, len); #endif } @@ -119,7 +118,7 @@ Path realpath(const Path &path) if(S_ISLNK(st.st_mode)) { if(++n_links>64) - throw Exception("Ludicrous amount of symlinks detected in realpath, giving up"); + throw runtime_error("too many symbolic links"); Path link = readlink(next); queue.insert(queue.begin(), link.begin(), link.end()); } @@ -134,13 +133,13 @@ Path realpath(const Path &path) void rename(const Path &from, const Path &to) { if(::rename(from.str().c_str(), to.str().c_str())==-1) - throw SystemError("rename failed", errno); + throw system_error("rename"); } void unlink(const Path &path) { if(::unlink(path.str().c_str())==-1) - throw SystemError("unlink failed", errno); + throw system_error("unlink"); } Path relative(const Path &path, const Path &base)