Sane C++ Libraries
C++ Platform Abstraction Libraries
Buffer.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "../Foundation/Segment.h"
5
6namespace SC
7{
8
11
12namespace detail
13{
14struct SegmentBuffer : public SegmentTrivial<char>, public SegmentSelfRelativePointer<char>
15{
16 static constexpr bool IsArray = false;
17};
18} // namespace detail
19
27struct Buffer : public Segment<detail::SegmentBuffer>
28{
29 using Segment::Segment;
30};
31
35template <int N>
36struct SmallBuffer : public Buffer
37{
38 SmallBuffer(SegmentAllocator allocator = SegmentAllocator::Global) noexcept : Buffer(N, allocator) {}
39 SmallBuffer(const Buffer& other) noexcept : SmallBuffer() { Buffer::operator=(other); }
40 SmallBuffer(Buffer&& other) noexcept : SmallBuffer() { Buffer::operator=(move(other)); }
41 Buffer& operator=(const Buffer& other) noexcept { return Buffer::operator=(other); }
42 Buffer& operator=(Buffer&& other) noexcept { return Buffer::operator=(move(other)); }
43
44 // clang-format off
45 SmallBuffer(const SmallBuffer& other) noexcept : SmallBuffer() { Buffer::operator=(other); }
46 SmallBuffer(SmallBuffer&& other) noexcept : SmallBuffer() { Buffer::operator=(move(other)); }
47 SmallBuffer& operator=(const SmallBuffer& other) noexcept { Buffer::operator=(other); return *this; }
48 SmallBuffer& operator=(SmallBuffer&& other) noexcept { Buffer::operator=(move(other)); return *this; }
49 // clang-format on
50
51 protected:
52 SmallBuffer(int num, SegmentAllocator allocator) : Buffer(N, allocator) { (void)num; }
53
54 private:
55 uint64_t inlineCapacity = N;
56 char inlineBuffer[N];
57};
58
59using BufferTL = detail::SegmentCustom<Buffer, Buffer, 0, SegmentAllocator::ThreadLocal>;
60template <int N>
61using SmallBufferTL = detail::SegmentCustom<SmallBuffer<N>, Buffer, N, SegmentAllocator::ThreadLocal>;
62
63#if SC_COMPILER_MSVC
64// Adding the SC_COMPILER_EXPORT on Buffer declaration causes MSVC to issue error C2491
66#endif
67
69} // namespace SC
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
constexpr T && move(T &value)
Converts an lvalue to an rvalue reference.
Definition: Compiler.h:269
unsigned long long uint64_t
Platform independent (8) bytes unsigned int.
Definition: PrimitiveTypes.h:42
An heap allocated byte buffer that can optionally use an inline buffer.
Definition: Buffer.h:28
A slice of contiguous memory, prefixed by and header containing size and capacity.
Definition: Segment.h:113
A SC::Buffer with a dedicated custom inline buffer to avoid heap allocation.
Definition: Buffer.h:37