return false;
}
+/**
+Extracts the given component range from the path.
+*/
Path Path::subpath(unsigned start, unsigned count) const
{
Path result;
else
{
for(iterator i=p.begin(); i!=p.end(); ++i)
- {
- if(*i=="..")
- {
- unsigned slash=path.rfind(DIRCHAR);
-#ifdef WIN32
- if(is_windows_drive(path.substr(0,slash))) ++slash;
-#endif
- if(slash==0) ++slash;
- if(slash==string::npos)
- path="";
- else
- path.erase(slash);
- }
- else if(*i!=".")
- {
- if(path.size()>1 || (path.size()==1 && path[0]!=DIRCHAR))
- path+=DIRCHAR;
- path+=*i;
- }
- }
+ add_component(*i);
}
return *this;
}
#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);
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;
}
}
+/**
+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!=".")
+ {
+ if(path.size()>1 || (path.size()==1 && path[0]!=DIRCHAR))
+ path+=DIRCHAR;
+ path+=comp;
+ }
+}
+
Path::iterator::iterator(const Path &p):
path(p),
start(0)
#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;
+}
+
} // namespace Path
} // namespace Msp
extern bool exists(const Path &);
extern Filename splitext(const std::string &);
extern int fnmatch(const std::string &, const Path &);
+extern Path relative(const Path &, const Path &);
inline int stat(const Path &fn, struct stat &st)
{ return ::stat(fn.str().c_str(), &st); }