2001-06-26 23:22:57 +02:00
|
|
|
// Stream iterators
|
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
// Copyright (C) 2001, 2004 Free Software Foundation, Inc.
|
2001-06-26 23:22:57 +02:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING. If not, write to the Free
|
|
|
|
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
// USA.
|
|
|
|
|
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
|
|
// library without restriction. Specifically, if other files instantiate
|
|
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
|
|
// this file and link it with other files to produce an executable, this
|
|
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
|
|
// the GNU General Public License. This exception does not however
|
|
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
|
|
// the GNU General Public License.
|
|
|
|
|
c_io_stdio.h: Correct grammar in comments.
2001-11-02 Phil Edwards <pme@gcc.gnu.org>
* config/io/c_io_stdio.h: Correct grammar in comments.
* docs/doxygen/Intro.3: Expand "top-level" man page.
* docs/doxygen/doxygroups.cc: New module definitions (comments).
* docs/doxygen/mainpage.doxy: Tweaks.
* docs/doxygen/run_doxygen: Update Doxygen version, massage man pages.
Add @file hooks so that headers are considered to be documented.
* include/bits/basic_ios.h, include/bits/basic_file.h,
include/bits/basic_string.h, include/bits/boost_concept_check.h,
include/bits/char_traits.h, include/bits/codecvt.h,
include/bits/concept_check.h, include/bits/cpp_type_traits.h,
include/bits/fpos.h, include/bits/gslice.h, include/bits/gslice_array.h,
include/bits/indirect_array.h, include/bits/ios_base.h,
include/bits/locale_facets.h, include/bits/localefwd.h,
include/bits/mask_array.h, include/bits/pthread_allocimpl.h,
include/bits/slice.h, include/bits/slice_array.h,
include/bits/std_algorithm.h, include/bits/std_bitset.h,
include/bits/std_complex.h, include/bits/std_deque.h,
include/bits/std_fstream.h, include/bits/std_functional.h,
include/bits/std_iomanip.h, include/bits/std_ios.h,
include/bits/std_iosfwd.h, include/bits/std_iostream.h,
include/bits/std_istream.h, include/bits/std_iterator.h,
include/bits/std_limits.h, include/bits/std_list.h,
include/bits/std_locale.h, include/bits/std_map.h,
include/bits/std_memory.h, include/bits/std_numeric.h,
include/bits/std_ostream.h, include/bits/std_queue.h,
include/bits/std_set.h, include/bits/std_sstream.h,
include/bits/std_stack.h, include/bits/std_streambuf.h,
include/bits/std_string.h, include/bits/std_utility.h,
include/bits/std_valarray.h, include/bits/std_vector.h,
include/bits/stl_algo.h, include/bits/stl_alloc.h,
include/bits/stl_bvector.h, include/bits/stl_construct.h,
include/bits/stl_deque.h, include/bits/stl_heap.h,
include/bits/stl_iterator.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_iterator_base_types.h, include/bits/stl_list.h,
include/bits/stl_map.h, include/bits/stl_multimap.h,
include/bits/stl_multiset.h, include/bits/stl_numeric.h,
include/bits/stl_pair.h, include/bits/stl_pthread_alloc.h,
include/bits/stl_queue.h, include/bits/stl_raw_storage_iter.h,
include/bits/stl_relops.h, include/bits/stl_set.h,
include/bits/stl_stack.h, include/bits/stl_tempbuf.h,
include/bits/stl_threads.h, include/bits/stl_tree.h,
include/bits/stl_uninitialized.h, include/bits/stl_vector.h,
include/bits/stream_iterator.h, include/bits/streambuf_iterator.h,
include/bits/stringfwd.h, include/bits/type_traits.h,
include/bits/valarray_array.h, include/bits/valarray_meta.h:
Add hooks, tweak comments only.
* include/bits/stl_algobase.h (swap, min, iter_swap): Also
document these functions.
* include/bits/stl_function.h: Tweak link comments.
From-SVN: r46717
2001-11-02 18:38:11 +01:00
|
|
|
/** @file stream_iterator.h
|
|
|
|
* This is an internal header file, included by other library headers.
|
|
|
|
* You should not attempt to use it directly.
|
|
|
|
*/
|
|
|
|
|
2003-07-05 06:05:45 +02:00
|
|
|
#ifndef _STREAM_ITERATOR_H
|
|
|
|
#define _STREAM_ITERATOR_H 1
|
2001-06-26 23:22:57 +02:00
|
|
|
|
|
|
|
#pragma GCC system_header
|
|
|
|
|
2003-11-11 21:09:16 +01:00
|
|
|
#include <debug/debug.h>
|
|
|
|
|
2001-06-26 23:22:57 +02:00
|
|
|
namespace std
|
|
|
|
{
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Provides input iterator semantics for streams.
|
2004-02-08 05:46:42 +01:00
|
|
|
template<typename _Tp, typename _CharT = char,
|
|
|
|
typename _Traits = char_traits<_CharT>, typename _Dist = ptrdiff_t>
|
|
|
|
class istream_iterator
|
2004-02-06 22:32:48 +01:00
|
|
|
: public iterator<input_iterator_tag, _Tp, _Dist, const _Tp*, const _Tp&>
|
2001-06-26 23:22:57 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef _CharT char_type;
|
|
|
|
typedef _Traits traits_type;
|
|
|
|
typedef basic_istream<_CharT, _Traits> istream_type;
|
|
|
|
|
|
|
|
private:
|
2004-02-08 05:46:42 +01:00
|
|
|
istream_type* _M_stream;
|
|
|
|
_Tp _M_value;
|
|
|
|
bool _M_ok;
|
2001-06-26 23:22:57 +02:00
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
public:
|
|
|
|
/// Construct end of input stream iterator.
|
2004-02-06 22:32:48 +01:00
|
|
|
istream_iterator()
|
|
|
|
: _M_stream(0), _M_ok(false) {}
|
2001-06-27 01:12:45 +02:00
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Construct start of input stream iterator.
|
2004-02-06 22:32:48 +01:00
|
|
|
istream_iterator(istream_type& __s)
|
|
|
|
: _M_stream(&__s)
|
|
|
|
{ _M_read(); }
|
2001-06-26 23:22:57 +02:00
|
|
|
|
2004-02-08 05:46:42 +01:00
|
|
|
istream_iterator(const istream_iterator& __obj)
|
|
|
|
: _M_stream(__obj._M_stream), _M_value(__obj._M_value),
|
|
|
|
_M_ok(__obj._M_ok)
|
2001-06-27 01:12:45 +02:00
|
|
|
{ }
|
|
|
|
|
2001-06-26 23:22:57 +02:00
|
|
|
const _Tp&
|
2004-02-08 05:46:42 +01:00
|
|
|
operator*() const
|
|
|
|
{
|
2003-11-11 21:09:16 +01:00
|
|
|
__glibcxx_requires_cond(_M_ok,
|
|
|
|
_M_message(__gnu_debug::__msg_deref_istream)
|
|
|
|
._M_iterator(*this));
|
|
|
|
return _M_value;
|
|
|
|
}
|
2001-06-26 23:22:57 +02:00
|
|
|
|
|
|
|
const _Tp*
|
|
|
|
operator->() const { return &(operator*()); }
|
|
|
|
|
2004-02-08 05:46:42 +01:00
|
|
|
istream_iterator&
|
|
|
|
operator++()
|
|
|
|
{
|
2003-11-11 21:09:16 +01:00
|
|
|
__glibcxx_requires_cond(_M_ok,
|
|
|
|
_M_message(__gnu_debug::__msg_inc_istream)
|
|
|
|
._M_iterator(*this));
|
2004-02-08 05:46:42 +01:00
|
|
|
_M_read();
|
|
|
|
return *this;
|
2003-11-11 21:09:16 +01:00
|
|
|
}
|
2001-06-26 23:22:57 +02:00
|
|
|
|
2004-02-08 05:46:42 +01:00
|
|
|
istream_iterator
|
|
|
|
operator++(int)
|
2001-06-26 23:22:57 +02:00
|
|
|
{
|
2003-11-11 21:09:16 +01:00
|
|
|
__glibcxx_requires_cond(_M_ok,
|
|
|
|
_M_message(__gnu_debug::__msg_inc_istream)
|
2004-02-08 05:46:42 +01:00
|
|
|
._M_iterator(*this));
|
2001-06-26 23:22:57 +02:00
|
|
|
istream_iterator __tmp = *this;
|
|
|
|
_M_read();
|
|
|
|
return __tmp;
|
|
|
|
}
|
|
|
|
|
2004-02-08 05:46:42 +01:00
|
|
|
bool
|
2001-06-26 23:22:57 +02:00
|
|
|
_M_equal(const istream_iterator& __x) const
|
2004-02-06 22:32:48 +01:00
|
|
|
{ return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream); }
|
2001-06-26 23:22:57 +02:00
|
|
|
|
2004-02-08 05:46:42 +01:00
|
|
|
private:
|
|
|
|
void
|
|
|
|
_M_read()
|
2001-06-26 23:22:57 +02:00
|
|
|
{
|
|
|
|
_M_ok = (_M_stream && *_M_stream) ? true : false;
|
2004-02-06 22:32:48 +01:00
|
|
|
if (_M_ok)
|
2001-06-26 23:22:57 +02:00
|
|
|
{
|
|
|
|
*_M_stream >> _M_value;
|
|
|
|
_M_ok = *_M_stream ? true : false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2004-02-08 05:46:42 +01:00
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Return true if x and y are both end or not end, or x and y are the same.
|
2001-06-26 23:22:57 +02:00
|
|
|
template<typename _Tp, typename _CharT, typename _Traits, typename _Dist>
|
2004-02-08 05:46:42 +01:00
|
|
|
inline bool
|
2001-06-26 23:22:57 +02:00
|
|
|
operator==(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x,
|
2004-02-08 05:46:42 +01:00
|
|
|
const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __y)
|
2001-06-26 23:22:57 +02:00
|
|
|
{ return __x._M_equal(__y); }
|
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Return false if x and y are both end or not end, or x and y are the same.
|
2001-06-26 23:22:57 +02:00
|
|
|
template <class _Tp, class _CharT, class _Traits, class _Dist>
|
2004-02-08 05:46:42 +01:00
|
|
|
inline bool
|
2001-06-27 01:12:45 +02:00
|
|
|
operator!=(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x,
|
2004-02-08 05:46:42 +01:00
|
|
|
const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __y)
|
2001-06-27 01:12:45 +02:00
|
|
|
{ return !__x._M_equal(__y); }
|
2001-06-26 23:22:57 +02:00
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/**
|
|
|
|
* @brief Provides output iterator semantics for streams.
|
|
|
|
*
|
|
|
|
* This class provides an iterator to write to an ostream. The type Tp is
|
|
|
|
* the only type written by this iterator and there must be an
|
|
|
|
* operator<<(Tp) defined.
|
|
|
|
*
|
|
|
|
* @param Tp The type to write to the ostream.
|
|
|
|
* @param CharT The ostream char_type.
|
|
|
|
* @param Traits The ostream char_traits.
|
|
|
|
*/
|
2004-02-08 05:46:42 +01:00
|
|
|
template<typename _Tp, typename _CharT = char,
|
2001-06-26 23:22:57 +02:00
|
|
|
typename _Traits = char_traits<_CharT> >
|
2004-02-08 05:46:42 +01:00
|
|
|
class ostream_iterator
|
2004-02-06 22:32:48 +01:00
|
|
|
: public iterator<output_iterator_tag, void, void, void, void>
|
2001-06-26 23:22:57 +02:00
|
|
|
{
|
|
|
|
public:
|
2004-01-27 03:58:06 +01:00
|
|
|
//@{
|
|
|
|
/// Public typedef
|
2001-06-26 23:22:57 +02:00
|
|
|
typedef _CharT char_type;
|
|
|
|
typedef _Traits traits_type;
|
|
|
|
typedef basic_ostream<_CharT, _Traits> ostream_type;
|
2004-01-27 03:58:06 +01:00
|
|
|
//@}
|
2001-06-26 23:22:57 +02:00
|
|
|
|
|
|
|
private:
|
2004-02-08 05:46:42 +01:00
|
|
|
ostream_type* _M_stream;
|
|
|
|
const _CharT* _M_string;
|
2001-06-26 23:22:57 +02:00
|
|
|
|
|
|
|
public:
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Construct from an ostream.
|
2001-06-26 23:22:57 +02:00
|
|
|
ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {}
|
2001-06-27 01:12:45 +02:00
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/**
|
|
|
|
* Construct from an ostream.
|
|
|
|
*
|
|
|
|
* The delimiter string @a c is written to the stream after every Tp
|
|
|
|
* written to the stream. The delimiter is not copied, and thus must
|
|
|
|
* not be destroyed while this iterator is in use.
|
|
|
|
*
|
|
|
|
* @param s Underlying ostream to write to.
|
|
|
|
* @param c CharT delimiter string to insert.
|
|
|
|
*/
|
2004-02-08 05:46:42 +01:00
|
|
|
ostream_iterator(ostream_type& __s, const _CharT* __c)
|
2001-06-27 01:12:45 +02:00
|
|
|
: _M_stream(&__s), _M_string(__c) { }
|
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Copy constructor.
|
2001-06-27 01:12:45 +02:00
|
|
|
ostream_iterator(const ostream_iterator& __obj)
|
|
|
|
: _M_stream(__obj._M_stream), _M_string(__obj._M_string) { }
|
2001-06-26 23:22:57 +02:00
|
|
|
|
2004-01-27 03:58:06 +01:00
|
|
|
/// Writes @a value to underlying ostream using operator<<. If
|
|
|
|
/// constructed with delimiter string, writes delimiter to ostream.
|
2004-02-08 05:46:42 +01:00
|
|
|
ostream_iterator&
|
|
|
|
operator=(const _Tp& __value)
|
|
|
|
{
|
2003-11-11 21:09:16 +01:00
|
|
|
__glibcxx_requires_cond(_M_stream != 0,
|
|
|
|
_M_message(__gnu_debug::__msg_output_ostream)
|
|
|
|
._M_iterator(*this));
|
2001-06-26 23:22:57 +02:00
|
|
|
*_M_stream << __value;
|
|
|
|
if (_M_string) *_M_stream << _M_string;
|
|
|
|
return *this;
|
|
|
|
}
|
2004-02-08 05:46:42 +01:00
|
|
|
|
|
|
|
ostream_iterator&
|
2004-02-06 22:32:48 +01:00
|
|
|
operator*()
|
|
|
|
{ return *this; }
|
2004-02-08 05:46:42 +01:00
|
|
|
|
|
|
|
ostream_iterator&
|
2004-02-06 22:32:48 +01:00
|
|
|
operator++()
|
2004-02-08 05:46:42 +01:00
|
|
|
{ return *this; }
|
|
|
|
|
|
|
|
ostream_iterator&
|
2004-02-06 22:32:48 +01:00
|
|
|
operator++(int)
|
2004-02-08 05:46:42 +01:00
|
|
|
{ return *this; }
|
2001-06-26 23:22:57 +02:00
|
|
|
};
|
|
|
|
} // namespace std
|
|
|
|
#endif
|