]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/path.cpp
Very minor refactoring
[libs/core.git] / source / fs / path.cpp
index 90c4d70e2a91b55789eb5e2b5a8dc4ecb5bf1598..f12e27492709423f0875ecb046b0f6b2724dfd03 100644 (file)
@@ -7,8 +7,10 @@ using namespace std;
 
 namespace {
 
 
 namespace {
 
+#ifdef WIN32
 inline bool is_windows_drive(const std::string &p)
 { return (p.size()==2 && ((p[0]>='A' && p[0]<='Z') || (p[0]>='a' && p[0]<='z')) && p[1]==':'); }
 inline bool is_windows_drive(const std::string &p)
 { return (p.size()==2 && ((p[0]>='A' && p[0]<='Z') || (p[0]>='a' && p[0]<='z')) && p[1]==':'); }
+#endif
 
 }
 
 
 }
 
@@ -63,9 +65,7 @@ bool Path::is_absolute() const
        if(is_windows_drive((*this)[0]))
                return true;
 #endif
        if(is_windows_drive((*this)[0]))
                return true;
 #endif
-       if(path[0]==DIRSEP)
-               return true;
-       return false;
+       return path[0]==DIRSEP;
 }
 
 Path Path::subpath(unsigned start, unsigned count) const
 }
 
 Path Path::subpath(unsigned start, unsigned count) const
@@ -183,12 +183,30 @@ string Path::operator[](int n) const
        throw invalid_argument("Path::operator[]");
 }
 
        throw invalid_argument("Path::operator[]");
 }
 
-bool Path::operator==(const Path &p) const
+bool Path::operator==(const Path &other) const
+{
+#ifdef WIN32
+       return strcasecmp(path, other.path)==0;
+#else
+       return path==other.path;
+#endif
+}
+
+bool Path::operator<(const Path &other) const
+{
+#ifdef WIN32
+       return strcasecmp(path, other.path)<0;
+#else
+       return path<other.path;
+#endif
+}
+
+bool Path::operator>(const Path &other) const
 {
 #ifdef WIN32
 {
 #ifdef WIN32
-       return !strcasecmp(path, p.path);
+       return strcasecmp(path, other.path)>0;
 #else
 #else
-       return path==p.path;
+       return path>other.path;
 #endif
 }
 
 #endif
 }
 
@@ -210,7 +228,7 @@ Path::Iterator::Iterator(const Path &p):
        start(0)
 {
        if(path.path.empty())
        start(0)
 {
        if(path.path.empty())
-               start=end = string::npos;
+               start = end = string::npos;
        else if(path.path[0]==DIRSEP)
                end = 1;
 #ifdef WIN32
        else if(path.path[0]==DIRSEP)
                end = 1;
 #ifdef WIN32