📄 collection_sequence.hpp
字号:
/* /////////////////////////////////////////////////////////////////////////
* File: comstl/collections/collection_sequence.hpp (originally MOEnSeq.h, ::SynesisCom)
*
* Purpose: STL sequence for COM collection interfaces.
*
* Created: 17th September 1998
* Updated: 2nd June 2007
*
* Home: http://stlsoft.org/
*
* Copyright (c) 1998-2007, 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 comstl/collections/collection_sequence.hpp
*
* \brief [C++ only] Definition of the comstl::collection_sequence
* collection class template
* (\ref group__library__collections "Collections" Library).
*/
#ifndef COMSTL_INCL_COMSTL_COLLECTIONS_HPP_COLLECTION_SEQUENCE
#define COMSTL_INCL_COMSTL_COLLECTIONS_HPP_COLLECTION_SEQUENCE
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define COMSTL_VER_COMSTL_COLLECTIONS_HPP_COLLECTION_SEQUENCE_MAJOR 6
# define COMSTL_VER_COMSTL_COLLECTIONS_HPP_COLLECTION_SEQUENCE_MINOR 1
# define COMSTL_VER_COMSTL_COLLECTIONS_HPP_COLLECTION_SEQUENCE_REVISION 8
# define COMSTL_VER_COMSTL_COLLECTIONS_HPP_COLLECTION_SEQUENCE_EDIT 97
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/* /////////////////////////////////////////////////////////////////////////
* Compatibility
*/
/*
[Incompatibilies-start]
STLSOFT_COMPILER_IS_WATCOM:
[Incompatibilies-end]
*/
/* /////////////////////////////////////////////////////////////////////////
* Includes
*/
#ifndef COMSTL_INCL_COMSTL_H_COMSTL
# include <comstl/comstl.h>
#endif /* !COMSTL_INCL_COMSTL_H_COMSTL */
#ifndef COMSTL_INCL_COMSTL_UTIL_H_REFCOUNT_FUNCTIONS
# include <comstl/util/refcount_functions.h>
#endif /* !COMSTL_INCL_COMSTL_UTIL_H_REFCOUNT_FUNCTIONS */
#ifndef COMSTL_INCL_COMSTL_COLLECTIONS_HPP_ENUMERATION_POLICIES
# include <comstl/collections/enumeration_policies.hpp>
#endif /* !COMSTL_INCL_COMSTL_COLLECTIONS_HPP_ENUMERATION_POLICIES */
#ifndef COMSTL_INCL_COMSTL_UTIL_HPP_INTERFACE_TRAITS
# include <comstl/util/interface_traits.hpp>
#endif /* !COMSTL_INCL_COMSTL_UTIL_HPP_INTERFACE_TRAITS */
#ifdef STLSOFT_CF_EXCEPTION_SUPPORT
# ifndef COMSTL_INCL_COMSTL_ERROR_HPP_EXCEPTIONS
# include <comstl/error/exceptions.hpp>
# endif /* !COMSTL_INCL_COMSTL_ERROR_HPP_EXCEPTIONS */
#endif /* STLSOFT_CF_EXCEPTION_SUPPORT */
#ifndef COMSTL_INCL_COMSTL_COLLECTIONS_HPP_ENUMERATOR_SEQUENCE
# include <comstl/collections/enumerator_sequence.hpp>
#endif /* !COMSTL_INCL_COMSTL_COLLECTIONS_HPP_ENUMERATOR_SEQUENCE */
#ifndef STLSOFT_INCL_STLSOFT_UTIL_STD_HPP_ITERATOR_HELPER
# include <stlsoft/util/std/iterator_helper.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_UTIL_STD_HPP_ITERATOR_HELPER */
#ifndef STLSOFT_INCL_STLSOFT_COLLECTIONS_UTIL_HPP_COLLECTIONS
# include <stlsoft/collections/util/collections.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_COLLECTIONS_UTIL_HPP_COLLECTIONS */
#include <algorithm>
#ifdef STLSOFT_UNITTEST
# include <comstl/util/value_policies.hpp>
# if !defined(STLSOFT_COMPILER_IS_DMC)
# include "./unittest/_recls_COM_decl_.h"
# endif /* compiler */
# include <stdio.h>
#endif /* STLSOFT_UNITTEST */
/* /////////////////////////////////////////////////////////////////////////
* Namespace
*/
#ifndef _COMSTL_NO_NAMESPACE
# if defined(_STLSOFT_NO_NAMESPACE) || \
defined(STLSOFT_DOCUMENTATION_SKIP_SECTION)
/* There is no stlsoft namespace, so must define ::comstl */
namespace comstl
{
# else
/* Define stlsoft::comstl_project */
namespace stlsoft
{
namespace comstl_project
{
# endif /* _STLSOFT_NO_NAMESPACE */
#endif /* !_COMSTL_NO_NAMESPACE */
/* /////////////////////////////////////////////////////////////////////////
* Classes
*/
/** \brief A template for adapting COM collections to STL-compatible sequence iteration.
*
* \ingroup group__library__collections
*
* \param I Interface
* \param V Value type
* \param VP Value policy type
* \param R Reference type. Defaults to <code>V const&</code>
* \param CP Cloning policy type. Defaults to comstl::input_cloning_policy
* \param Q Quanta. Defaults to 8
* \param EAP Enumerate acquisition policy type. Defaults to comstl::new_enum_property_policy
*
* The various parameterising types are used to stipulate the interface and the
* value type, and how they are to be handled.
*
* For example, the following parameterisation defines a sequence operating
* over a notional <b>IGUIDCollection</b> collection instance.
*
\code
typedef collection_sequence<IGUIDCollection
, IEnumGUID
, GUID
, GUID_policy
, GUID const&
, forward_cloning_policy<IEnumGUID>
, 5
> collection_sequence_t;
\endcode
*
* The value type is <b>GUID</b> and it is returned as a reference, as
* the <b>GUID const&</b> in fact.
*
* The \ref group__project__comstl type <b>GUID_policy</b> controls how the <b>GUID</b>
* instances are initialised, copied and destroyed.
*
* The \ref group__project__comstl type forward_cloning_policy allows the sequence to provide
* <a href = "http://sgi.com/tech/stl/ForwardIterator.html">Forward Iterator</a>
* semantics.
*
* And the <b>5</b> indicates that the sequence should grab five values at a time,
* to save round trips to the enumerator.
*
* This would be used as follows:
*
\code
void dump_GUID(GUID const&);
IGUIDCollection *penGUIDs = . . .; // Create an instance from wherever
collection_sequence_t guids(penGUIDs, false); // Eat the reference
std::for_each(guids.begin(), guids.end(), dump_GUID);
\endcode
*
* \note The iterator instances returned by begin() and end() are valid outside
* the lifetime of the collection instance from which they are obtained
*
* \sa comstl::enumerator_sequence
*/
// [[synesis:class:collection: comstl::collection_sequence<T<CI>, T<EI>, T<V>, T<VP>, T<R>, T<CP>, size_t, T<EAP>>]]
template< ss_typename_param_k CI /* Collection interface */
, ss_typename_param_k EI /* Enumerator interface */
, ss_typename_param_k V /* Value type */
, ss_typename_param_k VP /* Value policy type */
, ss_typename_param_k R = V const& /* Reference type */
, ss_typename_param_k CP = input_cloning_policy<EI> /* Cloning policy type */
, cs_size_t Q = 8 /* Quanta */
, ss_typename_param_k EAP = new_enum_property_policy<CI> /* Policy for acquiring the enumerator from the collection */
>
class collection_sequence
: public stlsoft_ns_qual(stl_collection_tag)
{
/// \name Member Types
/// @{
private:
typedef enumerator_sequence<EI, V, VP, R, CP, Q> enumerator_sequence_type;
public:
/// \brief Collection interface type
typedef CI collection_interface_type;
/// \brief Enumerator interface type
typedef ss_typename_type_k enumerator_sequence_type::interface_type enumerator_interface_type;
/// \brief Value type
typedef ss_typename_type_k enumerator_sequence_type::value_type value_type;
/// \brief Value policy type
typedef ss_typename_type_k enumerator_sequence_type::value_policy_type value_policy_type;
/// \brief Reference type
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -