📄 array_view.hpp
字号:
/* /////////////////////////////////////////////////////////////////////////
* File: stlsoft/collections/array_view.hpp (derived from array_proxy (stlsoft_array_proxy.h)
*
* Purpose: Definition of the array_view template, which provides managed
* access to arrays, and can be used to avoid polymorphic array
* problems.
*
* Created: 11th November 2002
* Updated: 12th March 2007
*
* Home: http://stlsoft.org/
*
* Copyright (c) 2002-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 stlsoft/collections/array_view.hpp
*
* \brief [C++ only] Definition of the stlsoft::array_view
* class template
* (\ref group__library__collections "Collections" Library).
*/
#ifndef STLSOFT_INCL_STLSOFT_COLLECTIONS_HPP_ARRAY_VIEW
#define STLSOFT_INCL_STLSOFT_COLLECTIONS_HPP_ARRAY_VIEW
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define STLSOFT_VER_STLSOFT_COLLECTIONS_HPP_ARRAY_VIEW_MAJOR 4
# define STLSOFT_VER_STLSOFT_COLLECTIONS_HPP_ARRAY_VIEW_MINOR 0
# define STLSOFT_VER_STLSOFT_COLLECTIONS_HPP_ARRAY_VIEW_REVISION 8
# define STLSOFT_VER_STLSOFT_COLLECTIONS_HPP_ARRAY_VIEW_EDIT 65
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/* /////////////////////////////////////////////////////////////////////////
* Compatibility
*/
/*
[Incompatibilies-start]
STLSOFT_COMPILER_IS_WATCOM:
[Incompatibilies-end]
*/
/* /////////////////////////////////////////////////////////////////////////
* Includes
*/
#ifndef STLSOFT_INCL_STLSOFT_H_STLSOFT
# include <stlsoft/stlsoft.h>
#endif /* !STLSOFT_INCL_STLSOFT_H_STLSOFT */
#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 */
#ifdef STLSOFT_CF_EXCEPTION_SUPPORT
# include <stdexcept> // for std::out_of_range
#endif /* !STLSOFT_CF_EXCEPTION_SUPPORT */
/* /////////////////////////////////////////////////////////////////////////
* Namespace
*/
#ifndef _STLSOFT_NO_NAMESPACE
namespace stlsoft
{
#endif /* _STLSOFT_NO_NAMESPACE */
/* /////////////////////////////////////////////////////////////////////////
* Classes
*/
/** \brief Acts as a view for built-in arrays, ensuring functions passed
* array proxies have safe access to both array pointer and length, to
* avoid polymorphic array problems.
*
* \ingroup group__library__collections
*/
template <ss_typename_param_k T>
class array_view
: public stl_collection_tag
{
/// \name Types
/// @{
public:
typedef T value_type;
typedef array_view<T> class_type;
typedef value_type *pointer;
typedef value_type const *const_pointer;
typedef value_type &reference;
typedef value_type const &const_reference;
typedef ss_size_t size_type;
typedef ss_ptrdiff_t difference_type;
#if !defined(STLSOFT_CF_BIDIRECTIONAL_ITERATOR_SUPPORT)
/// The iterator type
typedef value_type *iterator;
/// The non-mutable (const) iterator type
typedef value_type const *const_iterator;
#else /* ? !STLSOFT_CF_BIDIRECTIONAL_ITERATOR_SUPPORT */
/// The iterator type
typedef
# if !defined(STLSOFT_COMPILER_IS_BORLAND)
ss_typename_type_k
# endif /* compiler */
pointer_iterator < value_type
, pointer
, reference
>::type iterator;
/// The non-mutating (const) iterator type
typedef
# if !defined(STLSOFT_COMPILER_IS_BORLAND)
ss_typename_type_k
# endif /* compiler */
pointer_iterator < value_type const
, const_pointer
, const_reference
>::type const_iterator;
/// The mutating (non-const) reverse iterator type
typedef reverse_iterator_base < iterator
, value_type
, reference
, pointer
, difference_type
> reverse_iterator;
/// The non-mutating (const) reverse iterator type
typedef const_reverse_iterator_base < const_iterator
, value_type const
, const_reference
, const_pointer
, difference_type
> const_reverse_iterator;
#endif /* !STLSOFT_CF_BIDIRECTIONAL_ITERATOR_SUPPORT */
/// @}
/// \name Construction
/// @{
public:
/// Default constructor, creating a view of 0 size
///
/// \note The base() method returns NULL
array_view()
: m_size(0)
, m_base(NULL)
{
STLSOFT_ASSERT(is_valid());
}
#ifdef STLSOFT_CF_STATIC_ARRAY_SIZE_DETERMINATION_SUPPORT
/// Constructs an instance of the array view from the given array
///
/// \param t The array
template <size_type N>
ss_explicit_k array_view(T (&t)[N])
: m_size(N)
, m_base(&t[0])
{
STLSOFT_ASSERT(is_valid());
}
#endif /* STLSOFT_CF_STATIC_ARRAY_SIZE_DETERMINATION_SUPPORT */
/// Constructs an instance of the array view from the given range
///
/// \param begin The start point of the range [begin, end)
/// \param end The end point of the range [begin, end)
array_view(pointer begin, pointer end)
: m_size(stlsoft_ns_qual_std(distance)(begin, end))
, m_base(begin)
{
STLSOFT_ASSERT(is_valid());
}
/// Constructs an instance of the array view from the given pointer
///
/// \param p Pointer to the first element in the range
/// \param n The number of elements in the range
array_view(pointer p, size_type n)
: m_size(n)
, m_base(p)
{
STLSOFT_ASSERT(is_valid());
}
/// Swaps the contents between \c this and \c rhs
void swap(class_type& rhs) stlsoft_throw_0()
{
STLSOFT_ASSERT(is_valid());
std::swap(m_size, rhs.m_size);
std::swap(m_base, rhs.m_base);
STLSOFT_ASSERT(is_valid());
}
/// \name Attributes
/// @{
public:
/// Returns the base of the array
///
pointer base()
{
STLSOFT_ASSERT(is_valid());
return m_base;
}
/// Returns the base of the array
///
pointer base() const
{
STLSOFT_ASSERT(is_valid());
return m_base;
}
/// Returns the number of elements in the sequence
size_type size() const
{
STLSOFT_ASSERT(is_valid());
return m_size;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -