| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- // Copyright (c) 2006-2018 Maxim Khizhinsky
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
- #ifndef CDSLIB_CONTAINER_OPTIMISTIC_QUEUE_H
- #define CDSLIB_CONTAINER_OPTIMISTIC_QUEUE_H
- #include <memory>
- #include <cds/intrusive/optimistic_queue.h>
- #include <cds/container/details/base.h>
- namespace cds { namespace container {
- /// OptimisticQueue related definitions
- /** @ingroup cds_nonintrusive_helper
- */
- namespace optimistic_queue {
- /// Internal statistics
- template <typename Counter = cds::intrusive::optimistic_queue::stat<>::counter_type >
- using stat = cds::intrusive::optimistic_queue::stat< Counter >;
- /// Dummy internal statistics
- typedef cds::intrusive::optimistic_queue::empty_stat empty_stat;
- /// MSQueue default type traits
- struct traits
- {
- /// Node allocator
- typedef CDS_DEFAULT_ALLOCATOR allocator;
- /// Back-off strategy
- typedef cds::backoff::empty back_off;
- /// Item counting feature; by default, disabled. Use \p cds::atomicity::item_counter to enable item counting
- typedef atomicity::empty_item_counter item_counter;
- /// Internal statistics (by default, disabled)
- /**
- Possible option value are: \p optimistic_queue::stat, \p optimistic_queue::empty_stat (the default),
- user-provided class that supports \p %optimistic_queue::stat interface.
- */
- typedef optimistic_queue::empty_stat stat;
- /// C++ memory ordering model
- /**
- Can be \p opt::v::relaxed_ordering (relaxed memory model, the default)
- or \p opt::v::sequential_consistent (sequentially consisnent memory model).
- */
- typedef opt::v::relaxed_ordering memory_model;
- /// Padding for internal critical atomic data. Default is \p opt::cache_line_padding
- enum { padding = opt::cache_line_padding };
- };
- /// Metafunction converting option list to \p msqueue::traits
- /**
- Supported \p Options are:
- - \p opt::allocator - allocator (like \p std::allocator) used for allocating queue nodes. Default is \ref CDS_DEFAULT_ALLOCATOR
- - \p opt::back_off - back-off strategy used, default is \p cds::backoff::empty.
- - \p opt::item_counter - the type of item counting feature. Default is \p cds::atomicity::empty_item_counter (item counting disabled)
- To enable item counting use \p cds::atomicity::item_counter
- - \p opt::stat - the type to gather internal statistics.
- Possible statistics types are: \p optimistic_queue::stat, \p optimistic_queue::empty_stat,
- user-provided class that supports \p %optimistic_queue::stat interface.
- Default is \p %optimistic_queue::empty_stat.
- - \p opt::padding - padding for internal critical atomic data. Default is \p opt::cache_line_padding
- - \p opt::memory_model - C++ memory ordering model. Can be \p opt::v::relaxed_ordering (relaxed memory model, the default)
- or \p opt::v::sequential_consistent (sequentially consisnent memory model).
- Example: declare \p OptimisticQueue with item counting and internal statistics
- \code
- typedef cds::container::OptimisticQueue< cds::gc::HP, Foo,
- typename cds::container::optimistic_queue::make_traits<
- cds::opt::item_counter< cds::atomicity::item_counter >,
- cds::opt::stat< cds::container::optimistic_queue::stat<> >
- >::type
- > myQueue;
- \endcode
- */
- template <typename... Options>
- struct make_traits {
- # ifdef CDS_DOXYGEN_INVOKED
- typedef implementation_defined type; ///< Metafunction result
- # else
- typedef typename cds::opt::make_options<
- typename cds::opt::find_type_traits< traits, Options... >::type
- , Options...
- >::type type;
- # endif
- };
- } // namespace optimistic_queue
- //@cond
- namespace details {
- template <typename GC, typename T, typename Traits>
- struct make_optimistic_queue
- {
- typedef GC gc;
- typedef T value_type;
- typedef Traits traits;
- struct node_type: public cds::intrusive::optimistic_queue::node< gc >
- {
- value_type m_value;
- node_type( value_type const& val )
- : m_value( val )
- {}
- template <typename... Args>
- node_type( Args&&... args )
- : m_value( std::forward<Args>(args)...)
- {}
- };
- typedef typename std::allocator_traits<
- typename traits::allocator
- >::template rebind_alloc<node_type> allocator_type;
- typedef cds::details::Allocator< node_type, allocator_type > cxx_allocator;
- struct node_deallocator
- {
- void operator ()( node_type * pNode )
- {
- cxx_allocator().Delete( pNode );
- }
- };
- struct intrusive_traits : public traits
- {
- typedef cds::intrusive::optimistic_queue::base_hook< opt::gc<gc> > hook;
- typedef node_deallocator disposer;
- static constexpr const opt::link_check_type link_checker = cds::intrusive::optimistic_queue::traits::link_checker;
- };
- typedef intrusive::OptimisticQueue< gc, node_type, intrusive_traits > type;
- };
- } // namespace details
- //@endcond
- /// Optimistic queue
- /** @ingroup cds_nonintrusive_queue
- Implementation of Ladan-Mozes & Shavit optimistic queue algorithm.
- - [2008] Edya Ladan-Mozes, Nir Shavit "An Optimistic Approach to Lock-Free FIFO Queues"
- Template arguments:
- - \p GC - garbage collector type: \p gc::HP, \p gc::DHP.
- - \p T - type of values to be stored in the queue
- - \p Traits - queue traits, default is \p optimistic_queue::traits. You can use \p optimistic_queue::make_traits
- metafunction to make your traits or just derive your traits from \p %optimistic_queue::traits:
- \code
- struct myTraits: public cds::container::optimistic_queue::traits {
- typedef cds::intrusive::optimistic_queue::stat<> stat;
- typedef cds::atomicity::item_counter item_counter;
- };
- typedef cds::container::OptimisticQueue< cds::gc::HP, Foo, myTraits > myQueue;
- // Equivalent make_traits example:
- typedef cds::container::OptimisticQueue< cds::gc::HP, Foo,
- typename cds::container::optimistic_queue::make_traits<
- cds::opt::stat< cds::container::optimistic_queue::stat<> >,
- cds::opt::item_counter< cds::atomicity::item_counter >
- >::type
- > myQueue;
- \endcode
- */
- template <typename GC, typename T, typename Traits = optimistic_queue::traits >
- class OptimisticQueue:
- #ifdef CDS_DOXYGEN_INVOKED
- private intrusive::OptimisticQueue< GC, cds::intrusive::optimistic_queue::node< T >, Traits >
- #else
- private details::make_optimistic_queue< GC, T, Traits >::type
- #endif
- {
- //@cond
- typedef details::make_optimistic_queue< GC, T, Traits > maker;
- typedef typename maker::type base_class;
- //@endcond
- public:
- /// Rebind template arguments
- template <typename GC2, typename T2, typename Traits2>
- struct rebind {
- typedef OptimisticQueue< GC2, T2, Traits2 > other ; ///< Rebinding result
- };
- public:
- typedef GC gc; ///< Garbage collector
- typedef T value_type; ///< Value type to be stored in the queue
- typedef Traits traits; ///< Queue traits
- typedef typename base_class::back_off back_off; ///< Back-off strategy used
- typedef typename maker::allocator_type allocator_type; ///< Allocator type used for allocate/deallocate the nodes
- typedef typename base_class::item_counter item_counter; ///< Item counting policy used
- typedef typename base_class::stat stat; ///< Internal statistics policy used
- typedef typename base_class::memory_model memory_model; ///< Memory ordering. See \p cds::opt::memory_model option
- static constexpr const size_t c_nHazardPtrCount = base_class::c_nHazardPtrCount; ///< Count of hazard pointer required for the algorithm
- protected:
- //@cond
- typedef typename maker::node_type node_type; ///< queue node type (derived from intrusive::optimistic_queue::node)
- typedef typename maker::cxx_allocator cxx_allocator;
- typedef typename maker::node_deallocator node_deallocator; // deallocate node
- typedef typename base_class::node_traits node_traits;
- //@endcond
- protected:
- ///@cond
- static node_type * alloc_node()
- {
- return cxx_allocator().New();
- }
- static node_type * alloc_node( const value_type& val )
- {
- return cxx_allocator().New( val );
- }
- template <typename... Args>
- static node_type * alloc_node_move( Args&&... args )
- {
- return cxx_allocator().MoveNew( std::forward<Args>( args )... );
- }
- static void free_node( node_type * p )
- {
- node_deallocator()( p );
- }
- struct node_disposer {
- void operator()( node_type * pNode )
- {
- free_node( pNode );
- }
- };
- typedef std::unique_ptr< node_type, node_disposer > scoped_node_ptr;
- //@endcond
- public:
- /// Initializes empty queue
- OptimisticQueue()
- {}
- /// Destructor clears the queue
- ~OptimisticQueue()
- {}
- /// Enqueues \p val value into the queue.
- /**
- The function makes queue node in dynamic memory calling copy constructor for \p val
- and then it calls \p intrusive::OptimisticQueue::enqueue.
- Returns \p true if success, \p false otherwise.
- */
- bool enqueue( const value_type& val )
- {
- scoped_node_ptr p( alloc_node(val));
- if ( base_class::enqueue( *p )) {
- p.release();
- return true;
- }
- return false;
- }
- /// Enqueues \p val value into the queue, move semntics
- bool enqueue( value_type&& val )
- {
- scoped_node_ptr p( alloc_node_move( std::move( val )));
- if ( base_class::enqueue( *p )) {
- p.release();
- return true;
- }
- return false;
- }
- /// Enqueues \p data to queue using a functor
- /**
- \p Func is a functor called to create node.
- The functor \p f takes one argument - a reference to a new node of type \ref value_type :
- \code
- cds::container::OptimisticQueue< cds::gc::HP, Foo > myQueue;
- Bar bar;
- myQueue.enqueue_with( [&bar]( Foo& dest ) { dest = bar; } );
- \endcode
- */
- template <typename Func>
- bool enqueue_with( Func f )
- {
- scoped_node_ptr p( alloc_node());
- f( p->m_value );
- if ( base_class::enqueue( *p )) {
- p.release();
- return true;
- }
- return false;
- }
- /// Enqueues data of type \ref value_type constructed with <tt>std::forward<Args>(args)...</tt>
- template <typename... Args>
- bool emplace( Args&&... args )
- {
- scoped_node_ptr p( alloc_node_move( std::forward<Args>(args)... ));
- if ( base_class::enqueue( *p )) {
- p.release();
- return true;
- }
- return false;
- }
- /// Synonym for \p enqueue( const value_type& ) function
- bool push( const value_type& val )
- {
- return enqueue( val );
- }
- /// Synonym for \p enqueue( value_type&& ) function
- bool push( value_type&& val )
- {
- return enqueue( std::move( val ));
- }
- /// Synonym for \p enqueue_with() function
- template <typename Func>
- bool push_with( Func f )
- {
- return enqueue_with( f );
- }
- /// Dequeues a value from the queue
- /**
- If queue is not empty, the function returns \p true, \p dest contains copy of
- dequeued value. The assignment operator for type \p value_type is invoked.
- If queue is empty, the function returns \p false, \p dest is unchanged.
- */
- bool dequeue( value_type& dest )
- {
- return dequeue_with( [&dest]( value_type& src ) { dest = std::move( src ); });
- }
- /// Dequeues a value using a functor
- /**
- \p Func is a functor called to copy dequeued value.
- The functor takes one argument - a reference to removed node:
- \code
- cds:container::OptimisticQueue< cds::gc::HP, Foo > myQueue;
- Bar bar;
- myQueue.dequeue_with( [&bar]( Foo& src ) { bar = std::move( src );});
- \endcode
- The functor is called only if the queue is not empty.
- */
- template <typename Func>
- bool dequeue_with( Func f )
- {
- typename base_class::dequeue_result res;
- if ( base_class::do_dequeue( res )) {
- f( node_traits::to_value_ptr( *res.pNext )->m_value );
- base_class::dispose_result( res );
- return true;
- }
- return false;
- }
- /// Synonym for \ref dequeue() function
- bool pop( value_type& dest )
- {
- return dequeue( dest );
- }
- /// Synonym for template version of \p dequeue_with() function
- template <typename Func>
- bool pop_with( Func f )
- {
- return dequeue_with( f );
- }
- /// Checks if the queue is empty
- bool empty() const
- {
- return base_class::empty();
- }
- /// Clear the queue
- /**
- The function repeatedly calls \ref dequeue until it returns \p nullptr.
- */
- void clear()
- {
- base_class::clear();
- }
- /// Returns queue's item count
- /** \copydetails cds::intrusive::OptimisticQueue::size()
- */
- size_t size() const
- {
- return base_class::size();
- }
- /// Returns reference to internal statistics
- const stat& statistics() const
- {
- return base_class::statistics();
- }
- };
- }} // namespace cds::container
- #endif //#ifndef CDSLIB_CONTAINER_OPTIMISTIC_QUEUE_H
|