X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.cpp;h=0e86600453be225bcb647ff699f3cb0b5f20649b;hp=d68595bb55ee83588ce9ae7a535c9424cbbaabef;hb=HEAD;hpb=1a563cfd722a5571428562259790b4948980dd4f diff --git a/source/fs/path.cpp b/source/fs/path.cpp index d68595b..1181b92 100644 --- a/source/fs/path.cpp +++ b/source/fs/path.cpp @@ -8,7 +8,7 @@ using namespace std; namespace { #ifdef _WIN32 -inline bool is_windows_drive(const std::string &p) +inline bool is_windows_drive(const string &p) { return (p.size()==2 && ((p[0]>='A' && p[0]<='Z') || (p[0]>='a' && p[0]<='z')) && p[1]==':'); } #endif @@ -17,20 +17,7 @@ inline bool is_windows_drive(const std::string &p) namespace Msp { namespace FS { -Path::Path() -{ } - Path::Path(const string &p) -{ - init(p); -} - -Path::Path(const char *p) -{ - init(p); -} - -void Path::init(const string &p) { if(p.empty()) return; @@ -59,7 +46,7 @@ unsigned Path::size() const bool Path::is_absolute() const { #ifdef _WIN32 - if(is_windows_drive((*this)[0])) + if(!empty() && is_windows_drive((*this)[0])) return true; #endif return path[0]==DIRSEP; @@ -68,7 +55,7 @@ bool Path::is_absolute() const Path Path::subpath(unsigned start, unsigned count) const { Path result; - Iterator i = begin(); + auto i = begin(); for(unsigned j=0; (j=0) { - for(Iterator i=begin(); i!=end(); ++i, --n) + for(auto i=begin(); i!=end(); ++i, --n) if(!n) return *i; } else { - for(Iterator i=end(); i!=begin();) + for(auto i=end(); i!=begin();) { --i; if(!++n) @@ -264,10 +261,7 @@ void Path::Iterator::update() string::size_type start = 0; if(iter!=path->separators.begin()) - { - PositionArray::const_iterator prev = iter; - start = *--prev+1; - } + start = *prev(iter)+1; string::size_type slash = string::npos; if(iter!=path->separators.end())