📄 findfile_sequence.hpp
字号:
/* /////////////////////////////////////////////////////////////////////////
* File: winstl/filesystem/findfile_sequence.hpp (formerly winstl_findfile_sequence.h)
*
* Purpose: Contains the basic_findfile_sequence template class, and ANSI
* and Unicode specialisations thereof.
*
* Notes: 1. The original implementation of the class had the const_iterator
* and value_type as nested classes. Unfortunately, Visual C++ 5 &
* 6 both had either compilation or linking problems so these are
* regretably now implemented as independent classes.
*
* 2. This class was described in detail in the article
* "Adapting Windows Enumeration Models to STL Iterator Concepts"
* (http://www.windevnet.com/documents/win0303a/), in the March
* 2003 issue of Windows Developer Network (http://windevnet.com).
* Note that later implementations use a shared-enumeration
* context, and therefore do not suffer any of the copying/moving
* ownership issues described in the article.
*
* Created: 15th January 2002
* Updated: 17th June 2006
*
* Home: http://stlsoft.org/
*
* Copyright (c) 2002-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 winstl/filesystem/findfile_sequence.hpp
*
* \brief [C++ only] Definition of the winstl::basic_findfile_sequence class
* template.
* (\ref group__library__file_system "File System" Library.)
*/
#ifndef WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FINDFILE_SEQUENCE
#define WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FINDFILE_SEQUENCE
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_FINDFILE_SEQUENCE_MAJOR 4
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_FINDFILE_SEQUENCE_MINOR 1
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_FINDFILE_SEQUENCE_REVISION 1
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_FINDFILE_SEQUENCE_EDIT 179
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/* /////////////////////////////////////////////////////////////////////////
* Compatibility
*/
/*
[Incompatibilies-start]
STLSOFT_COMPILER_IS_MSVC: _MSC_VER<1100
[Incompatibilies-end]
*/
/* /////////////////////////////////////////////////////////////////////////
* Includes
*/
#ifndef WINSTL_INCL_WINSTL_H_WINSTL
# include <winstl/winstl.h>
#endif /* !WINSTL_INCL_WINSTL_H_WINSTL */
#if defined(STLSOFT_COMPILER_IS_MSVC) && \
_MSC_VER < 1100
# error winstl/findfile_sequence.hpp is not compatible with Visual C++ 4.2 or earlier
#endif /* compiler */
#ifndef WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS
# include <winstl/filesystem/filesystem_traits.hpp>
#endif /* !WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS */
#ifndef WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER
# include <winstl/filesystem/file_path_buffer.hpp>
#endif /* !WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER */
#ifndef WINSTL_INCL_WINSTL_SYSTEM_HPP_SYSTEM_VERSION
# include <winstl/system/system_version.hpp>
#endif /* !WINSTL_INCL_WINSTL_SYSTEM_HPP_SYSTEM_VERSION */
#ifdef STLSOFT_CF_EXCEPTION_SUPPORT
# ifndef WINSTL_INCL_WINSTL_HPP_EXCEPTIONS
# include <winstl/exceptions.hpp>
# endif /* !WINSTL_INCL_WINSTL_HPP_EXCEPTIONS */
#endif /* STLSOFT_CF_EXCEPTION_SUPPORT */
#ifndef STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS
# include <stlsoft/string_access.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS */
#ifndef STLSOFT_COMPILER_IS_WATCOM
# ifndef STLSOFT_INCL_STLSOFT_HPP_ITERATOR
# include <stlsoft/iterator.hpp> // for stlsoft::iterator_base
# endif /* !STLSOFT_INCL_STLSOFT_HPP_ITERATOR */
#endif /* compiler */
#ifndef STLSOFT_INCL_STLSOFT_TOKENISING_HPP_TOKENISER_FUNCTIONS
# include <stlsoft/tokenising/tokeniser_functions.hpp> // for find_next_token
#endif /* !STLSOFT_INCL_STLSOFT_TOKENISING_HPP_TOKENISER_FUNCTIONS */
#ifndef WINSTL_INCL_WINSTL_MEMORY_HPP_PROCESSHEAP_ALLOCATOR
# include <winstl/memory/processheap_allocator.hpp>
#endif /* !WINSTL_INCL_WINSTL_MEMORY_HPP_PROCESSHEAP_ALLOCATOR */
#ifndef STLSOFT_INCL_STLSOFT_COLLECTIONS_HPP_COLLECTIONS
# include <stlsoft/collections/collections.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_COLLECTIONS_HPP_COLLECTIONS */
#ifdef STLSOFT_UNITTEST
# include <winstl/current_directory.hpp>
#endif /* STLSOFT_UNITTEST */
/* /////////////////////////////////////////////////////////////////////////
* Namespace
*/
#ifndef _WINSTL_NO_NAMESPACE
# if defined(_STLSOFT_NO_NAMESPACE) || \
defined(STLSOFT_DOCUMENTATION_SKIP_SECTION)
/* There is no stlsoft namespace, so must define ::winstl */
namespace winstl
{
# else
/* Define stlsoft::winstl_project */
namespace stlsoft
{
namespace winstl_project
{
# endif /* _STLSOFT_NO_NAMESPACE */
#endif /* !_WINSTL_NO_NAMESPACE */
/* /////////////////////////////////////////////////////////////////////////
* Forward declarations
*/
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
template <ss_typename_param_k C, ss_typename_param_k T>
class basic_findfile_sequence_value_type;
template <ss_typename_param_k C, ss_typename_param_k T, ss_typename_param_k V>
class basic_findfile_sequence_const_input_iterator;
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/* /////////////////////////////////////////////////////////////////////////
* Classes
*/
// class basic_findfile_sequence
/// \brief Presents an STL-like sequence interface over the items on the file-system
///
/// \ingroup group__library__file_system
///
/// \param C The character type
/// \param T The traits type. On translators that support default template arguments this defaults to filesystem_traits<C>
///
/// \note This class was described in detail in the article
/// "Adapting Windows Enumeration Models to STL Iterator Concepts"
/// (http://www.windevnet.com/documents/win0303a/), in the March 2003 issue of
/// Windows Developer Network (http://windevnet.com).
template< ss_typename_param_k C
#ifdef STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT
, ss_typename_param_k T = filesystem_traits<C>
#else /* ? STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
, ss_typename_param_k T /* = filesystem_traits<C> */
#endif /* STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
>
class basic_findfile_sequence
: public stlsoft_ns_qual(stl_collection_tag)
{
/// \name Member Types
/// @{
public:
/// The character type
typedef C char_type;
/// The traits type
typedef T traits_type;
/// The current parameterisation of the type
typedef basic_findfile_sequence<C, T> class_type;
/// The value type
typedef basic_findfile_sequence_value_type<C, T> value_type;
/// The non-mutating (const) iterator type
typedef basic_findfile_sequence_const_input_iterator<C, T, value_type> const_iterator;
/// The reference type
typedef value_type const reference;
/// The non-mutable (const) reference type
typedef value_type const const_reference;
/// The find-data type
typedef ss_typename_type_k traits_type::find_data_type find_data_type;
/// The difference type
typedef ws_ptrdiff_t difference_type;
/// The size type
typedef ws_size_t size_type;
/// The Boolean type
typedef ws_bool_t bool_type;
/// The flags type
typedef int flags_type;
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
// For backwards compatibility
typedef const_iterator const_input_iterator;
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/// @}
/// \name Flags
/// @{
public:
enum search_flags
{
includeDots = 0x0008 //!< Causes the search to include the "." and ".." directories, which are elided by default
, directories = 0x0010 //!< Causes the search to include directories
, files = 0x0020 //!< Causes the search to include files
, skipReparseDirs = 0x0100 //!< Causes the search to skip directories that are reparse points
, skipHiddenFiles = 0x0200 //!< Causes the search to skip files marked hidden
, skipHiddenDirs = 0x0400 //!< Causes the search to skip directories marked hidden
// , fullPath = 0x0100 /*!< Each file entry is presented as a full path relative to the search directory. */
};
/// @}
/// \name Construction
/// @{
public:
/// Commence a search according to the given search pattern and flags, relative to the current directory
ss_explicit_k basic_findfile_sequence( char_type const *pattern
, flags_type flags = directories | files);
/// Commence a search according to the given search composite pattern and delimiter, flags, relative to the current directory
basic_findfile_sequence(char_type const *patterns
, char_type delim
, flags_type flags = directories | files);
/// Commence a search according to the given search pattern and flags, relative to \c directory
basic_findfile_sequence(char_type const *directory
, char_type const *pattern
, flags_type flags = directories | files);
/// Commence a search according to the given search composite pattern and delimiter, flags, relative to \c directory
basic_findfile_sequence(char_type const *directory
, char_type const *patterns
, char_type delim
, flags_type flags = directories | files);
/// Destructor
~basic_findfile_sequence() stlsoft_throw_0();
/// @}
/// \name Iteration
/// @{
public:
/// Begins the iteration
///
/// \return An iterator representing the start of the sequence
const_iterator begin() const;
/// Ends the iteration
///
/// \return An iterator representing the end of the sequence
const_iterator end() const;
/// @}
/// \name Attributes
/// @{
public:
/// Returns the directory of the search
///
/// \note Will be the empty string for instances created with the first constructor
char_type const *get_directory() const;
/// @}
/// \name State
/// @{
public:
/// Indicates whether the sequence is empty
bool_type empty() const;
/// Returns the maximum number of items in the sequence
static size_type max_size();
/// @}
/// \name Members
/// @{
private:
typedef basic_file_path_buffer<char_type> file_path_buffer_type_;
typedef stlsoft_ns_qual(auto_buffer_old)< char_type
, processheap_allocator<char_type>
, 32
> patterns_buffer_type_;
const char_type m_delim;
const flags_type m_flags;
file_path_buffer_type_ m_directory; // The directory, as specified to the constructor
patterns_buffer_type_ m_patterns; // The pattern(s) specified to the constructor
/// @}
/// \name Invariant
/// @{
private:
bool_type is_valid() const;
/// @}
/// \name Implementation
/// @{
private:
static flags_type validate_flags_(flags_type flags);
static void validate_directory_(char_type const *directory, file_path_buffer_type_ &dir);
/// @}
/// \name Not to be implemented
/// @{
private:
basic_findfile_sequence(class_type const&);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -