📄 ostream_iterator.hpp
字号:
/* /////////////////////////////////////////////////////////////////////////
* File: stlsoft/iterators/ostream_iterator.hpp
*
* Purpose: Enhanced ostream iterator.
*
* Created: 16th December 2005
* Updated: 22nd March 2007
*
* Home: http://stlsoft.org/
*
* Copyright (c) 2005-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/iterators/ostream_iterator.hpp
*
* \brief [C++ only] Definition of the stlsoft::ostream_iterator class
* template
* (\ref group__library__iterators "Iterators" Library).
*/
#ifndef STLSOFT_INCL_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR
#define STLSOFT_INCL_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define STLSOFT_VER_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR_MAJOR 1
# define STLSOFT_VER_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR_MINOR 3
# define STLSOFT_VER_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR_REVISION 2
# define STLSOFT_VER_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR_EDIT 33
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/* /////////////////////////////////////////////////////////////////////////
* 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_SHIMS_ACCESS_HPP_STRING
# include <stlsoft/shims/access/string.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_SHIMS_ACCESS_HPP_STRING */
#include <string>
/* For some reason, VC++ 6.0 has an ICE if the following is not included */
#if defined(STLSOFT_COMPILER_IS_MSVC) && \
_MSC_VER == 1200
# include <iterator>
# include <stlsoft/string/char_traits.hpp>
#endif /* compiler */
#ifdef STLSOFT_UNITTEST
# include <algorithm>
# include <sstream>
#endif /* STLSOFT_UNITTEST */
/* /////////////////////////////////////////////////////////////////////////
* Namespace
*/
#ifndef _STLSOFT_NO_NAMESPACE
namespace stlsoft
{
#endif /* _STLSOFT_NO_NAMESPACE */
/* /////////////////////////////////////////////////////////////////////////
* Classes
*/
/** \brief Enhanced functionality over std::ostream_iterator
*
* \ingroup group__library__iterators
*
* This class template provides full backwards-compatibility with
* std::ostream_iterator, but offers the additional capability to supply both
* prefix <i>and</i> suffix to each delimited item.
*
* For example, the following code indents each entry in the sequence as well
* as appending a carriage return.
*
\code
std::vector<int> ints(10);
{ for(size_t i = 0; i < ints.size(); ++i)
{
ints[i] = i;
}}
std::cout << "Elements:" << std::endl;
std::copy(ints.begin(), ints.end(), stlsoft::ostream_iterator<int>(std::cout, "\t", "\n"));
\endcode
*
* This gives the following output:
*
\code
0
1
2
3
4
5
6
7
8
\endcode
*
* \param V The value type.
* \param C The character type. Defaults to <code>char</code>.
* \param T The traits type. Defaults to <code>std::char_traits<C></code>.
* \param S The string type. Defaults to <code>std::basic_string<C></code>.
*
* \remarks The class template avoids fatuous assignment syntax by using the
* \ref group__pattern__dereference_proxy "Dereference Proxy" pattern.
*/
template< ss_typename_param_k V
, ss_typename_param_k C = char
, ss_typename_param_k T = stlsoft_ns_qual_std(char_traits)<C>
, ss_typename_param_k S = stlsoft_ns_qual_std(basic_string)<C, T>
>
// [[synesis:class:iterator: ostream_iterator<T<V>, T<C>, T<T>, T<S>>]]
class ostream_iterator
: public stlsoft_ns_qual(iterator_base)<stlsoft_ns_qual_std(output_iterator_tag), void, void, void, void>
{
/// \name Member Types
/// @{
public:
/// The value type
typedef V assigned_type;
/// The character type
typedef C char_type;
/// The traits type
typedef T traits_type;
/// The string type
typedef S string_type;
/// The stream type
typedef stlsoft_ns_qual_std(basic_ostream)< char_type
, traits_type
> ostream_type;
/// The class type
typedef ostream_iterator<V, C, T, S> class_type;
private:
class deref_proxy;
friend class deref_proxy;
/// @}
/// \name Construction
/// @{
public:
/// \brief Constructs an instance holding a reference to the given stream, with default prefix and suffix
///
/// \note This is 100% functionally compatible with std::iostream_iterator
ss_explicit_k ostream_iterator(ostream_type &os)
: m_stm(&os)
, m_prefix()
, m_suffix()
{}
/// \brief Constructs an instance holding a reference to the given stream, with a suffix
///
/// \note This is 100% functionally compatible with std::iostream_iterator
template <ss_typename_param_k S1>
ostream_iterator(ostream_type &os, S1 const& suffix)
: m_stm(&os)
, m_prefix()
, m_suffix(get_string_(suffix))
{}
/// \brief Constructs an instance holding a reference to the given stream, with a prefix and a suffix
template <ss_typename_param_k S1, ss_typename_param_k S2>
ostream_iterator(ostream_type &os, S1 const& prefix, S2 const& suffix)
: m_stm(&os)
, m_prefix(get_string_(prefix))
, m_suffix(get_string_(suffix))
{}
/// \brief Creates a copy of an ostream_iterator instance
///
/// \param rhs The instance to copy
ostream_iterator(class_type const& rhs)
: m_stm(rhs.m_stm)
, m_prefix(rhs.m_prefix)
, m_suffix(rhs.m_suffix)
{}
#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
~ostream_iterator() stlsoft_throw_0()
{}
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */
/// @}
/// \name Implementation
/// @{
private:
class deref_proxy
{
public:
deref_proxy(ostream_iterator *it)
: m_it(it)
{}
public:
void operator =(assigned_type const& value)
{
m_it->invoke_(value);
}
private:
ostream_iterator *const m_it;
// Not to be implemented
private:
void operator =(deref_proxy const&);
};
void invoke_(assigned_type const& value)
{
*m_stm << m_prefix << value << m_suffix;
}
/// @}
/// \name Ouput Iterator Methods
/// @{
public:
/// \brief Dereference operator
deref_proxy operator *()
{
return deref_proxy(this);
}
/// \brief Pre-increment operator
class_type& operator ++()
{
return *this;
}
/// \brief Post-increment operator
class_type& operator ++(int)
{
return *this;
}
/// @}
/// \name Implementation
/// @{
private:
template <ss_typename_param_k S2>
static string_type get_string_(S2 const& s)
{
return stlsoft::c_str_ptr(s);
}
#if !defined(STLSOFT_COMPILER_IS_MSVC) || \
_MSC_VER > 1300
static string_type const& get_string_(string_type const& s)
{
return s;
}
#endif /* compiler */
/// @}
/// \name Members
/// @{
private:
ostream_type *m_stm;
string_type m_prefix;
string_type m_suffix;
/// @}
};
////////////////////////////////////////////////////////////////////////////
// Unit-testing
#ifdef STLSOFT_UNITTEST
# include "./unittest/ostream_iterator_unittest_.h"
#endif /* STLSOFT_UNITTEST */
/* ////////////////////////////////////////////////////////////////////// */
#ifndef _STLSOFT_NO_NAMESPACE
} // namespace stlsoft
#endif /* _STLSOFT_NO_NAMESPACE */
/* ////////////////////////////////////////////////////////////////////// */
#endif /* !STLSOFT_INCL_STLSOFT_ITERATORS_HPP_OSTREAM_ITERATOR */
/* ////////////////////////////////////////////////////////////////////// */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -