Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

path.C

Go to the documentation of this file.
00001 // $Id: path_C-source.html,v 1.1 2001/04/16 17:43:02 dvermeir Exp $
00002 #include "path.h"
00003 
00004 // Construct path containing the first n components of p.
00005 Path::Path(const Path& p,unsigned int n) {
00006 unsigned int m(min(p.size(),n));
00007 path_.resize(m);
00008 for (unsigned int i=0; i<m; ++i) 
00009   path_[i] = p[i];
00010 }
00011 
00012 bool
00013 Path::parse(const string& ps) {
00014 str_.erase();
00015 path_.clear();
00016 /* Decode the parts of the ps into a vector. The only component of the
00017    vector will be empty iff the ps  == "/". 
00018    We also refuse to append empty strings to path_. This handles cases like
00019    "/a//b" which will result in <"a","b">.
00020 
00021   We use n0 to indicate the start position of a component and
00022   n1 to indicate the position just after the end of the component.
00023 */
00024 string::size_type n0(ps.find_first_not_of('/',0));
00025 
00026 if (n0==string::npos) { // ps must be "/"
00027   path_.push_back("");
00028   return true;
00029   }
00030 
00031 string::size_type n1(string::npos);
00032 
00033 /* The variable n0 points to the start of a component. We make n1 point to
00034    the next '/', if any. The component then is the substring starting at
00035    n0 and ending before n1.
00036 */
00037 while ((n1=ps.find_first_of('/',n0))!=string::npos) {
00038   if (n1>n0) // only non-empty parts are stored.
00039     path_.push_back(ps.substr(n0,n1-n0));
00040   n0 = n1+1;
00041   }
00042 // If ps does not end with '/', we must still add the final component.
00043 if (n0<ps.size())
00044   path_.push_back(ps.substr(n0));
00045 
00046 return true;
00047 }
00048 
00049 const string&
00050 Path::str() const {
00051 if (str_.size()==0) {
00052   for (unsigned int j=0; j<size() ; ++j) {
00053     str_ += '/';
00054     str_ += path_[j];
00055     }
00056   }
00057 return str_;
00058 }
00059 
00060 ostream& 
00061 operator<<(ostream& os,const Path& path) {
00062 return os << path.str();
00063 }
00064 

httpstats-stage04 [ 7 April, 2001]