?? path.hpp
字號:
/* /////////////////////////////////////////////////////////////////////////
* File: unixstl/filesystem/path.hpp (formerly unixstl_path.h; originally MLPath.h, ::SynesisStd)
*
* Purpose: Simple class that represents a path.
*
* Created: 1st May 1993
* Updated: 18th June 2006
*
* Home: http://stlsoft.org/
*
* Copyright (c) 1993-2006, Matthew Wilson and Synesis Software
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name(s) of Matthew Wilson and Synesis Software nor the names of
* any contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* ////////////////////////////////////////////////////////////////////// */
/** \file unixstl/filesystem/path.hpp
*
* \brief [C++ only] Definition of the unixstl::basic_path class template.
* (\ref group__library__file_system "File System" Library.)
*/
#ifndef UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_PATH
#define UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_PATH
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_MAJOR 6
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_MINOR 2
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_REVISION 2
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_EDIT 206
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/* /////////////////////////////////////////////////////////////////////////
* Includes
*/
#ifndef UNIXSTL_INCL_UNIXSTL_H_UNIXSTL
# include <unixstl/unixstl.h>
#endif /* !UNIXSTL_INCL_UNIXSTL_H_UNIXSTL */
#ifndef UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS
# include <unixstl/filesystem/filesystem_traits.hpp>
#endif /* !UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS */
#ifndef UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER
# include <unixstl/filesystem/file_path_buffer.hpp>
#endif /* !UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_BASE
# include <stlsoft/memory/allocator_base.hpp> // for STLSOFT_LF_ALLOCATOR_REBIND_SUPPORT
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_BASE */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_SELECTOR
# include <stlsoft/memory/allocator_selector.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_SELECTOR */
#ifndef STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS
# include <stlsoft/string_access.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS */
#ifndef UNIXSTL_INCL_UNIXSTL_HPP_STRING_ACCESS
# include <unixstl/string_access.hpp> // for string access shims
#endif /* !UNIXSTL_INCL_UNIXSTL_HPP_STRING_ACCESS */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_AUTO_BUFFER
# include <stlsoft/memory/auto_buffer.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_AUTO_BUFFER */
#ifndef STLSOFT_INCL_STLSOFT_STRING_HPP_COPY_FUNCTIONS
# include <stlsoft/string/copy_functions.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_STRING_HPP_COPY_FUNCTIONS */
#include <stdexcept> // for std::logic_error
#ifdef _WIN32
# include <ctype.h>
#endif /* _WIN32 */
/* /////////////////////////////////////////////////////////////////////////
* Namespace
*/
#ifndef _UNIXSTL_NO_NAMESPACE
# if defined(_STLSOFT_NO_NAMESPACE) || \
defined(STLSOFT_DOCUMENTATION_SKIP_SECTION)
/* There is no stlsoft namespace, so must define ::unixstl */
namespace unixstl
{
# else
/* Define stlsoft::unixstl_project */
namespace stlsoft
{
namespace unixstl_project
{
# endif /* _STLSOFT_NO_NAMESPACE */
#endif /* !_UNIXSTL_NO_NAMESPACE */
/* /////////////////////////////////////////////////////////////////////////
* basic_path
*
* This class represents a path, and effectively acts as a C-string of its value.
*/
/** \brief Represents a path
*
* \ingroup group__library__file_system
*
* \param C The character type
* \param T The traits type. Defaults to filesystem_traits<C>. On translators that do not support default template arguments, it must be explicitly stipulated
* \param A The allocator class. Defaults to stlsoft::allocator_selector<C>::allocator_type. On translators that do not support default template arguments, it must be explicitly stipulated
*
* \note This class derives from the Synesis Software class Path, but has been influenced
* by other, later, ideas. The idea of using the / operator for path concatenation was
* sparked by the Boost implementation (although the details were not investigated prior
* to this implementation, so the two may have significant semantic differences). This
* has been added without requiring any major fundamental changes to the original
* <code>push/pop</code>-based interface
*/
template< ss_typename_param_k C
#ifdef STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT
, ss_typename_param_k T = filesystem_traits<C>
, ss_typename_param_k A = ss_typename_type_def_k stlsoft_ns_qual(allocator_selector)<C>::allocator_type
#else /* ? STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
, ss_typename_param_k T /* = filesystem_traits<C> */
, ss_typename_param_k A /* = ss_typename_type_def_k stlsoft_ns_qual(allocator_selector)<C>::allocator_type */
#endif /* STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
>
class basic_path
{
/// \name Types
/// @{
public:
/// \brief The char type
typedef C char_type;
/// \brief The traits type
typedef T traits_type;
/// \brief The allocator type
typedef A allocator_type;
/// \brief The current parameterisation of the type
typedef basic_path<C, T, A> class_type;
/// \brief The size type
typedef us_size_t size_type;
/// \brief The Boolean type
typedef us_bool_t bool_type;
// TODO: Use the slice string, and provide iterators over the directory parts
/// @}
/// \name Construction
/// @{
public:
/// \brief Constructs an empty path
basic_path();
/// \brief Constructs a path from \c path
ss_explicit_k basic_path(char_type const *path);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT
/// \brief Constructs a path from \c path
template<ss_typename_param_k S>
ss_explicit_k basic_path(S const &s)
{
m_len = stlsoft_ns_qual(c_str_len)(s);
traits_type::str_n_copy(&m_buffer[0], stlsoft_ns_qual(c_str_data)(s), m_len);
m_buffer[m_len] = '\0';
}
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT */
/// \brief Constructs a path from \c cch characters in \c path
basic_path(char_type const *path, size_type cch);
#ifndef STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD
/// \brief Copies the contents of \c rhs
basic_path(class_type const &rhs);
#endif /* !STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD */
#ifndef STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD
/// \brief Copies the contents of \c rhs
class_type &operator =(class_type const &rhs);
#endif /* !STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD */
/// \brief Copies the contents of \c rhs
class_type &operator =(char_type const *rhs);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT
/// \brief Copies the contents of \c s
template<ss_typename_param_k S>
class_type &operator =(S const &s)
{
return operator =(stlsoft_ns_qual(c_str_ptr)(s));
}
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT */
// Creates a root path
static class_type root(char_type const *s);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT
// Creates a root path
template<ss_typename_param_k S>
static class_type root(S const &s)
{
return root(stlsoft_ns_qual(c_str_ptr)(s));
}
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT */
/// @}
/// \name Operations
/// @{
public:
/// \brief Appends the contents of \c rhs to the path
class_type &push(class_type const &rhs, bool_type bAddPathNameSeparator = false);
/// \brief Appends the contents of \c rhs to the path
class_type &push(char_type const *rhs, bool_type bAddPathNameSeparator = false);
/// \brief Appends the contents of \c rhs to the path as an extension
class_type &push_ext(class_type const &rhs, bool_type bAddPathNameSeparator = false);
/// \brief Appends the contents of \c rhs to the path as an extension
class_type &push_ext(char_type const *rhs, bool_type bAddPathNameSeparator = false);
/// \brief Ensures that the path has a trailing path name separator
class_type &push_sep();
/// \brief Pops the last path element from the path
///
/// \note In previous versions, this operation did not remove the
/// left-most path component. That behaviour is no longer supported,
/// and the method will now leave the path instance empty in that
/// case.
class_type &pop(bool_type bRemoveTrailingPathNameSeparator = true);
/// \brief Ensures that the path does not have a trailing path name separator
///
/// \note Does not trim the separator character from the root designator
class_type &pop_sep();
/// \brief Removes the extension, if any, from the file component of the path
class_type &pop_ext();
/// \brief Equivalent to push()
class_type &operator /=(char_type const *rhs);
#if !defined(STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT) || \
defined(STLSOFT_CF_MEMBER_TEMPLATE_OVERLOAD_DISCRIMINATED)
/// \brief Equivalent to push()
class_type &operator /=(class_type const &rhs);
#endif /* !STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT || STLSOFT_CF_MEMBER_TEMPLATE_OVERLOAD_DISCRIMINATED */
#if defined(STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT)
/// \brief Equivalent to push()
template <ss_typename_param_k S>
class_type &operator /=(S const &rhs)
{
return operator /=(stlsoft_ns_qual(c_str_ptr)(rhs));
}
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT */
/// \brief Removes all content
void clear();
/// \brief Converts the path to absolute form
class_type &make_absolute(bool_type bRemoveTrailingPathNameSeparator = true);
/// \brief Canonicalises the path, removing all "./" parts and evaluating all "../" parts
class_type &canonicalise(bool_type bRemoveTrailingPathNameSeparator = true);
/// @}
/// \name Attributes
/// @{
public:
/// \brief Returns a pointer to the part of the path after the last path name separator
///
/// \note If the path represents a directory, the name of the directory will be returned, except
/// if the path is terminated by the path name separator
///
/// \note If the path contains no path name separator, the full path will be returned
char_type const *get_file() const;
/// \brief Returns a pointer to the extension, or to the empty string if there is no extension
char_type const *get_ext() const;
/// \brief Returns the length of the converted path
size_type length() const;
/// \brief Returns the length of the converted path
///
/// \remarks Equivalent to length()
size_type size() const;
/// \brief Conversion to a non-mutable (const) pointer to the path
char_type const *c_str() const;
/// \brief Returns a non-mutable (const) reference to the character at
/// the given index
///
/// \note The behaviour is undefined if <code>index >= size()</code>.
char_type const &operator [](size_type index) const;
/// \brief Indicates whether the path represents an existing file system entry
bool_type exists() const;
/// \brief Indicates whether the path is rooted
bool_type is_rooted() const;
/// \brief Indicates whether the path is absolute
bool_type is_absolute() const;
/// \brief Copies the contents into a caller supplied buffer
///
/// \param buffer Pointer to character buffer to receive the contents.
/// May be NULL, in which case the method returns size().
/// \param cchBuffer Number of characters of available space in \c buffer.
size_type copy(char_type *buffer, size_type cchBuffer) const;
/// @}
/// \name Comparison
/// @{
public:
bool_type equivalent(char_type const *rhs) const;
bool_type equivalent(class_type const &rhs) const;
bool_type equal(char_type const *rhs) const;
bool_type equal(class_type const &rhs) const;
/// @}
/// \name Iteration
/// @{
public:
#if 0
directory_iterator dir_begin() const;
directory_iterator dir_end() const;
#endif /* 0 */
/// @}
// Implementation
private:
void swap(class_type &rhs);
class_type &concat_(char_type const *rhs);
class_type &concat_(class_type const &rhs);
static char_type const *next_slash_or_end(char_type const *p);
static char_type path_name_separator_alt();
// Members
private:
typedef basic_file_path_buffer< char_type
, allocator_type
> buffer_type;
struct part
{
enum Type
{
normal
, dot
, dotdot
};
size_type len;
char_type const *p;
Type type;
};
buffer_type m_buffer;
size_type m_len;
};
/* /////////////////////////////////////////////////////////////////////////
* Typedefs for commonly encountered types
*/
/// \brief Instantiation of the basic_path template for the ANSI character type \c char
typedef basic_path<us_char_a_t, filesystem_traits<us_char_a_t> > path_a;
/// \brief Instantiation of the basic_path template for the Unicode character type \c wchar_t
typedef basic_path<us_char_w_t, filesystem_traits<us_char_w_t> > path_w;
/// \brief Instantiation of the basic_path template for the ANSI character type \c char
typedef basic_path<us_char_a_t, filesystem_traits<us_char_a_t> > path;
/* /////////////////////////////////////////////////////////////////////////
* Support for PlatformSTL redefinition by inheritance+namespace, for confused
* compilers (e.g. VC++ 6)
*/
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
template< ss_typename_param_k C
# ifdef STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT
, ss_typename_param_k T = filesystem_traits<C>
, ss_typename_param_k A = processheap_allocator<C>
# else /* ? STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
, ss_typename_param_k T /* = filesystem_traits<C> */
, ss_typename_param_k A /* = processheap_allocator<C> */
# endif /* STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
>
class basic_path__
: public unixstl_ns_qual(basic_path)<C, T, A>
{
private:
typedef unixstl_ns_qual(basic_path)<C, T, A> parent_class_type;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -