]> git.tdb.fi Git - libs/core.git/blobdiff - source/utils.cpp
Split directory and stat related functions into their own files
[libs/core.git] / source / utils.cpp
index f5fb3abb846d4b6e126346c91b9164e1fa6200a3..5c8c8d4cdd08e899336b2bf8d15b3f0170a5be2b 100644 (file)
@@ -1,20 +1,26 @@
-/*
-This file is part of libmsppath
-Copyright © 2006  Mikko Rasa, Mikkosoft Productions
+/* $Id$
+
+This file is part of libmspfs
+Copyright © 2006-2008  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
-#include <dirent.h>
-#include <sys/stat.h>
-#include <errno.h>
+
+#include <cerrno>
+#include <msp/core/except.h>
+#ifndef WIN32
 #include <fnmatch.h>
-#include <msp/strutils.h>
+#else
+#include <msp/strings/glob.h>
+#endif
+#include <msp/strings/utils.h>
+#include "dir.h"
 #include "path.h"
 #include "utils.h"
 
 using namespace std;
 
 namespace Msp {
-namespace Path {
+namespace FS {
 
 /**
 Fixes the case of the given path to match files / directories on the
@@ -25,7 +31,7 @@ Path fix_case(const Path &path)
 {
        bool found=true;
        Path result;
-       for(Path::iterator i=path.begin(); i!=path.end(); ++i)
+       for(Path::Iterator i=path.begin(); i!=path.end(); ++i)
        {
                if(!found || *i=="/")
                        result/=*i;
@@ -53,95 +59,17 @@ Path fix_case(const Path &path)
        return result;
 }
 
-int mkpath(const Path &path, int mode)
+void unlink(const Path &path)
 {
-       Path p;
-       for(Path::iterator i=path.begin(); i!=path.end(); ++i)
-       {
-               p/=*i;
-#ifdef WIN32
-               if(p.size()==1 && is_windows_drive(*i)) continue;
-#endif
-               struct stat st;
-               int err=stat(p.str().c_str(),&st);
-               if(err==0)
-               {
-                       if(!S_ISDIR(st.st_mode))
-                       {
-                               errno=EEXIST;
-                               return -1;
-                       }
-                       continue;
-               }
-               else if(errno!=ENOENT)
-                       return -1;
-               else
-               {
-#ifdef WIN32
-                       // The win32 version of this function doesn't take the mode argument.  Go figure.
-                       err=mkdir(p.str().c_str());
-#else
-                       err=mkdir(p.str().c_str(),mode);
-#endif
-                       if(err==-1) return -1;
-               }
-       }
-
-       return 0;
-}
-
-int rmdir(const Path &path, bool recursive)
-{
-       if(recursive)
-       {
-               list<string> files=list_files(path);
-               for(list<string>::iterator i=files.begin(); i!=files.end(); ++i)
-               {
-                       Path p=path/ *i;
-                       struct stat st;
-                       stat(p.str().c_str(),&st);
-                       int err=0;
-                       if(S_ISDIR(st.st_mode))
-                               err=rmdir(p,true);
-                       else
-                               err=unlink(p.str().c_str());
-                       if(err) return err;
-               }
-       }
-       return rmdir(path.str().c_str());
-}
-
-/**
-Lists all files in a directory except the implied . and .. entries.
-*/
-list<string> list_files(const Path &path)
-{
-       list<string> result;
-       DIR *dir=opendir(path.str().c_str());
-       if(dir)
-       {
-               while(dirent *de=readdir(dir))
-               {
-                       const char *fn=de->d_name;
-                       if(fn[0]=='.' && (fn[1]==0 || (fn[1]=='.' && fn[2]==0))) continue;
-                       result.push_back(fn);
-               }
-               closedir(dir);
-       }
-       return result;
-}
-
-bool exists(const Path &path)
-{
-       struct stat st;
-       return !stat(path.str().c_str(),&st);
+       if(::unlink(path.str().c_str())==-1)
+               throw SystemError("unlink failed", errno);
 }
 
 Filename splitext(const string &fn)
 {
        Filename result;
        unsigned dot=fn.rfind('.');
-       result.base=fn.substr(0,dot);
+       result.base=fn.substr(0, dot);
        if(dot!=string::npos)
                result.ext=fn.substr(dot);
        return result;
@@ -149,8 +77,40 @@ Filename splitext(const string &fn)
 
 int fnmatch(const string &pat, const Path &fn)
 {
+#ifdef WIN32
+       return globcasematch(pat, fn.str());
+#else
        return ::fnmatch(pat.c_str(), fn.str().c_str(), FNM_PATHNAME);
+#endif
+}
+
+Path relative(const Path &path, const Path &base)
+{
+       Path::Iterator i=path.begin();
+       Path::Iterator j=base.begin();
+       for(; (i!=path.end() && j!=base.end() && *i==*j); ++i, ++j) ;
+
+       Path result;
+       for(; j!=base.end(); ++j)
+               result/="..";
+       for(; i!=path.end(); ++i)
+               result/=*i;
+
+       return result;
+}
+
+/**
+Extracts the basename from the given path.  Same thing as Path::Path(p)[-1],
+but faster.
+*/
+string basename(const std::string &p)
+{
+       unsigned slash=p.rfind(DIRCHAR);
+       if(slash==string::npos)
+               return p;
+       else
+               return p.substr(slash+1);
 }
 
-} // namespace Path
+} // namespace FS
 } // namespace Msp