/* Copyright (c) 2020 Erik Rigtorp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include #include #include #include // std::allocator #include // std::hardware_destructive_interference_size #include #include // std::enable_if, std::is_*_constructible #ifdef __has_cpp_attribute #if __has_cpp_attribute(nodiscard) #define RIGTORP_NODISCARD [[nodiscard]] #endif #endif #ifndef RIGTORP_NODISCARD #define RIGTORP_NODISCARD #endif namespace rigtorp { template > class SPSCQueue { #if defined(__cpp_if_constexpr) && defined(__cpp_lib_void_t) template struct has_allocate_at_least : std::false_type {}; template struct has_allocate_at_least< Alloc2, std::void_t().allocate_at_least( size_t{}))>> : std::true_type {}; #endif public: explicit SPSCQueue(const size_t capacity, const Allocator &allocator = Allocator()) : capacity_(capacity), allocator_(allocator) { // The queue needs at least one element if (capacity_ < 1) { capacity_ = 1; } capacity_++; // Needs one slack element // Prevent overflowing size_t if (capacity_ > SIZE_MAX - 2 * kPadding) { capacity_ = SIZE_MAX - 2 * kPadding; } #if defined(__cpp_if_constexpr) && defined(__cpp_lib_void_t) if constexpr (has_allocate_at_least::value) { auto res = allocator_.allocate_at_least(capacity_ + 2 * kPadding); slots_ = res.ptr; capacity_ = res.count - 2 * kPadding; } else { slots_ = std::allocator_traits::allocate( allocator_, capacity_ + 2 * kPadding); } #else slots_ = std::allocator_traits::allocate( allocator_, capacity_ + 2 * kPadding); #endif static_assert(alignof(SPSCQueue) == kCacheLineSize, ""); static_assert(sizeof(SPSCQueue) >= 3 * kCacheLineSize, ""); assert(reinterpret_cast(&readIdx_) - reinterpret_cast(&writeIdx_) >= static_cast(kCacheLineSize)); } ~SPSCQueue() { while (front()) { pop(); } std::allocator_traits::deallocate(allocator_, slots_, capacity_ + 2 * kPadding); } // non-copyable and non-movable SPSCQueue(const SPSCQueue &) = delete; SPSCQueue &operator=(const SPSCQueue &) = delete; template void emplace(Args &&...args) noexcept( std::is_nothrow_constructible::value) { static_assert(std::is_constructible::value, "T must be constructible with Args&&..."); auto const writeIdx = writeIdx_.load(std::memory_order_relaxed); auto nextWriteIdx = writeIdx + 1; if (nextWriteIdx == capacity_) { nextWriteIdx = 0; } while (nextWriteIdx == readIdxCache_) { readIdxCache_ = readIdx_.load(std::memory_order_acquire); } new (&slots_[writeIdx + kPadding]) T(std::forward(args)...); writeIdx_.store(nextWriteIdx, std::memory_order_release); } template RIGTORP_NODISCARD bool try_emplace(Args &&...args) noexcept( std::is_nothrow_constructible::value) { static_assert(std::is_constructible::value, "T must be constructible with Args&&..."); auto const writeIdx = writeIdx_.load(std::memory_order_relaxed); auto nextWriteIdx = writeIdx + 1; if (nextWriteIdx == capacity_) { nextWriteIdx = 0; } if (nextWriteIdx == readIdxCache_) { readIdxCache_ = readIdx_.load(std::memory_order_acquire); if (nextWriteIdx == readIdxCache_) { return false; } } new (&slots_[writeIdx + kPadding]) T(std::forward(args)...); writeIdx_.store(nextWriteIdx, std::memory_order_release); return true; } void push(const T &v) noexcept(std::is_nothrow_copy_constructible::value) { static_assert(std::is_copy_constructible::value, "T must be copy constructible"); emplace(v); } template ::value>::type> void push(P &&v) noexcept(std::is_nothrow_constructible::value) { emplace(std::forward

(v)); } RIGTORP_NODISCARD bool try_push(const T &v) noexcept(std::is_nothrow_copy_constructible::value) { static_assert(std::is_copy_constructible::value, "T must be copy constructible"); return try_emplace(v); } template ::value>::type> RIGTORP_NODISCARD bool try_push(P &&v) noexcept(std::is_nothrow_constructible::value) { return try_emplace(std::forward

(v)); } RIGTORP_NODISCARD T *front() noexcept { auto const readIdx = readIdx_.load(std::memory_order_relaxed); if (readIdx == writeIdxCache_) { writeIdxCache_ = writeIdx_.load(std::memory_order_acquire); if (writeIdxCache_ == readIdx) { return nullptr; } } return &slots_[readIdx + kPadding]; } void pop() noexcept { static_assert(std::is_nothrow_destructible::value, "T must be nothrow destructible"); auto const readIdx = readIdx_.load(std::memory_order_relaxed); assert(writeIdx_.load(std::memory_order_acquire) != readIdx && "Can only call pop() after front() has returned a non-nullptr"); slots_[readIdx + kPadding].~T(); auto nextReadIdx = readIdx + 1; if (nextReadIdx == capacity_) { nextReadIdx = 0; } readIdx_.store(nextReadIdx, std::memory_order_release); } RIGTORP_NODISCARD size_t size() const noexcept { std::ptrdiff_t diff = writeIdx_.load(std::memory_order_acquire) - readIdx_.load(std::memory_order_acquire); if (diff < 0) { diff += capacity_; } return static_cast(diff); } RIGTORP_NODISCARD bool empty() const noexcept { return writeIdx_.load(std::memory_order_acquire) == readIdx_.load(std::memory_order_acquire); } RIGTORP_NODISCARD size_t capacity() const noexcept { return capacity_ - 1; } private: #ifdef __cpp_lib_hardware_interference_size static constexpr size_t kCacheLineSize = std::hardware_destructive_interference_size; #else static constexpr size_t kCacheLineSize = 64; #endif // Padding to avoid false sharing between slots_ and adjacent allocations static constexpr size_t kPadding = (kCacheLineSize - 1) / sizeof(T) + 1; private: size_t capacity_; T *slots_; #if defined(__has_cpp_attribute) && __has_cpp_attribute(no_unique_address) Allocator allocator_ [[no_unique_address]]; #else Allocator allocator_; #endif // Align to cache line size in order to avoid false sharing // readIdxCache_ and writeIdxCache_ is used to reduce the amount of cache // coherency traffic alignas(kCacheLineSize) std::atomic writeIdx_ = {0}; alignas(kCacheLineSize) size_t readIdxCache_ = 0; alignas(kCacheLineSize) std::atomic readIdx_ = {0}; alignas(kCacheLineSize) size_t writeIdxCache_ = 0; }; } // namespace rigtorp