X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fpath.cpp;h=35641f852096c59d30f67b8c9b4f78b59cf0ef27;hp=99961379977d65684da8f3209bc65d61570039e4;hb=f91f1df3e0b00b3a270e571d4b2c8251da4d1226;hpb=17667b5d28e72e99fff4609bf601c7644d79d071 diff --git a/source/path.cpp b/source/path.cpp index 9996137..35641f8 100644 --- a/source/path.cpp +++ b/source/path.cpp @@ -1,24 +1,29 @@ -/* -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 + +#include #include "path.h" #include "utils.h" using namespace std; namespace Msp { -namespace Path { +namespace FS { /** Returns the number of components in the path. */ unsigned Path::size() const { - if(!path.size()) return 0; - if(path.size()==1 && path[0]==DIRCHAR) return 1; + if(path.empty()) + return 0; + if(path.size()==1 && path[0]==DIRCHAR) + return 1; + unsigned count=1; for(string::const_iterator i=path.begin(); i!=path.end(); ++i) if(*i==DIRCHAR) ++count; @@ -28,16 +33,21 @@ unsigned Path::size() const bool Path::is_absolute() const { #ifdef WIN32 - if(is_windows_drive((*this)[0])) return true; + if(is_windows_drive((*this)[0])) + return true; #endif - if(path[0]==DIRCHAR) return true; + if(path[0]==DIRCHAR) + return true; return false; } +/** +Extracts the given component range from the path. +*/ Path Path::subpath(unsigned start, unsigned count) const { Path result; - iterator i=begin(); + Iterator i=begin(); for(unsigned j=0; (j1 || (path.size()==1 && path[0]!=DIRCHAR)) - path+=DIRCHAR; - path+=*i; - } - } + for(Iterator i=p.begin(); i!=p.end(); ++i) + add_component(*i); } return *this; } @@ -92,12 +83,12 @@ string Path::operator[](int n) const { if(n>=0) { - for(iterator i=begin(); i!=end(); ++i,--n) + for(Iterator i=begin(); i!=end(); ++i, --n) if(!n) return *i; } else { - for(iterator i=--end();; --i) + for(Iterator i=--end();; --i) { if(!++n) return *i; if(i==begin()) break; @@ -116,56 +107,111 @@ bool Path::operator==(const Path &p) const #endif } -void Path::init(const std::string &p) +void Path::init(const string &p) { unsigned start=0; - bool absolute=false; - if(p[0]==DIRCHAR) - absolute=true; + if(p[0]=='/' || p[0]=='\\') + add_component(string(1, DIRCHAR)); while(1) { - unsigned slash=p.find_first_of("/\\",start); + unsigned slash=p.find_first_of("/\\", start); if(slash>start) - { - if(path.size() || absolute) - path+=DIRCHAR; - path+=p.substr(start,slash-start); - } + add_component(p.substr(start, slash-start)); if(slash==string::npos) break; start=slash+1; } } -Path::iterator::iterator(const Path &p): +/** +Adds a single component to the path, emulating the cd command. +*/ +void Path::add_component(const string &comp) +{ + if(comp.empty()) + ; + else if(comp.size()==1 && comp[0]==DIRCHAR) + { + // Replace the path with the root directory +#ifdef WIN32 + unsigned slash=path.find(DIRCHAR); + if(is_windows_drive(path.substr(0, slash))) + path=path.substr(0, 2); + else +#endif + path=comp; + } +#ifdef WIN32 + else if(is_windows_drive(comp)) + path=comp; +#endif + else if(comp=="..") + { + if(path.empty()) + path=comp; + // .. in root directory is a no-op + else if(path.size()==1 && path[0]==DIRCHAR) + ; +#ifdef WIN32 + else if(is_windows_drive(path)) + ; +#endif + else + { + unsigned slash=path.rfind(DIRCHAR); + unsigned start=(slash==string::npos)?0:slash+1; + if(!path.compare(start, string::npos, "..")) + { + // If the last component already is a .., add another + path+=DIRCHAR; + path+=comp; + } + else + // Otherwise, erase the last component + path.erase(slash, string::npos); + } + } + else if(comp!="." || path.empty()) + { + if(path==".") + path=""; + if(path.size()>1 || (path.size()==1 && path[0]!=DIRCHAR)) + path+=DIRCHAR; + path+=comp; + } +} + +Path::Iterator::Iterator(const Path &p): path(p), start(0) { - if(path.path[0]==DIRCHAR) + if(path.path.empty()) + start=end=string::npos; + else if(path.path[0]==DIRCHAR) end=1; #ifdef WIN32 - else if(path.path[2]==DIRCHAR && is_windows_drive(path.path.substr(0,2))) + else if(path.path.size()>2 && path.path[2]==DIRCHAR && is_windows_drive(path.path.substr(0, 2))) end=2; #endif else end=path.path.find(DIRCHAR); } -Path::iterator &Path::iterator::operator++() +Path::Iterator &Path::Iterator::operator++() { start=end; if(start>=path.path.size()) return *this; if(path.path[start]==DIRCHAR) ++start; - end=path.path.find(DIRCHAR,start); + end=path.path.find(DIRCHAR, start); return *this; } -Path::iterator &Path::iterator::operator--() +Path::Iterator &Path::Iterator::operator--() { end=start; if(end==0) return *this; if(end>1 && end=path.path.size()) return ""; if(start==end) return ""; - return path.path.substr(start,end-start); + return path.path.substr(start, end-start); } -} // namespace Path +} // namespace FS } // namespace Msp