103 lines
2.7 KiB
C++
103 lines
2.7 KiB
C++
// Copyright (C) 2013 Vicente J. Botet Escriba
|
|
//
|
|
// 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)
|
|
//
|
|
// 2013/10 Vicente J. Botet Escriba
|
|
// Creation.
|
|
|
|
#ifndef BOOST_CSBL_DEVECTOR_HPP
|
|
#define BOOST_CSBL_DEVECTOR_HPP
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
#include <boost/thread/csbl/vector.hpp>
|
|
#include <boost/move/detail/move_helpers.hpp>
|
|
|
|
namespace boost
|
|
{
|
|
namespace csbl
|
|
{
|
|
template <class T>
|
|
class devector
|
|
{
|
|
typedef csbl::vector<T> vector_type;
|
|
vector_type data_;
|
|
std::size_t front_index_;
|
|
|
|
BOOST_COPYABLE_AND_MOVABLE(devector)
|
|
|
|
template <class U>
|
|
void priv_push_back(BOOST_FWD_REF(U) x)
|
|
{ data_.push_back(boost::forward<U>(x)); }
|
|
|
|
public:
|
|
typedef typename vector_type::size_type size_type;
|
|
typedef typename vector_type::reference reference;
|
|
typedef typename vector_type::const_reference const_reference;
|
|
|
|
|
|
devector() : front_index_(0) {}
|
|
devector(devector const& x) BOOST_NOEXCEPT
|
|
: data_(x.data_),
|
|
front_index_(x.front_index_)
|
|
{}
|
|
devector(BOOST_RV_REF(devector) x) BOOST_NOEXCEPT
|
|
: data_(boost::move(x.data_)),
|
|
front_index_(x.front_index_)
|
|
{}
|
|
|
|
devector& operator=(BOOST_COPY_ASSIGN_REF(devector) x)
|
|
{
|
|
if (&x != this)
|
|
{
|
|
data_ = x.data_;
|
|
front_index_ = x.front_index_;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
devector& operator=(BOOST_RV_REF(devector) x)
|
|
#if defined BOOST_THREAD_USES_BOOST_VECTOR
|
|
BOOST_NOEXCEPT_IF(vector_type::allocator_traits_type::propagate_on_container_move_assignment::value)
|
|
#endif
|
|
{
|
|
data_ = boost::move(x.data_);
|
|
front_index_ = x.front_index_;
|
|
return *this;
|
|
}
|
|
|
|
bool empty() const BOOST_NOEXCEPT
|
|
{ return data_.size() == front_index_; }
|
|
|
|
size_type size() const BOOST_NOEXCEPT
|
|
{ return data_.size() - front_index_; }
|
|
|
|
reference front() BOOST_NOEXCEPT
|
|
{ return data_[front_index_]; }
|
|
|
|
const_reference front() const BOOST_NOEXCEPT
|
|
{ return data_[front_index_]; }
|
|
|
|
reference back() BOOST_NOEXCEPT
|
|
{ return data_.back(); }
|
|
|
|
const_reference back() const BOOST_NOEXCEPT
|
|
{ return data_.back(); }
|
|
|
|
BOOST_MOVE_CONVERSION_AWARE_CATCH(push_back, T, void, priv_push_back)
|
|
|
|
void pop_front()
|
|
{
|
|
++front_index_;
|
|
if (empty()) {
|
|
data_.clear();
|
|
front_index_=0;
|
|
}
|
|
}
|
|
|
|
};
|
|
}
|
|
}
|
|
#endif // header
|