2018-09-08 13:28:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <array>
|
|
|
|
#include <atomic>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
2018-09-19 02:37:06 +00:00
|
|
|
#include <new>
|
2018-09-08 13:28:39 +00:00
|
|
|
#include <type_traits>
|
|
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
/// SPSC ring buffer
|
|
|
|
/// @tparam T Element type
|
|
|
|
/// @tparam capacity Number of slots in ring buffer
|
|
|
|
/// @tparam granularity Slot size in terms of number of elements
|
2018-09-15 13:21:06 +00:00
|
|
|
template <typename T, std::size_t capacity, std::size_t granularity = 1>
|
2018-09-08 13:28:39 +00:00
|
|
|
class RingBuffer {
|
|
|
|
/// A "slot" is made of `granularity` elements of `T`.
|
2018-09-15 13:21:06 +00:00
|
|
|
static constexpr std::size_t slot_size = granularity * sizeof(T);
|
2018-09-08 13:28:39 +00:00
|
|
|
// T must be safely memcpy-able and have a trivial default constructor.
|
|
|
|
static_assert(std::is_trivial_v<T>);
|
|
|
|
// Ensure capacity is sensible.
|
2018-09-15 13:21:06 +00:00
|
|
|
static_assert(capacity < std::numeric_limits<std::size_t>::max() / 2 / granularity);
|
2018-09-08 13:28:39 +00:00
|
|
|
static_assert((capacity & (capacity - 1)) == 0, "capacity must be a power of two");
|
|
|
|
// Ensure lock-free.
|
2018-09-19 03:06:24 +00:00
|
|
|
static_assert(std::atomic_size_t::is_always_lock_free);
|
2018-09-08 13:28:39 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// Pushes slots into the ring buffer
|
|
|
|
/// @param new_slots Pointer to the slots to push
|
|
|
|
/// @param slot_count Number of slots to push
|
|
|
|
/// @returns The number of slots actually pushed
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t Push(const void* new_slots, std::size_t slot_count) {
|
|
|
|
const std::size_t write_index = m_write_index.load();
|
|
|
|
const std::size_t slots_free = capacity + m_read_index.load() - write_index;
|
|
|
|
const std::size_t push_count = std::min(slot_count, slots_free);
|
2018-09-08 13:28:39 +00:00
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t pos = write_index % capacity;
|
|
|
|
const std::size_t first_copy = std::min(capacity - pos, push_count);
|
|
|
|
const std::size_t second_copy = push_count - first_copy;
|
2018-09-08 13:28:39 +00:00
|
|
|
|
|
|
|
const char* in = static_cast<const char*>(new_slots);
|
|
|
|
std::memcpy(m_data.data() + pos * granularity, in, first_copy * slot_size);
|
|
|
|
in += first_copy * slot_size;
|
|
|
|
std::memcpy(m_data.data(), in, second_copy * slot_size);
|
|
|
|
|
|
|
|
m_write_index.store(write_index + push_count);
|
|
|
|
|
|
|
|
return push_count;
|
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t Push(const std::vector<T>& input) {
|
2018-09-08 13:28:39 +00:00
|
|
|
return Push(input.data(), input.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Pops slots from the ring buffer
|
|
|
|
/// @param output Where to store the popped slots
|
|
|
|
/// @param max_slots Maximum number of slots to pop
|
|
|
|
/// @returns The number of slots actually popped
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t Pop(void* output, std::size_t max_slots = ~std::size_t(0)) {
|
|
|
|
const std::size_t read_index = m_read_index.load();
|
|
|
|
const std::size_t slots_filled = m_write_index.load() - read_index;
|
|
|
|
const std::size_t pop_count = std::min(slots_filled, max_slots);
|
2018-09-08 13:28:39 +00:00
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t pos = read_index % capacity;
|
|
|
|
const std::size_t first_copy = std::min(capacity - pos, pop_count);
|
|
|
|
const std::size_t second_copy = pop_count - first_copy;
|
2018-09-08 13:28:39 +00:00
|
|
|
|
|
|
|
char* out = static_cast<char*>(output);
|
|
|
|
std::memcpy(out, m_data.data() + pos * granularity, first_copy * slot_size);
|
|
|
|
out += first_copy * slot_size;
|
|
|
|
std::memcpy(out, m_data.data(), second_copy * slot_size);
|
|
|
|
|
|
|
|
m_read_index.store(read_index + pop_count);
|
|
|
|
|
|
|
|
return pop_count;
|
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
std::vector<T> Pop(std::size_t max_slots = ~std::size_t(0)) {
|
2018-09-08 13:28:39 +00:00
|
|
|
std::vector<T> out(std::min(max_slots, capacity) * granularity);
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t count = Pop(out.data(), out.size() / granularity);
|
2018-09-08 13:28:39 +00:00
|
|
|
out.resize(count * granularity);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @returns Number of slots used
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t Size() const {
|
2018-09-08 13:28:39 +00:00
|
|
|
return m_write_index.load() - m_read_index.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @returns Maximum size of ring buffer
|
2018-09-15 13:21:06 +00:00
|
|
|
constexpr std::size_t Capacity() const {
|
2018-09-08 13:28:39 +00:00
|
|
|
return capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// It is important to align the below variables for performance reasons:
|
|
|
|
// Having them on the same cache-line would result in false-sharing between them.
|
2018-09-19 02:37:06 +00:00
|
|
|
// TODO: Remove this ifdef whenever clang and GCC support
|
|
|
|
// std::hardware_destructive_interference_size.
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1911
|
|
|
|
alignas(std::hardware_destructive_interference_size) std::atomic_size_t m_read_index{0};
|
|
|
|
alignas(std::hardware_destructive_interference_size) std::atomic_size_t m_write_index{0};
|
|
|
|
#else
|
|
|
|
alignas(128) std::atomic_size_t m_read_index{0};
|
|
|
|
alignas(128) std::atomic_size_t m_write_index{0};
|
|
|
|
#endif
|
2018-09-08 13:28:39 +00:00
|
|
|
|
|
|
|
std::array<T, granularity * capacity> m_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Common
|