x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
path.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\filesystem\path.hpp
Girar
Efecto
Propiedad
Historial
// boost/filesystem/path.hpp -----------------------------------------------// // Copyright Beman Dawes 2002-2005 // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See library home page at http://www.boost.org/libs/filesystem //----------------------------------------------------------------------------// #ifndef BOOST_FILESYSTEM_PATH_HPP #define BOOST_FILESYSTEM_PATH_HPP #include
#include
#include
#include
#include
#include
#include
#include
#include
// for lexicographical_compare #include
// needed by basic_path inserter and extractor #include
#include
# ifndef BOOST_FILESYSTEM_NARROW_ONLY # include
# endif #include
// must be the last #include //----------------------------------------------------------------------------// namespace boost { namespace BOOST_FILESYSTEM_NAMESPACE { template
class basic_path; struct path_traits; typedef basic_path< std::string, path_traits > path; struct path_traits { typedef std::string internal_string_type; typedef std::string external_string_type; static external_string_type to_external( const path &, const internal_string_type & src ) { return src; } static internal_string_type to_internal( const external_string_type & src ) { return src; } }; # ifndef BOOST_FILESYSTEM_NARROW_ONLY struct BOOST_FILESYSTEM_DECL wpath_traits; typedef basic_path< std::wstring, wpath_traits > wpath; struct BOOST_FILESYSTEM_DECL wpath_traits { typedef std::wstring internal_string_type; # ifdef BOOST_WINDOWS_API typedef std::wstring external_string_type; static external_string_type to_external( const wpath &, const internal_string_type & src ) { return src; } static internal_string_type to_internal( const external_string_type & src ) { return src; } # else typedef std::string external_string_type; static external_string_type to_external( const wpath & ph, const internal_string_type & src ); static internal_string_type to_internal( const external_string_type & src ); # endif static void imbue( const std::locale & loc ); static bool imbue( const std::locale & loc, const std::nothrow_t & ); }; # endif // ifndef BOOST_FILESYSTEM_NARROW_ONLY // path traits ---------------------------------------------------------// template
struct is_basic_path { BOOST_STATIC_CONSTANT( bool, value = false ); }; template<> struct is_basic_path
{ BOOST_STATIC_CONSTANT( bool, value = true ); }; # ifndef BOOST_FILESYSTEM_NARROW_ONLY template<> struct is_basic_path
{ BOOST_STATIC_CONSTANT( bool, value = true ); }; # endif // these only have to be specialized if Path::string_type::value_type // is not convertible from char template
struct slash { BOOST_STATIC_CONSTANT( char, value = '/' ); }; template
struct dot { BOOST_STATIC_CONSTANT( char, value = '.' ); }; template
struct colon { BOOST_STATIC_CONSTANT( char, value = ':' ); }; # ifdef BOOST_WINDOWS_PATH template
struct path_alt_separator { BOOST_STATIC_CONSTANT( char, value = '\\' ); }; # endif // workaround for VC++ 7.0 and earlier issues with nested classes namespace detail { template
class iterator_helper { public: typedef typename Path::iterator iterator; static void do_increment( iterator & ph ); static void do_decrement( iterator & ph ); }; } // basic_path ----------------------------------------------------------// template
class basic_path { // invariant: m_path valid according to the portable generic path grammar // validate template arguments // TODO: get these working // BOOST_STATIC_ASSERT( ::boost::is_same
::value ); // BOOST_STATIC_ASSERT( ::boost::is_same
::value || ::boost::is_same
::value ); public: // compiler generates copy constructor and copy assignment typedef basic_path
path_type; typedef String string_type; typedef typename String::value_type value_type; typedef Traits traits_type; typedef typename Traits::external_string_type external_string_type; // constructors/destructor basic_path() {} basic_path( const string_type & s ) { operator/=( s ); } basic_path( const value_type * s ) { operator/=( s ); } # ifndef BOOST_NO_MEMBER_TEMPLATES template
basic_path( InputIterator first, InputIterator last ) { append( first, last ); } # endif ~basic_path() {} // assignments basic_path & operator=( const string_type & s ) { # if BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, >= 310) m_path.clear(); # else m_path.erase( m_path.begin(), m_path.end() ); # endif operator/=( s ); return *this; } basic_path & operator=( const value_type * s ) { # if BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, >= 310) m_path.clear(); # else m_path.erase( m_path.begin(), m_path.end() ); # endif operator/=( s ); return *this; } # ifndef BOOST_NO_MEMBER_TEMPLATES template
basic_path & assign( InputIterator first, InputIterator last ) { m_path.clear(); append( first, last ); return *this; } # endif // modifiers basic_path & operator/=( const basic_path & rhs ) { return operator /=( rhs.string().c_str() ); } basic_path & operator/=( const string_type & rhs ) { return operator /=( rhs.c_str() ); } basic_path & operator/=( const value_type * s ); # ifndef BOOST_NO_MEMBER_TEMPLATES template
basic_path & append( InputIterator first, InputIterator last ); # endif void swap( basic_path & rhs ) { m_path.swap( rhs.m_path ); # ifdef BOOST_CYGWIN_PATH std::swap( m_cygwin_root, rhs.m_cygwin_root ); # endif } basic_path & remove_leaf(); // observers const string_type & string() const { return m_path; } const string_type file_string() const; const string_type directory_string() const { return file_string(); } const external_string_type external_file_string() const { return Traits::to_external( *this, file_string() ); } const external_string_type external_directory_string() const { return Traits::to_external( *this, directory_string() ); } basic_path root_path() const; string_type root_name() const; string_type root_directory() const; basic_path relative_path() const; string_type leaf() const; basic_path branch_path() const; bool empty() const { return m_path.empty(); } // name consistent with std containers bool is_complete() const; bool has_root_path() const; bool has_root_name() const; bool has_root_directory() const; bool has_relative_path() const { return !relative_path().empty(); } bool has_leaf() const { return !m_path.empty(); } bool has_branch_path() const { return !branch_path().empty(); } // iterators class iterator : public boost::iterator_facade< iterator, string_type const, boost::bidirectional_traversal_tag > { private: friend class boost::iterator_core_access; friend class boost::BOOST_FILESYSTEM_NAMESPACE::basic_path
; const string_type & dereference() const { return m_name; } bool equal( const iterator & rhs ) const { return m_path_ptr == rhs.m_path_ptr && m_pos == rhs.m_pos; } friend class boost::BOOST_FILESYSTEM_NAMESPACE::detail::iterator_helper
; void increment() { boost::BOOST_FILESYSTEM_NAMESPACE::detail::iterator_helper
::do_increment( *this ); } void decrement() { boost::BOOST_FILESYSTEM_NAMESPACE::detail::iterator_helper
::do_decrement( *this ); } string_type m_name; // current element const basic_path * m_path_ptr; // path being iterated over typename string_type::size_type m_pos; // position of name in // path_ptr->string(). The // end() iterator is indicated by // pos == path_ptr->m_path.size() }; // iterator typedef iterator const_iterator; iterator begin() const; iterator end() const; private: // Note: This is an implementation for POSIX and Windows, where there // are only minor differences between generic and native path grammars. // Private members might be quite different in other implementations, // particularly where there were wide differences between portable and // native path formats, or between file_string() and // directory_string() formats, or simply that the implementation // was willing expend additional memory to achieve greater speed for // some operations at the expense of other operations. string_type m_path; // invariant: portable path grammar // on Windows, backslashes converted to slashes # ifdef BOOST_CYGWIN_PATH bool m_cygwin_root; // if present, m_path[0] was slash. note: initialization // done by append # endif void m_append_separator_if_needed(); void m_append( value_type value ); // converts Windows alt_separator // Was qualified; como433beta8 reports: // warning #427-D: qualified name is not allowed in member declaration friend class iterator; friend class boost::BOOST_FILESYSTEM_NAMESPACE::detail::iterator_helper
; // Deprecated features ease transition for existing code. Don't use these // in new code. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED public: typedef bool (*name_check)( const std::string & name ); basic_path( const string_type & str, name_check ) { operator/=( str ); } basic_path( const typename string_type::value_type * s, name_check ) { operator/=( s );} string_type native_file_string() const { return file_string(); } string_type native_directory_string() const { return directory_string(); } static bool default_name_check_writable() { return false; } static void default_name_check( name_check ) {} static name_check default_name_check() { return 0; } basic_path & canonize(); basic_path & normalize(); # endif }; // basic_path non-member functions ---------------------------------------// template< class String, class Traits > inline void swap( basic_path
& lhs, basic_path
& rhs ) { lhs.swap( rhs ); } template< class String, class Traits > bool operator<( const basic_path
& lhs, const basic_path
& rhs ) { return std::lexicographical_compare( lhs.begin(), lhs.end(), rhs.begin(), rhs.end() ); } template< class String, class Traits > bool operator<( const typename basic_path
::string_type::value_type * lhs, const basic_path
& rhs ) { basic_path
tmp( lhs ); return std::lexicographical_compare( tmp.begin(), tmp.end(), rhs.begin(), rhs.end() ); } template< class String, class Traits > bool operator<( const typename basic_path
::string_type & lhs, const basic_path
& rhs ) { basic_path
tmp( lhs ); return std::lexicographical_compare( tmp.begin(), tmp.end(), rhs.begin(), rhs.end() ); } template< class String, class Traits > bool operator<( const basic_path
& lhs, const typename basic_path
::string_type::value_type * rhs ) { basic_path
tmp( rhs ); return std::lexicographical_compare( lhs.begin(), lhs.end(), tmp.begin(), tmp.end() ); } template< class String, class Traits > bool operator<( const basic_path
& lhs, const typename basic_path
::string_type & rhs ) { basic_path
tmp( rhs ); return std::lexicographical_compare( lhs.begin(), lhs.end(), tmp.begin(), tmp.end() ); } template< class String, class Traits > inline bool operator==( const basic_path
& lhs, const basic_path
& rhs ) { return !(lhs < rhs) && !(rhs < lhs); } template< class String, class Traits > inline bool operator==( const typename basic_path
::string_type::value_type * lhs, const basic_path
& rhs ) { basic_path
tmp( lhs ); return !(tmp < rhs) && !(rhs < tmp); } template< class String, class Traits > inline bool operator==( const typename basic_path
::string_type & lhs, const basic_path
& rhs ) { basic_path
tmp( lhs ); return !(tmp < rhs) && !(rhs < tmp); } template< class String, class Traits > inline bool operator==( const basic_path
& lhs, const typename basic_path
::string_type::value_type * rhs ) { basic_path
tmp( rhs ); return !(lhs < tmp) && !(tmp < lhs); } template< class String, class Traits > inline bool operator==( const basic_path
& lhs, const typename basic_path
::string_type & rhs ) { basic_path
tmp( rhs ); return !(lhs < tmp) && !(tmp < lhs); } template< class String, class Traits > inline bool operator!=( const basic_path
& lhs, const basic_path
& rhs ) { return !(lhs == rhs); } template< class String, class Traits > inline bool operator!=( const typename basic_path
::string_type::value_type * lhs, const basic_path
& rhs ) { return !(basic_path
(lhs) == rhs); } template< class String, class Traits > inline bool operator!=( const typename basic_path
::string_type & lhs, const basic_path
& rhs ) { return !(basic_path
(lhs) == rhs); } template< class String, class Traits > inline bool operator!=( const basic_path
& lhs, const typename basic_path
::string_type::value_type * rhs ) { return !(lhs == basic_path
(rhs)); } template< class String, class Traits > inline bool operator!=( const basic_path
& lhs, const typename basic_path
::string_type & rhs ) { return !(lhs == basic_path
(rhs)); } template< class String, class Traits > inline bool operator>( const basic_path
& lhs, const basic_path
& rhs ) { return rhs < lhs; } template< class String, class Traits > inline bool operator>( const typename basic_path
::string_type::value_type * lhs, const basic_path
& rhs ) { return rhs < basic_path
(lhs); } template< class String, class Traits > inline bool operator>( const typename basic_path
::string_type & lhs, const basic_path
& rhs ) { return rhs < basic_path
(lhs); } template< class String, class Traits > inline bool operator>( const basic_path
& lhs, const typename basic_path
::string_type::value_type * rhs ) { return basic_path
(rhs) < lhs; } template< class String, class Traits > inline bool operator>( const basic_path
& lhs, const typename basic_path
::string_type & rhs ) { return basic_path
(rhs) < lhs; } template< class String, class Traits > inline bool operator<=( const basic_path
& lhs, const basic_path
& rhs ) { return !(rhs < lhs); } template< class String, class Traits > inline bool operator<=( const typename basic_path
::string_type::value_type * lhs, const basic_path
& rhs ) { return !(rhs < basic_path
(lhs)); } template< class String, class Traits > inline bool operator<=( const typename basic_path
::string_type & lhs, const basic_path
& rhs ) { return !(rhs < basic_path
(lhs)); } template< class String, class Traits > inline bool operator<=( const basic_path
& lhs, const typename basic_path
::string_type::value_type * rhs ) { return !(basic_path
(rhs) < lhs); } template< class String, class Traits > inline bool operator<=( const basic_path
& lhs, const typename basic_path
::string_type & rhs ) { return !(basic_path
(rhs) < lhs); } template< class String, class Traits > inline bool operator>=( const basic_path
& lhs, const basic_path
& rhs ) { return !(lhs < rhs); } template< class String, class Traits > inline bool operator>=( const typename basic_path
::string_type::value_type * lhs, const basic_path
& rhs ) { return !(lhs < basic_path
(rhs)); } template< class String, class Traits > inline bool operator>=( const typename basic_path
::string_type & lhs, const basic_path
& rhs ) { return !(lhs < basic_path
(rhs)); } template< class String, class Traits > inline bool operator>=( const basic_path
& lhs, const typename basic_path
::string_type::value_type * rhs ) { return !(basic_path
(lhs) < rhs); } template< class String, class Traits > inline bool operator>=( const basic_path
& lhs, const typename basic_path
::string_type & rhs ) { return !(basic_path
(lhs) < rhs); } // operator / template< class String, class Traits > inline basic_path
operator/( const basic_path
& lhs, const basic_path
& rhs ) { return basic_path
( lhs ) /= rhs; } template< class String, class Traits > inline basic_path
operator/( const basic_path
& lhs, const typename String::value_type * rhs ) { return basic_path
( lhs ) /= basic_path
( rhs ); } template< class String, class Traits > inline basic_path
operator/( const basic_path
& lhs, const String & rhs ) { return basic_path
( lhs ) /= basic_path
( rhs ); } template< class String, class Traits > inline basic_path
operator/( const typename String::value_type * lhs, const basic_path
& rhs ) { return basic_path
( lhs ) /= rhs; } template< class String, class Traits > inline basic_path
operator/( const String & lhs, const basic_path
& rhs ) { return basic_path
( lhs ) /= rhs; } // inserters and extractors --------------------------------------------// // bypass VC++ 7.0 and earlier, and broken Borland compilers # if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) template< class Path > std::basic_ostream< typename Path::string_type::value_type, typename Path::string_type::traits_type > & operator<< ( std::basic_ostream< typename Path::string_type::value_type, typename Path::string_type::traits_type >& os, const Path & ph ) { os << ph.string(); return os; } template< class Path > std::basic_istream< typename Path::string_type::value_type, typename Path::string_type::traits_type > & operator>> ( std::basic_istream< typename Path::string_type::value_type, typename Path::string_type::traits_type >& is, Path & ph ) { typename Path::string_type str; is >> str; ph = str; return is; } # elif BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) template< class String, class Traits > std::basic_ostream< BOOST_DEDUCED_TYPENAME String::value_type, BOOST_DEDUCED_TYPENAME String::traits_type > & operator<< ( std::basic_ostream< BOOST_DEDUCED_TYPENAME String::value_type, BOOST_DEDUCED_TYPENAME String::traits_type >& os, const basic_path< String, Traits > & ph ) { os << ph.string(); return os; } template< class String, class Traits > std::basic_istream< BOOST_DEDUCED_TYPENAME String::value_type, BOOST_DEDUCED_TYPENAME String::traits_type > & operator>> ( std::basic_istream< BOOST_DEDUCED_TYPENAME String::value_type, BOOST_DEDUCED_TYPENAME String::traits_type> & is, basic_path< String, Traits > & ph ) { String str; is >> str; ph = str; return is; } # endif // basic_filesystem_error helpers --------------------------------------// // Originally choice of implementation was done via specialization of // basic_filesystem_error::what(). Several compilers (GCC, aCC, etc.) // couldn't handle that, so the choice is now accomplished by overloading. namespace detail { // BOOST_FILESYSTEM_DECL version works for VC++ but not GCC. Go figure! inline const char * what( const char * sys_err_what, const path & path1, const path & path2, std::string & target ) { try { if ( target.empty() ) { target = sys_err_what; if ( !path1.empty() ) { target += ": \""; target += path1.file_string(); target += "\""; } if ( !path2.empty() ) { target += ", \""; target += path2.file_string(); target += "\""; } } return target.c_str(); } catch (...) { return sys_err_what; } } template
const char * what( const char * sys_err_what, const Path & /*path1*/, const Path & /*path2*/, std::string & /*target*/ ) { return sys_err_what; } } // basic_filesystem_error ----------------------------------------------// template
class basic_filesystem_error : public system::system_error { // see http://www.boost.org/more/error_handling.html for design rationale public: // compiler generates copy constructor and copy assignment typedef Path path_type; basic_filesystem_error( const std::string & what, system::error_code ec ); basic_filesystem_error( const std::string & what, const path_type & path1, system::error_code ec ); basic_filesystem_error( const std::string & what, const path_type & path1, const path_type & path2, system::error_code ec ); ~basic_filesystem_error() throw() {} const path_type & path1() const { static const path_type empty_path; return m_imp_ptr.get() ? m_imp_ptr->m_path1 : empty_path ; } const path_type & path2() const { static const path_type empty_path; return m_imp_ptr.get() ? m_imp_ptr->m_path2 : empty_path ; } const char * what() const throw() { if ( !m_imp_ptr.get() ) return system::system_error::what(); return detail::what( system::system_error::what(), m_imp_ptr->m_path1, m_imp_ptr->m_path2, m_imp_ptr->m_what ); } private: struct m_imp { path_type m_path1; // may be empty() path_type m_path2; // may be empty() std::string m_what; // not built until needed }; boost::shared_ptr
m_imp_ptr; }; typedef basic_filesystem_error
filesystem_error; # ifndef BOOST_FILESYSTEM_NARROW_ONLY typedef basic_filesystem_error
wfilesystem_error; # endif // path::name_checks -----------------------------------------------------// BOOST_FILESYSTEM_DECL bool portable_posix_name( const std::string & name ); BOOST_FILESYSTEM_DECL bool windows_name( const std::string & name ); BOOST_FILESYSTEM_DECL bool portable_name( const std::string & name ); BOOST_FILESYSTEM_DECL bool portable_directory_name( const std::string & name ); BOOST_FILESYSTEM_DECL bool portable_file_name( const std::string & name ); BOOST_FILESYSTEM_DECL bool native( const std::string & name ); inline bool no_check( const std::string & ) { return true; } // implementation -----------------------------------------------------------// namespace detail { // is_separator helper ------------------------------------------------// template
inline bool is_separator( typename Path::string_type::value_type c ) { return c == slash
::value # ifdef BOOST_WINDOWS_PATH || c == path_alt_separator
::value # endif ; } // leaf_pos helper ----------------------------------------------------// template
typename String::size_type leaf_pos( const String & str, // precondition: portable generic path grammar typename String::size_type end_pos ) // end_pos is past-the-end position // return 0 if str itself is leaf (or empty) { typedef typename boost::BOOST_FILESYSTEM_NAMESPACE::basic_path
path_type; // case: "//" if ( end_pos == 2 && str[0] == slash
::value && str[1] == slash
::value ) return 0; // case: ends in "/" if ( end_pos && str[end_pos-1] == slash
::value ) return end_pos-1; // set pos to start of last element typename String::size_type pos( str.find_last_of( slash
::value, end_pos-1 ) ); # ifdef BOOST_WINDOWS_PATH if ( pos == String::npos ) pos = str.find_last_of( path_alt_separator
::value, end_pos-1 ); if ( pos == String::npos ) pos = str.find_last_of( colon
::value, end_pos-2 ); # endif return ( pos == String::npos // path itself must be a leaf (or empty) || (pos == 1 && str[0] == slash
::value) ) // or net ? 0 // so leaf is entire string : pos + 1; // or starts after delimiter } // first_element helper -----------------------------------------------// // sets pos and len of first element, excluding extra separators // if src.empty(), sets pos,len, to 0,0. template
void first_element( const String & src, // precondition: portable generic path grammar typename String::size_type & element_pos, typename String::size_type & element_size, # if !BOOST_WORKAROUND( BOOST_MSVC, <= 1310 ) // VC++ 7.1 typename String::size_type size = String::npos # else typename String::size_type size = -1 # endif ) { if ( size == String::npos ) size = src.size(); element_pos = 0; element_size = 0; if ( src.empty() ) return; typedef typename boost::BOOST_FILESYSTEM_NAMESPACE::basic_path
path_type; typename String::size_type cur(0); // deal with // [network] if ( size >= 2 && src[0] == slash
::value && src[1] == slash
::value && (size == 2 || src[2] != slash
::value) ) { cur += 2; element_size += 2; } // leading (not non-network) separator else if ( src[0] == slash
::value ) { ++element_size; // bypass extra leading separators while ( cur+1 < size && src[cur+1] == slash
::value ) { ++cur; ++element_pos; } return; } // at this point, we have either a plain name, a network name, // or (on Windows only) a device name // find the end while ( cur < size # ifdef BOOST_WINDOWS_PATH && src[cur] != colon
::value # endif && src[cur] != slash
::value ) { ++cur; ++element_size; } # ifdef BOOST_WINDOWS_PATH if ( cur == size ) return; // include device delimiter if ( src[cur] == colon
::value ) { ++element_size; } # endif return; } // root_directory_start helper ----------------------------------------// template
typename String::size_type root_directory_start( const String & s, // precondition: portable generic path grammar typename String::size_type size ) // return npos if no root_directory found { typedef typename boost::BOOST_FILESYSTEM_NAMESPACE::basic_path
path_type; # ifdef BOOST_WINDOWS_PATH // case "c:/" if ( size > 2 && s[1] == colon
::value && s[2] == slash
::value ) return 2; # endif // case "//" if ( size == 2 && s[0] == slash
::value && s[1] == slash
::value ) return String::npos; // case "//net {/}" if ( size > 3 && s[0] == slash
::value && s[1] == slash
::value && s[2] != slash
::value ) { typename String::size_type pos( s.find( slash
::value, 2 ) ); return pos < size ? pos : String::npos; } // case "/" if ( size > 0 && s[0] == slash
::value ) return 0; return String::npos; } // is_non_root_slash helper -------------------------------------------// template
bool is_non_root_slash( const String & str, typename String::size_type pos ) // pos is position of the slash { typedef typename boost::BOOST_FILESYSTEM_NAMESPACE::basic_path
path_type; assert( !str.empty() && str[pos] == slash
::value && "precondition violation" ); // subsequent logic expects pos to be for leftmost slash of a set while ( pos > 0 && str[pos-1] == slash
::value ) --pos; return pos != 0 && (pos <= 2 || str[1] != slash
::value || str.find( slash
::value, 2 ) != pos) # ifdef BOOST_WINDOWS_PATH && (pos !=2 || str[1] != colon
::value) # endif ; } } // namespace detail // decomposition functions ----------------------------------------------// template
String basic_path
::leaf() const { typename String::size_type end_pos( detail::leaf_pos
( m_path, m_path.size() ) ); return (m_path.size() && end_pos && m_path[end_pos] == slash
::value && detail::is_non_root_slash< String, Traits >(m_path, end_pos)) ? String( 1, dot
::value ) : m_path.substr( end_pos ); } template
basic_path
basic_path
::branch_path() const { typename String::size_type end_pos( detail::leaf_pos
( m_path, m_path.size() ) ); bool leaf_was_separator( m_path.size() && m_path[end_pos] == slash
::value ); // skip separators unless root directory typename string_type::size_type root_dir_pos( detail::root_directory_start
( m_path, end_pos ) ); for ( ; end_pos > 0 && (end_pos-1) != root_dir_pos && m_path[end_pos-1] == slash
::value ; --end_pos ) {} return (end_pos == 1 && root_dir_pos == 0 && leaf_was_separator) ? path_type() : path_type( m_path.substr( 0, end_pos ) ); } template
basic_path
basic_path
::relative_path() const { iterator itr( begin() ); for ( ; itr.m_pos != m_path.size() && (itr.m_name[0] == slash
::value # ifdef BOOST_WINDOWS_PATH || itr.m_name[itr.m_name.size()-1] == colon
::value # endif ); ++itr ) {} return basic_path
( m_path.substr( itr.m_pos ) ); } template
String basic_path
::root_name() const { iterator itr( begin() ); return ( itr.m_pos != m_path.size() && ( ( itr.m_name.size() > 1 && itr.m_name[0] == slash
::value && itr.m_name[1] == slash
::value ) # ifdef BOOST_WINDOWS_PATH || itr.m_name[itr.m_name.size()-1] == colon
::value # endif ) ) ? *itr : String(); } template
String basic_path
::root_directory() const { typename string_type::size_type start( detail::root_directory_start
( m_path, m_path.size() ) ); return start == string_type::npos ? string_type() : m_path.substr( start, 1 ); } template
basic_path
basic_path
::root_path() const { // even on POSIX, root_name() is non-empty() on network paths return basic_path
( root_name() ) /= root_directory(); } // path query functions -------------------------------------------------// template
inline bool basic_path
::is_complete() const { # ifdef BOOST_WINDOWS_PATH return has_root_name() && has_root_directory(); # else return has_root_directory(); # endif } template
inline bool basic_path
::has_root_path() const { return !root_path().empty(); } template
inline bool basic_path
::has_root_name() const { return !root_name().empty(); } template
inline bool basic_path
::has_root_directory() const { return !root_directory().empty(); } // append ---------------------------------------------------------------// template
void basic_path
::m_append_separator_if_needed() // requires: !empty() { if ( # ifdef BOOST_WINDOWS_PATH *(m_path.end()-1) != colon
::value && # endif *(m_path.end()-1) != slash
::value ) { m_path += slash
::value; } } template
void basic_path
::m_append( value_type value ) { # ifdef BOOST_CYGWIN_PATH if ( m_path.empty() ) m_cygwin_root = (value == slash
::value); # endif # ifdef BOOST_WINDOWS_PATH // for BOOST_WINDOWS_PATH, convert alt_separator ('\') to separator ('/') m_path += ( value == path_alt_separator
::value ? slash
::value : value ); # else m_path += value; # endif } // except that it wouldn't work for BOOST_NO_MEMBER_TEMPLATES compilers, // the append() member template could replace this code. template
basic_path
& basic_path
::operator /= ( const value_type * next_p ) { // ignore escape sequence on POSIX or Windows if ( *next_p == slash
::value && *(next_p+1) == slash
::value && *(next_p+2) == colon
::value ) next_p += 3; // append slash
::value if needed if ( !empty() && *next_p != 0 && !detail::is_separator
( *next_p ) ) { m_append_separator_if_needed(); } for ( ; *next_p != 0; ++next_p ) m_append( *next_p ); return *this; } # ifndef BOOST_NO_MEMBER_TEMPLATES template
template
basic_path
& basic_path
::append( InputIterator first, InputIterator last ) { // append slash