mirror of
https://github.com/boostorg/log.git
synced 2026-02-08 23:02:17 +00:00
160 lines
4.5 KiB
C++
160 lines
4.5 KiB
C++
/*
|
|
* Copyright Andrey Semashev 2007 - 2014.
|
|
* 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)
|
|
*/
|
|
/*!
|
|
* \file threadsafe_queue.cpp
|
|
* \author Andrey Semashev
|
|
* \date 05.11.2010
|
|
*
|
|
* \brief This header is the Boost.Log library implementation, see the library documentation
|
|
* at http://www.boost.org/doc/libs/release/libs/log/doc/html/index.html.
|
|
*
|
|
* The implementation is based on algorithms published in the "Simple, Fast,
|
|
* and Practical Non-Blocking and Blocking Concurrent Queue Algorithms" article
|
|
* in PODC96 by Maged M. Michael and Michael L. Scott. Pseudocode is available here:
|
|
* http://www.cs.rochester.edu/research/synchronization/pseudocode/queues.html
|
|
*
|
|
* The lock-free version of the mentioned algorithms contain a race condition and therefore
|
|
* were not included here.
|
|
*/
|
|
|
|
#include <boost/log/detail/threadsafe_queue.hpp>
|
|
|
|
#ifndef BOOST_LOG_NO_THREADS
|
|
|
|
#include <new>
|
|
#include <boost/assert.hpp>
|
|
#include <boost/throw_exception.hpp>
|
|
#include <boost/type_traits/alignment_of.hpp>
|
|
#include <boost/log/detail/spin_mutex.hpp>
|
|
#include <boost/log/detail/locks.hpp>
|
|
#include <boost/log/detail/malloc_aligned.hpp>
|
|
#include <boost/log/detail/header.hpp>
|
|
|
|
namespace boost {
|
|
|
|
BOOST_LOG_OPEN_NAMESPACE
|
|
|
|
namespace aux {
|
|
|
|
//! Generic queue implementation with two locks
|
|
class threadsafe_queue_impl_generic :
|
|
public threadsafe_queue_impl
|
|
{
|
|
private:
|
|
//! Mutex type to be used
|
|
typedef spin_mutex mutex_type;
|
|
|
|
/*!
|
|
* A structure that contains a pointer to the node and the associated mutex.
|
|
* The alignment below allows to eliminate false sharing, it should not be less than CPU cache line size.
|
|
*/
|
|
struct BOOST_ALIGNMENT(BOOST_LOG_CPU_CACHE_LINE_SIZE) pointer
|
|
{
|
|
//! Pointer to the either end of the queue
|
|
node_base* node;
|
|
//! Lock for access synchronization
|
|
mutex_type mutex;
|
|
// 128 bytes padding is chosen to mitigate false sharing for NetBurst CPUs, which load two cache lines in one go.
|
|
unsigned char padding[128U - (sizeof(node_base*) + sizeof(mutex_type)) % 128U];
|
|
};
|
|
|
|
private:
|
|
//! Pointer to the beginning of the queue
|
|
pointer m_Head;
|
|
//! Pointer to the end of the queue
|
|
pointer m_Tail;
|
|
|
|
public:
|
|
explicit threadsafe_queue_impl_generic(node_base* first_node)
|
|
{
|
|
set_next(first_node, NULL);
|
|
m_Head.node = m_Tail.node = first_node;
|
|
}
|
|
|
|
~threadsafe_queue_impl_generic()
|
|
{
|
|
}
|
|
|
|
node_base* reset_last_node()
|
|
{
|
|
BOOST_ASSERT(m_Head.node == m_Tail.node);
|
|
node_base* p = m_Head.node;
|
|
m_Head.node = m_Tail.node = NULL;
|
|
return p;
|
|
}
|
|
|
|
bool unsafe_empty()
|
|
{
|
|
return m_Head.node == m_Tail.node;
|
|
}
|
|
|
|
void push(node_base* p)
|
|
{
|
|
set_next(p, NULL);
|
|
exclusive_lock_guard< mutex_type > _(m_Tail.mutex);
|
|
set_next(m_Tail.node, p);
|
|
m_Tail.node = p;
|
|
}
|
|
|
|
bool try_pop(node_base*& node_to_free, node_base*& node_with_value)
|
|
{
|
|
exclusive_lock_guard< mutex_type > _(m_Head.mutex);
|
|
node_base* next = get_next(m_Head.node);
|
|
if (next)
|
|
{
|
|
// We have a node to pop
|
|
node_to_free = m_Head.node;
|
|
node_with_value = m_Head.node = next;
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
private:
|
|
// Copying and assignment are closed
|
|
threadsafe_queue_impl_generic(threadsafe_queue_impl_generic const&);
|
|
threadsafe_queue_impl_generic& operator= (threadsafe_queue_impl_generic const&);
|
|
|
|
BOOST_FORCEINLINE static void set_next(node_base* p, node_base* next)
|
|
{
|
|
p->next.data[0] = next;
|
|
}
|
|
BOOST_FORCEINLINE static node_base* get_next(node_base* p)
|
|
{
|
|
return static_cast< node_base* >(p->next.data[0]);
|
|
}
|
|
};
|
|
|
|
BOOST_LOG_API threadsafe_queue_impl* threadsafe_queue_impl::create(node_base* first_node)
|
|
{
|
|
return new threadsafe_queue_impl_generic(first_node);
|
|
}
|
|
|
|
BOOST_LOG_API void* threadsafe_queue_impl::operator new (std::size_t size)
|
|
{
|
|
void* p = malloc_aligned(size, BOOST_LOG_CPU_CACHE_LINE_SIZE);
|
|
if (!p)
|
|
BOOST_THROW_EXCEPTION(std::bad_alloc());
|
|
return p;
|
|
}
|
|
|
|
BOOST_LOG_API void threadsafe_queue_impl::operator delete (void* p, std::size_t)
|
|
{
|
|
free_aligned(p);
|
|
}
|
|
|
|
} // namespace aux
|
|
|
|
BOOST_LOG_CLOSE_NAMESPACE // namespace log
|
|
|
|
} // namespace boost
|
|
|
|
#include <boost/log/detail/footer.hpp>
|
|
|
|
#endif // BOOST_LOG_NO_THREADS
|