X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.cpp;h=035e2200609bf5f6b4f1c4e6ca59a31a6e22cf6f;hp=784c6eb508cbd953629e0b3819ea82667e083566;hb=dce2985e07e6184f000ef176451150710e21ee35;hpb=19edaf3b45bc4c23459fc8ddd552dcfa33eecc71 diff --git a/source/fs/path.cpp b/source/fs/path.cpp index 784c6eb..035e220 100644 --- a/source/fs/path.cpp +++ b/source/fs/path.cpp @@ -28,6 +28,22 @@ Path::Path(const char *p) init(p); } +void Path::init(const string &p) +{ + string::size_type start = 0; + if(p[0]=='/' || p[0]=='\\') + add_component(string(1, DIRSEP)); + while(1) + { + string::size_type slash = p.find_first_of("/\\", start); + if(slash>start) + add_component(p.substr(start, slash-start)); + if(slash==string::npos) + break; + start = slash+1; + } +} + unsigned Path::size() const { if(path.empty()) @@ -85,64 +101,6 @@ Path &Path::operator/=(const Path &p) return *this; } -string Path::operator[](int n) const -{ - if(n>=0) - { - for(Iterator i=begin(); i!=end(); ++i, --n) - if(!n) - return *i; - } - else - { - for(Iterator i=end(); i!=begin();) - { - --i; - if(!++n) - return *i; - } - } - - throw invalid_argument("Path::operator[]"); -} - -bool Path::operator==(const Path &p) const -{ -#ifdef WIN32 - return !strcasecmp(path, p.path); -#else - return path==p.path; -#endif -} - -Path::Iterator Path::begin() const -{ - return Iterator(*this); -} - -Path::Iterator Path::end() const -{ - Iterator i(*this); - i.start=i.end = std::string::npos; - return i; -} - -void Path::init(const string &p) -{ - string::size_type start = 0; - if(p[0]=='/' || p[0]=='\\') - add_component(string(1, DIRSEP)); - while(1) - { - string::size_type slash = p.find_first_of("/\\", start); - if(slash>start) - add_component(p.substr(start, slash-start)); - if(slash==string::npos) - break; - start = slash+1; - } -} - void Path::add_component(const string &comp) { if(comp.empty()) @@ -204,13 +162,55 @@ void Path::add_component(const string &comp) } } +string Path::operator[](int n) const +{ + if(n>=0) + { + for(Iterator i=begin(); i!=end(); ++i, --n) + if(!n) + return *i; + } + else + { + for(Iterator i=end(); i!=begin();) + { + --i; + if(!++n) + return *i; + } + } + + throw invalid_argument("Path::operator[]"); +} + +bool Path::operator==(const Path &p) const +{ +#ifdef WIN32 + return !strcasecmp(path, p.path); +#else + return path==p.path; +#endif +} + +Path::Iterator Path::begin() const +{ + return Iterator(*this); +} + +Path::Iterator Path::end() const +{ + Iterator i(*this); + i.start = i.end = std::string::npos; + return i; +} + Path::Iterator::Iterator(const Path &p): path(p), start(0) { if(path.path.empty()) - start=end = string::npos; + start = end = string::npos; else if(path.path[0]==DIRSEP) end = 1; #ifdef WIN32