2013-03-16 14:00:13 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// (C) Copyright Olaf Krzikalla 2004-2006.
|
2014-03-01 14:00:20 -05:00
|
|
|
// (C) Copyright Ion Gaztanaga 2006-2013
|
2013-03-16 14:00:13 -04:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
// See http://www.boost.org/libs/intrusive for documentation.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef BOOST_INTRUSIVE_SLIST_NODE_HPP
|
|
|
|
#define BOOST_INTRUSIVE_SLIST_NODE_HPP
|
|
|
|
|
|
|
|
#include <boost/intrusive/detail/config_begin.hpp>
|
2014-03-01 14:00:20 -05:00
|
|
|
#include <boost/intrusive/detail/utilities.hpp>
|
2013-03-16 14:00:13 -04:00
|
|
|
#include <boost/intrusive/detail/assert.hpp>
|
|
|
|
#include <boost/intrusive/pointer_traits.hpp>
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
namespace intrusive {
|
|
|
|
|
|
|
|
template<class VoidPointer>
|
|
|
|
struct slist_node
|
|
|
|
{
|
|
|
|
typedef typename pointer_traits
|
|
|
|
<VoidPointer>::template rebind_pointer<slist_node>::type node_ptr;
|
|
|
|
node_ptr next_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// slist_node_traits can be used with circular_slist_algorithms and supplies
|
|
|
|
// a slist_node holding the pointers needed for a singly-linked list
|
|
|
|
// it is used by slist_base_hook and slist_member_hook
|
|
|
|
template<class VoidPointer>
|
|
|
|
struct slist_node_traits
|
|
|
|
{
|
|
|
|
typedef slist_node<VoidPointer> node;
|
|
|
|
typedef typename pointer_traits
|
|
|
|
<VoidPointer>::template rebind_pointer<node>::type node_ptr;
|
|
|
|
typedef typename pointer_traits
|
|
|
|
<VoidPointer>::template rebind_pointer<const node>::type const_node_ptr;
|
|
|
|
|
|
|
|
static node_ptr get_next(const const_node_ptr & n)
|
|
|
|
{ return n->next_; }
|
|
|
|
|
|
|
|
static node_ptr get_next(const node_ptr & n)
|
|
|
|
{ return n->next_; }
|
|
|
|
|
|
|
|
static void set_next(const node_ptr & n, const node_ptr & next)
|
|
|
|
{ n->next_ = next; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// slist_iterator provides some basic functions for a
|
|
|
|
// node oriented bidirectional iterator:
|
2014-03-01 14:00:20 -05:00
|
|
|
template<class RealValueTraits, bool IsConst>
|
2013-03-16 14:00:13 -04:00
|
|
|
class slist_iterator
|
2014-03-01 14:00:20 -05:00
|
|
|
: public iiterator<RealValueTraits, IsConst, std::forward_iterator_tag>::iterator_base
|
2013-03-16 14:00:13 -04:00
|
|
|
{
|
|
|
|
protected:
|
2014-03-01 14:00:20 -05:00
|
|
|
typedef iiterator
|
|
|
|
<RealValueTraits, IsConst, std::forward_iterator_tag> types_t;
|
|
|
|
|
|
|
|
static const bool stateful_value_traits = types_t::stateful_value_traits;
|
|
|
|
|
|
|
|
typedef RealValueTraits real_value_traits;
|
|
|
|
typedef typename types_t::node_traits node_traits;
|
|
|
|
|
|
|
|
typedef typename types_t::node node;
|
|
|
|
typedef typename types_t::node_ptr node_ptr;
|
|
|
|
typedef typename types_t::void_pointer void_pointer;
|
2013-03-16 14:00:13 -04:00
|
|
|
|
|
|
|
public:
|
2014-03-01 14:00:20 -05:00
|
|
|
typedef typename types_t::value_type value_type;
|
|
|
|
typedef typename types_t::pointer pointer;
|
|
|
|
typedef typename types_t::reference reference;
|
|
|
|
|
|
|
|
typedef typename pointer_traits
|
|
|
|
<void_pointer>::template rebind_pointer
|
|
|
|
<const real_value_traits>::type const_real_value_traits_ptr;
|
2013-03-16 14:00:13 -04:00
|
|
|
|
|
|
|
slist_iterator()
|
|
|
|
{}
|
|
|
|
|
2014-03-01 14:00:20 -05:00
|
|
|
explicit slist_iterator(const node_ptr & nodeptr, const const_real_value_traits_ptr &traits_ptr)
|
|
|
|
: members_(nodeptr, traits_ptr)
|
2013-03-16 14:00:13 -04:00
|
|
|
{}
|
|
|
|
|
2014-03-01 14:00:20 -05:00
|
|
|
slist_iterator(slist_iterator<RealValueTraits, false> const& other)
|
|
|
|
: members_(other.pointed_node(), other.get_real_value_traits())
|
2013-03-16 14:00:13 -04:00
|
|
|
{}
|
|
|
|
|
|
|
|
const node_ptr &pointed_node() const
|
|
|
|
{ return members_.nodeptr_; }
|
|
|
|
|
|
|
|
slist_iterator &operator=(const node_ptr &node)
|
|
|
|
{ members_.nodeptr_ = node; return static_cast<slist_iterator&>(*this); }
|
|
|
|
|
2014-03-01 14:00:20 -05:00
|
|
|
const_real_value_traits_ptr get_real_value_traits() const
|
|
|
|
{ return pointer_traits<const_real_value_traits_ptr>::static_cast_from(members_.get_ptr()); }
|
|
|
|
|
2013-03-16 14:00:13 -04:00
|
|
|
public:
|
|
|
|
slist_iterator& operator++()
|
|
|
|
{
|
|
|
|
members_.nodeptr_ = node_traits::get_next(members_.nodeptr_);
|
|
|
|
return static_cast<slist_iterator&> (*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
slist_iterator operator++(int)
|
|
|
|
{
|
|
|
|
slist_iterator result (*this);
|
|
|
|
members_.nodeptr_ = node_traits::get_next(members_.nodeptr_);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator== (const slist_iterator& l, const slist_iterator& r)
|
|
|
|
{ return l.pointed_node() == r.pointed_node(); }
|
|
|
|
|
|
|
|
friend bool operator!= (const slist_iterator& l, const slist_iterator& r)
|
|
|
|
{ return !(l == r); }
|
|
|
|
|
|
|
|
reference operator*() const
|
|
|
|
{ return *operator->(); }
|
|
|
|
|
|
|
|
pointer operator->() const
|
|
|
|
{ return this->get_real_value_traits()->to_value_ptr(members_.nodeptr_); }
|
|
|
|
|
2014-03-01 14:00:20 -05:00
|
|
|
slist_iterator<RealValueTraits, false> unconst() const
|
|
|
|
{ return slist_iterator<RealValueTraits, false>(this->pointed_node(), this->get_real_value_traits()); }
|
2013-03-16 14:00:13 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-03-01 14:00:20 -05:00
|
|
|
iiterator_members<node_ptr, stateful_value_traits> members_;
|
2013-03-16 14:00:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace intrusive
|
|
|
|
} //namespace boost
|
|
|
|
|
|
|
|
#include <boost/intrusive/detail/config_end.hpp>
|
|
|
|
|
|
|
|
#endif //BOOST_INTRUSIVE_SLIST_NODE_HPP
|